/* ============================================================
   Jerusalem K&Y — Ultra Design System
   Display : Anton (local)  ·  Texte : Hanken Grotesk  ·  Accents : Cormorant Garamond
   ============================================================ */

@font-face {
  font-family: "AntonLocal";
  src: url("../fonts/anton-1.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "AntonLocal";
  src: url("../fonts/anton-2.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "AntonLocal";
  src: url("../fonts/anton-3.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink:      #12181b;
  --ink-soft: #33302a;
  --night:    #0a0e10;
  --night-2:  #0e1417;
  --cream:    #f6efe2;
  --cream-2:  #efe4d1;
  --sand:     #e6dbc4;
  --gold:     #bf9950;
  --gold-1:   #d8b06a;
  --gold-2:   #efd6a0;
  --gold-deep:#8a6a2f;
  --olive:    #3b4a3b;
  --waze:     #33ccff;
  --waze-ink: #05202e;
  --muted:    #6f665a;
  --muted-2:  #8a8072;
  --line:     rgba(18,24,27,.12);
  --line-2:   rgba(18,24,27,.08);
  --white:    #fffaf0;

  --logo-fg:  #12181b;

  --font-display: "AntonLocal", Anton, Impact, "Arial Narrow", sans-serif;
  --font-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;

  --radius: 4px;
  --radius-lg: 8px;
  --max: 1240px;
  --shadow-card: 0 24px 60px rgba(12,16,18,.10);
  --shadow-deep: 0 34px 90px rgba(9,12,14,.30);
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--night);
  scrollbar-width: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(90% 55% at 10% -5%, rgba(191,153,80,.20), transparent 58%),
    radial-gradient(70% 50% at 100% 8%, rgba(59,74,59,.10), transparent 60%),
    linear-gradient(180deg, #f7f0e4 0%, #f0e5d3 46%, #f7efe2 100%);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none;
}

body.menu-open { overflow: hidden; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; display: none; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--night); }

/* ---------- Grain / ambient ---------- */
.page-shell { position: relative; isolation: isolate; }

.ambient {
  position: fixed; inset: -20%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(34% 32% at 14% 16%, rgba(191,153,80,.26), transparent 70%),
    radial-gradient(34% 34% at 86% 12%, rgba(51,204,255,.10), transparent 66%),
    radial-gradient(46% 42% at 74% 94%, rgba(59,74,59,.16), transparent 72%);
  animation: ambientMove 26s ease-in-out infinite;
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--waze));
  box-shadow: 0 0 16px rgba(191,153,80,.6);
}

/* ---------- Topline ---------- */
.topline {
  position: relative; z-index: 80;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center;
  padding: 9px clamp(18px, 4vw, 54px);
  background: var(--night); color: rgba(246,239,226,.72);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
}
.topline span:nth-child(2) { color: var(--gold-2); }
.topline span:last-child { text-align: right; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(247,240,228,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  transition: padding .35s var(--ease), background .35s ease, box-shadow .35s ease;
}
.site-header.is-shrunk {
  padding-top: 6px; padding-bottom: 6px;
  background: rgba(247,240,228,.94);
  box-shadow: 0 14px 40px rgba(12,16,18,.10);
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }

/* ---------- Original logo (masked, animated gleam) ---------- */
.brand-logo {
  height: clamp(48px, 5vw, 60px);
  width: auto; display: block; overflow: visible;
  animation: logoGleam 4.5s ease-in-out infinite;
}
.ky-logo-mark { fill: url(#kyLogoFill); transition: fill .4s ease; }
.site-header .ky-logo-mark { fill: #12181b; }

@keyframes logoGleam {
  0%, 100% { filter: drop-shadow(0 4px 10px rgba(12,16,18,.14)); }
  50%      { filter: drop-shadow(0 4px 16px rgba(191,153,80,.5)); }
}

/* ---------- Desktop nav ---------- */
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.nav-link { position: relative; text-decoration: none; color: rgba(18,24,27,.7); transition: color .28s ease; padding: 4px 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* ---------- Language switch ---------- */
.lang-switch {
  display: inline-flex; align-items: center; padding: 3px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.5); gap: 2px;
}
.lang-switch button {
  display: grid; place-items: center; width: 40px; height: 30px;
  border: 0; background: transparent; border-radius: 999px; cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.lang-switch button:hover { transform: translateY(-1px); }
.lang-switch button.is-active { background: rgba(18,24,27,.92); }
.lang-switch button img {
  width: 22px; height: 15px; object-fit: cover; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(18,24,27,.14); transition: transform .25s ease;
}
.lang-switch button.is-active img { box-shadow: 0 0 0 1px rgba(255,255,255,.3); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--white);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 14px 22px; border: 0; border-radius: var(--radius);
  background: var(--bg); color: var(--fg); text-decoration: none;
  font-family: var(--font-sans); font-weight: 700; font-size: 13.5px;
  letter-spacing: .09em; text-transform: uppercase; cursor: pointer; overflow: hidden;
  box-shadow: 0 16px 32px rgba(12,16,18,.16);
  transition: transform .32s var(--ease), box-shadow .32s ease, background .32s ease;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.4), transparent 74%);
  transform: translateX(-120%); transition: transform .8s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 26px 46px rgba(12,16,18,.24); }
.btn:hover::before { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }
.btn span, .btn svg { position: relative; z-index: 1; }

.btn-gold { --bg: linear-gradient(135deg, var(--gold-1), var(--gold)); --fg: #201803; box-shadow: 0 16px 34px rgba(191,153,80,.34); }
.btn-outline { --bg: transparent; --fg: var(--ink); border: 1px solid rgba(18,24,27,.24); box-shadow: none; }
.btn-outline:hover { background: rgba(18,24,27,.05); }
.dark .btn-outline, .btn-ghost-light { --fg: var(--white); border-color: rgba(246,239,226,.34); }

/* Waze */
.btn-waze { --bg: var(--waze); --fg: var(--waze-ink); box-shadow: 0 16px 34px rgba(51,204,255,.32); }
.waze-mark { width: 26px; height: 26px; flex: none; }
.waze-lockup svg { width: 44px; height: 44px; }

/* ---------- Burger ---------- */
.burger {
  display: none; width: 44px; height: 44px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border: 0; background: transparent; cursor: pointer;
}
.burger i {
  display: block; width: 26px; height: 2.4px; border-radius: 999px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .25s ease;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 18px clamp(20px, 6vw, 40px) calc(28px + env(safe-area-inset-bottom));
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(8,11,13,.94), rgba(8,11,13,.72) 55%, rgba(8,11,13,.9)),
    url("../images/generated-guide.png") center / cover no-repeat;
  clip-path: circle(0% at calc(100% - 42px) 42px);
  opacity: 0; pointer-events: none;
  transition: clip-path .7s var(--ease), opacity .3s ease;
  --logo-fg: #f6efe1;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 42px) 42px); opacity: 1; pointer-events: auto; }
.mobile-menu::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 160px rgba(0,0,0,.5);
}
.mobile-menu > * { position: relative; z-index: 1; }

.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-head .brand-logo { height: 44px; }
.mobile-close {
  width: 52px; height: 52px; border-radius: 50%; font-size: 30px; line-height: 1;
  display: grid; place-items: center; padding-bottom: 3px;
  border: 1px solid rgba(239,214,160,.32); background: rgba(255,255,255,.08); color: var(--white);
  cursor: pointer; transition: transform .35s var(--ease), background .25s ease;
}
.mobile-close:hover { transform: rotate(90deg); background: rgba(255,255,255,.16); }

.mobile-nav { display: flex; flex-direction: column; justify-content: center; gap: 2px; }
.mobile-nav a {
  display: flex; align-items: baseline; gap: 16px; padding: 12px 0;
  border-bottom: 1px solid rgba(246,239,226,.14);
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-size: clamp(34px, 11vw, 58px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .5px;
  transform: translateY(28px); opacity: 0;
}
.mobile-menu.is-open .mobile-nav a { animation: menuItem .66s var(--ease) both; }
.mobile-nav a:nth-child(1) { animation-delay: .16s; }
.mobile-nav a:nth-child(2) { animation-delay: .23s; }
.mobile-nav a:nth-child(3) { animation-delay: .30s; }
.mobile-nav a:nth-child(4) { animation-delay: .37s; }
.mobile-nav a:nth-child(5) { animation-delay: .44s; }
.mobile-nav a:nth-child(6) { animation-delay: .51s; }
.mobile-nav a small { font-family: var(--font-sans); color: var(--gold-2); font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.mobile-nav a span { transition: color .25s ease, transform .3s ease; }
.mobile-nav a:hover span { color: var(--gold-2); transform: translateX(8px); }

.mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mobile-actions .btn { transform: translateY(20px); opacity: 0; }
.mobile-menu.is-open .mobile-actions .btn { animation: menuItem .6s var(--ease) both; animation-delay: .58s; }
.mobile-menu.is-open .mobile-actions .btn:last-child { animation-delay: .64s; }

/* ---------- Sections & layout ---------- */
.section { padding: clamp(56px, 6vw, 98px) clamp(18px, 4vw, 54px); }
.section.tight { padding-top: clamp(22px, 2.6vw, 36px); }
.container { width: min(100%, var(--max)); margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px;
  color: var(--gold-deep); font-size: 12.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 1.5px; background: currentColor; }
.dark .eyebrow { color: var(--gold-2); }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; margin-top: 0; }
h1, h2, h3, p, blockquote, li { margin-top: 0; }

h1 { margin-bottom: 22px; font-size: clamp(58px, 8.6vw, 132px); line-height: .95; letter-spacing: .5px; }
h2 { margin-bottom: 18px; font-size: clamp(40px, 5.6vw, 84px); line-height: .98; letter-spacing: .5px; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.04; letter-spacing: .4px; }

h1 .gold, h2 .gold, .gold { color: var(--gold); }
.serif-accent { font-family: var(--font-serif); font-style: italic; text-transform: none; font-weight: 500; color: var(--gold-deep); letter-spacing: 0; }

p { color: var(--muted); font-size: clamp(16px, 1.15vw, 18.5px); line-height: 1.62; }
.lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--ink-soft); line-height: 1.55; }
.dark p { color: rgba(246,239,226,.72); }
.dark .lead { color: rgba(246,239,226,.86); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: calc(100svh - 150px); display: grid; align-items: center;
  padding-top: clamp(44px, 6vw, 88px); padding-bottom: clamp(24px, 2.8vw, 40px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr); align-items: stretch; gap: clamp(30px, 4.5vw, 68px); }

.hero-copy {
  min-height: 540px; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(26px, 3.4vw, 48px);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,250,240,.62), rgba(255,250,240,.4));
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
}
.hero-copy h1 { margin-top: -.02em; }
.hero-copy .lead { max-width: 560px; margin-bottom: 8px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; color: var(--muted); font-size: 13px; }
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.hero-trust strong { color: var(--ink); font-weight: 700; }

.hero-media { position: relative; min-height: 540px; }
.media-card { position: absolute; overflow: hidden; border-radius: var(--radius-lg); background: var(--night); box-shadow: var(--shadow-deep); }
.media-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.03); transition: transform 1s var(--ease); }
.media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(9,12,14,.44)); pointer-events: none; }
.media-card:hover img { transform: scale(1.06); }
.hero-main { inset: 0 0 auto auto; width: 80%; height: 76%; animation: floatSlow 9s ease-in-out infinite; }
.hero-side { left: 0; bottom: 0; width: 47%; height: 42%; border: 6px solid var(--cream); animation: floatSlow 9s ease-in-out infinite reverse; }

.live-badge {
  position: absolute; right: 7%; bottom: 7%; z-index: 2; max-width: 244px; padding: 18px 20px;
  border: 1px solid rgba(191,153,80,.4); border-radius: var(--radius-lg);
  background: rgba(255,250,240,.92); box-shadow: 0 18px 44px rgba(12,16,18,.2); backdrop-filter: blur(14px);
}
.live-badge strong { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-family: var(--font-display); font-size: 26px; color: var(--ink); line-height: .95; }
.live-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #34c759; box-shadow: 0 0 0 0 rgba(52,199,89,.6); animation: pulse 2s ease-out infinite; }
.live-badge small { color: var(--muted); font-size: 12.5px; line-height: 1.4; }

.scroll-cue { position: absolute; left: clamp(18px,4vw,54px); bottom: 22px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; top: -34px; left: 0; width: 1px; height: 34px; background: var(--gold); animation: scrollDown 2.2s ease-in-out infinite; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 26px 22px; border-right: 1px solid var(--line-2); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(38px, 4.6vw, 60px); line-height: .9; color: var(--ink); }
.stat span { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(18,24,27,.02); padding: 16px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; gap: 44px; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 44px; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 30px); text-transform: uppercase; color: rgba(18,24,27,.34); letter-spacing: .5px; }
.marquee span::before { content: "✦"; color: var(--gold); font-size: .6em; }

/* ---------- Platform cards ---------- */
.platform-leadership { display: grid; grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr); gap: 18px; align-items: stretch; margin-top: clamp(40px, 5vw, 64px); }
.platform-copy, .platform-card { border-radius: var(--radius-lg); background: rgba(255,250,240,.66); border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.platform-copy { padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; justify-content: center; }
.platform-copy span.tag { display: block; margin-bottom: 12px; color: var(--gold-deep); font-size: 12.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.platform-copy h2 { margin-bottom: 14px; font-size: clamp(30px, 3.6vw, 52px); }
.platform-copy p { margin-bottom: 0; }
.platform-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.platform-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 232px; padding: 26px; overflow: hidden; transition: transform .4s var(--ease); }
.platform-card:hover { transform: translateY(-6px); }
.platform-card p { margin: 22px 0 0; font-size: 15.5px; }
.airbnb-card { background: radial-gradient(90% 90% at 12% 0%, rgba(255,56,92,.14), transparent 58%), rgba(255,250,240,.82); }
.waze-card { background: radial-gradient(90% 90% at 12% 0%, rgba(51,204,255,.2), transparent 58%), rgba(255,250,240,.82); }
.airbnb-lockup, .waze-lockup { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 26px; line-height: 1; }
.airbnb-lockup svg, .waze-lockup svg { width: 42px; height: 42px; }
.airbnb-lockup span { color: #FF385C; text-transform: lowercase; }
.waze-lockup { color: var(--waze-ink); }
.waze-lockup svg { padding: 3px; border-radius: 11px; background: var(--waze); }

/* ---------- Platform card visualisations ---------- */
.platform-card { justify-content: flex-start; gap: 18px; }
.platform-card p { margin-top: auto; }
.card-viz { position: relative; }
.viz-metric { display: block; margin-bottom: 10px; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.viz-metric b { font-family: var(--font-display); font-size: 20px; letter-spacing: .5px; margin-right: 6px; text-transform: none; }
.airbnb-card .viz-metric b { color: #FF385C; }
.waze-card .viz-metric b { color: #1aa9de; }

/* Airbnb — occupancy bars */
.viz-bars .bars { display: flex; align-items: flex-end; gap: 8px; height: 84px; }
.viz-bars .bars i {
  flex: 1; height: 100%; border-radius: 5px 5px 3px 3px; transform-origin: bottom;
  background: linear-gradient(180deg, #ff6b85, #ff385c);
  box-shadow: 0 6px 16px rgba(255,56,92,.28);
  transform: scaleY(var(--h));
  animation: barGrow 2.8s var(--ease) infinite alternate; animation-delay: var(--d);
}
@keyframes barGrow {
  0% { transform: scaleY(calc(var(--h) * .42)); opacity: .78; }
  100% { transform: scaleY(var(--h)); opacity: 1; }
}

/* Waze — animated route */
.viz-route svg { width: 100%; height: 84px; display: block; overflow: visible; }
.viz-route .route-bg { stroke: rgba(5,32,46,.14); stroke-width: 4; stroke-linecap: round; }
.viz-route .route-fg {
  stroke: url(#wazeStroke); stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 360; stroke-dashoffset: 360;
  animation: routeDraw 4.2s linear infinite;
}
.viz-route .route-start { fill: #05202e; }
.viz-route .route-pin circle:first-child { animation: pinPulse 1.6s ease-in-out infinite; transform-origin: center; }
@keyframes routeDraw { 0% { stroke-dashoffset: 360; } 100% { stroke-dashoffset: 0; } }
@keyframes pinPulse { 0%,100% { opacity: 1; } 50% { opacity: .82; } }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: .96fr 1.04fr; gap: clamp(34px, 5vw, 72px); align-items: stretch; }
.split > *:not(.photo-frame) { display: flex; flex-direction: column; justify-content: center; }
.split.reverse { grid-template-columns: 1.04fr .96fr; }
.split.reverse .photo-frame { order: 2; }
.photo-frame { position: relative; overflow: hidden; min-height: 480px; border-radius: var(--radius-lg); box-shadow: var(--shadow-deep); }
.photo-frame img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform 1.1s var(--ease); }
.photo-frame:hover img { transform: scale(1.05); }
.photo-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2; padding: 9px 15px; border-radius: 999px;
  background: rgba(9,12,14,.62); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.14);
}
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); font-size: 16px; line-height: 1.5; }
.feature-list li::before { content: ""; flex: none; margin-top: 7px; width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg); background: linear-gradient(135deg, var(--gold-1), var(--gold)); }
.dark .feature-list li { color: rgba(246,239,226,.82); }

/* ---------- Dark section ---------- */
.dark { color: var(--white); --logo-fg: #f6efe1;
  background: radial-gradient(60% 60% at 6% 0%, rgba(191,153,80,.22), transparent 62%), linear-gradient(150deg, #12181b 0%, #0a0e10 100%); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(40px, 5vw, 56px);
  background: rgba(239,214,160,.16); border: 1px solid rgba(239,214,160,.16); border-radius: var(--radius-lg); overflow: hidden; }
.service-card { position: relative; min-height: 340px; padding: 36px; background: rgba(12,16,18,.96); transition: transform .4s var(--ease), background .4s ease; }
.service-card:hover { transform: translateY(-8px); background: rgba(22,30,31,.98); }
.service-card .num { display: block; margin-bottom: 46px; font-family: var(--font-display); color: var(--gold); font-size: 60px; line-height: .84; }
.service-card h3 { margin-bottom: 12px; color: var(--white); }
.service-card p { font-size: 15.5px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: 1.28fr .72fr; gap: 14px; margin-top: clamp(40px, 5vw, 56px); }
.gallery-main { min-height: 600px; }
.gallery-stack { display: grid; gap: 14px; }
.gallery .gallery-stack .photo-frame { min-height: 293px; }

/* ---------- Neighbourhoods / feature cards ---------- */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(40px, 5vw, 56px); }
.feature-cards.four { grid-template-columns: repeat(4, 1fr); }
.feat-card { padding: 30px 26px; border-radius: var(--radius-lg); background: rgba(255,250,240,.7); border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: transform .4s var(--ease), box-shadow .4s ease; }
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(12,16,18,.14); }
.feat-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(216,176,106,.28), rgba(191,153,80,.16)); color: var(--gold-deep); }
.feat-icon svg { width: 24px; height: 24px; }
.feat-card h3 { margin-bottom: 10px; font-size: 22px; }
.feat-card p { font-size: 15.5px; margin: 0; }

/* ---------- Owners process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: clamp(40px, 5vw, 52px); }
.process-card { padding: 28px 26px; border-radius: var(--radius-lg); background: rgba(255,250,240,.72); border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: transform .4s var(--ease); }
.process-card:hover { transform: translateY(-6px); }
.process-card strong { display: block; margin-bottom: 38px; font-family: var(--font-display); color: var(--gold); font-size: 40px; }
.process-card h3 { margin-bottom: 10px; }
.process-card p { font-size: 15px; margin: 0; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(40px, 5vw, 56px); }
.tst-card { padding: 30px 28px; border-radius: var(--radius-lg); background: rgba(255,250,240,.72); border: 1px solid var(--line); box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.dark .tst-card { background: rgba(255,250,240,.05); border-color: rgba(246,239,226,.14); }
.tst-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.tst-card blockquote { margin: 0 0 20px; font-family: var(--font-serif); font-size: 21px; line-height: 1.4; color: var(--ink); font-style: italic; }
.dark .tst-card blockquote { color: var(--white); }
.tst-author { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.tst-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 18px; color: #201803; background: linear-gradient(135deg, var(--gold-1), var(--gold)); }
.tst-author b { display: block; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.dark .tst-author b { color: var(--white); }
.tst-author span { font-size: 12.5px; color: var(--muted); }

/* ---------- Guide band ---------- */
.guide-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 480px; display: grid; align-items: end;
  padding: clamp(30px, 5vw, 62px); color: var(--white);
  background: linear-gradient(180deg, rgba(9,12,14,.1), rgba(9,12,14,.86)), url("../images/generated-guide.png") center / cover no-repeat;
  box-shadow: var(--shadow-deep); }
.guide-band h2 { color: var(--white); }
.guide-band p { color: rgba(246,239,226,.8); max-width: 620px; }
.guide-band .btn { margin-top: 8px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(28px, 4vw, 56px); }
.contact-card, .faq-card, .legal-card { border-radius: var(--radius-lg); background: rgba(255,250,240,.78); border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.contact-card { padding: clamp(28px, 4vw, 46px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--gold-deep); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.7); color: var(--ink); padding: 14px 15px; outline: none;
  font-size: 16px; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(191,153,80,.16); }
.contact-card .btn { width: 100%; margin-top: 4px; }
.form-status { min-height: 22px; margin: 14px 0 0; color: var(--gold-deep); font-size: 15px; font-weight: 600; }
.form-status.error { color: #b23c2e; }
.form-note { margin: 10px 0 0; font-size: 12.5px; color: var(--muted-2); }

.faq-card { padding: 8px 8px 12px; display: flex; flex-direction: column; }
.faq-card details:last-of-type { border-bottom: 0; }
details { border-bottom: 1px solid var(--line-2); padding: 18px 16px; }
details:last-of-type { border-bottom: 0; }
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 19px; line-height: 1.12; color: var(--ink); text-transform: uppercase; letter-spacing: .3px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-family: var(--font-sans); font-weight: 400; color: var(--gold); font-size: 26px; transition: transform .3s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 12px 0 0; font-size: 15.5px; }

.address-card { margin: 8px; margin-top: auto; padding: 22px; border-radius: var(--radius); background: rgba(191,153,80,.1); border: 1px solid rgba(191,153,80,.3); }
.address-card h3 { margin-bottom: 8px; font-size: 22px; }
.address-card p { font-size: 15px; margin-bottom: 14px; }
.address-card .btn { width: 100%; }

/* ---------- Footer ---------- */
.site-footer { padding: 78px clamp(18px, 4vw, 54px) 120px; color: rgba(246,239,226,.72); --logo-fg: #f6efe1;
  background: radial-gradient(circle at 12% 12%, rgba(183,139,68,.18), transparent 30%), linear-gradient(135deg, #071619 0%, #092326 52%, #12181b 100%); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 34px; max-width: 1140px; margin: 0 auto; padding: 34px;
  border: 1px solid rgba(246,239,226,.16); border-radius: var(--radius-lg); background: rgba(246,239,226,.05); box-shadow: 0 26px 70px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.footer-grid .brand-logo { height: 60px; margin-bottom: 16px; }
.footer-grid p { color: rgba(246,239,226,.66); max-width: 420px; font-size: 15.5px; }
.footer-grid h3 { font-size: 16px; letter-spacing: .14em; color: var(--gold-2); margin-bottom: 18px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a, .footer-links span { color: rgba(246,239,226,.76); text-decoration: none; font-size: 15px; }
.footer-links a { transition: color .25s ease, transform .25s ease; width: max-content; }
.footer-links a:hover { color: var(--gold-2); transform: translateX(4px); }
.footer-bottom { max-width: 1140px; margin: 26px auto 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  color: rgba(246,239,226,.5); font-size: 13px; }

/* ---------- Mobile dock ---------- */
.mobile-dock { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: rgba(10,14,16,.92); backdrop-filter: blur(16px); border-top: 1px solid rgba(246,239,226,.1); }
.mobile-dock a { display: grid; place-items: center; gap: 3px; min-height: 50px; color: rgba(246,239,226,.82); text-decoration: none; font-size: 11px; letter-spacing: .04em; }
.mobile-dock a svg { width: 20px; height: 20px; }
.mobile-dock a.dock-waze { color: var(--waze); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Legal & guide pages ---------- */
.legal-hero { padding: clamp(96px, 12vw, 160px) clamp(18px, 4vw, 54px) clamp(50px, 6vw, 80px); color: var(--white); --logo-fg: #f6efe1;
  background: linear-gradient(150deg, rgba(10,14,16,.82), rgba(10,14,16,.92)), url("../images/generated-hero.png") center / cover no-repeat; }
.legal-hero h1 { font-size: clamp(48px, 7vw, 96px); }
.legal-hero p { color: rgba(246,239,226,.72); }
.legal-card { width: min(100%, 920px); margin: 0 auto; padding: clamp(28px, 4vw, 56px); }
.legal-card h2 { margin-top: 32px; font-size: clamp(26px, 3vw, 36px); }
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p, .legal-card li { font-size: 16.5px; color: var(--ink-soft); line-height: 1.66; }
.legal-card li { margin-bottom: 8px; }
.legal-card .btn { margin-top: 34px; }
.legal-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.legal-toc a { padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.5); font-size: 13px; font-weight: 600; text-decoration: none; color: var(--ink-soft); transition: all .25s ease; }
.legal-toc a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.guide-cover { background: linear-gradient(150deg, rgba(10,14,16,.76), rgba(10,14,16,.92)), url("../images/generated-guide.png") center / cover no-repeat; }
.guide-text-card { max-width: 980px; }
.guide-text-card h2 { padding-top: 26px; margin-top: 30px; border-top: 1px solid var(--line); color: var(--ink); }
.guide-text-card h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.guide-text-card p { margin-bottom: 12px; }
.guide-info { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin: 4px 0 10px; padding: 12px 18px; border-radius: var(--radius); background: rgba(191,153,80,.12); border: 1px solid rgba(191,153,80,.3); font-size: 15px; color: var(--ink); max-width: 100%; }
.guide-info b { font-family: var(--font-display); letter-spacing: .5px; }
.guide-info .gi-item { white-space: nowrap; }
.guide-info .gi-sep { opacity: .5; }

/* ---------- Guide media (photos & vidéos d'instructions) ---------- */
.guide-media { margin: 18px 0 6px; }
.guide-media figure { margin: 0; }
.guide-media figcaption { margin-top: 8px; font-size: 13px; color: var(--muted); font-style: italic; }
.gm-frame {
  width: 100%; height: clamp(320px, 42vw, 500px); display: block;
  object-position: center;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: radial-gradient(130% 130% at 50% 30%, #171f24, #0a0e10);
  box-shadow: 0 16px 40px rgba(12,16,18,.18);
}
img.gm-frame { object-fit: cover; }
video.gm-frame { object-fit: contain; }
.guide-media.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; margin: 18px 0 6px; }
.guide-media.duo .gm-frame { height: clamp(240px, 26vw, 340px); }

/* ---------- Guide flip card (homepage) ---------- */
.guide-flip { perspective: 2200px; }
.guide-flip-inner { position: relative; min-height: 480px; transform-style: preserve-3d;
  transition: transform .85s cubic-bezier(.72,.12,.16,1), height .5s ease; }
.guide-flip.is-flipped .guide-flip-inner { transform: rotateY(180deg); }
.guide-flip-face { position: absolute; top: 0; left: 0; width: 100%;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg); overflow: hidden; }
/* Bascule nette à mi-rotation (0.425s = moitié de 0.85s) : la face cachée
   devient réellement invisible → aucune « transparence » de l'autre face. */
.guide-flip-front { opacity: 1; visibility: visible; transition: opacity 0s linear .425s, visibility 0s linear .425s; }
.guide-flip.is-flipped .guide-flip-front { opacity: 0; visibility: hidden; }
.guide-flip-back { opacity: 0; visibility: hidden; transition: opacity 0s linear .425s, visibility 0s linear .425s; }
.guide-flip.is-flipped .guide-flip-back { opacity: 1; visibility: visible; }
.guide-flip-front.guide-band { min-height: 480px; }
.guide-flip-back { transform: rotateY(180deg); height: 100%; color: var(--white);
  display: flex; flex-direction: column;
  padding: clamp(20px, 3.4vw, 46px);
  background: radial-gradient(150% 130% at 15% 0%, #17222c, #0a0e10 62%);
  border: 1px solid rgba(246,239,226,.12); box-shadow: var(--shadow-deep, 0 30px 70px rgba(0,0,0,.42)); }
.eq-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: clamp(18px, 2.4vw, 26px); }
.eq-head h3 { color: var(--white); font-size: clamp(22px, 3vw, 32px); line-height: 1.08; margin-top: 4px; }
.eq-close { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; cursor: pointer;
  padding: 9px 15px; border-radius: 999px; color: var(--white);
  background: rgba(246,239,226,.08); border: 1px solid rgba(246,239,226,.24);
  font: 600 13px/1 var(--font-sans); letter-spacing: .04em; transition: background .25s ease, transform .25s ease; }
.eq-close:hover { background: rgba(246,239,226,.16); transform: translateY(-1px); }
/* La grille défile À L'INTÉRIEUR de la carte : le verso garde exactement
   la taille du recto, sur desktop comme sur mobile. */
.eq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 12px;
  flex: 1; min-height: 0; overflow-y: auto; padding-right: 6px;
  -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  scrollbar-width: thin; scrollbar-color: rgba(216,176,106,.4) transparent; }
.eq-grid::-webkit-scrollbar { width: 6px; }
.eq-grid::-webkit-scrollbar-track { background: transparent; }
.eq-grid::-webkit-scrollbar-thumb { background: rgba(216,176,106,.4); border-radius: 999px; }
.eq-grid > .eq-card { align-self: start; }
.eq-card { display: flex; flex-direction: column; gap: 11px; padding: 16px 14px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(246,239,226,.08), rgba(246,239,226,.03));
  border: 1px solid rgba(246,239,226,.12);
  transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.eq-card:hover { transform: translateY(-4px); border-color: rgba(216,176,106,.6);
  background: linear-gradient(160deg, rgba(216,176,106,.18), rgba(246,239,226,.04)); }
.eq-ic { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  color: var(--gold-2); background: rgba(216,176,106,.14); border: 1px solid rgba(216,176,106,.28); }
.eq-ic svg { width: 22px; height: 22px; }
.eq-card > span:last-child { font-size: 13.5px; font-weight: 600; color: rgba(246,239,226,.92); letter-spacing: .01em; }

/* ---------- Keyframes ---------- */
@keyframes ambientMove { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(3%,-2%,0); } }
@keyframes floatSlow { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(.6deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes menuItem { to { transform: translateY(0); opacity: 1; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,199,89,.55); } 70% { box-shadow: 0 0 0 10px rgba(52,199,89,0); } 100% { box-shadow: 0 0 0 0 rgba(52,199,89,0); } }
@keyframes scrollDown { 0% { transform: translateY(0); } 100% { transform: translateY(68px); } }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .desktop-nav, .desktop-only { display: none; }
  .burger { display: inline-flex; }
  .hero-grid, .split, .split.reverse, .contact-grid, .platform-leadership { grid-template-columns: 1fr; }
  .split.reverse .photo-frame { order: 0; }
  .hero-media { min-height: 460px; }
  .services-grid, .process, .feature-cards, .feature-cards.four, .tst-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .topline { display: none; }
  .site-header { padding: 9px 16px; position: sticky; }
  .lang-switch {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%); z-index: 2;
  }
  .brand-logo { height: 44px; }
  .footer-grid { padding: 24px; gap: 26px; grid-template-columns: 1fr; }
  .mobile-close { width: 54px; height: 54px; font-size: 32px; }
  .lang-switch button { width: 36px; height: 28px; }
  .lang-switch button img { width: 20px; height: 13px; }
  .section { padding: 46px 16px; }
  .hero { min-height: auto; padding-top: 40px; }
  .hero-copy { min-height: auto; padding: 26px 20px; }
  .hero-media { min-height: 400px; }
  .hero-main { width: 88%; height: 74%; }
  .hero-side { width: 56%; height: 40%; }
  .live-badge { right: 0; bottom: 3%; max-width: 210px; padding: 14px 16px; }
  .scroll-cue { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 14px; border-bottom: 1px solid var(--line-2); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .services-grid, .process, .platform-cards, .gallery, .form-grid, .feature-cards, .feature-cards.four, .tst-grid { grid-template-columns: 1fr; }
  .gallery-main, .photo-frame, .gallery .gallery-stack .photo-frame { min-height: 320px; }
  .service-card { min-height: auto; padding: 30px 24px; }
  .service-card .num { margin-bottom: 26px; }
  .mobile-dock { display: grid; }
  .site-footer { padding: 60px 16px 108px; }
  .footer-bottom { flex-direction: column; }
  .guide-info { flex-direction: column; align-items: flex-start; gap: 6px; width: 100%; }
  .guide-info .gi-sep { display: none; }
  .guide-media.duo { grid-template-columns: 1fr; }
  .gm-frame { height: clamp(240px, 66vw, 420px); }
  .guide-media.duo .gm-frame { height: clamp(220px, 60vw, 380px); }
  .eq-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .guide-flip-back { padding: 18px 14px; }
  .eq-head { margin-bottom: 14px; gap: 10px; }
  .eq-head h3 { font-size: 19px; }
  .eq-close { padding: 8px 12px; font-size: 12px; }
  .eq-card { flex-direction: row; align-items: center; gap: 10px; padding: 10px 12px; }
  .eq-ic { width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0; }
  .eq-ic svg { width: 17px; height: 17px; }
  .eq-card > span:last-child { font-size: 12.5px; line-height: 1.2; }
}

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