/* ───────────────────────────────────────────────────────────
   Niewthong · Massagen Saarbrücken — website styles
   Matches the TV-signage design system (dark / cream / gold)
─────────────────────────────────────────────────────────── */

:root {
  --bg:          #0e0a07;
  --bg-2:        #15100b;
  --bg-3:        #1c150d;
  --cream:       #f4e9d4;
  --cream-muted: rgba(244, 233, 212, 0.62);
  --cream-faint: rgba(244, 233, 212, 0.34);
  --gold:        #d4a14a;
  --gold-soft:   #e8c07a;
  --teal:        #3a6b65;
  --hairline:    rgba(244, 233, 212, 0.16);
  --hairline-2:  rgba(244, 233, 212, 0.10);

  --display: "Cormorant Garamond", Georgia, serif;
  --sans:    "Outfit", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --gutter: clamp(22px, 5vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(212, 161, 74, 0.4); color: var(--cream); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* film-grain / warmth vignette over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.4) 100%);
  mix-blend-mode: multiply;
}

/* ── shared layout helpers ─────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(80px, 11vw, 168px);
  z-index: 2;
}

.eyebrow {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 0.98;
  color: var(--cream);
  margin: 0;
}

.lede {
  font-family: var(--sans);
  color: var(--cream-muted);
  font-weight: 300;
  letter-spacing: 0.01em;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  max-width: 56ch;
  text-wrap: pretty;
}

.hairline { height: 1px; background: var(--hairline); border: 0; margin: 0; }

/* ── navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background 600ms var(--ease), padding 500ms var(--ease),
              box-shadow 600ms var(--ease), backdrop-filter 600ms var(--ease);
}
.nav.scrolled {
  padding-block: 14px;
  background: rgba(10, 7, 4, 0.72);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: 0 1px 0 var(--hairline-2), 0 18px 40px rgba(0,0,0,0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
}
.brand .mark {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand .mark b { font-style: normal; font-weight: 400; }
.brand__logo { height: 42px; width: auto; display: block; }
.brand .divider { width: 1px; height: 24px; background: var(--hairline); }
.brand .sub {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 400;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}
.nav-links a:not(.btn) {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 400;
  position: relative;
  padding-block: 6px;
  transition: color 300ms var(--ease);
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--cream); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 400ms var(--ease), color 400ms var(--ease),
              border-color 400ms var(--ease), transform 300ms var(--ease);
}
.btn:hover { background: var(--gold); color: #1a1209; border-color: var(--gold); }
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--gold); color: #1a1209; }
.btn--solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--ghost { border-color: var(--hairline); color: var(--cream-muted); }
.btn--ghost:hover { border-color: var(--gold); color: var(--cream); background: transparent; }
.btn--lg { padding: 18px 36px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.4px;
  background: var(--cream);
  transform: translate(-50%, -50%);
  transition: transform 360ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -6px); }
.nav-toggle span::after  { transform: translate(-50%, 6px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav-toggle span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ── progress line ─────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 50;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -8% 0 -8% 0;
  will-change: transform;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(95deg, rgba(14,10,7,0.86) 0%, rgba(14,10,7,0.58) 32%, rgba(14,10,7,0.2) 66%, rgba(14,10,7,0.08) 100%),
    linear-gradient(180deg, rgba(14,10,7,0.5) 0%, transparent 26%, transparent 58%, rgba(14,10,7,0.9) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(76px, 15vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin: 0.18em 0 0;
  text-shadow: 0 2px 40px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}
.hero__title b { font-style: normal; font-weight: 300; }
.hero__tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 44px);
  color: var(--gold-soft);
  margin: 0.5em 0 0;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero__meta {
  margin-top: clamp(26px, 4vw, 44px);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 300;
}
.hero__cta {
  margin-top: clamp(34px, 4.5vw, 52px);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.scroll-cue .line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold-soft);
  animation: cueDrop 2.4s var(--ease) infinite;
}
@keyframes cueDrop {
  0%   { top: -50%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ── intro / philosophy band ───────────────────────────────── */
.intro {
  text-align: center;
  background: var(--bg-2);
  border-block: 1px solid var(--hairline-2);
}
.intro .display {
  font-size: clamp(34px, 5.2vw, 78px);
  max-width: 18ch;
  margin-inline: auto;
}
.intro .lede { margin: clamp(26px, 3vw, 40px) auto 0; text-align: center; }

/* ── section heads ─────────────────────────────────────────── */
.head {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.head .display { font-size: clamp(38px, 6vw, 92px); }
.head--split {
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .head--split { grid-template-columns: 1.3fr 1fr; gap: 48px; }
  .head--split .lede { justify-self: end; }
}

/* ── services ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline-2);
  border: 1px solid var(--hairline-2);
}
@media (min-width: 760px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1120px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service {
  background: var(--bg);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  transition: background 500ms var(--ease);
}
.service:hover { background: var(--bg-2); }
.service__no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 22px;
}
.service__name {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0 0 12px;
}
.service__desc {
  color: var(--cream-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 34ch;
  text-wrap: pretty;
}
.service__rows { margin-top: auto; display: flex; flex-direction: column; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--hairline-2);
}
.price-row:last-child { border-bottom: 1px solid var(--hairline-2); }
.price-row .dur {
  font-size: 15px;
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.price-row .fill { flex: 1; height: 1px; background: var(--hairline-2); }
.price-row .amt {
  font-family: var(--display);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  color: var(--gold-soft);
  white-space: nowrap;
}
.price-row .amt .eu { font-size: 0.55em; color: var(--gold); font-style: normal; margin-left: 3px; }

.service--feature {
  background: linear-gradient(155deg, var(--bg-3) 0%, var(--bg) 70%);
  border: 1px solid var(--hairline);
}
.service--feature:hover { background: linear-gradient(155deg, #241a0f 0%, var(--bg-2) 70%); }
.service__tag {
  position: absolute;
  top: clamp(28px, 3vw, 44px); right: clamp(28px, 3vw, 44px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 5px 12px;
}
.services-note {
  margin-top: 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--cream-faint);
}

/* ── about (image + text) ──────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 920px) { .about { grid-template-columns: 1fr 1fr; } }
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.about__media img {
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.about__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,10,7,0.5) 100%);
}
.about__body .display { font-size: clamp(34px, 4.6vw, 64px); margin-bottom: 28px; }
.about__body p { margin: 0 0 18px; }
.feature-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.feature-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline-2);
}
.feature-list li:last-child { border-bottom: 1px solid var(--hairline-2); }
.feature-list .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  min-width: 34px;
}
.feature-list .v { color: var(--cream-muted); font-size: 15px; }
.feature-list .v b { color: var(--cream); font-weight: 400; }

/* ── gallery ───────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(140px, 22vw, 280px);
  gap: clamp(8px, 1vw, 14px);
}
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.gallery figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
  filter: saturate(0.92) brightness(0.92);
}
.gallery figure:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.g-tall  { grid-row: span 2; }
.g-wide  { grid-column: span 2; }

/* ── hours + contact split ─────────────────────────────────── */
.panel {
  background: var(--bg-2);
  border-block: 1px solid var(--hairline-2);
}
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 96px);
}
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; } }

.hours-rows { display: flex; flex-direction: column; margin-top: 12px; }
.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline-2);
}
.hours-row:first-child { border-top: 1px solid var(--hairline-2); }
.hours-row .day { font-size: clamp(17px, 1.6vw, 21px); font-weight: 300; }
.hours-row .time {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--gold-soft);
  font-weight: 500;
  white-space: nowrap;
}
.hours-row.is-closed .day,
.hours-row.is-closed .time { color: var(--cream-faint); }

/* contact cards */
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  border: 1px solid var(--hairline);
  background: rgba(244, 233, 212, 0.03);
  border-radius: 8px;
  transition: border-color 400ms var(--ease), background 400ms var(--ease), transform 400ms var(--ease);
}
.contact-card:hover { border-color: var(--gold); background: rgba(244, 233, 212, 0.05); transform: translateY(-2px); }
.contact-card .ico {
  width: 58px; height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  background: radial-gradient(circle at 30% 30%, rgba(232,192,122,0.16), transparent 70%);
}
.contact-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-card .lab {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 500;
}
.contact-card .num,
.contact-card .val {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--cream);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.address-line {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--cream-muted);
  font-size: 15px;
  line-height: 1.6;
}
.address-line .ph { color: var(--cream-faint); font-style: italic; }

/* ── CTA band ──────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band__bg { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(14,10,7,0.55) 0%, rgba(14,10,7,0.82) 55%, rgba(14,10,7,0.95) 100%);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band .display { font-size: clamp(40px, 7vw, 110px); }
.cta-band .lede { margin: 28px auto 40px; text-align: center; }

/* ── footer ────────────────────────────────────────────────── */
.footer {
  background: #080503;
  border-top: 1px solid var(--hairline-2);
  position: relative;
  z-index: 2;
  padding-block: clamp(56px, 7vw, 96px) 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer .brand .mark { font-size: 34px; }
.footer__tag {
  margin-top: 22px;
  color: var(--cream-muted);
  font-size: 14px;
  max-width: 34ch;
  line-height: 1.7;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 22px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer__col a, .footer__col li {
  color: var(--cream-muted);
  font-size: 15px;
  transition: color 300ms var(--ease);
}
.footer__col a:hover { color: var(--cream); }

/* legal button row — "buttons all the way down" */
.legal-bar {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 32px;
  border-top: 1px solid var(--hairline-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.legal-bar .legal-btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cream-muted);
  padding: 11px 20px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 360ms var(--ease);
}
.legal-bar .legal-btn:hover {
  color: var(--cream);
  border-color: var(--gold);
  background: rgba(212,161,74,0.06);
}
.legal-bar .spacer { flex: 1; }
.footer__copy {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cream-faint);
}
.footer__copy a { color: var(--cream-muted); text-decoration: underline; text-underline-offset: 3px; }

/* ── reveal animation primitives ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }
.reveal[data-d="6"] { transition-delay: 0.48s; }

.reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.3s var(--ease);
}
.reveal-img.in { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; transition: none; }
  .scroll-cue .line::after { animation: none; }
}

/* ── legal / content pages ─────────────────────────────────── */
.legal-page { padding-block: clamp(120px, 16vw, 200px) clamp(60px, 8vw, 120px); }
.legal-page .display { font-size: clamp(40px, 7vw, 84px); margin-bottom: 18px; }
.legal-page .kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cream-faint);
  margin-bottom: 56px;
}
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--cream);
  margin: 56px 0 18px;
}
.legal-content h3 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 36px 0 12px;
}
.legal-content p,
.legal-content li {
  color: var(--cream-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.legal-content a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: var(--cream); font-weight: 500; }
.legal-content .ph {
  color: var(--gold-soft);
  font-style: italic;
  background: rgba(212,161,74,0.08);
  padding: 1px 7px;
  border-radius: 4px;
  border: 1px dashed rgba(212,161,74,0.4);
}
.legal-content ul { padding-left: 22px; margin: 0 0 16px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 64px;
  transition: gap 300ms var(--ease), color 300ms var(--ease);
}
.back-link:hover { color: var(--gold-soft); gap: 16px; }

/* ── mobile nav ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .brand .divider, .brand .sub { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 0 40px;
    background: rgba(10, 7, 4, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--hairline);
    transform: translateX(100%);
    transition: transform 560ms var(--ease);
    z-index: 45;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links a:not(.btn) { font-size: 18px; letter-spacing: 0.1em; }
  .nav-links .btn { margin-top: 12px; }
}
