/* =====================================================================
   Mustafa Alkurdi — consulting site
   Dark editorial system (charcoal, warm cream, burnt orange = human,
   teal = AI). Mobile-first. Logical properties throughout, so one
   stylesheet serves Arabic (RTL) and English (LTR).
   Fonts load from Google Fonts in the <head> of each HTML file:
   IBM Plex Sans Arabic (Arabic), Geist + Inter (English), Geist Mono (labels).
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #141414;
  --surface: #1D1D1D;
  --surface-2: #232323;
  --cream: #F5F3EF;
  --graphite: #333333;
  --stone: #8B8B8B;
  --clay: #C96A2B;           /* burnt orange — human / marketing / psychology */
  --teal: #14B8A6;           /* AI / technology */
  --clay-soft: rgba(201, 106, 43, .14);
  --teal-soft: rgba(20, 184, 166, .12);
  --hair: rgba(245, 243, 239, .09);
  --hair-strong: rgba(245, 243, 239, .16);

  /* accessible working shades */
  --text-2: #B4AFA7;         /* body copy on dark (8:1) */
  --clay-btn: #B0541C;       /* filled buttons, cream text passes AA */
  --clay-press: #97461A;
  --clay-text: #D9793A;      /* small orange text on cards (AA) */
  --danger: #F2877B;

  --font-arabic: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, "Geeza Pro", "Noto Sans Arabic", sans-serif;
  --font-display-en: "Geist", "Inter", "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body-en: "Inter", "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "IBM Plex Sans Arabic", monospace;
  --font-latin: "Geist", "Inter", system-ui, sans-serif;

  --max: 1200px;
  --gutter: clamp(1.25rem, .8rem + 2.2vw, 2.5rem);
  --header-h: 4rem;
  --space-section: clamp(4.5rem, 2.5rem + 7vw, 9rem);
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.2, .8, .2, 1);

  --t-lead: clamp(1.0625rem, 1rem + .35vw, 1.22rem);
  --t-h3: clamp(1.2rem, 1.08rem + .5vw, 1.5rem);
}

html[lang="ar"] {
  --font-body: var(--font-arabic);
  --font-display: var(--font-arabic);
  --lh-body: 1.9;
  --lh-heading: 1.45;
  --lh-display: 1.3;
  --track-display: 0;
  --track-heading: 0;
  --w-display: 700;
  --w-heading: 700;
  --t-hero: clamp(2.25rem, 1.35rem + 3.8vw, 4.1rem);
  --t-h2: clamp(1.8rem, 1.3rem + 2.2vw, 3rem);
}
html[lang="en"] {
  --font-body: var(--font-body-en);
  --font-display: var(--font-display-en);
  --lh-body: 1.65;
  --lh-heading: 1.08;
  --lh-display: 1.02;
  --track-display: -.03em;
  --track-heading: -.025em;
  --w-display: 600;
  --w-heading: 600;
  --t-hero: clamp(2.5rem, 1.3rem + 4.6vw, 4.9rem);
  --t-h2: clamp(2rem, 1.35rem + 2.7vw, 3.3rem);
}
@media (min-width: 900px) { :root { --header-h: 4.5rem; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--bg);
  color-scheme: dark;
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--lh-body);
  color: var(--cream);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}
/* light film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--clay); color: #fff; }
html.has-dialog { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
[hidden] { display: none !important; }
bdi { unicode-bidi: isolate; }
main:focus { outline: none; }
section[id] { scroll-margin-top: var(--header-h); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.container {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 100;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  background: var(--clay-btn);
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.hl { color: var(--clay); }
.ai { color: var(--teal); font-weight: 600; }
.dot { flex: none; width: .45rem; height: .45rem; border-radius: 50%; background: var(--clay); }

/* ---------- Icons ---------- */
.icon { width: 1.15em; height: 1.15em; flex: none; }
[dir="rtl"] .icon--dir { transform: scaleX(-1); }

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3rem;
  padding: .8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .975rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .25s var(--ease), background-color .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}
html[lang="en"] .btn { font-weight: 500; }
.btn .icon--dir { transition: transform .25s var(--ease); }
.btn:hover .icon--dir { transform: translateX(3px); }
[dir="rtl"] .btn:hover .icon--dir { transform: scaleX(-1) translateX(3px); }
.btn--primary {
  color: var(--cream);
  background: var(--clay-btn);
  box-shadow: 0 10px 30px -10px rgba(201, 106, 43, .7);
}
.btn--primary:hover { box-shadow: 0 14px 40px -8px rgba(201, 106, 43, .85); transform: translateY(-1px); }
.btn--primary:active { background: var(--clay-press); transform: none; }
.btn--ghost { color: var(--cream); border-color: var(--hair-strong); background: transparent; }
.btn--ghost:hover { border-color: var(--cream); background: rgba(245, 243, 239, .05); }
.btn--wa .icon { color: var(--cream); }
.btn--lg { min-height: 3.4rem; padding: .95rem 1.75rem; font-size: 1.025rem; }
.btn--sm { min-height: 2.75rem; padding: .55rem 1.1rem; font-size: .9rem; box-shadow: none; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.75rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: rgba(201, 106, 43, .7);
  text-decoration-thickness: 1px;
  text-underline-offset: .35em;
  transition: color .2s ease;
}
.textlink:hover { color: var(--clay-text); }
.textlink .icon { color: var(--stone); }

/* ---------- Atmosphere: grid, glow ---------- */
.grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side, var(--glow-c), transparent);
}
.glow--clay { --glow-c: rgba(201, 106, 43, .24); }
.glow--teal { --glow-c: rgba(20, 184, 166, .14); }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, #181818 100%);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), border-color .4s ease, box-shadow .4s ease;
}
@media (hover: hover) {
  .card--lift:hover {
    transform: translateY(-6px);
    border-color: var(--hair-strong);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
  }
}
.card--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--clay), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
[dir="rtl"] .card--accent::before { background: linear-gradient(225deg, var(--clay), transparent 40%); }
.card--accent.is-teal::before { background: linear-gradient(135deg, var(--teal), transparent 40%); }
[dir="rtl"] .card--accent.is-teal::before { background: linear-gradient(225deg, var(--teal), transparent 40%); }
.card--accent:hover::before, .card--accent:focus-within::before { opacity: 1; }

/* ---------- Eyebrows, section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--stone);
}
.eyebrow::before { content: ""; flex: none; width: 26px; height: 1px; background: var(--clay); }
html[lang="en"] .eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow--center { justify-content: center; }

.section { position: relative; padding-block: var(--space-section); }
.section > .container { position: relative; z-index: 1; }
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 1.2rem + 2vw, 3rem);
}
.section-index {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--stone);
  white-space: nowrap;
}
.section-head {
  display: grid;
  gap: 1.1rem;
  margin-bottom: clamp(2.25rem, 1.5rem + 2.5vw, 3.75rem);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--t-h2);
  font-weight: var(--w-heading);
  line-height: var(--lh-heading);
  letter-spacing: var(--track-heading);
  text-wrap: balance;
}
.section-intro {
  max-width: 38rem;
  font-size: var(--t-lead);
  line-height: 1.75;
  color: var(--text-2);
}
html[lang="en"] .section-intro { line-height: 1.65; }
@media (min-width: 960px) {
  .section-head { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; column-gap: 4rem; }
  .section-head .section-intro { justify-self: start; }
}

.mini-label {
  margin-bottom: 1rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--stone);
}
html[lang="en"] .mini-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, -webkit-backdrop-filter .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(20, 20, 20, .78);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--hair);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header.is-scrolled, .site-header.is-open { background: rgba(20, 20, 20, .96); }
}
.nav { display: flex; align-items: center; gap: .6rem; height: var(--header-h); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
  min-height: 2.75rem;
  margin-inline-end: auto;
  color: var(--cream);
  font-weight: 600;
  font-size: .975rem;
  text-decoration: none;
  white-space: nowrap;
}
html[lang="en"] .brand { font-family: var(--font-display); letter-spacing: -.01em; }
.brand__mark { flex: none; width: 2.1rem; height: 2.1rem; }
.brand__name { overflow: hidden; text-overflow: ellipsis; }
.nav__links { display: none; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  font-size: .92rem;
  color: var(--stone);
  text-decoration: none;
  transition: color .25s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: .45rem;
  width: 0;
  height: 1px;
  background: var(--clay);
  transition: width .3s ease;
}
.nav__link:hover, .nav__link.is-current { color: var(--cream); }
.nav__link:hover::after, .nav__link.is-current::after { width: 100%; }

.lang { display: inline-flex; align-items: center; gap: .1rem; font-size: .8125rem; line-height: 1; }
.lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding-inline: .35rem;
  color: var(--stone);
  text-decoration: none;
  transition: color .2s ease;
}
.lang a:hover { color: var(--cream); }
.lang a[aria-current="true"] { color: var(--cream); font-weight: 600; }
.lang a[lang="en"] { font-family: var(--font-mono); letter-spacing: .12em; font-size: .75rem; }
.lang a[lang="ar"] { font-family: var(--font-arabic); }
.lang__sep { color: var(--stone); }
.nav > .lang a[aria-current="true"], .nav > .lang .lang__sep { display: none; }
.nav > .lang, .menu-btn, .nav__cta { flex: none; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--hair-strong);
  border-radius: 12px;
  cursor: pointer;
}
.menu-btn .icon { width: 1.25rem; height: 1.25rem; }
.menu-btn .icon-close { display: none; }
.site-header.is-open .menu-btn .icon-menu { display: none; }
.site-header.is-open .menu-btn .icon-close { display: block; }
.nav__cta .nav__cta-long { display: none; }

.mobile-panel {
  position: absolute;
  top: 100%;
  inset-inline: 0;
  background: rgba(20, 20, 20, .97);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.mobile-panel__inner { padding-block: .5rem 1.5rem; }
.mobile-panel ul { list-style: none; margin: 0; padding: 0; }
.mobile-panel li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.4rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
}
.mobile-panel li a .icon { color: var(--clay); }
.mobile-panel .btn { margin-top: 1.25rem; }
.lang--panel { width: 100%; justify-content: center; margin-top: .75rem; font-size: .9375rem; }

@media (max-width: 399px) {
  .nav { gap: .4rem; }
  .brand__mark { display: none; }
}
@media (max-width: 349px) { .nav > .lang { display: none; } }
@media (min-width: 400px) {
  .nav > .lang a[aria-current="true"], .nav > .lang .lang__sep { display: inline-flex; }
}
@media (min-width: 900px) {
  .nav { gap: 1rem; }
  .nav__links { display: flex; gap: 2rem; margin-inline-end: 1rem; }
  .menu-btn, .mobile-panel { display: none !important; }
  .nav__cta .nav__cta-long { display: inline; }
  .nav__cta .nav__cta-short { display: none; }
}

/* =====================================================================
   01 — HERO
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--header-h) + clamp(2rem, .5rem + 6vw, 6rem)) clamp(4rem, 2.5rem + 6vw, 7.5rem);
}
.hero__glow-a { width: 34rem; height: 34rem; top: -9rem; inset-inline-end: -6rem; }
.hero__glow-b { width: 28rem; height: 28rem; bottom: -12rem; inset-inline-start: -8rem; }
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.5rem;
}
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  font-weight: var(--w-display);
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
  text-wrap: balance;
}
.hero__title .hl { display: block; }
.hero__sub {
  margin-top: 1.6rem;
  max-width: 36em;
  font-size: var(--t-lead);
  line-height: 1.8;
  color: var(--text-2);
}
html[lang="en"] .hero__sub { line-height: 1.7; }
.hero__actions { display: flex; flex-direction: column; gap: .8rem; margin-top: 2.25rem; }
.hero__meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: 2rem;
  font-size: .875rem;
  color: var(--stone);
}
html[lang="en"] .hero__meta {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.portrait { position: relative; width: 100%; max-width: 26.5rem; justify-self: center; }
.portrait__frame {
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9);
}
.portrait__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #1a1a1a;
}
.portrait__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.portrait__caption {
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--stone);
}

@media (min-width: 520px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    align-items: center;
    gap: clamp(3rem, 5vw, 5rem);
    min-height: min(calc(100svh - var(--header-h) - 8rem), 44rem);
  }
  .portrait { justify-self: end; }
  .hero__portrait .portrait__media { aspect-ratio: 4 / 5; }
}

/* =====================================================================
   02 — PROBLEM / RECOGNITION
   ===================================================================== */
.legend {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--stone);
}
.corner {
  flex: none;
  width: .75rem;
  height: .75rem;
  border-inline-start: 1.5px solid var(--clay);
  border-bottom: 1.5px solid var(--clay);
}
.symptoms { display: grid; gap: .8rem; }
.symptom {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 1.25rem 1.25rem 1.2rem;
}
@media (min-width: 720px) { .symptom { gap: 1rem; padding: 1.5rem 1.4rem 1.4rem; } }
.symptom__num {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--clay-text);
}
.symptom__text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--cream);
}
html[lang="ar"] .symptom__text { quotes: "«" "»"; }
html[lang="en"] .symptom__text { quotes: "“" "”"; line-height: 1.45; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; }
.symptom__text::before { content: open-quote; color: var(--clay); }
.symptom__text::after { content: close-quote; color: var(--clay); }
.symptom__under {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--hair);
  font-size: .9375rem;
  line-height: 1.8;
  color: var(--text-2);
}
html[lang="en"] .symptom__under { line-height: 1.6; }
.symptom__under .corner { margin-top: .45em; }

.section-close {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  padding-top: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  border-top: 1px solid var(--hair);
}
.section-close__text {
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: var(--w-heading);
  line-height: 1.5;
  letter-spacing: var(--track-heading);
  max-width: 30em;
}
html[lang="en"] .section-close__text { line-height: 1.25; }

@media (min-width: 720px) { .symptoms { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .symptoms { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 900px) {
  .section-close { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =====================================================================
   03 — WHAT I HELP WITH
   ===================================================================== */
.help-grid { display: grid; gap: 1rem; }
.help-card {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 1.35rem 1.3rem 1.2rem;
}
@media (min-width: 700px) { .help-card { gap: .9rem; padding: 1.6rem 1.5rem 1.5rem; } }
.help-card__top { display: flex; align-items: center; gap: .9rem; }
.help-card__heading { display: grid; gap: .15rem; min-width: 0; }
.icon-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 13px;
  color: var(--clay);
  background: var(--clay-soft);
}
@media (min-width: 700px) {
  .help-card__top { flex-direction: column; align-items: flex-start; gap: 1.25rem; margin-bottom: .1rem; }
  .icon-badge { width: 3rem; height: 3rem; border-radius: 14px; }
  .help-card__kicker { position: absolute; top: 2.05rem; inset-inline-end: 1.5rem; }
}
@media (min-width: 1100px) { .help-card__kicker { top: 2.35rem; inset-inline-end: 1.8rem; } }
.icon-badge .icon { width: 1.4rem; height: 1.4rem; }
.help-card.is-teal .icon-badge { color: var(--teal); background: var(--teal-soft); }
.help-card__kicker {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
}
.help-card__title {
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: var(--w-heading);
  line-height: 1.35;
  letter-spacing: var(--track-heading);
}
html[lang="en"] .help-card__title { line-height: 1.2; }
.help-card__situation { font-weight: 600; line-height: 1.75; color: var(--cream); }
html[lang="en"] .help-card__situation { font-weight: 500; line-height: 1.5; }
.help-card__look {
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--hair);
  font-size: .9375rem;
  line-height: 1.8;
  color: var(--text-2);
}
html[lang="en"] .help-card__look { line-height: 1.6; }
.help-card__look-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  margin-block: -.4rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--stone);
  list-style: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.help-card__look-label::-webkit-details-marker { display: none; }
html[lang="en"] .help-card__look-label > span:first-child { font-family: var(--font-mono); font-weight: 500; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.help-card.is-teal .help-card__look-label { color: var(--teal); }
.help-card__look-icon {
  flex: none;
  width: .5rem;
  height: .5rem;
  margin-top: -.25rem;
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.help-card__look[open] .help-card__look-icon { transform: rotate(-135deg); margin-top: .25rem; }
.help-card__look p { margin-top: .4rem; }
@media (min-width: 700px) {
  .help-card__look-label { pointer-events: none; }
  .help-card__look-icon { display: none; }
}
.help-note {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: 2rem;
  max-width: 44rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--cream);
}
.help-note .dot { margin-top: .75em; }

@media (min-width: 700px) { .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1100px) { .help-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .help-card { padding: 1.9rem 1.8rem 1.75rem; } }

/* =====================================================================
   04 — THE SESSION
   ===================================================================== */
.section--consult { overflow: hidden; }
.consult__glow { width: 36rem; height: 36rem; top: 8%; inset-inline-end: -14rem; }
.consult { display: grid; gap: 2.5rem; }

.steps { display: grid; gap: 0; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 1.75rem;
}
.step::before {
  content: "";
  position: absolute;
  top: 2.75rem;
  bottom: .35rem;
  inset-inline-start: 1.375rem;
  width: 1px;
  background: linear-gradient(var(--hair-strong), transparent);
}
.step:last-child::before { display: none; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--clay-text);
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--w-heading);
  line-height: 1.5;
  letter-spacing: var(--track-heading);
}
html[lang="en"] .step__title { line-height: 1.3; }
.step__q { margin-top: .3rem; font-weight: 600; line-height: 1.7; color: var(--cream); }
html[lang="en"] .step__q { font-weight: 500; line-height: 1.5; }
.step__detail { margin-top: .35rem; font-size: .9375rem; line-height: 1.8; color: var(--text-2); }
html[lang="en"] .step__detail { line-height: 1.6; }

.outcome {
  margin-top: .75rem;
  padding-block: 1.5rem;
  border-block: 1px solid var(--hair);
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: var(--w-heading);
  line-height: 1.5;
  letter-spacing: var(--track-heading);
}
html[lang="en"] .outcome { line-height: 1.25; }
.prep {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px dashed var(--hair-strong);
  border-radius: 16px;
}
.prep__label { font-size: .8125rem; font-weight: 600; color: var(--stone); margin-bottom: .45rem; }
html[lang="en"] .prep__label { font-family: var(--font-mono); font-weight: 500; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.prep__q { font-size: 1.05rem; font-weight: 600; line-height: 1.7; }
html[lang="en"] .prep__q { font-weight: 500; line-height: 1.45; }

.offer {
  align-self: start;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, #211d1a 0%, #181818 100%);
  border-color: rgba(201, 106, 43, .28);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .85);
}
.offer.card--accent::before { opacity: 1; }
.offer__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.offer__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: var(--w-heading); line-height: 1.4; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .8rem;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
}
.offer__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem 1rem;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hair);
}
.offer__amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.8rem + 1.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--cream);
}
html[lang="en"] .offer__amount { font-weight: 600; letter-spacing: -.03em; }
.offer__per {
  font-size: .9375rem;
  color: var(--stone);
}
html[lang="en"] .offer__per { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }
.offer__points { display: grid; gap: .65rem; margin: 1.35rem 0 1.6rem; }
.offer__points li { display: flex; gap: .7rem; align-items: flex-start; line-height: 1.7; color: var(--text-2); }
.offer__points li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: .75em;
  border-radius: 50%;
  background: var(--clay);
}
.offer__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .875rem;
  color: var(--text-2);
  text-align: center;
}
.offer__note .icon { color: var(--cream); }
.offer__not {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hair);
  font-size: .8125rem;
  line-height: 1.8;
  color: var(--stone);
  text-align: center;
}
.offer__not-label { font-weight: 600; color: var(--text-2); }

@media (min-width: 960px) {
  .consult { grid-template-columns: minmax(0, 1.25fr) minmax(0, .95fr); gap: clamp(3rem, 5vw, 5rem); align-items: start; }
  .offer { position: sticky; top: calc(var(--header-h) + 1.5rem); padding: 2rem 1.9rem 1.75rem; }
}

/* =====================================================================
   05 — SELECTED WORK
   ===================================================================== */
.section--work { overflow: hidden; }
.work__glow { width: 30rem; height: 30rem; bottom: -6rem; inset-inline-end: -10rem; }

.case { overflow: hidden; }
.case__head { padding: 1.6rem 1.5rem 1.25rem; }
.case__name {
  font-family: var(--font-latin);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.case__kind { margin-top: .5rem; font-size: .9375rem; line-height: 1.7; color: var(--stone); }
.chips-static { display: flex; flex-wrap: wrap; gap: .4rem; }
.chips-static li {
  padding: .3em .8em;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cream);
}
.chips-static--quiet { margin-top: 1rem; }
.chips-static--quiet li { color: var(--text-2); border-color: var(--hair); font-weight: 500; }

.case__fields { display: grid; }
.field { padding: 1.2rem 1.5rem 1.3rem; border-top: 1px solid var(--hair); }
.field__label {
  display: block;
  margin-bottom: .55rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--stone);
}
html[lang="en"] .field__label { font-family: var(--font-mono); font-weight: 500; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.field dd { font-size: .9375rem; line-height: 1.85; color: var(--text-2); }
html[lang="en"] .field dd { line-height: 1.6; }
.field__list { display: grid; gap: .35rem; }
.field__list li { display: flex; gap: .65rem; align-items: flex-start; }
.field__list li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: .8em;
  border-radius: 50%;
  background: var(--clay);
}
.field__learning {
  margin-top: .85rem;
  padding-inline-start: .85rem;
  border-inline-start: 2px solid var(--clay);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--cream);
}
html[lang="en"] .field__learning { font-weight: 500; line-height: 1.5; }
.field__outcome + .field__learning { margin-top: .9rem; }

.case--featured { margin-bottom: 1rem; }
.case--featured .case__name { font-size: clamp(2rem, 1.6rem + 1.6vw, 2.8rem); letter-spacing: -.03em; }

.case-group { margin-top: 2rem; }
.case-group__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--stone);
}
html[lang="en"] .case-group__label > span:first-child { font-family: var(--font-mono); font-weight: 500; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.case-group__hint { font-weight: 500; color: var(--clay-text); }
.case-grid {
  display: flex;
  align-items: stretch;
  gap: .85rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  padding-bottom: .9rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--graphite) transparent;
}
.case-grid:focus-visible { outline-offset: -2px; }
.case-grid > .case { flex: 0 0 min(85%, 23rem); scroll-snap-align: start; display: flex; flex-direction: column; }
.case-grid > .case .case__fields { flex: 1; grid-template-rows: auto auto 1fr; }

@media (min-width: 960px) {
  .case--featured { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 2.25fr); }
  .case--featured .case__head { padding: 2rem 1.9rem; border-inline-end: 1px solid var(--hair); }
  .case--featured .case__fields { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .case--featured .field { border-top: 0; padding: 2rem 1.6rem; }
  .case--featured .field + .field { border-inline-start: 1px solid var(--hair); }

  .case-group { margin-top: 2.5rem; }
  .case-group__hint { display: none; }
  .case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }
  .case-grid > .case { flex: none; }
}

/* =====================================================================
   06 — ABOUT
   ===================================================================== */
.about { display: grid; gap: 2rem; }
.about__photo { width: 8rem; }
.portrait__frame--sm { padding: 5px; border-radius: 22px; }
.portrait__frame--sm .portrait__media { border-radius: 17px; aspect-ratio: 1 / 1; }
.about__lead {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: var(--w-heading);
  line-height: 1.5;
  letter-spacing: var(--track-heading);
}
html[lang="en"] .about__lead { line-height: 1.25; }
.about__original {
  margin-top: .45rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--stone);
  text-align: right;
}
.about__body { display: grid; gap: 1rem; margin-top: 1.75rem; max-width: 40rem; color: var(--text-2); }
.method { margin-top: 2.25rem; }
.method__list { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem .3rem; }
.method__item { display: inline-flex; align-items: center; gap: .3rem; }
.method__step {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5em 1em .5em .9em;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.4;
  background: var(--surface);
}
html[lang="en"] .method__step { font-weight: 500; }
.method__k { font-family: var(--font-mono); font-size: .72rem; color: var(--clay-text); }
.chev {
  flex: none;
  width: .45rem;
  height: .45rem;
  margin-inline: .35rem;
  border-top: 1.5px solid var(--clay);
  border-right: 1.5px solid var(--clay);
  transform: rotate(45deg);
}
[dir="rtl"] .chev { transform: scaleX(-1) rotate(45deg); }
.about__links { display: flex; flex-wrap: wrap; gap: .25rem 1.75rem; margin-top: 1.75rem; }

@media (min-width: 900px) {
  .about { grid-template-columns: 17rem minmax(0, 1fr); gap: 5rem; align-items: start; }
  .about__photo { width: 100%; position: sticky; top: calc(var(--header-h) + 2rem); }
  .portrait__frame--sm { padding: 6px; border-radius: var(--radius-lg); }
  .portrait__frame--sm .portrait__media { aspect-ratio: 4 / 5; border-radius: calc(var(--radius-lg) - 6px); }
}

/* =====================================================================
   07 — FINAL CTA
   ===================================================================== */
.final__card {
  overflow: hidden;
  padding: clamp(3.5rem, 2rem + 6vw, 6rem) clamp(1.25rem, .5rem + 4vw, 4rem);
  text-align: center;
  background: linear-gradient(180deg, #1f1f1f, #161616);
}
.final__card .grid-bg { opacity: .55; }
.final__glow { width: 36rem; height: 36rem; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.final__inner { position: relative; z-index: 1; max-width: 44rem; margin-inline: auto; }
.final__title {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: var(--t-h2);
  font-weight: var(--w-heading);
  line-height: var(--lh-heading);
  letter-spacing: var(--track-heading);
  text-wrap: balance;
}
.final__text {
  margin: 1.25rem auto 0;
  max-width: 34em;
  font-size: var(--t-lead);
  line-height: 1.8;
  color: var(--text-2);
}
html[lang="en"] .final__text { line-height: 1.65; }
.final__actions { display: flex; flex-direction: column; align-items: stretch; gap: .8rem; margin-top: 2.25rem; }
.final__meta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.5rem;
  font-size: .875rem;
  color: var(--stone);
}
html[lang="en"] .final__meta { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.after {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hair);
  text-align: start;
}
.after .mini-label { text-align: center; }
.after__list { display: grid; gap: .9rem; }
.after__item { display: flex; align-items: flex-start; gap: .8rem; line-height: 1.7; color: var(--text-2); }
.after__num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(201, 106, 43, .5);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--clay-text);
}

@media (min-width: 560px) {
  .final__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
@media (min-width: 760px) {
  .after__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  border-top: 1px solid var(--hair);
  padding-block: 2.5rem 1.5rem;
  font-size: .9375rem;
}
.footer__row { display: grid; gap: 1.25rem; align-items: center; }
.footer__links { display: flex; flex-wrap: wrap; gap: .25rem 1.4rem; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.75rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--cream); }
.footer__links .icon { color: var(--stone); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .25rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hair);
  font-size: .8125rem;
  color: var(--stone);
}
.footer__tag { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }
.footer__bottom a { display: inline-flex; align-items: center; min-height: 2.75rem; color: var(--stone); }
.footer__bottom a:hover { color: var(--cream); }

@media (min-width: 900px) {
  .footer__row { grid-template-columns: auto 1fr auto; gap: 2.5rem; }
  .footer__links { justify-content: center; }
}

/* =====================================================================
   BOOKING DIALOG (dark)
   ===================================================================== */
.booking {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  overflow: hidden;
}
.booking::backdrop { background: rgba(8, 8, 8, .8); }
.booking__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
}
.booking__head {
  flex: none;
  padding: 1.1rem var(--gutter) 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--hair);
}
.booking__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.booking__eyebrow { font-size: .8125rem; font-weight: 600; color: var(--stone); }
html[lang="en"] .booking__eyebrow { font-family: var(--font-mono); font-weight: 500; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
.booking__title {
  margin-top: .15rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: var(--w-heading);
  line-height: 1.4;
  letter-spacing: var(--track-heading);
}
.booking__close {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-inline-end: -.4rem;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--hair-strong);
  border-radius: 12px;
  cursor: pointer;
}
.booking__close:hover { background: rgba(245, 243, 239, .06); }
.booking__progress { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem; margin-top: 1rem; }
.booking__progress-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: .6rem;
  font-size: .8125rem;
  line-height: 1.3;
  color: var(--stone);
  border-top: 2px solid var(--hair-strong);
}
.booking__progress-num { font-family: var(--font-mono); font-size: .75rem; }
.booking__progress-item.is-done { color: var(--text-2); border-top-color: rgba(201, 106, 43, .55); }
.booking__progress-item.is-current { color: var(--cream); font-weight: 600; border-top-color: var(--clay); }

.booking__form {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.5rem var(--gutter) 2rem;
}
.booking__step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: var(--w-heading);
  line-height: 1.4;
  letter-spacing: var(--track-heading);
}
.booking__step-title:focus { outline: none; }
.booking__intro { margin-top: .4rem; font-size: .9375rem; line-height: 1.75; color: var(--text-2); }
.bk-fields { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.bk-field { display: grid; gap: .4rem; min-width: 0; margin: 0; padding: 0; border: 0; }
.bk-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .25rem .5rem;
  padding: 0;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cream);
}
.bk-opt { font-size: .75rem; font-weight: 400; color: var(--stone); }
.bk-hint { font-size: .8125rem; line-height: 1.6; color: var(--stone); }
.bk-input {
  width: 100%;
  min-height: 3rem;
  padding: .7rem .95rem;
  font-size: 1rem;            /* 16px keeps iOS from zooming */
  line-height: 1.5;
  color: var(--cream);
  background: var(--bg);
  border: 1px solid var(--hair-strong);
  border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea.bk-input { min-height: 6rem; resize: vertical; }
.bk-input::placeholder { color: var(--stone); opacity: 1; }
.bk-input:hover { border-color: rgba(245, 243, 239, .28); }
.bk-input:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(201, 106, 43, .25); }
.bk-input[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(242, 135, 123, .15); }
.bk-input[dir="ltr"] { text-align: left; }
.bk-input[type="date"] { color-scheme: dark; }
[dir="rtl"] .bk-input[type="date"] { text-align: right; }
.bk-error { font-size: .8125rem; font-weight: 600; color: var(--danger); }
.bk-error:empty { display: none; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; display: inline-flex; }
.chip input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: .45rem 1rem;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.chip input:hover + span { border-color: rgba(245, 243, 239, .3); color: var(--cream); }
.chip input:checked + span { color: var(--cream); background: var(--clay-soft); border-color: var(--clay); }
.chip input:focus-visible + span { outline: 2px solid var(--clay); outline-offset: 2px; }

.bk-embed {
  position: relative;
  margin-top: 1.25rem;
  min-height: 42rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 14px;
}
.bk-embed iframe { display: block; width: 100%; height: 42rem; border: 0; }
.bk-embed__loading { position: absolute; inset: 0; display: grid; place-items: center; font-size: .875rem; color: #555; }
.bk-embed__fallback { margin-top: .9rem; font-size: .9375rem; }
.bk-link-card { margin-top: 1.25rem; display: grid; gap: .75rem; justify-items: start; }

.bk-summary {
  display: grid;
  margin-top: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 14px;
  overflow: hidden;
}
.bk-summary__row { display: grid; gap: .15rem; padding: .8rem 1rem; border-top: 1px solid var(--hair); }
.bk-summary__row:first-child { border-top: 0; background: rgba(201, 106, 43, .08); }
.bk-summary dt { font-size: .75rem; font-weight: 600; color: var(--stone); }
.bk-summary dd { font-size: .9375rem; line-height: 1.7; color: var(--cream); white-space: pre-line; }
.bk-alt { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; margin-top: 1rem; font-size: .9375rem; }
.bk-alt button, .bk-alt a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.75rem;
  padding: 0;
  font-weight: 600;
  color: var(--cream);
  background: none;
  border: 0;
  text-decoration: underline;
  text-decoration-color: rgba(201, 106, 43, .7);
  text-underline-offset: .35em;
  cursor: pointer;
}
.bk-status { margin-top: 1rem; font-size: .9375rem; line-height: 1.7; }
.bk-status--error { color: var(--danger); font-weight: 600; }
.bk-status a, .bk-done-fallback a { color: var(--cream); font-weight: 600; }

.bk-done-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--clay);
  background: var(--clay-soft);
}
.bk-done-mark .icon { width: 1.4rem; height: 1.4rem; }
.bk-done-text { margin-top: .6rem; line-height: 1.8; color: var(--text-2); }
.bk-done-fallback { margin-top: 1.25rem; font-size: .9375rem; line-height: 1.8; color: var(--stone); }

.booking__foot {
  flex: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .9rem var(--gutter);
  padding-bottom: max(.9rem, env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--hair);
}
.booking__foot .btn--primary { margin-inline-start: auto; flex: 1 1 auto; }
.booking__foot [data-back] { flex: 0 1 auto; }

@media (min-width: 720px) {
  .booking {
    width: min(42rem, calc(100% - 3rem));
    height: auto;
    max-height: calc(100% - 3rem);
    margin: auto;
    border-radius: var(--radius);
    box-shadow: 0 2.5rem 6rem -1.5rem rgba(0, 0, 0, .8);
  }
  .booking__panel {
    height: auto;
    max-height: calc(100vh - 3rem);
    max-height: calc(100dvh - 3rem);
    border: 1px solid var(--hair);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .booking__head { padding: 1.4rem 2rem 1.2rem; }
  .booking__form { padding: 1.75rem 2rem 2rem; }
  .booking__foot { padding: 1rem 2rem; }
  .booking__foot .btn--primary { flex: 0 1 auto; }
  .bk-fields--two { grid-template-columns: 1fr 1fr; }
}

/* =====================================================================
   NOSCRIPT
   ===================================================================== */
.noscript { max-width: 40rem; margin: 6rem auto 3rem; padding: 2rem var(--gutter); line-height: 1.9; }
.noscript p + p { margin-top: 1rem; }
.noscript a { color: var(--cream); }

/* =====================================================================
   MOTION — subtle, once, never for reduced-motion users
   ===================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .js .hero__copy > * { animation: rise .9s var(--ease) both; }
  .js .hero__copy > :nth-child(2) { animation-delay: .08s; }
  .js .hero__copy > :nth-child(3) { animation-delay: .16s; }
  .js .hero__copy > :nth-child(4) { animation-delay: .24s; }
  .js .hero__copy > :nth-child(5) { animation-delay: .32s; }
  .js .hero__portrait { animation: rise 1.1s var(--ease) .2s both; }
  .booking[open] { animation: fade .25s ease both; }
  .booking[open] .booking__panel { animation: rise .35s var(--ease) both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(1rem); } }
@keyframes fade { from { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
