/* =========================================================================
   Cled Décoration — Design system
   Luxe artisanal côtier breton · Marcellus + Jost · pétrole & or
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces (fond clair, teinté pétrole — jamais crème) */
  --bg:        oklch(0.985 0.004 220);
  --bg-2:      oklch(0.965 0.007 222);
  --surface:   oklch(0.995 0.002 220);
  --line:      oklch(0.885 0.010 224);
  --line-soft: oklch(0.925 0.008 224);

  /* Encre pétrole (identité #1C4253) */
  --deep:   oklch(0.345 0.045 226);
  --deep-2: oklch(0.285 0.040 228);
  --deep-3: oklch(0.235 0.034 230);
  --ink:    oklch(0.270 0.030 226);
  --muted:  oklch(0.470 0.022 226);

  /* Or / laiton (identité #EAA546) */
  --gold:      oklch(0.775 0.120 74);
  --gold-warm: oklch(0.720 0.135 66);
  --gold-ink:  oklch(0.540 0.105 62);  /* or lisible sur fond clair */

  /* Sur fond sombre */
  --on-deep:        oklch(0.965 0.006 90);
  --on-deep-muted:  oklch(0.800 0.018 220);
  --on-deep-line:   oklch(1 0 0 / 0.14);

  /* Rayons & ombres — angles doux, jamais anguleux */
  --r-sm: 4px;
  --r:    10px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px oklch(0.30 0.04 226 / 0.06), 0 4px 14px oklch(0.30 0.04 226 / 0.06);
  --shadow:    0 10px 30px oklch(0.30 0.04 226 / 0.10), 0 2px 8px oklch(0.30 0.04 226 / 0.07);
  --shadow-lg: 0 30px 70px oklch(0.28 0.04 226 / 0.20);

  /* Rythme fluide */
  --pad-x: clamp(1.25rem, 5vw, 5.5rem);
  --gap:   clamp(1rem, 2.4vw, 2rem);
  --section: clamp(4.5rem, 10vw, 9rem);
  --maxw: 1280px;
  --measure: 68ch;

  /* Type */
  --font-display: "Marcellus", "Times New Roman", serif;
  --font-body: "Jost", system-ui, -apple-system, sans-serif;
  --fs-eyebrow: clamp(0.72rem, 0.9vw, 0.8rem);
  --fs-body: clamp(1.02rem, 0.55vw + 0.9rem, 1.14rem);
  --fs-lead: clamp(1.18rem, 1.1vw + 0.9rem, 1.5rem);
  --fs-h4: clamp(1.1rem, 1vw + 0.8rem, 1.35rem);
  --fs-h3: clamp(1.4rem, 1.6vw + 0.9rem, 2rem);
  --fs-h2: clamp(2rem, 3.2vw + 1rem, 3.3rem);
  --fs-h1: clamp(2.6rem, 5.4vw + 1rem, 5rem);

  /* z */
  --z-header: 100;
  --z-drawer: 200;
  --z-lightbox: 300;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
img { image-orientation: from-image; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--gold-ink); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--deep-3); }

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  text-wrap: balance;
  color: var(--deep-2);
}
h1 { font-size: var(--fs-h1); line-height: 1.02; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.14; }
h4 { font-size: var(--fs-h4); line-height: 1.2; }
p { text-wrap: pretty; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: clamp(1.4rem, 3vw, 2.6rem);
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.center { justify-content: center; }

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink); max-width: var(--measure); }
.script { font-family: var(--font-display); font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.container-wide { max-width: 1480px; }
.section { padding-block: var(--section); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }
.measure { max-width: var(--measure); }

.section-head { max-width: 44rem; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 + p { margin-top: 1.1rem; color: var(--muted); font-size: var(--fs-lead); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--deep-2);
  --btn-fg: var(--on-deep);
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.7em;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: var(--r-pill);
  font-weight: 500; letter-spacing: 0.01em;
  font-size: 0.98rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-gold { --btn-bg: var(--gold); --btn-fg: var(--deep-3); }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--deep-2);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--gold); }
.btn-on-deep { --btn-bg: var(--gold); --btn-fg: var(--deep-3); }
.btn-lg { padding: 1.1em 2.1em; font-size: 1.02rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 500; color: var(--gold-ink);
  border-bottom: 1px solid color-mix(in oklch, var(--gold-ink) 35%, transparent);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover { gap: 0.85em; border-color: var(--gold-ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease);
  color: var(--on-deep);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: clamp(0.8rem, 1.6vw, 1.15rem);
}
.site-header.scrolled {
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px oklch(0.3 0.04 226 / 0.06);
  color: var(--ink);
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 0.28em; z-index: 1; }
.brand .name {
  font-family: var(--font-display); font-size: clamp(1.15rem, 1.4vw, 1.5rem);
  letter-spacing: 0.02em;
}
.brand .place {
  font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; padding-left: 0.1em;
}
.scrolled .brand .place { color: var(--gold-ink); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 2rem); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 1.7vw, 2rem); list-style: none; }
.nav-links a {
  font-size: 0.92rem; font-weight: 400; letter-spacing: 0.01em;
  position: relative; padding-block: 0.4rem; white-space: nowrap;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold); }
.scrolled .nav-links a[aria-current="page"] { color: var(--gold-ink); }

/* dropdown */
.has-menu { position: relative; }
.has-menu > button {
  display: inline-flex; align-items: center; gap: 0.4em;
  font: inherit; font-size: 0.92rem; letter-spacing: 0.01em; color: inherit;
}
.has-menu > button .chev { transition: transform 0.3s var(--ease); }
.has-menu:hover > button .chev, .has-menu:focus-within > button .chev { transform: rotate(180deg); }
.submenu {
  position: absolute; top: calc(100% + 0.6rem); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 15rem; background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r); padding: 0.5rem;
  box-shadow: var(--shadow); list-style: none;
  opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { display: block; padding: 0.6rem 0.85rem; border-radius: var(--r-sm); font-size: 0.92rem; transition: background 0.2s, color 0.2s; }
.submenu a:hover { background: var(--bg-2); color: var(--gold-ink); }
.submenu a::after { display: none; }

.nav-cta { display: inline-flex; }
.scrolled .nav .btn-ghost { --btn-fg: var(--deep-2); box-shadow: inset 0 0 0 1px var(--line); }
.site-header:not(.scrolled) .nav .btn-ghost { --btn-fg: var(--on-deep); box-shadow: inset 0 0 0 1px var(--on-deep-line); }

.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; z-index: 1; }
.menu-toggle span { position: relative; width: 22px; height: 1.5px; background: currentColor; transition: background 0.2s; }
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor;
  transition: transform 0.35s var(--ease), top 0.3s var(--ease);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Bascule mobile : masque la nav desktop, montre le hamburger */
@media (max-width: 960px) {
  .site-header .nav-links, .site-header .nav-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: var(--deep-3); color: var(--on-deep);
  padding: clamp(5rem, 14vh, 7rem) var(--pad-x) 2.5rem;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
body.nav-open .drawer { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 0.1rem; margin-top: auto; }
.drawer a, .drawer .group-label {
  font-family: var(--font-display); font-size: clamp(1.5rem, 6vw, 2rem);
  padding-block: 0.5rem; border-bottom: 1px solid var(--on-deep-line);
}
.drawer .sub { display: flex; flex-direction: column; }
.drawer .sub a { font-size: 1.05rem; font-family: var(--font-body); color: var(--on-deep-muted); border: none; padding-block: 0.42rem; padding-left: 1rem; }
.drawer .sub a:hover { color: var(--gold); }
.drawer .group-label { color: var(--gold); }
.drawer .drawer-foot { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.4rem; color: var(--on-deep-muted); font-size: 0.95rem; }
.drawer .drawer-foot a { font-family: var(--font-body); font-size: 0.95rem; border: none; padding: 0; color: var(--on-deep); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(100svh, 900px); display: grid; align-items: end; color: var(--on-deep); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, oklch(0.22 0.035 230 / 0.85) 0%, oklch(0.24 0.035 230 / 0.35) 45%, oklch(0.24 0.035 230 / 0.55) 100%);
}
.hero-inner { padding-bottom: clamp(3.5rem, 9vh, 7rem); padding-top: 8rem; max-width: 60rem; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--surface); margin-top: 1.2rem; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-sub { margin-top: 1.5rem; font-size: var(--fs-lead); color: oklch(0.94 0.01 90); max-width: 40rem; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: oklch(1 0 0 / 0.7);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero-scroll .rail { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero-scroll .rail::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scroll-rail 2.4s var(--ease) infinite; }
@keyframes scroll-rail { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }
@media (max-width: 640px), (max-height: 720px) { .hero-scroll { display: none; } }

/* ---------- Deep section ---------- */
.deep { background: var(--deep-2); color: var(--on-deep); }
.deep h1, .deep h2, .deep h3, .deep h4 { color: var(--surface); }
.deep .section-head h2 + p, .deep .muted { color: var(--on-deep-muted); }
.deep .eyebrow { color: var(--gold); }
.deep-3 { background: var(--deep-3); color: var(--on-deep); }
.deep-3 h1,.deep-3 h2,.deep-3 h3,.deep-3 h4 { color: var(--surface); }

/* ---------- Intro / bio split ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; } .split.reverse > :first-child { order: 2; } }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.split-media.tall img { aspect-ratio: 3 / 4; }
.media-frame { position: relative; }
.media-frame::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--gold);
  border-radius: var(--r-lg); z-index: -1; opacity: 0.55;
}

/* signature list */
.checklist { list-style: none; display: grid; gap: 0.7rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start; }
.checklist li::before {
  content: ""; margin-top: 0.6em; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px color-mix(in oklch, var(--gold) 25%, transparent);
}
.deep .checklist li::before { box-shadow: 0 0 0 3px oklch(1 0 0 / 0.08); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); }
.stat .n { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--gold); line-height: 1; }
.deep .stat .n { color: var(--gold); }
.stat .l { margin-top: 0.6rem; font-size: 0.95rem; color: var(--muted); letter-spacing: 0.01em; }
.deep .stat .l { color: var(--on-deep-muted); }

/* ---------- Univers / offer cards ---------- */
.offer-grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.offer {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  min-height: clamp(360px, 44vw, 460px); display: flex; align-items: flex-end;
  color: var(--on-deep); isolation: isolate; box-shadow: var(--shadow-sm);
}
.offer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--ease); }
.offer::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, oklch(0.2 0.03 230 / 0.9) 8%, oklch(0.2 0.03 230 / 0.15) 62%, oklch(0.2 0.03 230 / 0.35)); }
.offer:hover img { transform: scale(1.06); }
.offer-body { padding: clamp(1.4rem, 2.5vw, 2rem); }
.offer h3 { color: var(--surface); }
.offer .tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.offer p { margin-top: 0.5rem; color: oklch(0.9 0.01 90); font-size: 0.98rem; }
.offer .link-arrow { margin-top: 1rem; color: var(--gold); border-color: color-mix(in oklch, var(--gold) 40%, transparent); }
.offer.feature { grid-column: span 2; }
@media (max-width: 720px) { .offer.feature { grid-column: span 1; } }
.offer-link::before { content: ""; position: absolute; inset: 0; z-index: 1; }

/* ---------- Prestation / detail cards (light) ---------- */
.cards { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2.2rem); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-soft); }
.card .num { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-ink); }
.card .icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: color-mix(in oklch, var(--gold) 16%, var(--surface)); color: var(--gold-ink); margin-bottom: 1.1rem; }
.card h3 { font-size: var(--fs-h4); }
.card h4 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .price { margin-top: 1.1rem; font-family: var(--font-display); color: var(--deep-2); font-size: 1.15rem; }
.card .price span { font-family: var(--font-body); font-size: 0.85rem; color: var(--muted); letter-spacing: 0.02em; }

/* offer detail (rich, alternating) */
.prestation { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
@media (min-width: 880px) { .prestation { grid-template-columns: 1fr 1fr; } .prestation.reverse .prestation-media { order: 2; } }
.prestation-media img { border-radius: var(--r-lg); aspect-ratio: 5 / 4; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.prestation .kicker { color: var(--gold-ink); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.76rem; }
.pill-price { display: inline-flex; align-items: baseline; gap: 0.4em; margin-top: 1.2rem;
  background: color-mix(in oklch, var(--gold) 14%, var(--bg)); color: var(--gold-ink);
  padding: 0.5em 1em; border-radius: var(--r-pill); font-weight: 500; font-size: 0.95rem; }
.pill-price b { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; color: var(--deep-2); }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: clamp(0.6rem, 1.4vw, 1rem); }
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 560px) { .gallery { columns: 1; } }
.gallery figure { break-inside: avoid; margin-bottom: clamp(0.6rem, 1.4vw, 1rem); position: relative; overflow: hidden; border-radius: var(--r); }
.gallery button.g-item { display: block; width: 100%; padding: 0; overflow: hidden; border-radius: var(--r); }
.gallery img { width: 100%; transition: transform 0.8s var(--ease), filter 0.5s var(--ease); }
.gallery button.g-item:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem 0.9rem; color: var(--surface); font-size: 0.85rem;
  background: linear-gradient(to top, oklch(0.2 0.03 230 / 0.75), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); pointer-events: none;
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox); display: grid; place-items: center;
  background: oklch(0.18 0.03 230 / 0.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s; padding: clamp(1rem, 4vw, 3rem); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; width: auto; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; color: var(--surface); width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; background: oklch(1 0 0 / 0.08); transition: background 0.25s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: oklch(1 0 0 / 0.2); }
.lightbox .lb-close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lightbox .lb-nav.prev { left: clamp(0.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: clamp(0.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }

/* ---------- References marquee ---------- */
.refs { overflow: hidden; }
.refs-track { display: flex; gap: clamp(2rem, 5vw, 4.5rem); width: max-content; animation: marquee 40s linear infinite; }
.refs:hover .refs-track { animation-play-state: paused; }
.ref-item { font-family: var(--font-display); font-size: clamp(1rem, 1.6vw, 1.5rem); color: var(--on-deep-muted); white-space: nowrap; letter-spacing: 0.03em; opacity: 0.85; }
.ref-item::after { content: "·"; margin-left: clamp(2rem,5vw,4.5rem); color: var(--gold); opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .refs-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } .ref-item::after { display: none; } }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); position: relative; }
.deep .quote { background: oklch(1 0 0 / 0.04); border-color: var(--on-deep-line); }
.quote .mark { font-family: var(--font-display); font-size: 3.4rem; line-height: 0.6; color: var(--gold); height: 1.2rem; display: block; }
.quote p { margin-top: 1rem; font-size: 1.02rem; color: var(--ink); }
.deep .quote p { color: oklch(0.92 0.01 90); }
.quote .who { margin-top: 1.4rem; display: flex; flex-direction: column; }
.quote .who b { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; color: var(--deep-2); }
.deep .quote .who b { color: var(--surface); }
.quote .who span { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.02em; }
.deep .quote .who span { color: var(--on-deep-muted); }
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: oklch(0.22 0.035 230 / 0.82); }
.cta-band .inner { text-align: center; max-width: 42rem; margin-inline: auto; color: var(--on-deep); }
.cta-band h2 { color: var(--surface); }
.cta-band p { margin-top: 1rem; color: oklch(0.9 0.01 90); font-size: var(--fs-lead); }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-info .detail { display: flex; gap: 0.9rem; align-items: flex-start; padding-block: 1rem; border-bottom: 1px solid var(--on-deep-line); }
.contact-info .detail .ico { color: var(--gold); margin-top: 0.15rem; flex: none; }
.contact-info .detail > span:last-child { display: flex; flex-direction: column; }
.contact-info .detail .k { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-info .detail .v { display: block; color: var(--on-deep); font-size: 1.05rem; }
.contact-info .detail a.v:hover { color: var(--gold); }

.form { background: var(--surface); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 0.45rem; font-weight: 500; }
.field label .req { color: var(--gold-ink); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0.85em 1em; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in oklch, var(--muted) 75%, transparent); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in oklch, var(--gold) 22%, transparent); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; gap: 1.15rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form .note { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }

/* ---------- Product / boutique ---------- */
.products { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.product { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product .thumb { aspect-ratio: 4 / 3; background: var(--bg-2); display: grid; place-items: center; overflow: hidden; position: relative; }
.product .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product .badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--deep-3); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35em 0.8em; border-radius: var(--r-pill); font-weight: 500; }
.product .p-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.product h3 { font-size: 1.25rem; }
.product .p-desc { color: var(--muted); font-size: 0.95rem; margin-top: 0.5rem; flex: 1; }
.product .p-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.4rem; }
.product .p-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--deep-2); }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; padding-top: clamp(8rem, 18vh, 12rem); padding-bottom: clamp(3.5rem, 8vh, 6rem); color: var(--on-deep); isolation: isolate; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, oklch(0.2 0.03 230 / 0.9), oklch(0.22 0.03 230 / 0.55)); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--surface); margin-top: 1rem; max-width: 20ch; }
.page-hero p { margin-top: 1.2rem; color: oklch(0.92 0.01 90); font-size: var(--fs-lead); max-width: 46rem; }
.crumbs { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: oklch(0.85 0.01 90); letter-spacing: 0.04em; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { opacity: 0.5; }

/* ---------- Info strip ---------- */
.info-strip { display: grid; gap: clamp(1rem,2vw,1.6rem); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.info-strip .item { display: flex; gap: 0.8rem; align-items: flex-start; }
.info-strip .ico { color: var(--gold-ink); flex: none; margin-top: 0.1rem; }
.info-strip .k { font-family: var(--font-display); font-size: 1.05rem; color: var(--deep-2); }
.info-strip .v { color: var(--muted); font-size: 0.94rem; margin-top: 0.15rem; }
.deep .info-strip .k { color: var(--surface); }
.deep .info-strip .ico { color: var(--gold); }
.deep .info-strip .v { color: var(--on-deep-muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-3); color: var(--on-deep-muted); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer-top { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .name { font-family: var(--font-display); font-size: 1.7rem; color: var(--surface); letter-spacing: 0.02em; }
.footer-brand .place { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; }
.footer-brand p { margin-top: 1.2rem; max-width: 30ch; font-size: 0.95rem; }
.footer-col h4 { color: var(--surface); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col .row { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-col .row .ico { color: var(--gold); margin-top: 0.15rem; flex: none; }
.social-btn { display: inline-flex; align-items: center; gap: 0.6em; margin-top: 0.4rem; color: var(--surface); }
.social-btn:hover { color: var(--gold); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid var(--on-deep-line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal motion ----------
   Content is visible by default. Motion only engages when JS is present
   (html.js), so no-JS / headless / SEO renders never ship blank sections. */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal][data-delay="1"] { transition-delay: 0.08s; }
.js [data-reveal][data-delay="2"] { transition-delay: 0.16s; }
.js [data-reveal][data-delay="3"] { transition-delay: 0.24s; }
.js [data-reveal][data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .offer:hover img, .gallery button.g-item:hover img { transform: none; }
}

/* ---------- Misc utilities ---------- */
.divider-mark { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); }
.divider-mark::before, .divider-mark::after { content: ""; height: 1px; width: clamp(2rem, 8vw, 5rem); background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-mark::after { background: linear-gradient(90deg, var(--gold), transparent); }
.muted { color: var(--muted); }
.text-gold { color: var(--gold-ink); }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--deep-3); color: var(--surface); padding: 0.8em 1.2em; border-radius: 0 0 var(--r) 0; }
.skip-link:focus { left: 0; }
