:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --gold: #d4af37;
  --gold-bright: #f4d35e;
  --white: #f5f5f3;
  --gray: #9a9a96;
  --line: rgba(245,245,243,0.12);
  --ff: "Sora", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a, button, .btn, .nav__cta, .before-after__handle { touch-action: manipulation; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; background: var(--black);
  z-index: 999; display: flex; align-items: center; justify-content: center;
}
.loader-text {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold);
  overflow: hidden;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 5%;
  background: transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background-color: rgba(10,10,10,0.78);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav__logo {
  font-weight: 800; font-size: 1.3rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex; align-items: center;
}
.nav__logo span { color: var(--gold); }
.nav__logo-img { height: 46px; width: auto; display: block; }
.footer__logo-img { height: 64px; width: auto; display: block; margin-bottom: 1rem; }
.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--white); transition: width 0.35s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  border: 1px solid var(--white); padding: 0.6rem 1.4rem;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; transition: background 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--white); color: var(--black); }
.nav__burger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer;
  width: 44px; height: 44px; margin: -10px; flex-shrink: 0;
  background: none; border: none; padding: 0; -webkit-tap-highlight-color: transparent;
}
.nav__burger span { width: 26px; height: 2px; background: var(--white); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100svh; min-height: 560px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(1.1);
}
.hero__gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.1) 35%, rgba(10,10,10,0.85) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 0 5% 6rem; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 1.4rem;
}
.hero__eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold-bright); }
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 0.98; font-weight: 800; letter-spacing: -0.02em;
  max-width: 16ch;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; will-change: transform; }
.hero__sub {
  margin-top: 1.6rem; max-width: 38ch; font-size: 1.1rem; color: var(--gray);
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem; border-radius: 999px; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1), background 0.3s, color 0.3s;
}
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-3px); }
.btn--ghost { border: 1px solid var(--line); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--black); transform: translateY(-3px); }
.hero__scroll {
  position: absolute; z-index: 2; right: 5%; bottom: 2.4rem; writing-mode: vertical-rl;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero__scroll-line { width: 1px; height: 50px; background: var(--gray); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold-bright); animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 50% { top: 0; } 100% { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.4rem 0; overflow: hidden; white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 3rem; }
.marquee__track span {
  font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray); display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__track span::after { content: "✦"; color: var(--gold); }

/* ---------- Section basics ---------- */
section { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; }
.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.kicker {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }
.lead { color: var(--gray); font-size: 1.05rem; margin-top: 1.2rem; font-weight: 300; max-width: 60ch; }

/* ---------- Scrollytelling pin section ---------- */
.story {
  height: 340vh;
  position: relative;
}
.story__pin {
  position: sticky; top: 0; height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.story__bg { position: absolute; inset: 0; z-index: -2; }
.story__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.story__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(10,10,10,0.55) 40%, var(--black) 100%);
}
.story__steps { width: min(900px, 90%); margin-inline: auto; }
.story__step {
  display: flex; align-items: center; gap: 2.4rem; opacity: 0.18;
  padding: 1.2rem 0; transition: opacity 0.3s;
}
.story__step.is-active { opacity: 1; }
.story__num {
  font-size: 0.9rem; color: var(--gold); border: 1px solid var(--gold);
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 700;
}
.story__step h3 { font-size: clamp(1.3rem, 3vw, 2.1rem); font-weight: 700; }
.story__step p { color: var(--gray); margin-top: 0.4rem; font-weight: 300; }

/* ---------- Services grid ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); padding: 2.6rem; min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transform: scale(1.08); transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover img { transform: scale(1); }
.service-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.92) 85%);
}
.service-card__tag {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 0.8rem;
}
.service-card h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 1rem; }
.service-card ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.6rem; }
.service-card li { color: var(--gray); font-size: 0.95rem; display: flex; gap: 0.6rem; }
.service-card li::before { content: "→"; color: var(--gold); flex-shrink: 0; }
.service-card__price {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 1.2rem;
}
.service-card__price strong { font-size: 1.6rem; color: var(--gold-bright); }
.service-card__price span { color: var(--gray); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.service-card__price-old { color: var(--gray); text-decoration: line-through; font-size: 0.95rem; margin-right: 0.5rem; }
.service-card__save { color: var(--gold-bright); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.3rem; }

/* ---------- Offer banner (limited-time discount) ---------- */
.offer-banner {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  color: var(--black); font-weight: 800; text-align: center;
  padding: 0.9rem 1.4rem; border-radius: 12px; margin-bottom: 1.8rem;
  letter-spacing: 0.01em; flex-wrap: wrap;
}
.offer-banner strong { font-size: 1.15rem; }
.offer-banner span { font-weight: 500; font-size: 0.85rem; opacity: 0.85; }

/* ---------- Package grid (3-tier pricing) ---------- */
.services--packages { grid-template-columns: repeat(3, 1fr); }
.service-card--highlight { border-color: var(--gold); }
.service-card__badge {
  position: absolute; top: 1.4rem; right: 1.4rem; z-index: 1;
  background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 999px;
}
@media (max-width: 1100px) { .services--packages { grid-template-columns: 1fr; } }

/* ---------- Extras inline (compact list under packages) ---------- */
.extras-inline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.5rem 0.9rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  text-align: center; color: var(--gray); font-size: 0.85rem;
}
.extras-inline__label { color: var(--gold-bright); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem; }
.extras-inline span:not(.extras-inline__label)::after { content: "·"; margin-left: 0.9rem; color: var(--line); }
.extras-inline span:last-child::after { content: none; }

/* ---------- WhatsApp CTA ---------- */
.whatsapp-cta {
  display: flex; align-items: center; gap: 1.2rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 18px; padding: 1.4rem 1.8rem; margin-bottom: 3rem;
  color: var(--black); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.3); }
.whatsapp-cta__icon { font-size: 1.8rem; flex-shrink: 0; }
.whatsapp-cta strong { display: block; font-size: 1.1rem; font-weight: 800; }
.whatsapp-cta small { display: block; font-size: 0.85rem; opacity: 0.75; font-weight: 500; }
.whatsapp-cta__arrow { margin-left: auto; font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }

/* ---------- Compare / ceramic showcase ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.compare__visual { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; }
.compare__visual img { width: 100%; height: 100%; object-fit: cover; }
.compare__list { display: flex; flex-direction: column; gap: 1.4rem; }
.compare__item { display: flex; gap: 1.2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.compare__icon { font-size: 1.4rem; color: var(--gold); }
.compare__item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.compare__item p { color: var(--gray); font-size: 0.92rem; font-weight: 300; }

/* ---------- Process video band ---------- */
.video-band { position: relative; height: 60vh; min-height: 380px; overflow: hidden; border-radius: 0; }
.video-band video { width: 100%; height: 100%; object-fit: cover; }
.video-band::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,10,0.35); }
.video-band__text {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column;
  text-align: center; padding: 0 5%;
}
.video-band__text h2 { max-width: 16ch; }

/* ---------- Rich image band (Folierung / Einsatzgebiet) ---------- */
.rich-band {
  position: relative; min-height: 560px; border-radius: 24px; overflow: hidden;
  display: flex; align-items: center; isolation: isolate;
}
.rich-band__bg { position: absolute; inset: 0; z-index: -2; }
.rich-band__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.rich-band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.82) 38%, rgba(10,10,10,0.35) 68%, rgba(10,10,10,0.1) 100%);
}
.rich-band--right .rich-band__bg::after {
  background: linear-gradient(260deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.82) 38%, rgba(10,10,10,0.35) 68%, rgba(10,10,10,0.1) 100%);
}
.rich-band__content { position: relative; z-index: 1; padding: clamp(2rem, 5vw, 4.5rem); max-width: 620px; }
.rich-band--right .rich-band__content { margin-left: auto; }
.rich-band__list { display: flex; flex-direction: column; gap: 1.1rem; margin: 1.6rem 0 2rem; }
.rich-band__list > div { display: flex; gap: 0.8rem; align-items: flex-start; }
.rich-band__list span.ico { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.rich-band__list strong { display: block; font-size: 1rem; }
.rich-band__list p { color: var(--gray); font-size: 0.9rem; margin-top: 0.2rem; font-weight: 300; }
.rich-band__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.6rem 0 2rem; }
.rich-band__chips span {
  border: 1px solid var(--gold); color: var(--gold-bright); font-size: 0.85rem;
  padding: 0.5rem 1.1rem; border-radius: 999px; font-weight: 600;
}
.rich-band__stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.rich-band__stats div { text-align: left; }
.rich-band__stats strong { display: block; font-size: 1.6rem; color: var(--gold-bright); font-weight: 800; margin-bottom: 0.3rem; line-height: 1.2; }
.rich-band__stats span { color: var(--gray); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 700px) {
  .rich-band { min-height: 480px; }
  .rich-band__content { max-width: 100%; }
  .rich-band--right .rich-band__content { margin-left: 0; }
}

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { border: 1px solid var(--line); border-radius: 16px; padding: 2rem; }
.testimonial__stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.testimonial p { color: var(--gray); font-weight: 300; margin-bottom: 1.4rem; }
.testimonial__author { font-weight: 700; font-size: 0.9rem; }
.testimonial__role { color: var(--gray); font-size: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #d4af37, #f4d35e);
  color: var(--black); border-radius: 24px; padding: clamp(3rem, 8vw, 6rem) clamp(1.6rem, 6vw, 5rem);
  text-align: center;
}
.cta-band h2 { color: var(--black); }
.cta-band .btn--gold { background: var(--black); color: var(--gold-bright); }
.cta-band .btn--gold:hover { background: #1d1d1d; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer__logo { font-weight: 800; font-size: 1.4rem; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer__logo span { color: var(--gold); }
.footer__col h5 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; color: var(--white); font-size: 0.92rem; margin-bottom: 0.6rem; font-weight: 300; }
.footer__bottom { display: flex; justify-content: space-between; color: var(--gray); font-size: 0.8rem; border-top: 1px solid var(--line); padding-top: 1.6rem; flex-wrap: wrap; gap: 1rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 10rem 0 4rem; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; letter-spacing: -0.02em; max-width: 18ch; }

/* ---------- Gallery ---------- */
.gallery { columns: 3 220px; column-gap: 1.2rem; }
.gallery img { width: 100%; border-radius: 14px; margin-bottom: 1.2rem; }
.gallery figure { break-inside: avoid; position: relative; overflow: hidden; border-radius: 14px; margin-bottom: 1.2rem; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-bright);
  opacity: 0; transform: translateY(10px); transition: 0.3s;
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery img { transition: transform 0.6s ease; }

.before-after { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16/10; cursor: ew-resize; }
.before-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.before-after__after { clip-path: inset(0 0 0 50%); }
.before-after__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold-bright);
  transform: translateX(-50%);
}
.before-after__handle::before {
  content: "↔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; background: var(--gold-bright); color: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700;
}
.ba-label { position: absolute; top: 1rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(10,10,10,0.6); padding: 0.4rem 0.8rem; border-radius: 999px; }
.ba-label--before { left: 1rem; }
.ba-label--after { right: 1rem; }

/* ---------- Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.form-field { margin-bottom: 1.4rem; }
.form-field label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.5rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 0.8rem 0; color: var(--white); font-family: var(--ff); font-size: 1rem;
  transition: border-color 0.3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--gold); }
.form-field select option { background: var(--black); }
.form-field input[type="file"] {
  border: 1px dashed var(--line); border-radius: 10px; padding: 0.9rem; font-size: 0.88rem; color: var(--gray);
}
.form-field input[type="file"]::file-selector-button {
  background: var(--gold); color: var(--black); border: none; border-radius: 999px;
  padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 600; margin-right: 0.8rem; cursor: pointer;
}
.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.contact-info__icon { font-size: 1.3rem; color: var(--gold); }
.contact-info__item h4 { font-weight: 700; margin-bottom: 0.3rem; }
.contact-info__item p, .contact-info__item a { color: var(--gray); font-size: 0.92rem; }

/* ---------- Reveal utility ---------- */
.reveal { opacity: 0; transform: translateY(40px); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .gallery figcaption { opacity: 1; transform: none; }
  .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(320px, 80vw);
    background: rgba(10,10,10,0.98); backdrop-filter: blur(10px);
    padding: 6.5rem 2rem 2rem; z-index: 150;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    border-left: 1px solid var(--line);
  }
  .nav__links--open { transform: translateX(0); }
  .nav__links a {
    display: flex; align-items: center; min-height: 52px;
    font-size: 1.1rem; border-bottom: 1px solid var(--line);
  }
  .nav__burger { display: flex; }
  body.nav-open { overflow: hidden; }
  .services, .compare, .testimonials, .contact-grid, .footer__grid { grid-template-columns: 1fr; }
  .gallery { columns: 2 160px; }
  .story__step { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .footer__col a { min-height: 44px; display: flex; align-items: center; margin-bottom: 0; }
}
/* ---------- Legal pages ---------- */
.legal { padding: 3rem 0 6rem; }
.legal .container { max-width: 780px; }
.legal h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2.6rem; margin-bottom: 0.9rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--gray); font-weight: 300; line-height: 1.7; margin-bottom: 0.9rem; }
.legal a { color: var(--gold-bright); text-decoration: underline; }
.legal ul { padding-left: 1.2rem; }
.legal li { list-style: disc; margin-left: 0.2rem; }
.legal strong { color: var(--white); font-weight: 600; }
.legal .legal__meta { color: var(--gray); font-size: 0.85rem; margin-bottom: 2.2rem; }

@media (max-width: 560px) {
  .gallery { columns: 1; }
}
