:root {
  --bg: #0f1112;
  --bg-soft: #171a1c;
  --surface: #202427;
  --surface-strong: #282d31;
  --text: #f7f3ea;
  --muted: #c9c2b3;
  --accent: #d89d1d;
  --accent-light: #f5c654;
  --border: rgba(216, 157, 29, 0.3);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --font-base: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --radius: 8px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 157, 29, 0.16), transparent 30rem),
    linear-gradient(180deg, #0b0c0d 0%, var(--bg) 50%, #0a0b0c 100%);
  font-family: var(--font-base);
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 0 clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
  background: rgba(12, 13, 14, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  min-width: max-content;
  color: var(--text);
  font-family: var(--font-display);
  line-height: 0.9;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  color: var(--accent);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  letter-spacing: 0.08em;
}

.brand strong {
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17, 18, 19, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--accent-light);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav a,
.header-phone {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus,
.header-phone:hover,
.header-phone:focus {
  color: var(--accent-light);
}

.header-phone {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent-light);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 4rem) 0 6rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/images/hero-halle.png") center / cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.62) 42%, rgba(7, 8, 8, 0.04) 100%),
    linear-gradient(180deg, rgba(15, 17, 18, 0) 72%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3.25rem, 7.5vw, 6.3rem);
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 42rem;
  margin: 1.5rem 0 2rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-light);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(17, 18, 19, 0.4);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(216, 157, 29, 0.14);
}

.intro-band {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  background: #111315;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(216, 157, 29, 0.24);
}

.intro-grid article {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--bg-soft);
}

.intro-grid span {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.intro-grid strong {
  display: block;
  margin: 0.35rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.split-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.split-section-dark {
  background:
    linear-gradient(135deg, rgba(216, 157, 29, 0.08), transparent 36rem),
    #0b0c0d;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-grid-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.section-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(216, 157, 29, 0.12);
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-underline-offset: 0.3rem;
}

.phone-box {
  display: inline-grid;
  gap: 0.2rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.phone-box span {
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-box a,
.contact-phone {
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.contact-direct {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.contact-mail {
  color: var(--text);
  text-underline-offset: 0.25rem;
}

.contact-mail:hover,
.contact-mail:focus {
  color: var(--accent-light);
}

.map-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 74% 30%, rgba(216, 157, 29, 0.14), transparent 24rem),
    #111315;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.map-image-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 157, 29, 0.16), transparent 22rem),
    var(--surface);
}

.faq-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(216, 157, 29, 0.08), transparent 32rem),
    var(--bg);
}

.faq-heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid article {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(32, 36, 39, 0.72);
  box-shadow: var(--shadow);
}

.faq-grid h3 {
  margin-bottom: 0.8rem;
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 17, 18, 0.78);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #101214;
  color: var(--text);
  font: inherit;
  padding: 0.85rem 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(216, 157, 29, 0.24);
  border-color: var(--accent);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: #090a0b;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-contact p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact address {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-style: normal;
}

.footer-contact address a {
  color: var(--muted);
  text-underline-offset: 0.25rem;
}

.footer-contact address a:hover,
.footer-contact address a:focus {
  color: var(--accent-light);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  text-underline-offset: 0.25rem;
}

.legal-main {
  min-height: 100svh;
  padding: calc(var(--header-height) + 4rem) 1rem 5rem;
  background:
    linear-gradient(180deg, rgba(216, 157, 29, 0.08), transparent 24rem),
    var(--bg);
}

.legal-content {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(23, 26, 28, 0.9);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 2rem;
  font-size: clamp(2.7rem, 5.8vw, 4.8rem);
}

.legal-content h2 {
  max-width: none;
  margin-top: 2rem;
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
}

.legal-content a {
  color: var(--accent-light);
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    padding-block: 0.8rem;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 0 0.25rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(216, 157, 29, 0.18);
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .intro-grid,
  .split-grid,
  .split-grid-reverse,
  .map-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-image-panel img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .site-header {
    gap: 0.75rem;
  }

  .header-phone {
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.4rem);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.9), rgba(7, 8, 8, 0.48)),
      linear-gradient(180deg, rgba(15, 17, 18, 0) 70%, var(--bg) 100%);
  }

  .hero-actions,
  .footer-grid,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .map-image-panel img {
    min-height: 260px;
  }
}
