/* =========================================================
   MICHAELIS · BANG & OLUFSEN RUHRGEBIET
   Teaser Landing Page — Premium Design System
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colors */
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --ink-elevated: #1c1c1c;
  --paper: #faf8f4;
  --paper-soft: #f2efe8;
  --paper-deep: #e8e4da;
  --gold: #c4a469;
  --gold-soft: #d9c191;
  --gold-deep: #9a7f4e;
  --mute: #6b6863;
  --mute-light: #a8a49c;
  --line: rgba(10, 10, 10, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;
  --space-8: 12rem;

  /* Layout */
  --container: 1320px;
  --container-narrow: 920px;
  --radius: 2px;

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(15px, 0.5vw + 13px, 17px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- 3. Typography ---------- */
.display {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.8rem, 9.6vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
}

.display em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}

.headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.75rem;
}

.headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section--dark .headline em {
  color: var(--gold-soft);
}

.lead {
  font-size: clamp(1.05rem, 0.8vw + 0.8rem, 1.35rem);
  line-height: 1.65;
  font-weight: 300;
  max-width: 52ch;
  margin: 0 0 1.25em;
  color: inherit;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--mute-light);
  margin-bottom: 1.75rem;
}

.eyebrow--dark {
  color: var(--mute);
}

.eyebrow__dot {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.gold-underline {
  position: relative;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15em;
  color: var(--ink);
}
.gold-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.02em;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

/* ---------- 4. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: 1520px;
}

.section {
  position: relative;
  padding: clamp(4rem, 10vw, 9rem) 0;
  isolation: isolate;
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section__head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 820px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__head--center .eyebrow {
  justify-content: center;
}

/* ---------- 5. Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.1rem 0;
  transition:
    background 0.4s var(--ease-out),
    backdrop-filter 0.4s var(--ease-out),
    padding 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  padding: 0.7rem 0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav.is-light.is-scrolled {
  background: rgba(250, 248, 244, 0.86);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
}

.nav__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 38px;
}

.nav__logo {
  height: 34px;
  width: auto;
  transition: opacity 0.35s var(--ease-out);
}

.nav__logo--dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}

.nav.is-light .nav__logo--light {
  opacity: 0;
}

.nav.is-light .nav__logo--dark {
  opacity: 1;
}

.nav__links {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav__links a {
  color: rgba(250, 248, 244, 0.82);
  position: relative;
}

.nav.is-light .nav__links a {
  color: rgba(10, 10, 10, 0.72);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover {
  color: var(--gold-soft);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav.is-light .nav__links a:hover {
  color: var(--gold-deep);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(250, 248, 244, 0.35);
  border-radius: 100px;
  transition:
    background 0.4s var(--ease-out),
    color 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}
.nav__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease-out);
}

.nav__cta-short {
  display: none;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.nav__cta:hover svg {
  transform: translateX(4px);
}

.nav.is-light .nav__cta {
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.3);
}
.nav.is-light .nav__cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
  .nav__inner {
    grid-template-columns: auto 1fr;
  }
  .nav__cta {
    justify-self: end;
    padding: 0.7rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }
  .nav__cta-full {
    display: none;
  }
  .nav__cta-short {
    display: inline;
  }
}

@media (max-width: 380px) {
  .nav__cta {
    padding: 0.65rem 0.9rem;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    gap: 0.4rem;
  }
  .nav__cta svg {
    width: 12px;
    height: 12px;
  }
}

/* ---------- 6. Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  --btn-border: rgba(250, 248, 244, 0.45);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.45s var(--ease-out);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-bg-hover, var(--paper));
  transform: translateY(102%);
  transition: transform 0.55s var(--ease-out);
  z-index: -1;
}
.btn:hover {
  color: var(--btn-fg-hover, var(--ink));
  border-color: var(--btn-bg-hover, var(--paper));
}
.btn:hover::before {
  transform: translateY(0);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  --btn-border: rgba(250, 248, 244, 0.55);
  --btn-bg-hover: var(--paper);
  --btn-fg-hover: var(--ink);
}

.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  --btn-border: var(--gold);
  --btn-bg-hover: var(--paper);
  --btn-fg-hover: var(--ink);
}

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 clamp(3rem, 8vw, 7rem);
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0) scale(1.04);
  transition: transform 1.8s var(--ease-out);
  will-change: transform;
}

.hero.is-loaded .hero__media img {
  transform: translateZ(0) scale(1);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0) 30%, rgba(10, 10, 10, 0.25) 55%, rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.35) 42%, rgba(10, 10, 10, 0) 70%),
    radial-gradient(ellipse at 75% 55%, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.hero__sub {
  font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.35rem);
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.85);
  max-width: 44ch;
  margin: 0 0 2.5rem;
  font-weight: 200;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.65);
  transition: color 0.4s var(--ease-out);
}

.hero__scroll:hover {
  color: var(--gold-soft);
}

.hero__scroll-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 1px;
  height: 30px;
  background: var(--gold);
  animation: scroll-pulse 2.2s var(--ease-soft) infinite;
}

@keyframes scroll-pulse {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(130px);
  }
}

/* ---------- 8. Story Section ---------- */
.section--story {
  padding: clamp(6rem, 14vw, 12rem) 0;
  text-align: left;
}

.story-grid {
  display: grid;
  gap: 1.75rem;
  max-width: 68ch;
  font-size: clamp(1.15rem, 0.7vw + 1rem, 1.55rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
}

.story-grid p {
  margin: 0;
}

.story-grid p:first-of-type {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}

/* ---------- 9. Solution Section ---------- */
.section--solution {
  padding: 0;
  overflow: hidden;
}

.solution__media {
  position: relative;
  height: clamp(280px, 48vh, 520px);
  overflow: hidden;
}

.solution__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.02);
}

.solution__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 40%, var(--ink) 100%);
}

.solution__content {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(5rem, 10vw, 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.solution__intro .lead {
  color: rgba(250, 248, 244, 0.78);
}

.solution__intro .lead + .lead {
  margin-top: 1rem;
}

.features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.feature {
  padding: 2rem 1.75rem 2.5rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  position: relative;
  transition: background 0.4s var(--ease-out);
}

.feature:hover {
  background: rgba(196, 164, 105, 0.06);
}

.feature__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.7);
  margin: 0;
}

@media (max-width: 960px) {
  .solution__content {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
}

/* ---------- 10. Products ---------- */
.section--products {
  background: var(--paper-soft);
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}

.product {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--paper);
  transition: transform 0.5s var(--ease-out);
}

.product:hover {
  transform: translateY(-4px);
}

.product__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}

.product:hover .product__image img {
  transform: scale(1.04);
}

.product__body {
  padding: 0.75rem 1.25rem 1.5rem;
}

.product__index {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.product h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 1.3vw + 1rem, 2.1rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.product p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--mute);
  margin: 0;
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ---------- 11. About ---------- */
.section--about {
  background: var(--paper);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__copy {
  display: grid;
  gap: 1.25rem;
  max-width: 50ch;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink);
}

.about__copy em {
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 1.15em;
  font-weight: 400;
}

.trust {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.trust li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  color: var(--ink);
}

.trust span {
  color: var(--gold-deep);
  font-weight: 500;
}

.about__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__media figcaption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--paper);
  padding: 1rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  font-style: italic;
}

.about__media figcaption span {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__media {
    aspect-ratio: 4 / 3;
    max-width: 560px;
  }
}

/* ---------- 12. Process ---------- */
.section--process {
  background: var(--ink);
  color: var(--paper);
}

.section--process .eyebrow {
  color: var(--mute-light);
}

.section--process .headline em {
  color: var(--gold-soft);
}

.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--line-light);
}

.process__step {
  position: relative;
  padding: 3rem 2rem 2.5rem;
  border-right: 1px solid var(--line-light);
  transition: background 0.4s var(--ease-out);
}

.process__step:last-child {
  border-right: none;
}

.process__step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.process__step:hover {
  background: rgba(196, 164, 105, 0.04);
}

.process__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2rem;
  font-feature-settings: "lnum";
}

.process__step h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--paper);
}

.process__step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(250, 248, 244, 0.7);
}

@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr;
  }
  .process__step {
    border-right: none;
    border-bottom: 1px solid var(--line-light);
    padding: 2rem 1rem 2rem;
  }
  .process__num {
    margin-bottom: 1rem;
  }
}

/* ---------- 13. CTA / Form ---------- */
.section--cta {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.55);
  transform: scale(1.08);
}

.cta__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.9)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95));
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta__content .eyebrow {
  justify-content: center;
}

.cta__content .lead {
  margin-left: auto;
  margin-right: auto;
  color: rgba(250, 248, 244, 0.75);
  margin-bottom: 3rem;
}

/* ---- Form ---- */
.form {
  display: grid;
  gap: 1.2rem;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(250, 248, 244, 0.04);
  border: 1px solid rgba(250, 248, 244, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 640px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: grid;
  gap: 0.5rem;
  position: relative;
}

.field--group {
  border: none;
  padding: 0;
  margin: 0;
}

.field__label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute-light);
  font-weight: 400;
}

.field__optional {
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(168, 164, 156, 0.7);
  margin-left: 0.4rem;
  font-style: italic;
  font-size: 0.9em;
}

.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 248, 244, 0.25);
  padding: 0.65rem 0 0.7rem;
  color: var(--paper);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease-out);
  font-family: inherit;
  border-radius: 0;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}

.field input:-webkit-autofill {
  -webkit-text-fill-color: var(--paper);
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(250, 248, 244, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out);
  color: rgba(250, 248, 244, 0.85);
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.chip:has(input:checked) {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(250, 248, 244, 0.75);
  margin-top: 0.3rem;
}

.consent input {
  margin-top: 0.3em;
  accent-color: var(--gold);
}

.consent a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent a:hover {
  color: var(--paper);
}

.form .btn {
  margin-top: 0.75rem;
  justify-content: center;
}

.cta__direct {
  margin-top: 3.5rem;
  color: rgba(250, 248, 244, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta__direct > span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute-light);
  margin-bottom: 1rem;
}

.cta__direct strong {
  font-weight: 500;
  color: var(--paper);
}

.cta__direct a {
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out);
}
.cta__direct a:hover {
  border-bottom-color: var(--gold);
}

.cta__hours {
  color: var(--mute-light);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* ---------- 14. Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--mute-light);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
  font-size: 0.92rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  margin: 0;
  line-height: 1.6;
  max-width: 32ch;
  color: var(--mute-light);
}

.footer__col h4 {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer__col p {
  margin: 0;
  line-height: 1.75;
}

.footer__col a {
  color: var(--mute-light);
  transition: color 0.3s var(--ease-out);
}

.footer__col a:hover {
  color: var(--gold-soft);
}

.footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 3.5rem 0 1.5rem;
}

.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(168, 164, 156, 0.6);
}

@media (max-width: 860px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ---------- 15. Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children when revealed */
[data-reveal].is-visible ~ [data-reveal] {
  transition-delay: 80ms;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero__scroll-line::after {
    display: none;
  }
}

/* ---------- 16. Utilities ---------- */
@media (max-width: 520px) {
  .hero {
    padding-bottom: clamp(5rem, 14vw, 8rem);
  }
  .hero__scroll {
    display: none;
  }
  .about__media figcaption {
    left: 1rem;
    bottom: 1rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .feature {
    padding: 1.75rem 1.25rem 2rem;
  }
}
