/* ===========================================================
   Stack Aspect — warm + trustworthy navy system
   Type: Schibsted Grotesk (display) / Hanken Grotesk (body)
         JetBrains Mono (eyebrow labels)
   =========================================================== */

:root {
  /* warm ivory canvas */
  --bg:        oklch(0.985 0.006 85);
  --bg-2:      oklch(0.965 0.009 85);
  --bg-3:      oklch(0.945 0.012 80);
  --card:      oklch(0.995 0.004 85);

  /* deep navy ink scale */
  --navy-900:  oklch(0.215 0.045 256);
  --navy-800:  oklch(0.27 0.055 256);
  --navy-700:  oklch(0.34 0.062 255);
  --navy-600:  oklch(0.44 0.06 255);

  --ink:       oklch(0.255 0.03 260);
  --muted:     oklch(0.50 0.022 262);
  --faint:     oklch(0.64 0.018 262);
  --line:      oklch(0.90 0.012 80);
  --line-2:    oklch(0.84 0.014 80);

  /* brand accent — indigo (distinct from any AI-brand orange) */
  --amber:     oklch(0.58 0.155 277);
  --amber-ink: oklch(0.50 0.17 276);
  --coral:     oklch(0.62 0.16 288);
  --accent-glow: oklch(0.64 0.15 278);
  --accent-tint: 0.58 0.155 277;   /* L C H for oklch(var(--accent-tint) / a) */

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --shadow-sm: 0 1px 2px oklch(0.3 0.04 256 / 0.06), 0 2px 8px oklch(0.3 0.04 256 / 0.05);
  --shadow:    0 4px 14px oklch(0.3 0.04 256 / 0.08), 0 18px 50px oklch(0.3 0.04 256 / 0.10);
  --shadow-lg: 0 10px 30px oklch(0.25 0.05 256 / 0.14), 0 40px 90px oklch(0.25 0.05 256 / 0.18);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--navy-900);
  text-wrap: balance;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--amber-ink);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--amber); display: inline-block;
}

/* ---------- buttons ---------- */
.btn {
  --bg-b: var(--navy-900);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600; font-size: 16px;
  padding: 15px 24px; border-radius: 100px;
  background: var(--bg-b); color: var(--bg);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .25s;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--accent { --bg-b: var(--amber); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--navy-900);
  border-color: var(--line-2); box-shadow: none;
}
.btn--ghost:hover { background: var(--card); border-color: var(--navy-600); }
.btn--light { background: var(--bg); color: var(--navy-900); }
.btn--lg { padding: 18px 30px; font-size: 17px; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(0.985 0.006 85 / 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}
.nav__in {
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Schibsted Grotesk"; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--navy-900); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 15.5px; font-weight: 500; color: var(--muted); transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--navy-900); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--amber); transition:width .3s var(--ease); border-radius:2px;}
.nav__links a:hover::after { width:100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; }
@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; padding-top: 132px; padding-bottom: 80px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* neighbourhood golden-hour header — atmospheric, fades to clean ivory */
.hero__photo {
  position: absolute; top: -6%; left: 0; right: 0; height: 118%; overflow: hidden;
  will-change: transform;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 34%;
  filter: saturate(0.82) brightness(1.04);
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 16%, transparent 74%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 16%, transparent 74%);
}
/* veil: ivory on the left (so the dark headline stays crisp), a touch at the
   very top (nav legibility), and a clean ivory floor along the bottom */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(102deg, var(--bg) 11%, oklch(0.985 0.006 85 / 0.62) 33%, oklch(0.985 0.006 85 / 0) 63%),
    linear-gradient(to bottom, oklch(0.985 0.006 85 / 0.34) 0%, oklch(0.985 0.006 85 / 0) 26%, oklch(0.985 0.006 85 / 0) 50%, var(--bg) 90%);
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5;
  will-change: transform;
}
.glow--navy  { width: 520px; height: 520px; background: radial-gradient(circle, oklch(0.6 0.09 255 / .22), transparent 70%); top: 120px; right: 30%; }
.glow--amber { width: 460px; height: 460px; background: radial-gradient(circle, oklch(var(--accent-glow) / .5), transparent 70%); }

.hero__in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero__copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(44px, 6.6vw, 80px);
  margin: 22px 0 0;
}
.hero h1 .hl { color: var(--amber-ink); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 0.06em; height: 0.30em;
  background: var(--amber); opacity: .32; border-radius: 4px; z-index: -1;
  transform: scaleX(0); transform-origin: left; transition: transform .9s .5s var(--ease-out);
}
.hero.in h1 .hl::after { transform: scaleX(1); }
.hero__sub { font-size: clamp(18px, 1.5vw, 21px); color: var(--muted); margin: 26px 0 0; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* word-rise animation */
.rise { display: inline-block; overflow: hidden; vertical-align: top; }
.rise > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease-out); }
.in .rise > span { transform: translateY(0); }

/* hero visual / photo composition */
.hero__visual { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.photo-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: var(--navy-800); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  transform: translateY(24px); opacity: 0;
  transition: transform 1s .25s var(--ease-out), opacity 1s .25s var(--ease-out);
}
.in .photo-card { transform: translateY(0); opacity: 1; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.photo-ph {
  position: absolute; inset: 0; display: grid; place-content: center; gap: 8px; text-align: center;
  color: oklch(0.8 0.02 256); padding: 24px;
  background:
    repeating-linear-gradient(135deg, oklch(0.31 0.05 256) 0 14px, oklch(0.29 0.05 256) 14px 28px);
}
.photo-ph .mono { color: oklch(0.78 0.03 256); }
.photo-card__tag {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: oklch(0.21 0.045 256 / 0.62); backdrop-filter: blur(8px);
  color: var(--bg); padding: 12px 16px; border-radius: 14px;
  border: 1px solid oklch(1 0 0 / 0.12);
}
.photo-card__tag b { font-family: "Schibsted Grotesk"; font-size: 16px; }
.photo-card__tag span { font-size: 13px; color: oklch(0.82 0.02 256); }

/* ---- hero "stack" status panel (replaces photo) ---- */
.stack { position: relative; }
.stack__layer {
  position: absolute; inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(160deg, oklch(0.34 0.06 256), oklch(0.26 0.055 256));
  box-shadow: var(--shadow);
  opacity: 0; transition: opacity .7s var(--ease-out), transform .9s var(--ease-out);
}
.stack__layer.l1 { transform: translate(0,0) rotate(0deg); }
.stack__layer.l2 { background: linear-gradient(160deg, oklch(0.45 0.05 256), oklch(0.35 0.05 256)); }
.in .stack__layer.l1 { opacity: .55; transform: translate(16px, 18px) rotate(2.4deg); transition-delay: .25s; }
.in .stack__layer.l2 { opacity: .3; transform: translate(30px, 36px) rotate(4.6deg); transition-delay: .35s; }

.panel {
  position: relative; z-index: 2; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 22px 22px 14px; overflow: hidden;
  transform: translateY(22px); opacity: 0;
  transition: transform 1s .12s var(--ease-out), opacity 1s .12s var(--ease-out);
}
.in .panel { transform: none; opacity: 1; }
.panel__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.panel__title { font-family: "Schibsted Grotesk"; font-weight: 700; font-size: 16px; color: var(--navy-900); display: flex; align-items: center; gap: 9px; }
.panel__title .dotmark { width: 9px; height: 9px; border-radius: 3px; background: var(--amber); }
.panel__live { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: oklch(0.5 0.13 150); background: oklch(0.62 0.13 150 / .12); padding: 5px 11px; border-radius: 100px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.62 0.14 150); position: relative; }
.live-dot::after { content:""; position:absolute; inset:0; border-radius:50%; background: oklch(0.62 0.14 150); animation: ping 2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity:.7;} 70%,100% { transform: scale(2.6); opacity:0;} }

.panel__rows { list-style: none; margin: 6px 0 0; padding: 0; }
.panel__rows li {
  display: flex; align-items: center; gap: 13px; padding: 13px 2px;
  border-bottom: 1px solid var(--bg-3); font-size: 15px; color: var(--ink);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.panel__rows li:last-child { border-bottom: 0; }
.in .panel__rows li { opacity: 1; transform: none; }
.in .panel__rows li:nth-child(1){ transition-delay:.5s; }
.in .panel__rows li:nth-child(2){ transition-delay:.62s; }
.in .panel__rows li:nth-child(3){ transition-delay:.74s; }
.in .panel__rows li:nth-child(4){ transition-delay:.86s; }
.panel__rows .pico {
  width: 34px; height: 34px; flex: none; border-radius: 9px; display: grid; place-content: center;
  background: oklch(var(--accent-tint) / 0.13); color: var(--amber-ink);
}
.panel__rows .pico svg { width: 18px; height: 18px; }
.panel__rows .lbl { flex: 1; font-weight: 500; }
.panel__rows .ok { font-size: 12.5px; font-weight: 600; color: oklch(0.48 0.12 150); display: inline-flex; align-items: center; gap: 6px; }
.panel__rows .ok .tick { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.62 0.14 150); }

/* floating stat chips */
.chip {
  position: absolute; z-index: 3;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0; transform: translateY(10px) scale(.96);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.in .chip { opacity: 1; transform: translateY(0) scale(1); }
.in .chip.c1 { transition-delay: .8s; }
.in .chip.c2 { transition-delay: 1s; }
.chip b { font-family: "Schibsted Grotesk"; font-size: 22px; color: var(--navy-900); }
.chip span { font-size: 12.5px; color: var(--muted); }
.chip.c1 { top: -22px; left: -26px; }
.chip.c2 { bottom: -20px; right: -24px; }
.chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px oklch(var(--accent-tint) / .2); }
.chip--row { flex-direction: row; align-items: center; gap: 10px; }

/* trust strip */
.trust { margin-top: 64px; }
.trust__label { color: var(--faint); }
.trust__logos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(22px, 4vw, 48px); margin-top: 16px; }
.logo-word { font-family: "Schibsted Grotesk"; font-weight: 800; font-size: 23px; color: var(--navy-700); opacity: .62; letter-spacing: -0.02em; transition: opacity .25s, transform .25s; }
.logo-word:hover { opacity: 1; transform: translateY(-1px); }

@media (max-width: 940px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__visual { max-width: 380px; margin-top: 10px; }
  .chip.c1 { left: -14px; }
  .chip.c2 { right: -10px; }
}

/* ===========================================================
   SECTION SCAFFOLD
   =========================================================== */
section { position: relative; }
.sec { padding: clamp(72px, 9vw, 130px) 0; }
.sec--navy { background: var(--navy-900); color: oklch(0.92 0.01 256); }
.sec--navy h1, .sec--navy h2, .sec--navy h3 { color: var(--bg); }
.sec--tint { background: var(--bg-2); }
.sec__head { max-width: 720px; }
.sec__head h2 { font-size: clamp(32px, 4.3vw, 52px); margin-top: 16px; }
.sec__head p { color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); margin: 18px 0 0; }
.sec--navy .sec__head p { color: oklch(0.78 0.02 256); }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* ===========================================================
   SERVICES
   =========================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
@media (max-width: 920px){ .svc-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .svc-grid { grid-template-columns: 1fr;} }
.svc {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px 34px; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.svc:hover::after { transform: scaleX(1); }
.svc__ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-content: center;
  background: oklch(var(--accent-tint) / 0.14); color: var(--amber-ink); margin-bottom: 20px;
}
.svc__ico svg { width: 26px; height: 26px; }
.svc__num { position: absolute; top: 26px; right: 28px; color: var(--line-2); }
.svc h3 { font-size: 22px; letter-spacing: -0.02em; }
.svc p { color: var(--muted); font-size: 16px; margin: 12px 0 0; }

/* ===========================================================
   WHY FRACTIONAL — comparison
   =========================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
@media (max-width: 820px){ .why-grid { grid-template-columns: 1fr; } }
.why-card {
  border-radius: var(--r-lg); padding: 28px; border: 1px solid oklch(1 0 0 / 0.10);
  background: oklch(1 0 0 / 0.03);
}
.why-card h3 { font-size: 19px; color: oklch(0.86 0.02 256); }
.why-card ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 13px; }
.why-card li { display: flex; gap: 11px; font-size: 15.5px; color: oklch(0.72 0.02 256); line-height: 1.4; }
.why-card li svg { flex: none; margin-top: 2px; }
.why-card--me {
  background: linear-gradient(165deg, oklch(0.3 0.055 256), oklch(0.235 0.05 256));
  border-color: oklch(var(--accent-tint) / 0.45);
  box-shadow: 0 30px 70px oklch(0 0 0 / .35);
  position: relative;
}
.why-card--me h3 { color: #fff; }
.why-card--me li { color: oklch(0.9 0.015 256); }
.why-badge { position: absolute; top: 22px; right: 22px; }
.tick-x { color: oklch(0.55 0.02 262); }
.tick-y { color: var(--amber); }

/* ===========================================================
   ABOUT IAN
   =========================================================== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 6vw, 84px); align-items: center; }
@media (max-width: 880px){ .about-grid { grid-template-columns: 1fr; } }
.about__photo { position: relative; }
.about__photo .frame {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; background: var(--navy-800);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.about__photo .frame img { width:100%; height:100%; object-fit: cover; object-position: center 20%; }
.about__photo .deco { position: absolute; inset: 18px -18px -18px 18px; border-radius: var(--r-xl); border: 1.5px solid var(--amber); z-index: -1; opacity: .6; }
.about h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 14px; }
.about p { color: var(--muted); margin: 18px 0 0; font-size: 17.5px; }
.about p strong { color: var(--ink); font-weight: 600; }

.stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 22px; min-width: 130px; flex: 1; }
.stat b { font-family: "Schibsted Grotesk"; font-size: clamp(30px, 3.5vw, 40px); color: var(--navy-900); display: block; line-height: 1; letter-spacing: -0.03em; }
.stat span { font-size: 14px; color: var(--muted); display: block; margin-top: 8px; }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.quotes { columns: 2; column-gap: 18px; margin-top: 50px; }
@media (max-width: 820px){ .quotes { columns: 1; } }
.quote {
  break-inside: avoid; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px; margin-bottom: 18px;
}
.quote__mark { font-family: "Schibsted Grotesk"; font-size: 56px; line-height: .6; color: var(--amber); height: 26px; display: block; }
.quote__mark--close { text-align: right; height: 30px; margin-top: 4px; line-height: 1; }
.gloss { color: var(--amber-ink); font-style: italic; font-weight: 500; }
.quote p { font-size: 17.5px; color: var(--ink); margin: 14px 0 0; line-height: 1.5; }
.quote__by { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote__av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--navy-700), var(--navy-900)); color: var(--bg); display: grid; place-content: center; font-family: "Schibsted Grotesk"; font-weight: 700; font-size: 14px; flex: none; }
.quote__by div { font-size: 14px; line-height: 1.3; }
.quote__by b { color: var(--navy-900); font-weight: 600; }
.quote__by span { color: var(--faint); }

/* ===========================================================
   CTA / BOOK
   =========================================================== */
.cta { position: relative; overflow: hidden; }
.cta__panel {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900) 60%);
  border-radius: var(--r-xl); padding: clamp(36px, 5vw, 64px);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 40px); align-items: stretch;
}
.cta__copy { position: relative; z-index: 2; }
.cta__panel { position: relative; }
.cta__panel .glow--amber { top: -160px; right: -80px; opacity: .35; }
.cta__copy h2 { color: var(--bg); font-size: clamp(30px, 4vw, 48px); }
.cta__copy p { color: oklch(0.8 0.02 256); margin-top: 18px; font-size: 18px; max-width: 560px; }
.cta__copy .actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.cta__copy .meta { margin-top: 26px; display: flex; flex-direction: column; gap: 6px; color: oklch(0.74 0.02 256); font-size: 15px; }
.cta__copy .meta a { color: var(--amber); }

.booker {
  position: relative; z-index: 2; background: var(--card); border-radius: var(--r-lg);
  border: 1px solid oklch(1 0 0 / 0.12); box-shadow: var(--shadow); overflow: hidden;
  min-height: 360px; display: flex; flex-direction: column;
}
.booker__bar { display:flex; align-items:center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.booker__bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.booker__bar b { font-size: 14px; margin-left: 8px; color: var(--navy-900); font-family:"Schibsted Grotesk"; }
.booker iframe { width: 100%; border: 0; flex: 1; min-height: 580px; background: var(--card); }
.booker__ph { flex:1; display: grid; place-content: center; text-align: center; gap: 14px; padding: 36px; }
.booker__ph .mono { color: var(--faint); }
.booker__ph p { color: var(--muted); font-size: 15px; max-width: 280px; margin: 0 auto; }

/* ===========================================================
   FOOTER
   =========================================================== */
.foot { background: var(--navy-900); color: oklch(0.78 0.02 256); padding: 56px 0 40px; }
.foot__in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-start; }
.foot .brand { color: var(--bg); }
.foot__col h4 { color: var(--bg); font-size: 14px; margin-bottom: 14px; font-family:"Hanken Grotesk"; font-weight:600; letter-spacing:.02em; }
.foot__col a { display: block; color: oklch(0.74 0.02 256); font-size: 15px; padding: 5px 0; transition: color .2s; }
.foot__col a:hover { color: var(--amber); }
.foot__cols { display: flex; gap: clamp(30px, 6vw, 80px); flex-wrap: wrap; }
.foot__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid oklch(1 0 0 / .1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: oklch(0.6 0.02 256); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .photo-card, .chip, .rise > span { opacity: 1 !important; transform: none !important; }
}

/* ===========================================================
   SNAP failsafe — applied (by JS) only when the render loop is
   frozen / throttled, so entrance states never stay stuck hidden.
   =========================================================== */
html.snap .reveal,
html.snap .panel,
html.snap .chip,
html.snap .panel__rows li { opacity: 1 !important; transform: none !important; transition: none !important; }
html.snap .rise > span { transform: none !important; transition: none !important; }
html.snap .stack__layer { transition: none !important; }
html.snap .stack__layer.l1 { opacity: .55 !important; transform: translate(16px, 18px) rotate(2.4deg) !important; }
html.snap .stack__layer.l2 { opacity: .3 !important; transform: translate(30px, 36px) rotate(4.6deg) !important; }
html.snap .hl::after { transform: scaleX(1) !important; transition: none !important; }
