/* =========================================================
   DriveLux — VARIANT 5 · "Concours"  ★ Recommended
   Editorial luxury direction — engineered for the discerning
   driver / car enthusiast clientele. Cognac + cream on warm
   cocoa-graphite. Fraunces variable serif + DM Sans + JetBrains
   Mono. Magazine-style numbered sections, generous whitespace.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;500;700&family=Cinzel:wght@500;600;700&display=swap');

:root {
  /* === Palette: warm cocoa + cognac + cream === */
  --bg:            #1a1715;
  --bg-2:          #221e1a;
  --surface:       #2a2521;
  --surface-2:     #322d28;
  --line:          #3a342e;
  --line-bright:   #4d463f;

  --text:          #f1e8d8;     /* warm ivory */
  --text-soft:     #d4c9b5;
  --text-muted:    #aca093;
  --text-dim:      #7d7368;

  /* Cognac — primary accent (now garnet/oxblood red) */
  --cognac:        #a13a32;
  --cognac-hot:    #c0473b;
  --cognac-deep:   #761f1a;
  --cognac-glow:   rgba(161, 58, 50, 0.42);
  --cognac-soft:   rgba(161, 58, 50, 0.10);

  /* Cream — secondary surface accent */
  --cream:         #e8dcc4;
  --cream-soft:    rgba(232, 220, 196, 0.10);

  /* Brass — tertiary, used sparingly */
  --brass:         #a8865a;
  --brass-deep:    #806439;

  /* Type */
  --font-display:  'Fraunces', 'Times New Roman', serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-tech:     'JetBrains Mono', ui-monospace, monospace;
  --font-wordmark: 'Cinzel', serif;

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

  --max:           1320px;
  --pad-x:         clamp(1.5rem, 5vw, 4rem);
  --nav-h:         92px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-soft);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Atmospheric backdrop — warm vignette, paper-grain noise */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(161,58,50,0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 100%, rgba(232,220,196,0.04), transparent 65%);
}
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

main, header, footer, section { position: relative; z-index: 2; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

/* =========================================================
   Editorial typography
   ========================================================= */

.wordmark {
  font-family: var(--font-wordmark);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Marginalia: §01, Vol·02, etc — small running labels */
.marginalia {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cognac);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marginalia .rule {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--cognac);
  opacity: 0.6;
}

/* "Chapter" labels — italic editorial */
.chapter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 9, "SOFT" 100;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 12px;
}

/* Display headlines — Fraunces variable serif, large optical size */
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cognac);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-title .cream { color: var(--cream); }

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 62ch;
  line-height: 1.7;
}

/* =========================================================
   Decorative motifs — refined for V5
   Brand DNA preserved (slashes, ticks, barcode) but in cognac/cream.
   ========================================================= */

.slash {
  display: inline-block;
  width: 92px; height: 22px;
  background: linear-gradient(90deg, var(--cognac) 0%, var(--cognac-hot) 60%, transparent 100%);
  transform: skewX(-25deg);
  opacity: 0.85;
}
.slash--lg { width: 140px; height: 30px; }
.slash--sm { width: 56px; height: 14px; }
.slash--cream { background: linear-gradient(90deg, var(--cream) 0%, var(--brass) 60%, transparent 100%); opacity: 0.6; }
.slash--right { background: linear-gradient(270deg, var(--cognac) 0%, var(--cognac-hot) 60%, transparent 100%); }

.barcode {
  display: inline-block; width: 120px; height: 14px;
  background-image: repeating-linear-gradient(90deg,
    var(--cognac) 0 2px, transparent 2px 4px,
    var(--cognac) 4px 5px, transparent 5px 9px,
    var(--cognac) 9px 11px, transparent 11px 13px);
}
.barcode--cream {
  background-image: repeating-linear-gradient(90deg,
    var(--cream) 0 2px, transparent 2px 4px,
    var(--cream) 4px 5px, transparent 5px 9px,
    var(--cream) 9px 11px, transparent 11px 13px);
  opacity: 0.7;
}

.tick { position: absolute; width: 16px; height: 16px; pointer-events: none; }
.tick--tl { top: 0; left: 0;     border-top: 1px solid var(--cream); border-left: 1px solid var(--cream); }
.tick--tr { top: 0; right: 0;    border-top: 1px solid var(--cream); border-right: 1px solid var(--cream); }
.tick--bl { bottom: 0; left: 0;  border-bottom: 1px solid var(--cream); border-left: 1px solid var(--cream); }
.tick--br { bottom: 0; right: 0; border-bottom: 1px solid var(--cream); border-right: 1px solid var(--cream); }

/* =========================================================
   Buttons — cognac primary, cream outline secondary
   ========================================================= */

.btn {
  --btn-bg: var(--cognac);
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--cognac-hot);
  border-color: var(--cognac-hot);
  box-shadow: 0 16px 44px -12px var(--cognac-glow);
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border: 1px solid var(--cream);
  border-color: rgba(232, 220, 196, 0.5);
}
.btn--ghost:hover {
  background: var(--cream-soft);
  border-color: var(--cream);
  color: var(--cream);
  box-shadow: none;
}
.btn--sm { padding: 12px 22px; font-size: 13px; }

/* CTA-strip uses inverted button */
.btn--inverse {
  --btn-bg: var(--bg);
  --btn-fg: var(--cream);
  border-color: var(--bg);
}
.btn--inverse:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }

/* =========================================================
   Variant badge
   ========================================================= */

.variant-badge {
  position: fixed; top: 14px; left: 14px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  background: var(--cream); color: var(--bg);
  font-family: var(--font-tech); font-size: 11px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(232,220,196,0.15);
}
.variant-badge::before { content: '★'; color: var(--cognac); font-size: 13px; }
.variant-badge a {
  margin-left: 6px; padding-left: 12px;
  border-left: 1px solid rgba(26,23,21,0.3);
  font-size: 10px; color: var(--bg); opacity: 0.7;
}
.variant-badge a:hover { opacity: 1; color: var(--cognac); }

/* =========================================================
   Navigation — refined editorial
   ========================================================= */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 50;
  display: flex; align-items: center;
  padding: 0 var(--pad-x);
  background: rgba(26, 23, 21, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(232, 220, 196, 0.10);
  transition: background 0.3s;
}
.nav.is-scrolled { background: rgba(26, 23, 21, 0.95); }
.nav__inner { width: 100%; max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.nav__brand { display: flex; align-items: center; gap: 16px; }
.nav__logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--cognac);
  border-radius: 2px;
}
.nav__logo-mark svg { width: 22px; height: 22px; fill: var(--text); }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.nav__logo-text .wordmark { font-size: 19px; letter-spacing: 0.20em; color: var(--text); }
.nav__logo-text .tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 9;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--cream);
}

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative; padding: 12px 18px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute; left: 18px; right: 18px; bottom: 4px;
  height: 1px; background: var(--cognac);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__phone {
  font-family: var(--font-tech); font-size: 12px;
  letter-spacing: 0.06em; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px; font-weight: 500;
}
.nav__phone .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cognac);
  box-shadow: 0 0 12px var(--cognac);
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 50% { opacity: 0.45; } }

.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; padding: 0 10px; border: 1px solid var(--line); border-radius: 2px; }
.nav__toggle span { display: block; height: 2px; background: var(--text); }

@media (max-width: 980px) {
  .nav__links { position: fixed; inset: var(--nav-h) 0 0 0; flex-direction: column; align-items: stretch; background: var(--bg); padding: 32px var(--pad-x); gap: 0; transform: translateX(100%); transition: transform 0.4s var(--ease); border-top: 1px solid var(--line); }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { padding: 20px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__toggle { display: flex; }
  .nav__phone { display: none; }
  .nav__cta .btn { display: none; }
}

/* =========================================================
   Hero — editorial spread
   ========================================================= */

.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 100px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__bg::before { content: ''; position: absolute; inset: -20% -10% auto auto; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(161,58,50,0.16), transparent 60%); filter: blur(50px); }
.hero__bg::after { content: ''; position: absolute; inset: auto -20% -10% -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(232,220,196,0.08), transparent 65%); filter: blur(70px); }

/* Oversized faded chapter number behind hero — magazine-style */
.hero__chapter-num {
  position: absolute;
  top: 12%;
  right: -2vw;
  font-family: var(--font-display);
  font-weight: 200;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(20rem, 38vw, 44rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 220, 196, 0.05);
  pointer-events: none;
  user-select: none;
}

.hero__slash { position: absolute; height: 50px; background: linear-gradient(90deg, var(--cognac), transparent); transform: skewX(-25deg); opacity: 0.5; }
.hero__slash--1 { top: 18%; left: -60px; width: 260px; }
.hero__slash--2 { bottom: 22%; right: -80px; width: 320px; height: 40px; background: linear-gradient(270deg, var(--cognac), transparent); }

.hero__inner {
  position: relative; z-index: 3;
  max-width: var(--max); width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 80px; align-items: center;
}

.hero__content { position: relative; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.1s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(3.4rem, 8.5vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 18px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: inline-block; transform: translateY(110%); animation: rise 1.1s var(--ease-out) forwards; }
.hero__title .line:nth-child(1) span { animation-delay: 0.25s; }
.hero__title .line:nth-child(2) span {
  animation-delay: 0.42s;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--cognac);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--cream);
  margin: 28px 0 32px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero__desc {
  max-width: 56ch;
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.75;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.85s forwards;
}

.hero__actions {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 72px; padding-top: 36px;
  border-top: 1px solid var(--line);
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 1.15s forwards;
}
.hero__stat .num {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 3rem;
  color: var(--text); line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
  letter-spacing: -0.03em;
}
.hero__stat .num small {
  font-size: 1rem; color: var(--cognac);
  font-family: var(--font-display); font-style: italic;
  font-weight: 400;
}
.hero__stat .label {
  font-family: var(--font-tech); font-size: 10px;
  letter-spacing: 0.15em; color: var(--text-dim);
  text-transform: uppercase; margin-top: 12px;
  font-weight: 500;
}

.hero__visual { position: relative; z-index: 2; aspect-ratio: 1 / 1.1; display: grid; place-items: center; }
.hero__visual-frame {
  position: relative; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(161,58,50,0.16), transparent 60%),
    linear-gradient(180deg, #2c2622, #1a1715);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.hero__visual-frame::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,220,196,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,220,196,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero__visual-car {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  filter: drop-shadow(0 30px 40px rgba(161,58,50,0.30));
}
.hero__visual-car svg { width: 80%; height: auto; }
.hero__visual-corners { position: absolute; inset: 22px; pointer-events: none; }

.hero__visual-label {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero__visual-label .k {
  font-family: var(--font-tech); font-size: 10px;
  letter-spacing: 0.18em; color: var(--text-muted);
  text-transform: uppercase; font-weight: 500;
}
.hero__visual-label .v {
  font-family: var(--font-display); font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  font-size: 18px; font-weight: 400;
  color: var(--cream);
}

.hero__visual-spec {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-tech); font-size: 10px;
  letter-spacing: 0.15em; color: var(--text-muted);
  text-transform: uppercase; text-align: right;
  line-height: 1.9; font-weight: 500;
}
.hero__visual-spec b { color: var(--cognac); font-weight: 700; }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 440px; margin: 0 auto; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rise { to { transform: translateY(0); } }

/* =========================================================
   Sections — magazine spread, generous whitespace
   ========================================================= */

.section { padding: clamp(100px, 14vw, 180px) var(--pad-x); }
.section__inner { max-width: var(--max); margin: 0 auto; }

/* Editorial section head with marginalia + chapter + title */
.section__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.section__head-side {
  max-width: 44ch;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.section__head-side em {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  color: var(--cream);
}
.section__head .head-stack {
  display: flex; flex-direction: column; gap: 0;
}
.section__head .marginalia { margin-bottom: 26px; }

@media (max-width: 780px) {
  .section__head { grid-template-columns: 1fr; gap: 32px; }
}

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

/* =========================================================
   Marquee — refined, slower
   ========================================================= */

.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0; overflow: hidden;
}
.marquee__track {
  display: flex; gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 80;
  font-size: 1.7rem;
  color: var(--text);
  letter-spacing: -0.005em;
}
.marquee__item .dot {
  width: 6px; height: 6px;
  background: var(--cognac);
  border-radius: 50%;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Services — chapter-style cards
   ========================================================= */

.services { background: var(--bg); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px 38px 38px;
  display: flex; flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease), background 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--cream);
  background: var(--surface-2);
}

.service-card__num {
  position: absolute; top: 32px; right: 36px;
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: 5rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-bright);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s;
}
.service-card:hover .service-card__num { -webkit-text-stroke-color: var(--cognac); }

.service-card__chapter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 20px;
}
.service-card__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cognac);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 32px;
  flex: 1;
}

.service-card__price {
  display: flex; align-items: baseline; gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.service-card__price .currency {
  color: var(--cognac);
  font-family: var(--font-display);
  font-weight: 400; font-size: 1.3rem;
}
.service-card__price .amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 2.8rem;
  letter-spacing: -0.02em;
  color: var(--text); line-height: 1;
}
.service-card__price .from {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: auto;
}

.service-card__link {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 14px;
  color: var(--text);
  transition: color 0.3s, gap 0.3s;
}
.service-card__link svg { transition: transform 0.3s var(--ease); }
.service-card__link:hover { color: var(--cognac); }
.service-card__link:hover svg { transform: translateX(6px); }

.service-card__deco {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 220px; height: 30px;
  background: linear-gradient(270deg, var(--cognac), transparent);
  opacity: 0.16;
  transform: skewX(-25deg);
  transition: opacity 0.4s;
}
.service-card:hover .service-card__deco { opacity: 0.45; }

/* =========================================================
   Process — numbered manifest, vertical
   ========================================================= */

.process {
  background: var(--bg-2);
  position: relative;
}
.process::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  opacity: 0.25;
}

.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 100px 1.5fr 2fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: background 0.4s;
}
.process-item:hover {
  background: rgba(232,220,196,0.025);
}
@media (max-width: 780px) {
  .process-item { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
}

.process-item__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.process-item__num small {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
}
.process-item__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
}
.process-item__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================================
   Gallery — editorial spread, larger feature tile
   ========================================================= */

.gallery { background: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}

.tile {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.tile:hover { border-color: var(--cream); }
.tile--feat { grid-column: span 4; grid-row: span 2; }
.tile--wide { grid-column: span 4; }
.tile--med { grid-column: span 2; }
.tile--sm { grid-column: span 2; }
@media (max-width: 900px) {
  .tile--feat, .tile--wide, .tile--med, .tile--sm { grid-column: span 1; grid-row: span 1; }
  .tile--feat { grid-column: span 2; grid-row: span 2; }
}

.tile__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s var(--ease); }
.tile:hover .tile__bg { transform: scale(1.07); }
.tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,23,21,0.94));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
}
.tile__tag {
  font-family: var(--font-tech); font-size: 10px;
  letter-spacing: 0.18em; color: var(--cream);
  text-transform: uppercase; margin-bottom: 8px;
  font-weight: 600;
}
.tile__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.15;
}
.tile__title em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  color: var(--cognac);
}

/* Paint placeholders — warm cocoa + cognac car-paint feel */
.paint-1 { background: radial-gradient(ellipse at 30% 40%, rgba(241,232,216,0.16), transparent 50%), radial-gradient(ellipse at 70% 70%, rgba(161,58,50,0.38), transparent 60%), linear-gradient(135deg, #2a2421, #38312c 50%, #1a1715); }
.paint-2 { background: radial-gradient(ellipse at 60% 20%, rgba(241,232,216,0.20), transparent 45%), linear-gradient(160deg, #2d2724, #1a1715 70%); }
.paint-3 { background: radial-gradient(circle at 40% 60%, rgba(161,58,50,0.32), transparent 55%), linear-gradient(45deg, #221d1a, #2e2823); }
.paint-4 { background: conic-gradient(from 220deg at 70% 30%, #2e2823, #1a1715, #2e2823), linear-gradient(180deg, #221d1a, #1a1715); }
.paint-5 { background: radial-gradient(ellipse at 50% 30%, rgba(232,220,196,0.18), transparent 50%), linear-gradient(200deg, #2d2724, #1a1715 60%); }
.paint-6 { background: radial-gradient(ellipse at 80% 80%, rgba(161,58,50,0.36), transparent 55%), linear-gradient(170deg, #2a2421, #1a1715); }
.paint-7 { background: radial-gradient(circle at 30% 30%, rgba(241,232,216,0.18), transparent 45%), linear-gradient(120deg, #221d1a, #2c2622); }

/* =========================================================
   Reviews — editorial pull-quotes
   ========================================================= */

.reviews { background: var(--bg-2); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .reviews__grid { grid-template-columns: 1fr; } }

.review {
  position: relative;
  padding: 44px 36px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex; flex-direction: column;
  gap: 24px;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.review:hover { border-color: var(--cream); transform: translateY(-4px); }

.review__mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--cognac);
  height: 22px;
}

.review__stars { display: flex; gap: 3px; color: var(--cognac); }

.review__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
  letter-spacing: -0.005em;
}

.review__person {
  display: flex; align-items: center; gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-2); border: 1px solid var(--line-bright);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.review__name {
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  color: var(--text);
}
.review__service {
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* =========================================================
   CTA — inverted cream block (magazine pull-out feel)
   ========================================================= */

.cta {
  background: var(--cream);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    transparent 0 28px,
    rgba(26,23,21,0.025) 28px 30px);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: 100px var(--pad-x);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 780px) {
  .cta__inner { grid-template-columns: 1fr; text-align: center; }
}

.cta__sub {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac-deep);
  margin-bottom: 22px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta__sub::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--cognac-deep);
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--bg);
}
.cta__title em {
  font-style: italic;
  color: var(--cognac);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.cta__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 780px) { .cta__actions { justify-content: center; } }

.cta .btn { background: var(--bg); color: var(--cream); border-color: var(--bg); }
.cta .btn:hover { background: var(--cognac); border-color: var(--cognac); color: var(--text); box-shadow: 0 14px 40px rgba(0,0,0,0.25); }
.cta .btn--ghost {
  background: transparent;
  border-color: var(--bg);
  color: var(--bg);
}
.cta .btn--ghost:hover {
  background: var(--bg);
  color: var(--cream);
  border-color: var(--bg);
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: #14110f;
  padding: 100px var(--pad-x) 36px;
  border-top: 1px solid var(--line);
}
.footer__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand .nav__logo-text .wordmark { font-size: 26px; }
.footer__tag {
  margin: 22px 0 26px;
  color: var(--text-muted);
  max-width: 36ch;
  font-size: 1.02rem;
  line-height: 1.65;
}
.footer__tag em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
}

.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer__social:hover { background: var(--cognac); border-color: var(--cognac); color: var(--text); }

.footer__col h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  color: var(--cream);
  text-transform: none;
}
.footer__col ul li { margin-bottom: 14px; }
.footer__col a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--cognac); }

.footer__bar {
  max-width: var(--max); margin: 0 auto;
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.footer__bar em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0;
}

::selection { background: var(--cognac); color: var(--text); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); }
::-webkit-scrollbar-thumb:hover { background: var(--cognac); }

/* =========================================================
   PAGE HEAD — editorial subpage header
   ========================================================= */

.page-head {
  position: relative;
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 80px;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(161,58,50,0.14), transparent 65%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(232,220,196,0.05), transparent 70%);
  pointer-events: none;
}
.page-head__slash {
  position: absolute;
  height: 38px;
  background: linear-gradient(90deg, var(--cognac), transparent);
  transform: skewX(-25deg);
  opacity: 0.45;
  pointer-events: none;
}
.page-head__slash:nth-child(1) { top: 28%; left: -40px; width: 220px; }
.page-head__slash--2 { bottom: 18%; right: -60px; width: 280px; background: linear-gradient(270deg, var(--cognac), transparent); }

.page-head__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.page-head__num {
  position: absolute;
  top: -40px;
  right: 0;
  font-family: var(--font-display);
  font-weight: 200;
  font-variation-settings: "opsz" 144;
  font-size: clamp(10rem, 24vw, 22rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 220, 196, 0.07);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.page-head__crumbs {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.page-head__crumbs a {
  color: var(--cognac);
  transition: color 0.25s;
}
.page-head__crumbs a:hover { color: var(--cognac-hot); }
.page-head__crumbs .sep { color: var(--text-dim); opacity: 0.5; }

.page-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 14ch;
}
.page-head__title .accent {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--cognac);
}

.page-head__lead {
  max-width: 60ch;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================================
   DETAIL ROW — service tier (services page)
   ========================================================= */

.detail-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.detail-row--reverse { grid-template-columns: 1.2fr 1fr; }
.detail-row--reverse > :first-child { order: 2; }
.detail-row--reverse > :last-child { order: 1; }

@media (max-width: 980px) {
  .detail-row, .detail-row--reverse { grid-template-columns: 1fr; gap: 48px; }
  .detail-row--reverse > :first-child, .detail-row--reverse > :last-child { order: 0; }
}

.detail-row__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid; place-items: center;
}
.detail-row__visual .hero__visual-frame {
  position: absolute; inset: 0;
}
.detail-row__visual-label {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}
.detail-row__visual-label b { color: var(--cream); font-weight: 700; }

.detail-row__head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 22px;
}
.detail-row__num {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cognac);
  text-transform: uppercase;
  font-weight: 600;
}

.detail-row__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}

.detail-row__desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 56ch;
  margin-bottom: 36px;
}

.detail-row__group {
  margin-bottom: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.detail-row__group h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  font-size: 1.08rem;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: 0.005em;
}
.detail-row__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
@media (max-width: 640px) { .detail-row__list { grid-template-columns: 1fr; } }
.detail-row__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.detail-row__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 10px; height: 1px;
  background: var(--cognac);
}

.detail-row__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.detail-row__pricewrap {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.detail-row__pricewrap .currency {
  font-family: var(--font-display);
  font-weight: 400; font-size: 1.6rem; color: var(--cognac);
}
.detail-row__pricewrap .amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 3.4rem; line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text);
}
.detail-row__pricewrap .note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 4px;
}

/* =========================================================
   EYEBROW (compact)
   ========================================================= */

.eyebrow-line {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.eyebrow {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cognac);
  font-weight: 600;
}

/* =========================================================
   ADD-ONS GRID (services)
   ========================================================= */

.addons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .addons__grid { grid-template-columns: 1fr; } }

.addon {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 32px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease);
}
.addon:hover {
  border-color: var(--cream);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.addon::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 16px;
  background: linear-gradient(270deg, var(--cognac), transparent);
  transform: skewX(-25deg) translateX(30px);
  opacity: 0.18;
  transition: opacity 0.4s;
}
.addon:hover::after { opacity: 0.45; }

.addon__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.addon__note {
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}
.addon__price {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cognac);
  flex-shrink: 0;
}

/* =========================================================
   COMPARISON TABLE (services)
   ========================================================= */

.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  min-width: 640px;
}
.compare thead tr { background: var(--bg-2); }
.compare th {
  text-align: left;
  padding: 22px 28px;
  font-family: var(--font-tech);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.compare th.cen { text-align: center; }
.compare th.hi { color: var(--cognac); }
.compare tbody tr { border-top: 1px solid var(--line); transition: background 0.3s; }
.compare tbody tr:hover { background: rgba(232,220,196,0.02); }
.compare td {
  padding: 18px 28px;
  font-size: 0.98rem;
  color: var(--text-soft);
}
.compare td.cen { text-align: center; }
.compare td.yes {
  color: var(--cognac);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  font-style: italic;
}
.compare td.no { color: var(--text-dim); }
.compare .price-row { background: var(--bg-2); }
.compare .price-row td {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 1.4rem;
}
.compare .price-row td.hi { color: var(--cognac); }
.compare .table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* =========================================================
   GALLERY FILTERS — V5 editorial
   ========================================================= */

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.filter {
  padding: 11px 20px;
  font-family: var(--font-tech);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.filter:hover { color: var(--text); border-color: var(--line-bright); }
.filter.is-on {
  color: var(--text);
  background: var(--cognac);
  border-color: var(--cognac);
}
.filter .count {
  font-family: var(--font-tech);
  font-size: 9px;
  margin-left: 8px;
  opacity: 0.65;
}

.gallery-big {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 16px;
}
@media (max-width: 900px) {
  .gallery-big { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
}
.g {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.g:hover { border-color: var(--cream); transform: translateY(-3px); }
.g .bg { position: absolute; inset: 0; transition: transform 0.8s var(--ease); }
.g:hover .bg { transform: scale(1.07); }
.g .ov {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,23,21,0.95));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}
.g .tag-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}
.g .cat {
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-transform: uppercase;
  background: rgba(26,23,21,0.7);
  padding: 6px 11px;
  border: 1px solid var(--line-bright);
  border-radius: 2px;
  font-weight: 600;
}
.g .badge {
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.g .ti {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1.15;
}
.g .ti em {
  font-style: italic;
  color: var(--cognac);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.g .sub {
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 6px;
}
.g-1 { grid-column: span 6; grid-row: span 3; }
.g-2 { grid-column: span 3; grid-row: span 2; }
.g-3 { grid-column: span 3; grid-row: span 2; }
.g-4 { grid-column: span 4; grid-row: span 2; }
.g-5 { grid-column: span 4; grid-row: span 2; }
.g-6 { grid-column: span 4; grid-row: span 2; }
.g-7 { grid-column: span 5; grid-row: span 2; }
.g-8 { grid-column: span 4; grid-row: span 2; }
.g-9 { grid-column: span 3; grid-row: span 2; }
.g-10 { grid-column: span 6; grid-row: span 2; }
.g-11 { grid-column: span 3; grid-row: span 2; }
.g-12 { grid-column: span 3; grid-row: span 2; }
@media (max-width: 900px) {
  .g-1 { grid-column: span 4; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10, .g-11, .g-12 { grid-column: span 2; grid-row: span 1; }
}
.g[hidden] { display: none; }

/* =========================================================
   RATING SUMMARY (reviews)
   ========================================================= */

.rating-summary {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  padding: 54px 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.rating-summary::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 30px;
  background: linear-gradient(270deg, var(--cognac), transparent);
  transform: skewX(-25deg) translateX(40px);
  opacity: 0.25;
}
@media (max-width: 880px) {
  .rating-summary { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
}

.rating-summary__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex; align-items: baseline; gap: 8px;
}
.rating-summary__num small {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--cognac);
}
.rating-summary__stars {
  display: flex; gap: 4px;
  color: var(--cognac);
  margin-top: 16px;
}
.rating-summary__sub {
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 18px;
  font-weight: 500;
}

.rating-summary__split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
@media (max-width: 640px) { .rating-summary__split { grid-template-columns: 1fr; } }
.rating-summary__stat .n {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 2.6rem;
  letter-spacing: -0.025em;
  color: var(--cognac);
  line-height: 1;
}
.rating-summary__stat .l {
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 500;
}

/* =========================================================
   ABOUT — story + values + promise
   ========================================================= */

.story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; gap: 48px; } }

.story__body p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 24px;
}
.story__body p strong {
  color: var(--cream);
  font-weight: 600;
}
.story__body p em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cognac);
}

.story__pull {
  position: relative;
  padding: 36px 36px 36px 44px;
  background: var(--bg-2);
  border-left: 2px solid var(--cognac);
  margin: 36px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  font-size: 1.55rem;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--text);
  border-radius: 2px;
}
.story__pull::before {
  content: '"';
  position: absolute;
  top: 8px; left: 14px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cognac);
  line-height: 1;
}

.story__visual { position: relative; aspect-ratio: 1 / 1.1; }
.story__visual .hero__visual-frame { position: absolute; inset: 0; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }

.value {
  position: relative;
  padding: 40px 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s;
}
.value:hover { border-color: var(--cream); background: var(--surface-2); }
.value::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 18px;
  background: linear-gradient(270deg, var(--cognac), transparent);
  transform: skewX(-25deg) translateX(30px);
  opacity: 0.22;
}
.value__n {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: 4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--cognac);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.value__t {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
}
.value__t em {
  font-style: italic;
  color: var(--cognac);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.value__d {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.promise {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.promise .eyebrow-line {
  justify-content: center;
}
.promise__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 36px;
}
.promise__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cognac);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.promise__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  margin-top: 28px;
  text-align: left;
}
@media (max-width: 720px) { .promise__list { grid-template-columns: 1fr; } }
.promise__list li {
  display: flex;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.promise__list li svg {
  color: var(--cognac);
  flex-shrink: 0;
  margin-top: 3px;
}

/* =========================================================
   CONTACT — info + form
   ========================================================= */

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }

.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-card {
  position: relative;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.info-card:hover { border-color: var(--cream); background: var(--surface-2); }
.info-card__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line-bright);
  border-radius: 2px;
  color: var(--cognac);
  margin-bottom: 16px;
}
.info-card__label {
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.info-card__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.info-card__value a { color: inherit; transition: color 0.25s; }
.info-card__value a:hover { color: var(--cognac); }
.info-card__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.map {
  grid-column: 1 / -1;
  position: relative;
  min-height: 200px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid; place-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(232,220,196,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,220,196,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.map::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(161,58,50,0.15), transparent 60%);
  pointer-events: none;
}
.map__pin { position: relative; width: 18px; height: 18px; }
.map__pin .dot {
  position: absolute; inset: 4px;
  background: var(--cognac);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--cognac);
}
.map__pin .ring {
  position: absolute; inset: 0;
  border: 1px solid var(--cognac);
  border-radius: 50%;
  animation: mapping 2.4s var(--ease-out) infinite;
}
.map__pin .ring:nth-child(2) { animation-delay: 1.2s; }
@keyframes mapping {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(3.2); opacity: 0; }
}
.map__label {
  position: absolute;
  bottom: 14px; left: 18px;
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* Form */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.form::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 26px;
  background: linear-gradient(270deg, var(--cognac), transparent);
  transform: skewX(-25deg) translateX(40px);
  opacity: 0.22;
}

.form__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  font-size: 1.9rem;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 8px;
}
.form__sub {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.6;
}

.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

.field {
  margin-bottom: 22px;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) { .field--row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cognac);
  background: var(--bg);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23b86a45' stroke-width='1.6' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  margin-top: 12px;
}
.form__fineprint {
  font-family: var(--font-tech);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 500;
}

.form__status {
  margin-top: 18px;
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 18px;
}
.form__status.is-error   { color: #d97852; }
.form__status.is-success { color: var(--cream); }
.form__status.is-loading { color: var(--cognac); }

/* =========================================================
   FAQ — accordion
   ========================================================= */

.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.faq-item[open] { background: rgba(232,220,196,0.025); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  color: var(--text);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--cognac); }
.faq-item .sign {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: var(--cognac);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.faq-item[open] .sign {
  transform: rotate(45deg);
  border-color: var(--cognac);
}
.faq-item .answer {
  padding: 0 0 28px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 72ch;
}

/* =========================================================
   Slash variants
   ========================================================= */

.slash--right { background: linear-gradient(270deg, var(--cognac) 0%, var(--cognac-hot) 60%, transparent 100%); }

/* Bookings widget */
.bk-step { margin-bottom: 32px; }
.bk-label { display:block; font-weight:600; font-size:14px; margin-bottom:8px; letter-spacing:0.04em; }
.bk-select { width:100%; padding:14px 16px; font-size:16px; border:1px solid #d6cfc1; background:#fff; }
.bk-summary { margin-top:8px; color:#5b5040; font-size:14px; }
.bk-grid { display:grid; gap:12px; margin-bottom:16px; }
.bk-grid input, .bk-grid textarea { padding:12px 14px; font-size:15px; border:1px solid #d6cfc1; background:#fff; font-family:inherit; }
.bk-calendar { border:1px solid #d6cfc1; padding:16px; background:#fff; }
.bk-cal-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; font-weight:600; }
.bk-cal-nav { border:none; background:none; font-size:24px; cursor:pointer; padding:4px 12px; }
.bk-cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.bk-cal-grid .dow { text-align:center; font-size:12px; color:#7a6f5d; padding:4px; }
.bk-cal-day { aspect-ratio:1; display:flex; align-items:center; justify-content:center; cursor:pointer; border:1px solid transparent; font-size:15px; }
.bk-cal-day.is-available { background:#f4ede0; color:#221c12; }
.bk-cal-day.is-available:hover { background:#e8dcc4; }
.bk-cal-day.is-selected { background:#221c12; color:#fff; }
.bk-cal-day.is-disabled { color:#c7bcab; cursor:not-allowed; }
.bk-times { margin-top:16px; display:flex; flex-wrap:wrap; gap:8px; }
.bk-time { padding:8px 14px; border:1px solid #d6cfc1; background:#fff; cursor:pointer; font-size:14px; }
.bk-time.is-selected { background:#221c12; color:#fff; border-color:#221c12; }

/* Cookie banner */
.cookie-banner { position:fixed; bottom:0; left:0; right:0; background:#221c12; color:#fff; padding:14px 20px; display:flex; gap:16px; align-items:center; z-index:9999; font-size:14px; }
.cookie-banner p { margin:0; flex:1; }
.cookie-banner a { color:#e8dcc4; text-decoration:underline; }
.cookie-banner button { background:#fff; color:#221c12; border:none; padding:8px 16px; cursor:pointer; font-weight:600; }
.cookie-banner[hidden] { display:none; }

/* ===== Brand logo (header/footer badge + home hero plate) ===== */
.nav__logo-mark--img {
  width: 46px; height: 46px; border-radius: 9px; overflow: hidden;
  display: inline-flex; flex: 0 0 auto; border: 1px solid var(--line-bright);
}
.nav__logo-mark--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer__brand .nav__logo-mark--img { width: 42px; height: 42px; }

.hero__logo {
  position: relative; width: 100%; max-width: 480px; margin-inline: auto;
  border: 1px solid var(--line-bright); border-radius: 14px; overflow: hidden;
  box-shadow: 0 34px 90px -34px rgba(0,0,0,0.85), 0 0 0 1px rgba(232,220,196,0.04);
}
.hero__logo img { width: 100%; height: auto; display: block; }
.hero__logo .hero__visual-corners .tick, .hero__logo .hero__visual-label { z-index: 3; }

/* Bookings + Call show only in the mobile slide-in menu */
.nav__link--m { display: none; }
@media (max-width: 980px) { .nav__link--m { display: block; } }

/* "We come to you" mobile differentiator band */
.mobile-band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(48px, 7vw, 80px) var(--pad-x); }
.mobile-band__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; }
.mobile-band__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.02; color: var(--text); }
.mobile-band__title em { font-style: italic; color: var(--cognac); }
.mobile-band__text { color: var(--text-muted); font-size: 1.125rem; line-height: 1.75; max-width: 60ch; }
@media (max-width: 780px) { .mobile-band__inner { grid-template-columns: 1fr; gap: 24px; } }

/* Image-slot fallback: tiles keep their gradient behind any <img>/background that fails to load */
.bg, .tile__bg { background-size: cover; background-position: center; }

/* Review form */
.review-form { max-width: 720px; }
.review-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.review-form__grid select { grid-column: 1 / -1; }
.review-form input, .review-form select, .review-form textarea { padding: 12px 14px; font-size: 15px; border: 1px solid #d6cfc1; background: #fff; font-family: inherit; width: 100%; }
.review-form textarea { margin: 14px 0; }
@media (max-width: 600px) { .review-form__grid { grid-template-columns: 1fr; } }
/* Star input: reverse-ordered radios so CSS sibling hover fills left-to-right */
.star-input { border: 0; padding: 0; display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-input label { font-size: 30px; color: #d6cfc1; cursor: pointer; line-height: 1; transition: color 0.15s; }
.star-input input:checked ~ label,
.star-input label:hover, .star-input label:hover ~ label { color: var(--cognac); }
.star-input input:focus-visible + label { outline: 2px solid var(--cognac); }
