/* =====================================================================
   GOLD CUT KIRCHRODE — Design System
   Editorial · maskulin · dunkel · Gold-Akzent
   ===================================================================== */

/* ---------- Fonts ---------- */
@font-face { font-family: 'system-fallback'; src: local('Arial'); }

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --ink:        #0e0e10;
  --ink-800:    #141417;
  --ink-700:    #1a1a1f;
  --ink-600:    #23232a;
  --line:       #2c2c34;
  --line-soft:  rgba(244, 239, 230, 0.10);

  --cream:      #f4efe6;
  --cream-dim:  #c9c3b8;
  --muted:      #928c81;

  --gold:       #c69a4c;
  --gold-bright:#e4c078;
  --gold-deep:  #a97f34;
  --gold-glow:  rgba(198, 154, 76, 0.35);

  /* Typo */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'Courier New', monospace;

  /* Rhythm */
  --container: 1220px;
  --gutter: clamp(1.25rem, 4vw, 3.25rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);

  --radius: 4px;
  --radius-lg: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow: 0 30px 80px -40px rgba(0,0,0,0.85);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 820px; }
.section { padding-block: var(--section-y); position: relative; }
.grid { display: grid; gap: clamp(1.5rem, 3vw, 3rem); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.04; letter-spacing: -0.015em; }
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.9rem, 8vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h-xl { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 300; letter-spacing: -0.025em; }
.h-lg { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 400; }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 500; }
em, .italic { font-style: italic; }
.gold-text { color: var(--gold-bright); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow--center::before { display: none; }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--cream-dim); line-height: 1.6; font-weight: 400; }
.muted { color: var(--muted); }
.measure { max-width: 58ch; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  padding: 1.02rem 1.9rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--fg);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s ease;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.45), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px var(--gold-glow); }
.btn:hover::after { transform: translateX(120%); }
.btn--ghost {
  --bg: transparent; --fg: var(--cream);
  border: 1px solid var(--line);
}
.btn--ghost:hover { --fg: var(--ink); background: var(--cream); border-color: var(--cream); box-shadow: none; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-underline {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); display: inline-flex; align-items: center; gap: 0.6rem;
  padding-bottom: 3px; position: relative;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0.35); transform-origin: left; transition: transform 0.45s var(--ease);
}
.link-underline:hover { color: var(--gold-bright); }
.link-underline:hover::after { transform: scaleX(1); }
.link-underline .arrow { transition: transform 0.4s var(--ease); }
.link-underline:hover .arrow { transform: translateX(5px); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s ease, padding 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding-block: 1.4rem;
  transition: padding 0.5s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(12,12,14,0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.site-header.is-scrolled .site-header__inner { padding-block: 0.85rem; }

.brand { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.brand__logo { height: 30px; width: auto; filter: brightness(1.1); }
.brand__mark {
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.02em; line-height: 1;
  color: var(--cream);
}
.brand__mark b { color: var(--gold-bright); font-weight: 400; }
.brand__sub {
  display: block; font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav__list { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em; color: var(--cream-dim);
  position: relative; padding-block: 0.4rem; transition: color 0.3s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--cream); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { flex-shrink: 0; }
.nav__phone {
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.05em; color: var(--cream);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.nav__phone:hover { color: var(--gold-bright); }

.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 940px) {
  .nav { position: fixed; inset: 0; background: var(--ink-800);
    flex-direction: column; justify-content: center; gap: 0;
    transform: translateX(100%); transition: transform 0.6s var(--ease);
    z-index: 90; padding: 6rem var(--gutter) 3rem;
  }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__list li { width: 100%; border-bottom: 1px solid var(--line-soft); overflow: hidden; }
  .nav__link {
    font-family: var(--font-display); font-size: 2rem; padding: 1rem 0; display: block; width: 100%;
    opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s var(--ease);
  }
  body.nav-open .nav__link { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 60ms + 200ms); }
  .nav__cta { margin-top: 2rem; opacity: 0; transition: opacity 0.5s ease 0.6s; }
  body.nav-open .nav__cta { opacity: 1; }
  .nav__cta .btn { width: 100%; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 42px; height: 42px; z-index: 95; position: relative;
  }
  .nav-toggle span { display: block; height: 1.5px; width: 26px; background: var(--cream); transition: transform 0.4s var(--ease), opacity 0.3s ease; margin-left: auto; }
  .nav-toggle span:nth-child(2) { width: 20px; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 26px; }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 26px; }
  .nav__phone { font-size: 1rem; margin-top: 1.5rem; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,14,0.55) 0%, rgba(12,12,14,0.15) 30%, rgba(12,12,14,0.75) 78%, var(--ink) 100%),
    radial-gradient(120% 80% at 15% 90%, rgba(12,12,14,0.7), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: 9rem; }
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__title { margin-bottom: 1.8rem; max-width: 15ch; }
.hero__title .italic { color: var(--gold-bright); }
.hero__row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.hero__lead { max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__meta { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-end; text-align: right; }
.hero__meta-item { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--cream-dim); }
.hero__meta-item b { color: var(--gold-bright); font-weight: 400; }
@media (max-width: 720px) { .hero__meta { display: none; } }

.scroll-cue {
  position: absolute; left: var(--gutter); bottom: 1.8rem; z-index: 3;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 0.7rem;
}
.scroll-cue__line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: cueDrop 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cueDrop { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* Marquee ticker */
.ticker { border-block: 1px solid var(--line-soft); background: var(--ink-800); overflow: hidden; padding-block: 1.1rem; }
.ticker__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 34s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--cream-dim); display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap; }
.ticker__item::before { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   SECTION HEADS
   ===================================================================== */
.section-head { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 60ch; }
.section-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: none; gap: 2rem; }
.section-head--split .section-head__text { max-width: 46ch; }
.section-head--center { align-items: center; text-align: center; margin-inline: auto; }
.section-num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--muted); }
@media (max-width: 760px) { .section-head--split { flex-direction: column; align-items: flex-start; } }

/* =====================================================================
   INTRO / VALUE
   ===================================================================== */
.intro-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-figure { position: relative; }
.intro-figure img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; }
.intro-figure__badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--gold); color: var(--ink); padding: 1.4rem 1.6rem; border-radius: var(--radius);
  max-width: 210px; box-shadow: var(--shadow);
}
.intro-figure__badge b { font-family: var(--font-display); font-size: 2.6rem; display: block; line-height: 1; }
.intro-figure__badge span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 560px) { .intro-figure__badge { left: 1rem; right: 1rem; max-width: none; } }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.pill { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px; padding: 0.55rem 1.1rem; color: var(--cream-dim); }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
@media (max-width: 860px) { .services { grid-template-columns: 1fr; } }
.service {
  background: var(--ink); padding: clamp(2rem, 3.5vw, 3rem); position: relative; overflow: hidden;
  transition: background 0.5s var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease);
}
.service:hover { background: var(--ink-800); }
.service:hover::before { transform: scaleX(1); }
.service__num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.2em; }
.service__icon { width: 46px; height: 46px; margin: 1.8rem 0 1.4rem; color: var(--gold); }
.service__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; }
.service__title { font-size: 1.6rem; margin-bottom: 0.8rem; }
.service__text { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.6rem; }
.service__price { font-family: var(--font-mono); font-size: 0.82rem; color: var(--cream-dim); letter-spacing: 0.05em; }
.service__price b { color: var(--gold-bright); font-weight: 400; }

/* =====================================================================
   PRICE LIST
   ===================================================================== */
.pricelist { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4.5rem); }
@media (max-width: 800px) { .pricelist { grid-template-columns: 1fr; } }
.price-col__head { font-family: var(--font-display); font-size: 1.6rem; padding-bottom: 1.2rem; margin-bottom: 0.6rem; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.price-col__head span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.price-row { display: flex; align-items: baseline; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line-soft); }
.price-row__name { font-weight: 600; font-size: 1.02rem; }
.price-row__desc { color: var(--muted); font-size: 0.86rem; }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 20px; }
.price-row__price { font-family: var(--font-mono); font-size: 1rem; color: var(--gold-bright); white-space: nowrap; }

/* =====================================================================
   FEATURE / SPLIT
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 3/4; object-fit: cover; }
.split__media--wide img { aspect-ratio: 4/3; }

.feature-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.feature-item { display: flex; gap: 1.3rem; padding: 1.4rem 0; border-top: 1px solid var(--line-soft); }
.feature-item:last-child { border-bottom: 1px solid var(--line-soft); }
.feature-item__num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); padding-top: 0.35rem; }
.feature-item__title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.35rem; }
.feature-item__text { color: var(--muted); font-size: 0.94rem; }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--ink-800); padding: clamp(1.8rem, 3vw, 2.6rem); text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--cream); line-height: 1; }
.stat__num .gold-text { color: var(--gold-bright); }
.stat__label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.8rem; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(12,12,14,0.55)); opacity: 0; transition: opacity 0.5s ease; }
.gallery__item:hover::after { opacity: 1; }
.gallery__tag { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); opacity: 0; transform: translateY(8px); transition: all 0.5s var(--ease); }
.gallery__item:hover .gallery__tag { opacity: 1; transform: none; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 1; }
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials { position: relative; }
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .testi-track { grid-template-columns: 1fr; } }
.testi {
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.4rem);
  background: linear-gradient(180deg, var(--ink-800), var(--ink)); display: flex; flex-direction: column; gap: 1.4rem;
  transition: border-color 0.5s ease, transform 0.5s var(--ease);
}
.testi:hover { border-color: var(--line); transform: translateY(-4px); }
.testi__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; }
.testi__quote { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.4; color: var(--cream); font-style: italic; flex: 1; }
.testi__author { display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; }
.testi__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; flex-shrink: 0; }
.testi__author b { font-weight: 600; } .testi__author span { color: var(--muted); display: block; font-size: 0.78rem; }

/* =====================================================================
   JOURNAL CARDS
   ===================================================================== */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.2rem); }
@media (max-width: 860px) { .journal-grid { grid-template-columns: 1fr; } }
.jcard { display: flex; flex-direction: column; group: card; }
.jcard__media { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 3/2; margin-bottom: 1.4rem; position: relative; }
.jcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.jcard:hover .jcard__media img { transform: scale(1.06); }
.jcard__meta { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; display: flex; gap: 0.9rem; }
.jcard__meta span { color: var(--muted); }
.jcard__title { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.15; margin-bottom: 0.7rem; transition: color 0.3s ease; }
.jcard:hover .jcard__title { color: var(--gold-bright); }
.jcard__excerpt { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; flex: 1; }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(12,12,14,0.94) 0%, rgba(12,12,14,0.72) 55%, rgba(12,12,14,0.4) 100%); }
.cta-banner__inner { position: relative; z-index: 1; padding: clamp(3rem, 7vw, 6rem); max-width: 640px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink-800); border-top: 1px solid var(--line-soft); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line-soft); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand__mark { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; }
.footer-brand__mark b { color: var(--gold-bright); font-weight: 400; }
.footer-brand p { color: var(--muted); font-size: 0.94rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; font-weight: 400; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col address { color: var(--cream-dim); font-size: 0.94rem; font-style: normal; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-hours { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; padding: 0.4rem 0; border-bottom: 1px solid var(--line-soft); }
.footer-hours span:first-child { color: var(--cream-dim); } .footer-hours span:last-child { color: var(--muted); font-family: var(--font-mono); font-size: 0.82rem; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.8rem; }
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom nav a { color: var(--muted); font-size: 0.82rem; }
.footer-bottom nav a:hover { color: var(--cream); }
.social { display: flex; gap: 0.8rem; }
.social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--cream-dim); transition: all 0.4s var(--ease); }
.social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.social svg { width: 17px; height: 17px; }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero { padding-top: clamp(8rem, 14vw, 11rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; border-bottom: 1px solid var(--line-soft); }
.page-hero__eyebrow { margin-bottom: 1.5rem; }
.page-hero__title { max-width: 18ch; margin-bottom: 1.5rem; }
.page-hero__lead { max-width: 52ch; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; display: flex; gap: 0.6rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--line); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-info__item { display: flex; gap: 1.1rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--line-soft); }
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); flex-shrink: 0; }
.contact-info__icon svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.contact-info__label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.contact-info__value { font-size: 1.08rem; color: var(--cream); }
.contact-info__value a:hover { color: var(--gold-bright); }

.form { display: grid; gap: 1.3rem; }
.form-card { background: var(--ink-800); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3.5vw, 2.8rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); color: var(--cream);
  padding: 0.9rem 1rem; font: inherit; font-size: 0.98rem; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c69a4c' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form__note { font-size: 0.8rem; color: var(--muted); }
.form__success { display: none; padding: 1rem 1.2rem; border-radius: var(--radius); background: rgba(198,154,76,0.12); border: 1px solid var(--gold); color: var(--gold-bright); font-size: 0.92rem; }
.form__success.is-visible { display: block; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); margin-top: 2.5rem; }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(1) invert(0.9) contrast(0.85); }

/* =====================================================================
   ARTICLE
   ===================================================================== */
.article { max-width: 760px; margin-inline: auto; }
.article__hero-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/8; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.article__hero-img img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 1.12rem; line-height: 1.8; color: var(--cream-dim); }
.prose > * + * { margin-top: 1.5rem; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--cream); margin-top: 3rem; letter-spacing: -0.01em; }
.prose h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--cream); margin-top: 2.2rem; }
.prose p strong, .prose strong { color: var(--cream); font-weight: 600; }
.prose .lead-para { font-size: 1.3rem; line-height: 1.6; color: var(--cream); font-family: var(--font-display); font-weight: 300; }
.prose blockquote { border-left: 2px solid var(--gold); padding-left: 1.6rem; font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--cream); margin-block: 2.5rem; }
.prose ul.check { display: flex; flex-direction: column; gap: 0.8rem; }
.prose ul.check li { display: flex; gap: 0.8rem; }
.prose ul.check li::before { content: "✦"; color: var(--gold); flex-shrink: 0; }
.article__foot { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* =====================================================================
   LEGAL
   ===================================================================== */
.legal { max-width: 760px; }
.legal h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin-top: 2.5rem; margin-bottom: 0.8rem; }
.legal h3 { font-size: 1.05rem; color: var(--cream); margin-top: 1.6rem; margin-bottom: 0.4rem; font-family: var(--font-sans); font-weight: 700; }
.legal p, .legal address { color: var(--cream-dim); font-size: 1rem; line-height: 1.7; font-style: normal; margin-bottom: 0.8rem; }
.legal a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.09s; }
[data-reveal-delay="2"] { transition-delay: 0.18s; }
[data-reveal-delay="3"] { transition-delay: 0.27s; }
[data-reveal-delay="4"] { transition-delay: 0.36s; }

.split-lines { overflow: hidden; }
.split-lines .line { display: block; transform: translateY(102%); transition: transform 1s var(--ease); }
.split-lines.is-in .line { transform: none; }
.split-lines.is-in .line:nth-child(2) { transition-delay: 0.1s; }
.split-lines.is-in .line:nth-child(3) { transition-delay: 0.2s; }

/* Utilities */
.mt-sm { margin-top: 1rem; } .mt-md { margin-top: 2rem; } .mt-lg { margin-top: 3rem; }
.text-center { text-center: center; text-align: center; }
.divider { height: 1px; background: var(--line-soft); border: none; }
.badge-row { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; align-items: center; }
.badge-row__item { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; color: var(--muted); display: flex; align-items: center; gap: 0.6rem; }
.badge-row__item svg { width: 16px; height: 16px; color: var(--gold); }
