/* =========================================================
   AURUM LUXURY, Concept 1 : Maison Aurum
   Quiet luxury éditorial. Genève.
   ========================================================= */

:root {
  --bone:        #FAF7F2;
  --bone-2:      #F2EDE3;
  --bone-3:      #E8E1D2;
  --taupe:       #A8957D;
  --taupe-soft:  #BDAB94;
  --taupe-dark:  #8B7355;
  --brown:       #5C463A;
  --brown-deep:  #3D2E22;
  --ink:         #1A1410;
  --gold:        #C9A96E;
  --whatsapp:    #25D366;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --ease:        cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --grid-pad-mob: 24px;
  --grid-pad:     56px;

  --max: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
}
body.menu-open { overflow: hidden; }

/* Subtle film grain, luxury signature */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  z-index: 9000;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; }
input, select { font: inherit; color: inherit; background: transparent; border: none; outline: none; }

::selection { background: var(--taupe); color: var(--bone); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.serif { font-family: var(--serif); font-weight: 300; }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--brown-deep);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.022em;
  color: var(--brown-deep);
}
.display em { font-style: italic; color: var(--taupe-dark); font-weight: 300; }

.h-section {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.018em;
}
.h-section em { font-style: italic; color: var(--taupe-dark); }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--brown);
  max-width: 36em;
}

.body-md { font-size: 15px; line-height: 1.7; color: var(--brown); }

.caps-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

/* =========================================================
   LAYOUT
   ========================================================= */

.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--grid-pad-mob);
}
@media (min-width: 768px) { .shell { padding: 0 var(--grid-pad); } }

section { position: relative; padding: 80px 0; }
@media (min-width: 768px) { section { padding: 140px 0; } }

.divider {
  width: 100%;
  height: 1px;
  background: var(--bone-3);
  margin: 0;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--grid-pad-mob);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.over-dark:not(.scrolled) .nav-logo,
.nav.over-dark:not(.scrolled) .nav-links a,
.nav.over-dark:not(.scrolled) .nav-cta { color: var(--bone); }
.nav.over-dark:not(.scrolled) .nav-cta { border-color: var(--bone); }
.nav.over-dark:not(.scrolled) .nav-cta:hover { background: var(--bone); color: var(--brown-deep); border-color: var(--bone); }
.nav.over-dark:not(.scrolled) .burger span { background: var(--bone); }
.nav.over-dark:not(.scrolled) .nav-logo .dot { background: var(--taupe-soft); }
.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--grid-pad-mob);
  border-bottom: 1px solid var(--bone-3);
}
/* Once scrolled, always default styling regardless of over-dark */
@media (min-width: 768px) {
  .nav { padding: 28px var(--grid-pad); }
  .nav.scrolled { padding: 18px var(--grid-pad); }
}

.nav-logo {
  display: flex;
  align-items: center;
}
/* Mask-image technique : the <img> becomes a tinted mask of the SVG.
   Color is set via background-color, which can be inherited / themed via CSS variables. */
.nav-logo img {
  display: block;
  /* aurum-wordmark.webp ratio ≈ 7.74:1 */
  width: 132px; height: 17px;
  background-color: var(--brown-deep);
  -webkit-mask: url('../img/aurum-wordmark.webp') center/contain no-repeat;
          mask: url('../img/aurum-wordmark.webp') center/contain no-repeat;
  transition: width 0.4s var(--ease), height 0.4s var(--ease), background-color 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-logo:hover img { opacity: 0.82; }
.nav.scrolled .nav-logo img { width: 116px; height: 15px; }
@media (min-width: 768px) {
  .nav-logo img { width: 170px; height: 22px; }
  .nav.scrolled .nav-logo img { width: 140px; height: 18px; }
}
/* On dark hero : the logo turns cream */
.nav.over-dark:not(.scrolled) .nav-logo img { background-color: var(--bone); }

.nav-links {
  display: none;
  gap: 36px;
  list-style: none;
}
@media (min-width: 980px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--taupe);
  transition: right 0.45s var(--ease-out);
}
.nav-links a:hover { color: var(--taupe-dark); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--taupe-dark); }
.nav-links a.active::after { right: 0; }

.nav-cta {
  display: none;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown-deep);
  border: 1px solid var(--brown-deep);
  padding: 12px 22px;
  transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: var(--brown-deep); color: var(--bone); }
@media (min-width: 980px) { .nav-cta { display: inline-block; } }

/* Burger mobile */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0 10px 14px;
  z-index: 200;
}
@media (min-width: 980px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--brown-deep);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.menu-open .nav .burger span { background: var(--brown-deep) !important; }
body.menu-open .nav .nav-logo { color: var(--brown-deep) !important; }
body.menu-open .nav .nav-logo .dot { background: var(--taupe) !important; }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--grid-pad-mob);
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease);
}
body.menu-open .menu-overlay { transform: translateY(0); }
/* When the mobile menu is open, hide fixed bottom UI so it doesn't overlap the menu */
body.menu-open .cookie-banner,
body.menu-open .sticky-cta,
body.menu-open .whatsapp {
  opacity: 0 !important;
  pointer-events: none !important;
}
.menu-overlay ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-overlay a {
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 64px);
  line-height: 1.1;
  color: var(--brown-deep);
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease) calc(var(--i, 0) * 80ms),
              transform 0.6s var(--ease) calc(var(--i, 0) * 80ms);
}
.menu-overlay a span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--taupe);
  vertical-align: super;
  margin-right: 14px;
}
body.menu-open .menu-overlay a { opacity: 1; transform: translateY(0); }

.menu-foot {
  position: absolute;
  bottom: 32px; left: var(--grid-pad-mob); right: var(--grid-pad-mob);
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown);
}
/* Keep footer links small — they must not inherit the huge .menu-overlay a size */
.menu-foot a {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em;
  opacity: 1; transform: none;
}
/* Small, discreet language switcher inside the burger menu */
.menu-lang { display: inline-flex; align-items: center; gap: 10px; }
.menu-lang .on { color: var(--brown-deep); font-family: var(--mono); }
.menu-lang a { color: var(--taupe); transition: color 0.3s var(--ease); }
.menu-lang a:hover { color: var(--brown-deep); }

/* =========================================================
   LOADER
   ========================================================= */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-mark img {
  display: block;
  /* Loader uses the FULL logo (brushstroke + AURUM + LUXURY) for impact */
  /* aurum-full.webp ratio ≈ 0.566 (designer composition preserved) */
  height: clamp(220px, 32vw, 360px);
  width: clamp(125px, 18vw, 205px);
  background-color: var(--brown-deep);
  -webkit-mask: url('../img/aurum-full.webp') center/contain no-repeat;
          mask: url('../img/aurum-full.webp') center/contain no-repeat;
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  animation: loaderRise 1.2s var(--ease-out) 0.2s forwards;
}
@keyframes loaderRise { to { opacity: 1; transform: translateY(0) scale(1); } }

.loader-line {
  width: 0;
  height: 1px;
  background: var(--taupe);
  margin-top: 24px;
  animation: loaderLine 1.2s var(--ease-out) 0.5s forwards;
}
@keyframes loaderLine { to { width: 180px; } }

.loader-meta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--taupe-dark);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.6s var(--ease-out) 1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* =========================================================
   CURSOR
   ========================================================= */

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--taupe-dark);
  pointer-events: none;
  z-index: 9500;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s var(--ease), opacity 0.3s var(--ease);
  mix-blend-mode: multiply;
}
.cursor.hover {
  width: 56px; height: 56px;
  background: transparent;
  border: 1px solid var(--taupe-dark);
}
.cursor.hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--brown-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--brown-deep);
}
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: blur(3px) brightness(0.58) contrast(1.08) saturate(0.92);
  animation: heroZoom 14s var(--ease-out) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.14); }
  to   { transform: scale(1.06); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Radial vignette : darker center where the logo sits, edges keep some life */
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(15,10,6,0.55) 0%, rgba(15,10,6,0.25) 50%, rgba(15,10,6,0) 100%),
    /* Top + bottom gradient for header/footer text legibility */
    linear-gradient(180deg, rgba(15,10,6,0.55) 0%, rgba(15,10,6,0.15) 18%, rgba(15,10,6,0.15) 55%, rgba(15,10,6,0.85) 80%, rgba(15,10,6,0.94) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.hero-frame {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 100px var(--grid-pad-mob) 50px;
  color: var(--bone);
  gap: 24px;
}
@media (min-width: 768px) { .hero-frame { padding: 120px var(--grid-pad) 60px; } }
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--bone);
}

.hero-top .left { display: flex; gap: 24px; align-items: center; }
.hero-top .pulse {
  width: 6px; height: 6px;
  background: var(--taupe-soft);
  border-radius: 50%;
  position: relative;
}
.hero-top .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--taupe-soft);
  animation: pulse 2.4s var(--ease-out) infinite;
}
.hero-top .caps-num { color: var(--bone-2); }

.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* push the wordmark block down so the photo's Jet d'Eau sits above it */
  padding: 27vh 0 4vh;
  gap: 4px;
}
/* Hero wordmark — the real AURUM wordmark (masked, exact logo font), small & spaced, + LUXURY */
.hero-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  animation: heroLogoIn 1.6s var(--ease-out) 1.4s forwards;
}
.hw-mark {
  display: block;
  width: clamp(140px, 17vw, 250px);
  aspect-ratio: 7.74 / 1; /* AURUM wordmark proportions */
  height: auto;
  background-color: var(--bone);
  -webkit-mask: url('../img/aurum-wordmark.webp') center/contain no-repeat;
          mask: url('../img/aurum-wordmark.webp') center/contain no-repeat;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.55));
}
.hw-sub {
  font-family: var(--mono);
  font-size: clamp(9px, 0.95vw, 12px);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--taupe-soft);
  margin-top: 11px;
  text-indent: 0.55em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
@keyframes heroLogoIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-pitch {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 36px);
  color: var(--bone);
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-top: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.4s forwards;
}
.hero-pitch em { color: var(--taupe-soft); font-style: italic; }
.hero-pitch-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-2);
  margin-top: 14px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.6s forwards;
}
.hero-pitch-meta .dot { color: var(--taupe-soft); margin: 0 8px; }
.hero-cta-mid {
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.8s forwards;
}
.hero-cta-mid .cta {
  background: var(--bone);
  color: var(--brown-deep);
  padding: 18px 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), letter-spacing 0.4s var(--ease);
}
.hero-cta-mid .cta:hover {
  background: var(--taupe-soft);
  color: var(--brown-deep);
  letter-spacing: 0.34em;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  color: var(--bone);
  max-width: 14ch;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}
.hero-display .line { display: block; overflow: hidden; }
.hero-display .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroRise 1.1s var(--ease-out) forwards;
  animation-delay: 2.1s;
}
.hero-display .line:nth-child(2) span {
  animation-delay: 2.25s;
  color: var(--taupe-soft);
  font-style: italic;
}
.hero-display .line:nth-child(3) span { animation-delay: 2.4s; }
@keyframes heroRise { to { transform: translateY(0); } }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(250,247,242,0.18);
}
.hero-bottom .summary {
  max-width: 32em;
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--bone-2);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.9s forwards;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.hero-bottom .scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-2);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 3.1s forwards;
}
.hero-bottom .scroll .arrow {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--bone-2);
  position: relative;
  animation: scrollLine 2s var(--ease-out) infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleX(1); transform-origin: left; }
  50% { transform: scaleX(0.4); transform-origin: left; }
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Editorial photo strip */
.editorial-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .editorial-strip { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 32px; padding: 140px 0; align-items: end; }
}
.ed-tile { position: relative; overflow: hidden; }
.ed-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95) contrast(1.05);
  transition: transform 1.4s var(--ease);
}
.ed-tile:hover img { transform: scale(1.05); }
.ed-tile:nth-child(1) { aspect-ratio: 4/5; }
.ed-tile:nth-child(2) { aspect-ratio: 3/4; }
.ed-tile:nth-child(3) { aspect-ratio: 5/6; }
.ed-tile .cap {
  position: absolute;
  bottom: 18px; left: 20px; right: 20px;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  z-index: 2;
}
.ed-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(61,46,34,0.5) 100%);
  z-index: 1;
}

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--bone-3);
  border-bottom: 1px solid var(--bone-3);
  padding: 22px 0;
  background: var(--bone);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 300;
  color: var(--brown-deep);
  font-style: italic;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .sep {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--taupe);
  font-size: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   INTRO BLOCK
   ========================================================= */

.intro {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .intro { grid-template-columns: 1fr 2fr; gap: 80px; }
}
.intro .label {
  display: flex; flex-direction: column; gap: 14px;
}
.intro .label .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--taupe);
}
.intro .label .word {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brown);
}

.intro .body p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.4;
  color: var(--brown-deep);
  font-weight: 300;
  margin-bottom: 18px;
}
.intro .body p em { color: var(--taupe-dark); font-style: italic; }
.intro .body .signature {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

/* =========================================================
   SERVICES, chapters
   ========================================================= */

.services { background: var(--bone-2); }
.services .shell { display: flex; flex-direction: column; gap: 60px; }
@media (min-width: 768px) { .services .shell { gap: 0; } }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}
.section-head .h-section { max-width: 14ch; }

.chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--bone-3);
  align-items: start;
  position: relative;
  cursor: pointer;
  transition: padding 0.6s var(--ease);
}
.chapter:last-child { border-bottom: 1px solid var(--bone-3); }
@media (min-width: 768px) {
  .chapter {
    grid-template-columns: 80px 2fr 3fr 1fr;
    gap: 40px;
    padding: 56px 0;
  }
}
.chapter .roman {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  font-style: italic;
  color: var(--taupe);
  letter-spacing: 0.05em;
}
.chapter .title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.05;
  color: var(--brown-deep);
  font-weight: 300;
  letter-spacing: -0.01em;
  transition: transform 0.5s var(--ease), color 0.5s var(--ease);
}
.chapter .title em { font-style: italic; color: var(--taupe-dark); }
.chapter .desc {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--brown);
}
.chapter .desc ul {
  list-style: none;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.9;
  color: var(--brown);
}
.chapter .desc ul li::before {
  content: "·";
  display: inline-block;
  margin-right: 12px;
  color: var(--taupe);
}
.chapter .arrow {
  align-self: end;
  justify-self: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--taupe-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.4s var(--ease);
}
.chapter:hover .title { transform: translateX(8px); color: var(--taupe-dark); }
.chapter:hover .arrow { gap: 18px; }

/* =========================================================
   FLEET
   ========================================================= */

.fleet-head {
  display: flex; flex-direction: column; gap: 20px; margin-bottom: 60px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 768px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 80px 60px; }
}
@media (min-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}

.car-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}
.car-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bone-3);
  overflow: hidden;
}
.car-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95) contrast(1.05);
  transition: transform 1.4s var(--ease), filter 0.8s var(--ease);
}
.car-card:hover .car-visual img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1) contrast(1.05);
}
.car-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(61,46,34,0) 30%, rgba(61,46,34,0.55) 100%),
    linear-gradient(0deg, rgba(168,149,125,0.15), rgba(168,149,125,0.15));
  z-index: 1;
  pointer-events: none;
}
.car-visual .car-overlay-name {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 3;
  color: var(--bone);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  pointer-events: none;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
.car-visual .car-overlay-name em {
  font-style: italic;
  color: var(--bone-2);
  display: block;
}
.car-visual .car-tag, .car-visual .car-num { z-index: 3; }
.car-visual .car-tag { color: var(--bone); text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.car-visual .car-num { color: var(--bone); text-shadow: 0 2px 18px rgba(0,0,0,0.3); }
.car-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--taupe-dark);
  text-transform: uppercase;
  z-index: 2;
}
.car-num {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--taupe);
  z-index: 2;
}
.car-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.car-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1.1;
}
.car-name em { font-style: italic; color: var(--taupe-dark); }
.car-meta {
  display: flex;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-top: 4px;
}
.car-rate {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--brown);
  margin-top: 6px;
}
.car-rate strong { font-weight: 400; color: var(--brown-deep); }

/* =========================================================
   BOOKING / CALCULATOR
   ========================================================= */

.booking {
  background: var(--bone);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (min-width: 1024px) {
  .booking-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--bone-3);
  padding-bottom: 14px;
  position: relative;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}
.field input, .field select {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--brown-deep);
  width: 100%;
  padding: 4px 0;
}
.field input::placeholder { color: var(--taupe-soft); font-style: italic; }
.field.row { flex-direction: row; align-items: end; gap: 16px; }

.suggestions {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bone);
  border: 1px solid var(--bone-3);
  border-top: none;
  z-index: 30;
  max-height: 240px;
  overflow-y: auto;
  display: none;
}
.suggestions.open { display: block; }
.suggestions div {
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--brown);
  cursor: pointer;
  border-bottom: 1px solid var(--bone-2);
  transition: background 0.2s, color 0.2s;
}
.suggestions div:hover { background: var(--bone-2); color: var(--brown-deep); }

.toggle-group {
  display: flex;
  border: 1px solid var(--bone-3);
}
.toggle-group button {
  flex: 1;
  padding: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.toggle-group button.active {
  background: var(--brown-deep);
  color: var(--bone);
}
.toggle-group-4 { flex-wrap: wrap; }
.toggle-group-4 button { flex: 1 1 calc(50% - 1px); min-width: calc(50% - 1px); border: 1px solid var(--bone-3); border-right: none; border-bottom: none; padding: 12px; font-size: 9px; }
.toggle-group-4 button:nth-child(2n) { border-right: 1px solid var(--bone-3); }
.toggle-group-4 button:nth-last-child(-n+2) { border-bottom: 1px solid var(--bone-3); }
@media (min-width: 700px) {
  .toggle-group-4 button { flex: 1 1 25%; min-width: 25%; border-right: none; border-bottom: 1px solid var(--bone-3); border-top: 1px solid var(--bone-3); }
  .toggle-group-4 button:first-child { border-left: 1px solid var(--bone-3); }
  .toggle-group-4 button:last-child { border-right: 1px solid var(--bone-3); }
  .toggle-group-4 button { border: 1px solid var(--bone-3); border-right: none; }
  .toggle-group-4 button:last-child { border-right: 1px solid var(--bone-3); }
}

/* Quick trips */
.quick-trips {
  display: flex; flex-direction: column; gap: 12px;
  padding: 18px; background: var(--bone-2); margin-bottom: 8px;
}
.quick-trips .qt-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe-dark);
}
.quick-trips .qt-buttons {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.quick-trips .qt-buttons button {
  font-family: var(--serif); font-size: 14px; color: var(--brown-deep);
  background: var(--bone); border: 1px solid var(--bone-3);
  padding: 10px 16px; cursor: pointer; transition: all 0.3s var(--ease);
}
.quick-trips .qt-buttons button:hover { border-color: var(--taupe); background: var(--bone); color: var(--taupe-dark); }

.cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--brown-deep);
  padding: 22px 36px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  align-self: flex-start;
  transition: background 0.4s var(--ease), letter-spacing 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.cta:hover { background: var(--taupe-dark); letter-spacing: 0.34em; }
.cta.secondary { background: transparent; color: var(--brown-deep); border: 1px solid var(--brown-deep); }
.cta.secondary:hover { background: var(--brown-deep); color: var(--bone); }

/* Estimate panel */
.estimate {
  background: var(--bone-2);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) { .estimate { padding: 48px 40px; } }
@media (min-width: 1024px) {
  .estimate {
    position: sticky;
    top: 100px;
    min-height: 480px;
  }
}

.estimate-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--bone-3);
  padding-bottom: 20px;
}
.estimate-head .h {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--brown-deep);
  font-style: italic;
}
.estimate-head .ref {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--taupe-dark);
  text-transform: uppercase;
}

.estimate-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  text-align: center;
  gap: 16px;
  color: var(--taupe-dark);
  padding: 40px 20px;
}
.estimate-empty .ic {
  width: 48px; height: 48px;
  border: 1px solid var(--taupe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--taupe);
}
.estimate-empty p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--brown);
  max-width: 28ch;
}

.estimate-body { display: none; flex-direction: column; gap: 24px; flex: 1; }
.estimate-body.show { display: flex; }

.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--bone-3);
  padding-bottom: 14px;
}
.estimate-row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}
.estimate-row .v {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--brown-deep);
}

.estimate-vehicle {
  margin-top: 4px;
}
.estimate-vehicle .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 12px;
}
.veh-pick {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
/* Rich vehicle cards (with thumbnail) */
.veh-card-mini {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: var(--bone);
  border: 1px solid var(--bone-3);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
  font: inherit;
  color: inherit;
  position: relative;
}
.veh-card-mini:hover {
  border-color: var(--taupe);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(61, 46, 34, 0.06);
}
.veh-card-mini.active {
  border-color: var(--brown-deep);
  background: var(--bone-2);
  box-shadow: 0 8px 24px rgba(61, 46, 34, 0.12);
}
.veh-card-mini.active::before {
  content: "✓";
  position: absolute;
  top: -10px; right: -10px;
  width: 24px; height: 24px;
  background: var(--brown-deep);
  color: var(--bone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  z-index: 2;
}
.veh-card-mini .vc-img {
  width: 56px; height: 42px;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-3);
  filter: saturate(0.92) brightness(0.95);
  transition: filter 0.3s;
}
.veh-card-mini:hover .vc-img,
.veh-card-mini.active .vc-img { filter: saturate(1) brightness(1); }
.veh-card-mini .vc-info { min-width: 0; overflow: hidden; }
.veh-card-mini .vc-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.veh-card-mini .vc-meta {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.veh-card-mini .vc-price { text-align: right; }
.veh-card-mini .vc-price-amount {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--brown-deep);
  line-height: 1;
  white-space: nowrap;
}
.veh-card-mini .vc-price-amount .vc-price-cur {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--taupe-dark);
  margin-left: 4px;
}
.veh-card-mini .vc-price-min {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  background: var(--bone-3);
  padding: 3px 6px;
  border-radius: 2px;
}
.veh-card-mini.active .vc-price-min {
  background: var(--taupe);
  color: var(--bone);
}

/* Min-fare note in the disclaimer area */
.estimate-min-note {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--brown);
  background: var(--bone-2);
  padding: 12px 16px;
  border-left: 2px solid var(--taupe);
  margin-top: 4px;
}

/* Total price : add a subtle pulse on price change */
.estimate-total .price {
  transition: color 0.3s var(--ease);
}
.estimate-total .price.flash {
  animation: priceFlash 0.45s var(--ease-out);
}
@keyframes priceFlash {
  0% { transform: scale(1); color: var(--brown-deep); }
  40% { transform: scale(1.04); color: var(--taupe-dark); }
  100% { transform: scale(1); color: var(--brown-deep); }
}

.estimate-total {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 24px;
  border-top: 1px solid var(--brown-deep);
}
.estimate-total .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown-deep);
}
.estimate-total .price {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1;
}
.estimate-total .price .cur { font-size: 0.5em; color: var(--taupe-dark); margin-right: 6px; font-style: italic; }

.estimate-disclaimer {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
  color: var(--brown);
  font-style: italic;
}

/* =========================================================
   MANIFESTO / QUOTE
   ========================================================= */

.manifesto {
  background: var(--brown-deep);
  color: var(--bone);
  padding: 120px 0;
  text-align: center;
}
.manifesto blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.3;
  color: var(--bone);
  max-width: 22ch;
  margin: 0 auto;
  font-style: italic;
}
.manifesto blockquote em {
  color: var(--taupe-soft);
  font-style: italic;
}
.manifesto cite {
  display: block;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--taupe-soft);
  font-style: normal;
  text-transform: uppercase;
}
.manifesto cite::before { content: "· "; }

/* =========================================================
   COVERAGE, Map of Europe / Switzerland
   ========================================================= */

.coverage {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .coverage { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.coverage-text h2 { margin-bottom: 20px; }
.coverage-text p { color: var(--brown); margin-bottom: 24px; max-width: 32em; }
.coverage-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 30px;
  margin-top: 30px;
  border-top: 1px solid var(--bone-3);
  padding-top: 24px;
}
.coverage-list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 8px 0;
  border-bottom: 1px solid var(--bone-3);
  display: flex; justify-content: space-between;
}
.coverage-list li span { color: var(--taupe); }

.coverage-map {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.coverage-map svg { width: 100%; height: 100%; }

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--bone);
  border-top: 1px solid var(--bone-3);
  padding: 100px 0 40px;
}
.footer-display {
  display: flex;
  justify-content: center;
  margin: 40px 0 70px;
}
.footer-display img {
  display: block;
  /* aurum-wordmark.webp ratio ≈ 7.74:1 */
  width: clamp(380px, 56vw, 740px);
  height: clamp(50px, 7vw, 96px);
  background-color: var(--brown-deep);
  -webkit-mask: url('../img/aurum-wordmark.webp') center/contain no-repeat;
          mask: url('../img/aurum-wordmark.webp') center/contain no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--bone-3);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--taupe-dark); }

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--bone-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}
.footer-bottom .clock { color: var(--brown-deep); }
.footer-bot-left, .footer-bot-right {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.footer-bot-right a {
  color: var(--taupe-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.footer-bot-right a:hover { color: var(--brown-deep); border-color: var(--taupe); }
.legal-line {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown);
  line-height: 1.4;
}
.legal-line span { color: var(--taupe-dark); margin-left: 4px; }

/* =========================================================
   PAGE TRANSITION (brown curtain)
   ========================================================= */
.page-transition {
  position: fixed; inset: 0;
  z-index: 9800;
  background: var(--brown-deep);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.page-transition.in {
  transform: translateY(0);
  pointer-events: auto;
}
.page-transition.out {
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-transition .pt-mark {
  width: 80px; height: 1px;
  background: var(--taupe-soft);
  position: relative;
  opacity: 0;
  transition: opacity 0.3s 0.15s;
}
.page-transition.in .pt-mark { opacity: 1; }
.page-transition .pt-mark::after {
  content: "";
  position: absolute;
  top: -3px; left: 50%;
  width: 7px; height: 7px;
  background: var(--taupe-soft);
  transform: translateX(-50%) rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
  .page-transition { transition: none; transform: translateY(-100%); }
}

/* =========================================================
   STICKY CTA BAR (after first scroll past hero)
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 480;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--brown-deep);
  color: var(--bone);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(15, 10, 6, 0.25), 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.55s var(--ease-out), opacity 0.4s var(--ease-out);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  overflow: hidden;
}
.sticky-cta.show { transform: translateY(0); opacity: 1; }
.sticky-cta a, .sticky-cta button {
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s var(--ease);
  white-space: nowrap;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}
.sticky-cta a:hover, .sticky-cta button:hover { background: rgba(255,255,255,0.08); }
.sticky-cta .sep {
  width: 1px;
  background: rgba(244,247,242,0.18);
  align-self: stretch;
  margin: 10px 0;
}
.sticky-cta .ic-wa, .sticky-cta .ic-tel, .sticky-cta .ic-est {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
}
.sticky-cta .ic-wa svg { width: 16px; height: 16px; fill: var(--whatsapp); }
.sticky-cta .ic-tel svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }
.sticky-cta .label-mobile-only { display: inline; }
.sticky-cta .label-desktop-only { display: none; }
@media (min-width: 700px) {
  .sticky-cta .label-mobile-only { display: none; }
  .sticky-cta .label-desktop-only { display: inline; }
}
@media (max-width: 699px) {
  .sticky-cta {
    left: 16px; right: 16px;
    bottom: 16px;
    border-radius: 999px;
    justify-content: center;
  }
  .sticky-cta a, .sticky-cta button {
    padding: 14px 16px;
    flex: 1;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .sticky-cta .sep { margin: 8px 0; }
}

/* When sticky CTA is visible, hide the WhatsApp FAB to avoid duplicate */
body.sticky-cta-visible .whatsapp { opacity: 0; pointer-events: none; transition: opacity 0.3s; }

/* =========================================================
   TRUST MICRO-SIGNALS (under CTAs)
   ========================================================= */
.trust-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  flex-wrap: wrap;
}
.trust-mini .dot { color: var(--taupe); }
.trust-mini .check {
  display: inline-flex; align-items: center; gap: 6px;
}
.trust-mini .check::before {
  content: "✓";
  display: inline-block;
  color: var(--taupe-dark);
  font-family: var(--serif);
  font-size: 13px;
}
.trust-mini.center { justify-content: center; }
.trust-mini.dark { color: var(--bone-2); }
.trust-mini.dark .check::before { color: var(--taupe-soft); }

/* Hero variant */
.hero-cta-mid + .trust-mini {
  justify-content: center;
  margin-top: 18px;
  color: var(--bone-2);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-cta-mid + .trust-mini .check::before { color: var(--taupe-soft); }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 600;
  max-width: 880px;
  margin: 0 auto;
  background: var(--brown-deep);
  color: var(--bone);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 60px rgba(15, 10, 6, 0.4);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  border-top: 2px solid var(--taupe);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
@media (min-width: 700px) {
  .cookie-banner { flex-direction: row; align-items: center; padding: 22px 30px; gap: 30px; bottom: 24px; left: 24px; right: 24px; }
}
.cookie-banner .cb-text { flex: 1; color: var(--bone-2); }
.cookie-banner .cb-text strong { color: var(--bone); display: block; margin-bottom: 4px; font-weight: 400; font-family: var(--serif); font-size: 16px; }
.cookie-banner .cb-text a { color: var(--taupe-soft); border-bottom: 1px solid currentColor; }
.cookie-banner .cb-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cb {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid var(--bone);
  background: transparent;
  color: var(--bone);
}
.btn-cb.refuse { color: var(--bone-2); border-color: rgba(244,247,242,0.4); }
.btn-cb.refuse:hover { background: rgba(244,247,242,0.1); color: var(--bone); }
.btn-cb.accept { background: var(--bone); color: var(--brown-deep); border-color: var(--bone); }
.btn-cb.accept:hover { background: var(--taupe-soft); color: var(--brown-deep); border-color: var(--taupe-soft); }

/* =========================================================
   LEGAL PAGES (mentions, CGV, conf, cookies)
   ========================================================= */
.legal-stage {
  background: var(--bone);
  padding: 40px 0 100px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--grid-pad-mob);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown-deep);
}
@media (min-width: 768px) { .legal-content { padding: 0 var(--grid-pad); } }
.legal-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.01em;
  margin: 50px 0 16px;
  color: var(--brown-deep);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  margin: 30px 0 10px;
  color: var(--brown-deep);
}
.legal-content p { margin-bottom: 16px; color: var(--brown); }
.legal-content ul, .legal-content ol {
  margin: 16px 0 16px 28px;
  color: var(--brown);
}
.legal-content ul li, .legal-content ol li { margin-bottom: 8px; }
.legal-content a {
  color: var(--taupe-dark);
  border-bottom: 1px solid var(--taupe);
  transition: color 0.3s;
}
.legal-content a:hover { color: var(--brown-deep); }
.legal-content .upd {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bone-3);
}
.legal-content .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  font-family: var(--sans);
}
.legal-content .legal-table th, .legal-content .legal-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--bone-3);
  color: var(--brown);
}
.legal-content .legal-table th {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-dark); font-weight: 400;
}
.footer-col .addr p { font-family: var(--serif); font-size: 16px; color: var(--brown); font-weight: 300; line-height: 1.45; margin-top: 4px; }

/* =========================================================
   WHATSAPP FAB
   ========================================================= */

.whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--brown-deep);
  color: var(--bone);
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(61, 46, 34, 0.25);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.whatsapp:hover { transform: translateY(-3px); background: var(--taupe-dark); }
.whatsapp .ic {
  width: 28px; height: 28px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.whatsapp .ic svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .whatsapp { padding: 14px; right: 18px; bottom: 18px; }
  .whatsapp .label { display: none; }
}

/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.reveal-line.in > span { transform: translateY(0); }

.reveal-mask {
  position: relative;
  overflow: hidden;
}
.reveal-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--taupe);
  transform-origin: right;
  transition: transform 1.1s var(--ease-out);
}
.reveal-mask.in::after { transform: scaleX(0); }

/* =========================================================
   PAGE INTRO (sub-pages)
   ========================================================= */

.page-intro {
  padding: 140px var(--grid-pad-mob) 60px;
}
@media (min-width: 768px) {
  .page-intro { padding: 180px var(--grid-pad) 80px; }
}

.page-banner {
  width: 100%;
  height: clamp(220px, 32vh, 380px);
  overflow: hidden;
  position: relative;
  background: var(--brown-deep);
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
}
.page-banner img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.82) brightness(0.9) contrast(1.04);
  transform: scale(1.06);
  animation: heroZoom 20s var(--ease-out) forwards;
}
/* Cinematic, brand-toned overlay : deep at top & bottom + soft side vignette,
   so any subject emerges from shadow and every page reads as one atmosphere. */
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,18,11,0.66) 0%, rgba(26,18,11,0.12) 26%, rgba(26,18,11,0.08) 56%, rgba(26,18,11,0.9) 100%),
    radial-gradient(135% 92% at 50% 36%, rgba(0,0,0,0) 50%, rgba(20,13,8,0.5) 100%);
}
.page-banner .cap {
  position: absolute;
  bottom: 26px; left: var(--grid-pad-mob);
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 1px 16px rgba(0,0,0,0.55);
  z-index: 2;
}
.page-banner .cap::before {
  content: "";
  width: 28px; height: 1px;
  background: #C9A96E;
  flex: none;
}
@media (min-width: 768px) {
  .page-banner .cap { left: var(--grid-pad); bottom: 32px; }
}

/* =========================================================
   PAGE HERO — full-bleed cinematic header (interior pages)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: clamp(460px, 74vh, 800px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brown-deep);
  isolation: isolate;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  transform: scale(1.06);
  animation: pageHeroZoom 18s var(--ease-out) forwards;
  filter: saturate(0.8) contrast(1.02) brightness(0.8) blur(2px);
}
/* cinematic gradient : darker on the text side (left) + top/bottom + soft vignette */
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,9,5,0.62) 0%, rgba(14,9,5,0.2) 40%, rgba(14,9,5,0) 68%),
    linear-gradient(180deg, rgba(18,12,7,0.5) 0%, rgba(18,12,7,0.12) 24%, rgba(18,12,7,0.34) 56%, rgba(15,10,6,0.96) 100%),
    radial-gradient(150% 115% at 24% 62%, rgba(0,0,0,0) 32%, rgba(12,8,4,0.5) 100%);
}
/* thin champagne couture frame */
.page-hero::before {
  content: ""; position: absolute; z-index: 2;
  inset: clamp(14px, 1.8vw, 28px);
  border: 1px solid rgba(201,169,110,0.20);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  padding-bottom: clamp(46px, 8vh, 96px);
  color: var(--bone);
}
.page-hero .crumb {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(250, 247, 242, 0.82);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
  margin-bottom: clamp(16px, 2.4vh, 26px);
}
.page-hero .crumb::before { content: ""; width: 34px; height: 1px; background: #C9A96E; flex: none; }
.page-hero .crumb strong { color: var(--bone) !important; font-weight: 400; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(46px, 8.6vw, 132px);
  line-height: 0.95; letter-spacing: -0.024em;
  color: var(--bone); margin: 0;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}
.page-hero h1 em { font-style: italic; color: #dcc6a1; }
.page-hero .lede {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(16px, 1.5vw, 21px); line-height: 1.6;
  color: rgba(250, 247, 242, 0.85);
  max-width: 46ch; margin-top: clamp(18px, 2.6vh, 30px);
}
.page-hero .crumb,
.page-hero h1,
.page-hero .lede {
  opacity: 0; transform: translateY(28px);
  animation: pageHeroIn 1.05s var(--ease-out) forwards;
}
.page-hero h1 { animation-delay: 0.12s; }
.page-hero .lede { animation-delay: 0.26s; }
@keyframes pageHeroIn { to { opacity: 1; transform: none; } }
@keyframes pageHeroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }

.page-intro .crumb {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 30px;
}
.page-intro h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--brown-deep);
}
.page-intro h1 em { font-style: italic; color: var(--taupe-dark); }
.page-intro .lede { margin-top: 40px; }

/* =========================================================
   HERO VIDEO BG
   ========================================================= */
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.78) contrast(1.06) saturate(0.92);
}

/* =========================================================
   TRUST STRIP (just below hero)
   ========================================================= */
.trust-strip {
  background: var(--brown-deep);
  color: var(--bone);
  padding: 18px 0;
  border-top: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-2);
  align-items: center;
  animation: trustMarq 38s linear infinite;
}
.trust-track .item { display: inline-flex; align-items: center; gap: 50px; }
.trust-track .star { color: var(--gold); letter-spacing: 0; font-family: var(--serif); font-style: italic; font-size: 14px; }
.trust-track .sep { color: var(--taupe); }
.trust-track .acc { color: var(--gold); font-family: var(--serif); font-style: italic; letter-spacing: 0; font-size: 14px; }
@keyframes trustMarq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   BOOK NOW (homepage embedded calculator)
   ========================================================= */
.booknow {
  background: var(--bone);
  padding: 100px 0;
  border-bottom: 1px solid var(--bone-3);
}
.booknow .head {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; margin-bottom: 50px;
}
.booknow .head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.booknow .head h2 em { font-style: italic; color: var(--taupe-dark); }
.booknow .head .sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brown);
  font-size: 17px;
}

.booknow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .booknow-grid { grid-template-columns: 1.05fr 1fr; gap: 50px; }
}

/* =========================================================
   FLEET STRIP, 3 cards horizontal
   ========================================================= */
.fleet-strip {
  background: var(--bone);
  padding: 100px 0;
}
.fleet-strip .head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 20px; margin-bottom: 50px;
}
.fleet-strip .head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.fleet-strip .head h2 em { font-style: italic; color: var(--taupe-dark); }

/* =========================================================
   SERVICE TILES (compact, 4 cards)
   ========================================================= */
.svc-tiles-stage {
  background: var(--bone-2);
  padding: 100px 0;
}
.svc-tiles-stage .head {
  display: flex; flex-direction: column; gap: 14px;
  text-align: center; align-items: center; margin-bottom: 60px;
}
.svc-tiles-stage .head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.svc-tiles-stage .head h2 em { font-style: italic; color: var(--taupe-dark); }
.svc-tiles-stage .head .sub {
  font-family: var(--serif); font-style: italic; color: var(--brown); font-size: 17px;
  max-width: 36em;
}

.svc-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .svc-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .svc-tiles { grid-template-columns: repeat(4, 1fr); } }

.svc-tile {
  background: var(--bone);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.svc-tile:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(61, 46, 34, 0.08); }
.svc-tile .img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bone-3);
}
.svc-tile .img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
  transition: transform 1.4s var(--ease);
}
.svc-tile:hover .img img { transform: scale(1.05); }
.svc-tile .body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-tile .body .num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe);
}
.svc-tile .body h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.1;
  color: var(--brown-deep);
}
.svc-tile .body h3 em { font-style: italic; color: var(--taupe-dark); }
.svc-tile .body p {
  font-family: var(--sans); font-size: 13px; line-height: 1.5; color: var(--brown);
}
.svc-tile .body .arrow {
  margin-top: auto;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe-dark);
  display: inline-flex; align-items: center; gap: 10px; padding-top: 14px;
  transition: gap 0.4s var(--ease);
}
.svc-tile:hover .body .arrow { gap: 18px; color: var(--brown-deep); }

/* =========================================================
   STICKY-SCROLL SERVICES (4 chapters in 1 tall section)
   ========================================================= */
.svc-scroll {
  background: var(--bone-2);
  padding: 80px 0 0;
  position: relative;
}
.svc-scroll-head {
  text-align: center;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
  margin-bottom: 60px;
}
.svc-scroll-head h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05; letter-spacing: -0.018em;
}
.svc-scroll-head h2 em { font-style: italic; color: var(--taupe-dark); }
.svc-scroll-head .sub {
  font-family: var(--serif); font-style: italic; color: var(--brown); font-size: 17px;
  max-width: 36em;
}

.svc-scroll-stage {
  /* On mobile : sequential. On desktop : sticky with scroll */
}
/* Sticky photo column is desktop-only : hide on mobile (mobile uses .step-photo-mobile) */
.svc-photos { display: none; }
.svc-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 60px var(--grid-pad-mob);
  border-bottom: 1px solid rgba(168, 149, 125, 0.18);
}
@media (min-width: 900px) {
  .svc-scroll-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0;
    padding: 0 var(--grid-pad);
  }
  /* Left column : sticky photo */
  .svc-photos {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    max-height: 720px;
    display: block;
    overflow: hidden;
    background: var(--bone-3);
  }
  .svc-photos .svc-photo-frame {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    background-position: center;
    background-size: cover;
  }
  .svc-photos .svc-photo-frame.active { opacity: 1; }
  .svc-photos::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,10,6,0) 60%, rgba(15,10,6,0.4) 100%);
    z-index: 1; pointer-events: none;
  }
  .svc-photos .svc-photo-cap {
    position: absolute;
    bottom: 26px; left: 26px;
    color: var(--bone);
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  .svc-photos .svc-photo-num {
    position: absolute;
    top: 26px; left: 26px;
    color: var(--bone);
    font-family: var(--serif); font-style: italic; font-size: 26px;
    z-index: 2;
    text-shadow: 0 2px 18px rgba(0,0,0,0.4);
  }

  /* Right column : scrolling steps */
  .svc-steps {
    display: flex; flex-direction: column;
  }
  .svc-step {
    grid-template-columns: 1fr;
    padding: 100px 60px 100px 60px;
    min-height: 80vh;
    border-bottom: none;
    display: flex; flex-direction: column; justify-content: center;
  }
}

.svc-step .step-meta {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe-dark);
}
.svc-step .step-meta .step-num {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--taupe);
  letter-spacing: 0;
}
.svc-step h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--brown-deep);
  margin: 18px 0 18px;
}
.svc-step h3 em { font-style: italic; color: var(--taupe-dark); }
.svc-step p {
  font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--brown);
  max-width: 32em;
}
.svc-step .features {
  list-style: none;
  margin-top: 22px;
  border-top: 1px solid rgba(168,149,125,0.25);
}
.svc-step .features li {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(168,149,125,0.25);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown);
}
.svc-step .features li .n { color: var(--taupe); font-family: var(--serif); font-style: italic; font-size: 13px; letter-spacing: 0; text-transform: none; }
.svc-step .step-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brown-deep);
  padding: 14px 24px;
  border: 1px solid var(--brown-deep);
  align-self: flex-start;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), gap 0.4s var(--ease);
  text-decoration: none;
}
.svc-step .step-cta:hover { background: var(--brown-deep); color: var(--bone); gap: 18px; }

/* Mobile photo for svc-step (since sticky doesn't work on mobile single col) */
.svc-step .step-photo-mobile {
  aspect-ratio: 4/5;
  background-position: center; background-size: cover;
  position: relative;
}
.svc-step .step-photo-mobile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,10,6,0) 60%, rgba(15,10,6,0.4) 100%);
}
@media (min-width: 900px) {
  .svc-step .step-photo-mobile { display: none; }
}

/* =========================================================
   HORIZONTAL FLEET (desktop scroll-snap)
   ========================================================= */
@media (min-width: 900px) {
  .fleet-strip-h .fleet-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    gap: 24px;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--grid-pad);
    padding: 10px 0 30px;
    margin: 0 calc(-1 * var(--grid-pad));
    padding-left: var(--grid-pad);
    padding-right: var(--grid-pad);
    grid-template-columns: none;
  }
  .fleet-strip-h .fleet-grid::-webkit-scrollbar { height: 4px; }
  .fleet-strip-h .fleet-grid::-webkit-scrollbar-track { background: var(--bone-3); }
  .fleet-strip-h .fleet-grid::-webkit-scrollbar-thumb { background: var(--taupe); }
  .fleet-strip-h .fleet-grid .car-card {
    flex: 0 0 calc((100vw - var(--grid-pad)*2 - 48px) / 2.4);
    max-width: 480px;
    scroll-snap-align: start;
  }
}
.fleet-strip-h .scroll-hint {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe-dark);
  margin-top: 16px; display: none;
}
@media (min-width: 900px) { .fleet-strip-h .scroll-hint { display: inline-flex; align-items: center; gap: 10px; } }
.fleet-strip-h .scroll-hint .arr {
  display: inline-block; width: 20px; height: 1px; background: var(--taupe); transform-origin: left;
  animation: scrollHint 1.6s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.4); }
}

/* =========================================================
   COVERAGE SHORT
   ========================================================= */
.coverage-short {
  background: var(--bone);
  padding: 100px 0;
}
.coverage-short .head {
  display: flex; flex-direction: column; gap: 14px; text-align: center; align-items: center; margin-bottom: 50px;
}
.coverage-short .head h2 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -0.018em;
}
.coverage-short .head h2 em { font-style: italic; color: var(--taupe-dark); }
.coverage-list-h {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--bone-3);
  border-bottom: 1px solid var(--bone-3);
}
.coverage-list-h .city {
  flex: 0 0 auto;
  padding: 18px 26px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--brown-deep);
  font-weight: 300;
  position: relative;
}
.coverage-list-h .city + .city::before {
  content: "·";
  position: absolute; left: -3px; top: 50%; transform: translateY(-50%);
  color: var(--taupe);
  font-style: italic;
}
.coverage-list-h .city.hq {
  color: var(--taupe-dark);
  font-style: italic;
}
.coverage-short .more {
  text-align: center;
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--brown);
  font-size: 16px;
}

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.faq-stage {
  background: var(--bone-2);
  padding: 100px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (min-width: 900px) {
  .faq-grid { grid-template-columns: 1fr 1.5fr; gap: 80px; }
}
.faq-grid .left { display: flex; flex-direction: column; gap: 18px; }
.faq-grid .left h2 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -0.018em;
}
.faq-grid .left h2 em { font-style: italic; color: var(--taupe-dark); }
.faq-grid .left p {
  font-family: var(--serif); font-style: italic; color: var(--brown); font-size: 17px; max-width: 28em;
}
.faq-grid .left .help {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-grid .left .help a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown-deep);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  transition: color 0.3s, gap 0.4s var(--ease);
}
.faq-grid .left .help a:hover { color: var(--taupe-dark); gap: 16px; }

.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--bone-3);
}
.faq-item {
  border-bottom: 1px solid var(--bone-3);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--brown-deep);
  cursor: pointer;
  gap: 24px;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--taupe-dark); }
.faq-q .ic {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--taupe);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.4s var(--ease), border-color 0.4s;
}
.faq-q .ic::before, .faq-q .ic::after {
  content: "";
  position: absolute;
  background: var(--brown-deep);
  transition: transform 0.4s var(--ease), background 0.4s;
}
.faq-q .ic::before { width: 9px; height: 1px; }
.faq-q .ic::after { width: 1px; height: 9px; }
.faq-item.open .faq-q .ic { background: var(--brown-deep); border-color: var(--brown-deep); }
.faq-item.open .faq-q .ic::before, .faq-item.open .faq-q .ic::after { background: var(--bone); }
.faq-item.open .faq-q .ic::after { transform: scaleY(0); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-a > div {
  overflow: hidden;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding: 0 0 22px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--brown);
  max-width: 60ch;
}

/* =========================================================
   STATS BAND (animated counting numbers)
   ========================================================= */
.stats-band {
  background: var(--brown-deep);
  color: var(--bone);
  padding: 80px 0;
  border-top: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 16px;
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; } }
.stat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px;
}
.stat .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.018em;
  font-variant-numeric: tabular-nums;
}
.stat .num em {
  font-style: italic;
  color: var(--taupe-soft);
  font-weight: 300;
}
.stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe-soft);
  margin-top: 4px;
}

/* =========================================================
   TESTIMONIALS (placeholders)
   ========================================================= */
.testimonials {
  background: var(--bone);
  padding: 100px 0;
}
.testimonials .head {
  text-align: center;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
  margin-bottom: 60px;
}
.testimonials .head h2 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05; letter-spacing: -0.018em;
}
.testimonials .head h2 em { font-style: italic; color: var(--taupe-dark); }
.testimonials .head .sub { font-family: var(--serif); font-style: italic; color: var(--brown); font-size: 16px; max-width: 36em; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 800px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: var(--bone-2);
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.testi .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.testi blockquote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--brown-deep);
  font-style: italic;
}
.testi .who {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--bone-3);
}
.testi .who .name {
  font-family: var(--serif); font-size: 16px; color: var(--brown-deep); font-weight: 400;
}
.testi .who .role {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--taupe-dark); text-transform: uppercase;
}
.testi-disclaimer {
  text-align: center;
  margin-top: 30px;
  font-family: var(--serif); font-style: italic; color: var(--brown); font-size: 14px;
}

/* =========================================================
   PARTNERS, placeholder logos row
   ========================================================= */
.partners {
  background: var(--bone-2);
  padding: 70px 0;
  border-top: 1px solid var(--bone-3);
  border-bottom: 1px solid var(--bone-3);
}
.partners .head {
  text-align: center;
  margin-bottom: 40px;
}
.partners .head .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--taupe-dark);
}
.partners-row {
  display: flex; justify-content: center; align-items: center;
  gap: 50px; flex-wrap: wrap;
  opacity: 0.55;
  filter: grayscale(0.3);
}
@media (min-width: 800px) { .partners-row { gap: 70px; } }
.partner {
  display: flex; align-items: center; justify-content: center;
  height: 48px;
  font-family: var(--serif); font-size: 22px; letter-spacing: 0.1em; color: var(--brown-deep);
  font-weight: 300;
  padding: 0 14px;
  text-align: center;
}
.partner.italic { font-style: italic; }
.partner.script { font-family: var(--serif); font-style: italic; font-size: 26px; }
.partner.caps { font-family: var(--mono); font-size: 14px; letter-spacing: 0.34em; text-transform: uppercase; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  background: var(--brown-deep);
  color: var(--bone);
  padding: 80px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) { .newsletter-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.newsletter h3 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15; letter-spacing: -0.012em; color: var(--bone); margin-bottom: 12px;
}
.newsletter h3 em { font-style: italic; color: var(--taupe-soft); }
.newsletter p { font-family: var(--serif); font-style: italic; color: var(--bone-2); font-size: 17px; line-height: 1.5; }
.newsletter form {
  display: flex; gap: 0;
  border: 1px solid rgba(244,247,242,0.25);
  background: rgba(244,247,242,0.05);
}
.newsletter input[type="email"] {
  flex: 1;
  padding: 18px 20px;
  font-family: var(--serif); font-size: 17px; color: var(--bone);
  background: transparent; border: none; outline: none;
}
.newsletter input[type="email"]::placeholder { color: var(--bone-2); font-style: italic; opacity: 0.6; }
.newsletter button {
  padding: 18px 26px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  background: var(--bone); color: var(--brown-deep); border: none; cursor: pointer;
  transition: background 0.4s, color 0.4s;
}
.newsletter button:hover { background: var(--taupe-soft); }
.newsletter .nl-foot { font-family: var(--sans); font-size: 11px; line-height: 1.6; color: var(--bone-2); margin-top: 14px; opacity: 0.7; }

/* =========================================================
   FINAL CTA STRIP (homepage)
   ========================================================= */
.cta-final {
  background: var(--brown-deep);
  color: var(--bone);
  padding: 100px 0;
  text-align: center;
}
.cta-final .eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--taupe-soft);
}
.cta-final h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin: 24px auto 16px;
  max-width: 18ch;
}
.cta-final h2 em { font-style: italic; color: var(--taupe-soft); }
.cta-final .sub {
  font-family: var(--serif); font-style: italic; color: var(--bone-2); font-size: 17px; margin-bottom: 40px;
}
.cta-final .actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.cta-final .cta {
  background: var(--bone); color: var(--brown-deep);
}
.cta-final .cta:hover { background: var(--taupe-soft); color: var(--brown-deep); }
.cta-final .cta.ghost {
  background: transparent; color: var(--bone); border: 1px solid var(--bone);
}
.cta-final .cta.ghost:hover { background: var(--bone); color: var(--brown-deep); }

/* =========================================================
   SERVICE BLOCK WITH PHOTO
   ========================================================= */

.svc-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .svc-block { grid-template-columns: 1fr 1.1fr; gap: 80px; }
  .svc-block.reverse > :first-child { order: 2; }
}
.svc-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone-3);
}
.svc-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.95) contrast(1.05);
  transition: transform 1.4s var(--ease);
}
.svc-photo:hover img { transform: scale(1.04); }
.svc-photo .num {
  position: absolute;
  top: 22px; left: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  z-index: 2;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.svc-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,10,6,0.25) 0%, rgba(15,10,6,0) 35%, rgba(15,10,6,0) 65%, rgba(15,10,6,0.45) 100%);
  z-index: 1;
}
.svc-photo .cap {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  z-index: 2;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.svc-text { display: flex; flex-direction: column; gap: 18px; }
.svc-text .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}
.svc-text h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--brown-deep);
}
.svc-text h3 em { font-style: italic; color: var(--taupe-dark); }
.svc-text p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--brown);
  max-width: 30em;
}
.svc-text ul {
  list-style: none;
  margin-top: 12px;
  border-top: 1px solid var(--bone-3);
}
.svc-text ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bone-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
}
.svc-text ul li span { color: var(--taupe); }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 100px; }
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info .item h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 12px;
  font-weight: 400;
}
.contact-info .item p, .contact-info .item a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1.4;
}
.contact-info .item a:hover { color: var(--taupe-dark); }
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.contact-form textarea {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  color: var(--brown-deep);
  background: transparent;
  border: none;
  outline: none;
  resize: vertical;
  min-height: 120px;
  width: 100%;
  padding: 4px 0;
}
.contact-form textarea::placeholder { color: var(--taupe-soft); font-style: italic; }


/* =========================================================
   BLOG
   ========================================================= */
.blog-hero {
  background: var(--bone);
  padding: 140px var(--grid-pad-mob) 60px;
  text-align: center;
}
@media (min-width: 768px) { .blog-hero { padding: 180px var(--grid-pad) 80px; } }
.blog-hero .crumb { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 24px; }
.blog-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 6vw, 76px); line-height: 1; letter-spacing: -0.022em; color: var(--brown-deep); }
.blog-hero h1 em { font-style: italic; color: var(--taupe-dark); }
.blog-hero .lede { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.5vw, 22px); color: var(--brown); max-width: 38em; margin: 28px auto 0; line-height: 1.55; }

.blog-grid { padding: 80px var(--grid-pad-mob); background: var(--bone); }
@media (min-width: 768px) { .blog-grid { padding: 100px var(--grid-pad); } }
.blog-grid-inner {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 800px) { .blog-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 50px 40px; } }

.post-card {
  display: flex; flex-direction: column; gap: 18px;
  text-decoration: none; color: inherit;
  transition: transform 0.4s var(--ease);
}
.post-card:hover { transform: translateY(-4px); }
.post-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bone-2);
  position: relative;
}
.post-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
  transition: transform 1.4s var(--ease);
}
.post-card:hover .img img { transform: scale(1.05); }
.post-card .body { display: flex; flex-direction: column; gap: 10px; }
.post-card .meta { display: flex; gap: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe-dark); }
.post-card .meta .cat { color: var(--brown-deep); }
.post-card h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; letter-spacing: -0.014em; color: var(--brown-deep); }
.post-card .ex { font-family: var(--serif); font-size: 16px; line-height: 1.55; color: var(--brown); }
.post-card .read { font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe-dark); margin-top: 4px; display: inline-flex; align-items: center; gap: 8px; }

/* Article page */
.article {
  background: var(--bone);
  padding: 60px 0 100px;
}
.article-hero {
  padding: 130px var(--grid-pad-mob) 50px;
  text-align: center;
  background: var(--bone);
  max-width: 820px; margin: 0 auto;
}
@media (min-width: 768px) { .article-hero { padding: 170px var(--grid-pad) 60px; } }
.article-hero .crumb { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 18px; }
.article-hero h1 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 5vw, 56px); line-height: 1.1; letter-spacing: -0.014em; color: var(--brown-deep);
}
.article-hero h1 em { font-style: italic; color: var(--taupe-dark); }
.article-hero .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe-dark); margin-top: 24px; display: flex; gap: 14px; justify-content: center; }
.article-cover { aspect-ratio: 16/9; overflow: hidden; background: var(--bone-2); margin-bottom: 60px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-content {
  max-width: 720px; margin: 0 auto;
  padding: 0 var(--grid-pad-mob);
  font-family: var(--serif); font-size: 18px; line-height: 1.75; color: var(--brown-deep);
}
@media (min-width: 768px) { .article-content { padding: 0 var(--grid-pad); } }
.article-content h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; margin: 50px 0 16px; color: var(--brown-deep); letter-spacing: -0.012em; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin: 30px 0 10px; color: var(--brown-deep); }
.article-content p { margin-bottom: 18px; color: var(--brown); }
.article-content em { color: var(--taupe-dark); font-style: italic; }
.article-content ul, .article-content ol { margin: 16px 0 18px 28px; color: var(--brown); }
.article-content ul li, .article-content ol li { margin-bottom: 8px; }
.article-content a { color: var(--taupe-dark); border-bottom: 1px solid var(--taupe); }
.article-content a:hover { color: var(--brown-deep); }
.article-content blockquote {
  font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--brown-deep);
  border-left: 3px solid var(--taupe); padding: 8px 0 8px 24px; margin: 30px 0;
}
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-family: var(--sans); font-size: 14px; }
.article-content th, .article-content td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--bone-3); color: var(--brown); }
.article-content th { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-dark); font-weight: 400; }
.article-cta-box {
  background: var(--bone-2); padding: 30px; margin: 40px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.article-cta-box h4 { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--brown-deep); }
.article-cta-box p { font-family: var(--serif); font-style: italic; color: var(--brown); margin: 0; }
.article-cta-box a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brown-deep); border: 1px solid var(--brown-deep); padding: 14px 24px; align-self: flex-start; transition: all 0.4s; }
.article-cta-box a:hover { background: var(--brown-deep); color: var(--bone); }

/* =========================================================
   ACCESSIBILITY — keyboard focus & reduced motion
   ========================================================= */
/* Visible, on-brand focus ring for keyboard users only */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
[data-magnetic]:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Lighter ring over dark surfaces (hero, over-dark nav, dark bands) */
.hero :focus-visible,
.nav.over-dark:not(.scrolled) :focus-visible,
.cta-final :focus-visible,
.stats-band :focus-visible,
.sticky-cta :focus-visible,
.whatsapp:focus-visible {
  outline-color: #C9A96E;
}
/* Never show the ring for mouse/touch interactions */
:focus:not(:focus-visible) { outline: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto !important; }
  .reveal, .reveal-line, .reveal-mask { opacity: 1 !important; transform: none !important; }
  .hero-logo-img { opacity: 1 !important; transform: none !important; }
  .page-hero .crumb, .page-hero h1, .page-hero .lede { opacity: 1 !important; transform: none !important; }
  .page-hero-media img { animation: none !important; transform: none !important; }
  .loader { display: none !important; }
  .cursor { display: none !important; }
  .trust-track { animation: none !important; }
  .scroll-progress { transition: none !important; }
}

/* =========================================================
   SIGNATURE DETAILS — text selection & scroll progress
   ========================================================= */
::selection { background: rgba(201, 169, 110, 0.32); color: var(--brown-deep); }
::-moz-selection { background: rgba(201, 169, 110, 0.32); color: var(--brown-deep); }

/* Ultra-thin scroll-progress hairline (injected by main.js) */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--taupe) 0%, #C9A96E 100%);
  z-index: 9990;
  pointer-events: none;
  opacity: 0.9;
  transition: width 0.12s linear;
}
