/* ==========================================================================
   BENOUARETH GOLD AND DIAMONDS — Design system
   Palette, typography and section rhythm derived from the approved design
   canvas (design/Benouareth Gold and Diamonds.dc.html).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg:            #0b0a08;
  --bg2:           #16130c;
  --fg:            #f6efe0;
  --fg2:           #fdf6e6;
  --muted:         #aa9f89;
  --muted2:        #d8c8a0;
  --muted3:        #8f8164;
  --border:        rgba(227, 178, 60, .22);
  --border2:       rgba(227, 178, 60, .40);
  --gold:          #e3b23c;
  --gold2:         #f4d488;
  --gold-ink:      #151006;
  --band:          linear-gradient(135deg, #241a08, #16130c);
  --navbg:         rgba(11, 10, 8, .88);
  --hero-overlay:  linear-gradient(180deg, rgba(11,10,8,.50) 0%, rgba(11,10,8,.68) 55%, rgba(11,10,8,.95) 100%);
  --shadow:        0 24px 50px rgba(0, 0, 0, .45);
  --shadow-sm:     0 12px 28px rgba(0, 0, 0, .28);

  --font-display:  'Cinzel', 'Times New Roman', serif;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-body:     'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shell:         1240px;
  --gutter:        clamp(20px, 5vw, 40px);
  --section-y:     clamp(72px, 10vw, 130px);
  --radius:        2px;
}

html[data-theme="light"] {
  --bg:            #faf5e6;
  --bg2:           #f1e6c8;
  --fg:            #241b09;
  --fg2:           #150f06;
  --muted:         #5f5236;
  --muted2:        #4a3f22;
  --muted3:        #6f6237;
  --border:        rgba(160, 110, 10, .25);
  --border2:       rgba(160, 110, 10, .40);
  --gold:          #96680a;
  --gold2:         #7d5607;
  --gold-ink:      #fdf6e6;
  --band:          linear-gradient(135deg, #efdfae, #f1e6c8);
  --navbg:         rgba(250, 245, 230, .92);
  --hero-overlay:  linear-gradient(180deg, rgba(250,245,230,.30) 0%, rgba(250,245,230,.55) 55%, rgba(250,245,230,.92) 100%);
  --shadow:        0 24px 50px rgba(90, 62, 6, .18);
  --shadow-sm:     0 12px 28px rgba(90, 62, 6, .12);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  /* The off-canvas menu sits at translateX(100%); `clip` keeps it from
     widening the document while leaving the sticky nav working. */
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  transition: background .25s ease, color .25s ease;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold2); }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; }
p, ul, ol { margin: 0; }
button { font: inherit; cursor: pointer; }
::selection { background: #cda449; color: #0b0a08; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--gold-ink);
  padding: 12px 20px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell { max-width: var(--shell); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
.shell--narrow { max-width: 880px; }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg2); border-top: 1px solid var(--border); }
.section--base { background: var(--bg); }

.grid { display: grid; gap: clamp(32px, 5vw, 70px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--split { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); align-items: center; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(28px, 4vw, 44px); }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }

.rule { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; }
.rule::after { content: ""; width: 36px; height: 1px; background: var(--border2); }
.rule__gem { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex: none; }
.rule--center { justify-content: center; }
.rule--center::before { content: ""; width: 36px; height: 1px; background: var(--border2); }

.h-display { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 36px); line-height: 1.2; letter-spacing: .5px; color: var(--fg); }
.h-serif { font-family: var(--font-serif); font-size: clamp(20px, 2.4vw, 24px); color: var(--gold2); font-weight: 600; margin: 0 0 20px; }
.lead { font-size: 15.5px; line-height: 1.85; color: var(--muted); }
.body-sm { font-size: 14px; line-height: 1.85; color: var(--muted2); }
.center { text-align: center; }
.measure { max-width: 780px; margin-inline: auto; }
.mt-l { margin-top: clamp(40px, 6vw, 70px); }
.mt-m { margin-top: clamp(28px, 4vw, 44px); }
.mb-l { margin-bottom: clamp(40px, 6vw, 70px); }
.mb-m { margin-bottom: clamp(28px, 4vw, 44px); }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 60px); }
.section-head .lead { margin-top: 22px; }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px; font-size: 14.5px; line-height: 1.65; color: var(--muted2);
}
.list-check li::before {
  content: ""; flex: none; width: 17px; height: 17px; margin-top: 3px; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.list-bullet { margin: 0; padding-left: 18px; font-size: 14px; line-height: 1.9; color: var(--muted2); }
.list-bullet li { margin-bottom: 4px; }
.list-bullet li::marker { color: var(--gold); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
  padding: 16px 32px; border-radius: var(--radius); border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.8; }

.btn--gold { background: linear-gradient(135deg, var(--gold2), var(--gold)); color: var(--gold-ink); }
.btn--gold:hover { color: var(--gold-ink); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(224, 178, 60, .34); }

.btn--ghost { border-color: var(--border2); color: var(--fg); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--sm { padding: 12px 22px; font-size: 11.5px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Animations & splash
   -------------------------------------------------------------------------- */
@keyframes splashPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 40px rgba(224,178,60,.25); }
  50%      { transform: scale(1.05); box-shadow: 0 0 70px rgba(224,178,60,.45); }
}
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes floatY  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes sparkle { 0%, 100% { opacity: .3; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.15); } }

#splash {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#splash img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; animation: splashPulse 1.8s ease-in-out infinite; }
#splash p { margin: 22px 0 0; font-family: var(--font-display); letter-spacing: 2px; font-size: 13px; color: var(--gold); text-transform: uppercase; }
body.is-loaded #splash { opacity: 0; visibility: hidden; pointer-events: none; }

/* --------------------------------------------------------------------------
   7. Top utility bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--band); border-bottom: 1px solid var(--border);
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted2);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 38px; padding-block: 8px; }
.topbar__values { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.dot { color: var(--gold); }

.ticker { display: none; align-items: center; gap: 18px; }
.ticker.is-live { display: flex; }
.ticker__item { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.ticker__label { color: var(--muted3); }
.ticker__value { color: var(--fg); font-weight: 600; letter-spacing: .4px; }
.ticker__delta { font-size: 10.5px; letter-spacing: .4px; }
.ticker__delta.up { color: #4caf7d; }
.ticker__delta.down { color: #d9705f; }

.socials { display: flex; gap: 10px; align-items: center; }
.socials a {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--muted2);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 13px; height: 13px; fill: currentColor; }

@media (max-width: 900px) { .topbar__inner { justify-content: center; } .ticker { display: none; } .ticker.is-live { display: flex; } }
@media (max-width: 620px) {
  .topbar { font-size: 9.5px; letter-spacing: 1px; }
  .topbar__values { flex-wrap: nowrap; gap: 7px; }
  .topbar .socials { display: none; }
}

/* --------------------------------------------------------------------------
   8. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--navbg); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.nav.is-stuck { box-shadow: 0 10px 30px rgba(0, 0, 0, .28); }
.nav__inner { display: flex; align-items: center; gap: 18px; min-height: 70px; padding-block: 8px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: clamp(46px, 7vw, 58px); height: clamp(46px, 7vw, 58px); border-radius: 50%; object-fit: cover; border: 1px solid var(--border2); flex: none; }

.nav__links { display: flex; flex-wrap: wrap; gap: 4px clamp(9px, 1.1vw, 16px); flex: 1; justify-content: center; }
.nav__links a { font-size: 10.5px; letter-spacing: .9px; text-transform: uppercase; color: var(--muted2); padding: 6px 1px; position: relative; white-space: nowrap; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

.nav__tools { display: flex; align-items: center; gap: 8px; flex: none; }

.langs { display: flex; gap: 5px; }
.lang-btn { padding: 2px; border-radius: 3px; border: 1.5px solid transparent; background: transparent; line-height: 0; transition: border-color .2s ease; }
.lang-btn[aria-pressed="true"] { border-color: var(--gold); }
.flag { display: block; width: 22px; height: 15px; border-radius: 2px; }
.flag--fr { background: linear-gradient(to right, #002395 0 33%, #fff 33% 66%, #ED2939 66% 100%); }
.flag--en {
  background-color: #00247d;
  background-image:
    linear-gradient(to right,  transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(to bottom, transparent 40%, #fff 40% 60%, transparent 60%),
    linear-gradient(45deg,     transparent 46%, #fff 46% 54%, transparent 54%),
    linear-gradient(-45deg,    transparent 46%, #fff 46% 54%, transparent 54%),
    linear-gradient(to right,  transparent 46%, #CF142B 46% 54%, transparent 54%),
    linear-gradient(to bottom, transparent 46%, #CF142B 46% 54%, transparent 54%);
}

.theme-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border2); background: transparent; position: relative; overflow: hidden; flex: none; transition: border-color .2s ease; }
.theme-btn:hover { border-color: var(--gold); }
.theme-btn span { position: absolute; inset: 5px; border-radius: 50%; background: var(--gold); }
html[data-theme="dark"] .theme-btn span { box-shadow: 5px -3px 0 0 var(--bg) inset; }

.nav__cta { display: none; }
@media (min-width: 760px) { .nav__cta { display: inline-flex; } }

.burger { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--border2); border-radius: var(--radius); background: transparent; }
.burger span { display: block; width: 16px; height: 1.5px; background: var(--gold); position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--gold);
  transition: transform .25s ease, top .25s ease;
}
.burger span::before { top: -5px; }
.burger span::after  { top:  5px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1023px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: var(--bg2); border-left: 1px solid var(--border);
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 0; padding: 90px 28px 40px; transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1); z-index: 70; overflow-y: auto;
  }
  body.nav-open .nav__links { transform: none; }
  .nav__links a { font-size: 13px; padding: 16px 0; border-bottom: 1px solid var(--border); letter-spacing: 1.6px; }
  .nav__links a::after { display: none; }
  .nav__scrim { position: fixed; inset: 0; background: rgba(0, 0, 0, .55); z-index: 65; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
  body.nav-open .nav__scrim { opacity: 1; visibility: visible; }
}
@media (min-width: 1024px) { .burger, .nav__scrim { display: none; } }

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(92vh, 800px); display: flex; align-items: center;
  background: radial-gradient(circle at 72% 45%, var(--bg2) 0%, var(--bg) 62%);
}
.hero__map { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: url("../img/art-worldmap.svg") center right / cover no-repeat; opacity: .55; }
.hero__glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: var(--hero-overlay); }
.hero__inner {
  position: relative; z-index: 3; width: 100%;
  padding-block: clamp(64px, 11vw, 110px);
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 48px; align-items: center;
}
@media (min-width: 980px) { .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); } }

.hero__copy { max-width: 660px; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 5.6vw, 58px); line-height: 1.08; letter-spacing: 1px; margin: 0 0 24px;
  background: linear-gradient(100deg, var(--gold2), var(--gold) 30%, #fff3cf 50%, var(--gold) 70%, var(--gold2));
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite;
}
.hero__quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 2.4vw, 25px); color: var(--gold2); margin: 0 0 26px; }
.hero__sub { font-size: 16px; line-height: 1.75; color: var(--muted2); margin: 0 0 40px; max-width: 560px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 40px; }
.hero__badge { display: flex; align-items: center; gap: 10px; font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted2); }
.hero__badge svg { width: 20px; height: 20px; flex: none; stroke: var(--gold); fill: none; stroke-width: 1.4; }

.hero__art { position: relative; height: clamp(320px, 44vw, 440px); }
.hero__art .media { position: absolute; box-shadow: var(--shadow); }
.hero__art .media--bars    { left: 0; bottom: 0; width: 88%; height: 64%; animation: floatY 6s ease-in-out infinite; }
.hero__art .media--diamond { right: 0; top: 0; width: 42%; height: 44%; animation: floatY 4.6s ease-in-out infinite .4s; }
.hero__art .spark { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #fff; filter: blur(.5px); animation: sparkle 2s ease-in-out infinite; right: 36%; top: 2%; }
@media (max-width: 979px) { .hero__art { display: none; } }

/* --------------------------------------------------------------------------
   10. Media panels (photo-ready slots, decorative SVG fallback)
   -------------------------------------------------------------------------- */
.media {
  position: relative; overflow: hidden; border-radius: 6px;
  background-color: #100d07; background-position: center; background-size: cover; background-repeat: no-repeat;
  border: 1px solid var(--border); min-height: 120px;
}
.media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.42) 100%); pointer-events: none; }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media--flat { border-radius: 0; }

.media[data-art="bars"]     { background-image: url("../img/art-bars.svg"); }
.media[data-art="diamond"]  { background-image: url("../img/art-diamond.svg"); }
.media[data-art="pour"]     { background-image: url("../img/art-pour.svg"); }
.media[data-art="lab"]      { background-image: url("../img/art-lab.svg"); }
.media[data-art="vault"]    { background-image: url("../img/art-vault.svg"); }
.media[data-art="mine"]     { background-image: url("../img/art-mine.svg"); }
.media[data-art="ingot"]    { background-image: url("../img/art-ingot.svg"); }
.media[data-art="coins"]    { background-image: url("../img/art-coins.svg"); }
.media[data-art="portrait"] { background-image: url("../img/art-portrait.svg"); }

/* --------------------------------------------------------------------------
   11. Trust strip
   -------------------------------------------------------------------------- */
.trust-strip { background: var(--bg); padding-inline: var(--gutter); }
.trust-strip__inner {
  max-width: var(--shell); margin: -1px auto 0;
  border: 1px solid var(--border); border-top: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  background: var(--bg2);
}
.trust-item { padding: 30px 28px; display: flex; gap: 16px; align-items: flex-start; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 30px; height: 30px; flex: none; margin-top: 2px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.trust-item h4 { font-size: 13px; letter-spacing: .8px; text-transform: uppercase; color: var(--fg); margin: 0 0 6px; }
.trust-item p { font-size: 12.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   12. Category cards
   -------------------------------------------------------------------------- */
.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 18px; }
.cat {
  position: relative; overflow: hidden; border: 1px solid var(--border);
  background: var(--bg2); border-radius: 4px; display: block;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.cat:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.cat .media { border: none; border-radius: 0; height: 148px; }
.cat__body { padding: 18px 20px 20px; display: flex; align-items: center; gap: 12px; }
.cat__icon { width: 26px; height: 26px; flex: none; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.cat__text { flex: 1; min-width: 0; }
.cat__title { display: block; font-family: var(--font-serif); font-size: 19px; line-height: 1.25; color: var(--fg); font-weight: 600; }
.cat__sub { display: block; font-size: 12px; line-height: 1.45; color: var(--muted); margin-top: 3px; }
.cat__arrow { margin-left: auto; color: var(--gold); flex: none; }
.cat__arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; transition: transform .25s ease; }
.cat:hover .cat__arrow svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   13. Stats band
   -------------------------------------------------------------------------- */
.stats { background: var(--band); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: 60px; }
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); color: var(--gold); font-weight: 600; }
.stat__label { font-size: 12px; letter-spacing: .6px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* --------------------------------------------------------------------------
   14. Services grid
   -------------------------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service { background: var(--bg); padding: 42px 34px; transition: background .25s ease; position: relative; }
.service::before { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--gold), transparent); transition: width .35s ease; }
.service:hover { background: var(--bg2); }
.service:hover::before { width: 100%; }
.service__num { font-family: var(--font-display); font-size: 26px; color: var(--gold); margin-bottom: 18px; }
.service h3 { font-size: 19px; color: var(--fg); margin: 0 0 12px; }
.service p { font-size: 14.5px; line-height: 1.7; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   15. How it works
   -------------------------------------------------------------------------- */
.steps-flow { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 0; }
.flow-step { display: flex; flex-direction: column; align-items: center; width: 162px; text-align: center; }
.flow-step__ring {
  width: 64px; height: 64px; border-radius: 50%; background: var(--band);
  border: 1.5px solid var(--gold); display: grid; place-items: center; margin-bottom: 16px;
  transition: background .25s ease, transform .25s ease;
}
.flow-step:hover .flow-step__ring { transform: translateY(-4px); background: linear-gradient(135deg, var(--gold2), var(--gold)); }
.flow-step__ring svg { width: 25px; height: 25px; stroke: var(--gold); fill: none; stroke-width: 1.4; transition: stroke .25s ease; }
.flow-step:hover .flow-step__ring svg { stroke: var(--gold-ink); }
.flow-step__num { font-family: var(--font-display); font-size: 14px; color: var(--gold); margin-bottom: 6px; }
.flow-step h4 { font-size: 13px; color: var(--fg); letter-spacing: .6px; text-transform: uppercase; margin: 0 0 6px; }
.flow-step p { font-size: 12.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.flow-link { width: 46px; height: 1.5px; background: var(--border2); margin-top: 32px; flex: none; }
@media (max-width: 760px) { .flow-link { display: none; } .steps-flow { gap: 36px; } }

/* --------------------------------------------------------------------------
   16. Bands / callouts
   -------------------------------------------------------------------------- */
.band { background: var(--band); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: clamp(60px, 9vw, 100px); text-align: center; }
.band__quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 3.4vw, 32px); color: var(--fg); margin: 0 auto 36px; max-width: 780px; }

.callout { background: var(--band); border: 1px solid var(--border2); padding: clamp(28px, 4vw, 44px); border-radius: 4px; }
.callout h4 { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.callout p { font-size: 14.5px; line-height: 1.85; color: var(--muted2); margin: 0; }

.panel { border: 1px solid var(--border2); padding: 28px 30px; border-radius: 4px; background: var(--bg2); }
.panel h4 { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.panel p { font-size: 14.5px; line-height: 1.75; color: var(--muted2); margin: 0; }

.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding-block: clamp(64px, 9vw, 104px);
  background: #0e0b06 url("../img/art-pour.svg") center 22% / cover no-repeat;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,10,8,.95) 0%, rgba(11,10,8,.80) 55%, rgba(11,10,8,.94) 100%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 36px); color: #fdf6e6; margin: 0 0 16px; line-height: 1.25; }
.cta-band p { color: #d8c8a0; font-size: 15px; margin: 0 auto 32px; max-width: 640px; line-height: 1.7; }

/* --------------------------------------------------------------------------
   17. About collage / values / owner
   -------------------------------------------------------------------------- */
.collage { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 14px; height: clamp(300px, 40vw, 380px); }
.collage__side { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; min-width: 0; }
.collage .media { min-width: 0; min-height: 0; height: 100%; }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.value { text-align: center; padding: 0 10px; }
.value__title { font-family: var(--font-serif); font-size: 22px; color: var(--gold); margin-bottom: 12px; }
.value p { font-size: 13.5px; line-height: 1.75; color: var(--muted); margin: 0; }

.owner {
  background: var(--bg2); border: 1px solid var(--border); padding: clamp(24px, 4vw, 52px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 32px; align-items: center;
}
.owner .media { max-width: 190px; height: 230px; margin-inline: auto; width: 100%; }
.owner__quote { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.7; color: var(--fg); margin: 0 0 18px; }
.owner__name { font-size: 13px; letter-spacing: .6px; color: var(--gold); margin: 0; }

/* --------------------------------------------------------------------------
   18. Process steps
   -------------------------------------------------------------------------- */
.process { display: flex; flex-direction: column; }
.process__row { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--border); }
.process__row:last-child { border-bottom: 1px solid var(--border); }
.process__num { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.process__row h4 { font-size: 16.5px; color: var(--fg); margin: 0 0 8px; }
.process__row p { font-size: 14.5px; line-height: 1.75; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   19. Cards / testimonials
   -------------------------------------------------------------------------- */
.cards-tight { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.card-tight { background: var(--bg2); padding: 34px; }
.card-tight h4 { font-size: 17px; color: var(--gold2); margin: 0 0 10px; }
.card-tight p { font-size: 14px; line-height: 1.75; color: var(--muted); margin: 0; }

.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.quote-card { margin: 0; background: var(--bg2); border: 1px solid var(--border); padding: 34px; border-radius: 4px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--border2); }
.quote-card__mark { font-family: var(--font-serif); font-size: 44px; line-height: .6; color: var(--gold); opacity: .5; }
.quote-card p { font-family: var(--font-serif); font-style: italic; font-size: 17px; line-height: 1.7; color: var(--fg); margin: 14px 0 18px; }
.quote-card cite { font-size: 12.5px; letter-spacing: .4px; color: var(--gold2); font-style: normal; }

/* --------------------------------------------------------------------------
   20. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; background: transparent; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; color: var(--fg); font-size: 16px; font-weight: 600; line-height: 1.4;
  transition: color .2s ease;
}
.faq__q:hover { color: var(--gold); }
.faq__sign { font-family: var(--font-serif); font-size: 26px; color: var(--gold); flex: none; line-height: 1; transition: transform .25s ease; }
.faq__q[aria-expanded="true"] .faq__sign { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { font-size: 14.5px; line-height: 1.8; color: var(--muted); margin: 0 4px 26px; max-width: 740px; }

/* --------------------------------------------------------------------------
   21. Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(36px, 5vw, 70px); }

.contact-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; font-size: 14.5px; color: var(--muted2); }
.contact-line svg { width: 18px; height: 18px; flex: none; margin-top: 3px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-line strong { display: block; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted3); font-weight: 500; margin-bottom: 2px; }
.contact-line a { color: var(--fg); }
.contact-line a:hover { color: var(--gold); }

.form { background: var(--bg); border: 1px solid var(--border); padding: clamp(24px, 4vw, 44px); border-radius: 4px; }
.form__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px 24px; margin-bottom: 22px; }
.field label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border2);
  color: var(--fg); padding: 9px 0; font-size: 14px; font-family: inherit; transition: border-color .2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field select option { background: var(--bg2); color: var(--fg); }
.field ::placeholder { color: var(--muted3); }
.field--full { grid-column: 1 / -1; }
.form__note { font-size: 12.5px; color: var(--muted3); margin: 20px 0 0; line-height: 1.7; }
.form__status { font-size: 13.5px; margin: 16px 0 0; min-height: 20px; line-height: 1.6; }
.form__status.ok { color: #4caf7d; }
.form__status.err { color: #d9705f; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding-top: clamp(56px, 8vw, 80px); }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 40px; padding-bottom: 48px; }
.footer__brand img { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; margin-bottom: 18px; }
.footer__brand p { font-size: 13.5px; line-height: 1.75; color: var(--muted); margin: 0 0 18px; max-width: 280px; }
.footer h5 { font-size: 11.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a, .footer ul span { font-size: 13.5px; color: var(--muted); }
.footer ul a:hover { color: var(--gold); }

.footer__quote { text-align: center; border-top: 1px solid var(--border); padding: 40px 0 32px; }
.footer__quote p:first-child { font-family: var(--font-serif); font-style: italic; font-size: clamp(19px, 2.6vw, 25px); color: var(--gold2); margin: 0 0 8px; }
.footer__quote p:last-child { font-size: 13px; color: var(--muted); margin: 0; }

.footer__legal {
  border-top: 1px solid var(--border); padding: 20px 0 26px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted3);
}
.footer__legal a { color: var(--muted3); }
.footer__legal a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   23. Floating actions
   -------------------------------------------------------------------------- */
.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 55; display: flex; flex-direction: column; gap: 12px; }
.fab {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--border2); background: var(--bg2); color: var(--gold);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, background .2s ease, color .2s ease, opacity .25s ease;
}
.fab:hover { transform: translateY(-3px); }
.fab svg { width: 22px; height: 22px; }
.fab--wa { background: #25d366; border-color: #25d366; color: #fff; }
.fab--wa:hover { color: #fff; background: #1fbe5a; }
.fab--wa svg { fill: currentColor; }
.fab--top { opacity: 0; pointer-events: none; }
.fab--top.is-visible { opacity: 1; pointer-events: auto; }
.fab--top svg { stroke: currentColor; fill: none; stroke-width: 1.8; }

/* --------------------------------------------------------------------------
   24. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   26. Utilities
   Small, named helpers so no markup needs an inline style attribute —
   which keeps the Content-Security-Policy in _headers free of 'unsafe-inline'.
   -------------------------------------------------------------------------- */
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-22 { margin-bottom: 22px; }
.mb-24 { margin-bottom: 24px; }
.mb-26 { margin-bottom: 26px; }
.mb-28 { margin-bottom: 28px; }
.mb-30 { margin-bottom: 30px; }
.mb-48 { margin-bottom: 48px; }
.pt-0  { padding-top: 0; }
.spacer { flex: 1; }
.stack > * + * { margin-top: 18px; }

/* Small uppercase gold label above a list or paragraph */
.label { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.label--sub { font-size: 11px; color: var(--muted3); margin: 30px 0 14px; }

/* The oversized serif lede under the "Who we are" eyebrow */
.lede {
  font-family: var(--font-serif); font-size: clamp(21px, 2.9vw, 29px);
  line-height: 1.5; color: var(--fg); font-weight: 500; margin: 0 0 28px;
}

.h-section-sm { margin-bottom: 48px; font-size: clamp(20px, 2.6vw, 26px); letter-spacing: 1px; }
.note-sm { font-size: 13px; color: var(--muted3); margin: 0 0 24px; }

.section--tight { padding-block: clamp(60px, 9vw, 100px); }
.panel--lg { padding: clamp(28px, 4vw, 44px); }
.grid--tight { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px 40px; }
.list-narrow { max-width: 780px; margin: 0 auto 44px; }

.media--tall   { height: clamp(260px, 32vw, 340px); }
.media--taller { height: clamp(280px, 36vw, 400px); }

.hr-soft { border: none; border-top: 1px solid var(--border); margin: 56px 0; }
.legal strong { color: var(--fg); }

/* --------------------------------------------------------------------------
   25. Print
   -------------------------------------------------------------------------- */
@media print {
  .nav, .topbar, .fab-stack, #splash, .hero__art, .form { display: none !important; }
  body { background: #fff; color: #000; }
}
