/* ==========================================================================
   Shahrbanoo Behjat — author site
   Design system stylesheet. All tokens live in :root as custom properties so
   they port 1:1 into SCSS variables / an ASP.NET Core theme later.
   ========================================================================== */

/* ---- Local fonts -------------------------------------------------------- */
@font-face { font-family: SnowPuppets;  src: url("../assets/fonts/SnowPuppets.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: IranNastaliq; src: url("../assets/fonts/IranNastaliq.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: IRANSansX; src: url("../assets/fonts/IRANSansX-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: IRANSansX; src: url("../assets/fonts/IRANSansX-Bold.woff2")    format("woff2"); font-weight: 700; font-display: swap; }

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* palette */
  --ink:          #241033;
  --plum:         #4C1D6B;
  --plum-hi:      #7A3FA0;
  --gold:         #B08343;
  --gold-on-dark: #D8AE6A;
  --lilac:        #E4D2F0;
  --page:         #F6F1F9;
  --card:         #ffffff;

  /* text */
  --text-heading: #241033;
  --text-body:    #4A3559;
  --text-small:   #5C4B6A;
  --text-label:   #7B6A88;
  --text-muted:   #9A8CA6;

  /* dark-band text */
  --on-dark:      #F0E7F6;
  --on-dark-60:   rgba(240,231,246,.6);
  --on-dark-72:   rgba(240,231,246,.72);

  /* borders + surfaces */
  --border-08:    rgba(36,16,51,.08);
  --border-10:    rgba(36,16,51,.10);
  --border-12:    rgba(36,16,51,.12);
  --tint-top:     #FBF8FD;
  --tint-bottom:  #F1E9F6;

  /* type families */
  --font-display: SnowPuppets, cursive;              /* wordmark + page titles only */
  --font-serif:   Newsreader, Georgia, serif;        /* headings + body */
  --font-sans:    "Instrument Sans", system-ui, sans-serif; /* nav, buttons, labels */
  --font-fa:      IRANSansX, Tahoma, sans-serif;

  /* structure */
  --container:    1200px;
  --gutter:       40px;
  --shadow:       0 12px 32px rgba(36,16,51,.10);
  --radius:       2px;
}

/* ---- Reset / base ------------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--text-body);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
a { color: var(--plum); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }
button { font-family: var(--font-sans); }
:focus-visible { outline: 2px solid var(--plum-hi); outline-offset: 2px; }

/* ---- Layout helpers ----------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: 120px 0; }
/* offset in-page anchor landings so the sticky header doesn't cover the heading */
section[id], .section[id] { scroll-margin-top: 88px; }
.section--page  { background: var(--page); }
.section--card  { background: var(--card); border-top: 1px solid var(--border-08); border-bottom: 1px solid var(--border-08); }
.section--dark  { background: var(--ink); position: relative; overflow: hidden; }

.stack { display: flex; flex-direction: column; }
.rule-gold { width: 32px; height: 1px; background: var(--gold); }

/* eyebrow / section label */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--dark { color: var(--gold-on-dark); }
.eyebrow-row { display: flex; align-items: center; gap: 12px; }

/* section heading */
.h-section {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 38px; line-height: 1.15; letter-spacing: -.01em;
  color: var(--text-heading);
}
.h-section--light { color: #fff; }
.lead { font-size: 18px; line-height: 1.7; color: var(--text-body); }

.section-head { display: flex; flex-direction: column; gap: 20px; max-width: 640px; }
.section-head--between { max-width: none; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; height: 50px; padding: 0 28px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600; letter-spacing: .02em;
  border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--plum); color: #fff; }
.btn--ghost { border-color: rgba(36,16,51,.28); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: rgba(36,16,51,.05); color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--sm { height: 46px; padding: 0 24px; }

.link-more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--plum); }

/* pills / filter chips */
.pillrow { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; height: 34px; padding: 0 16px;
  border-radius: 999px; font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  border: 1px solid rgba(36,16,51,.18); color: var(--text-body); background: transparent;
  cursor: pointer; transition: background .2s ease;
}
.pill:hover { background: var(--page); }
.pill--active { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 600; }
.pill--lg { height: 36px; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
  background: rgba(246,241,249,.92);
  border-bottom: 1px solid var(--border-08);
  backdrop-filter: blur(12px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.wordmark {
  font-family: var(--font-serif); font-size: 17px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
}
.wordmark:hover { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { position: relative; display: flex; align-items: center; gap: 26px; font-family: var(--font-sans); font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--text-body); transition: color .25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links .is-current { color: var(--ink); }
/* sliding underline indicator (positioned by JS; travels between items on scroll) */
.nav-underline {
  position: absolute; bottom: -7px; left: 0; height: 2px; width: 0; background: var(--gold);
  opacity: 0; pointer-events: none;
  transition: left .38s cubic-bezier(.5,0,.15,1), width .38s cubic-bezier(.5,0,.15,1), opacity .25s ease;
}
.nav-underline.is-ready { opacity: 1; }

.nav-divider { width: 1px; height: 22px; background: rgba(36,16,51,.14); }
.nav-lang { display: flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 13px; }
.nav-lang .is-active { font-weight: 600; color: var(--ink); }
.nav-lang .sep { color: var(--text-muted); }
.nav-lang .fa { color: var(--text-label); font-family: var(--font-fa); }
.nav-social { display: flex; align-items: center; gap: 10px; margin-left: 4px; }
.nav-social img { width: 20px; height: 19px; object-fit: contain; opacity: .65; }
.nav-social a:hover img { opacity: 1; }

.nav-contact {
  display: inline-flex; align-items: center; height: 38px; padding: 0 20px;
  border-radius: 999px; background: var(--ink); color: #fff;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
}
.nav-contact:hover { background: var(--plum); color: #fff; }

/* hamburger — hidden on desktop */
.nav-toggle {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s ease; }

/* mobile drawer + scrim */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 110; width: 300px; max-width: 84vw;
  background: var(--ink); transform: translateX(100%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column; box-shadow: none;
}
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 18px 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.drawer-title { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-on-dark); }
.drawer-close {
  width: 40px; height: 40px; margin-right: -6px; flex: 0 0 40px;
  border: 1px solid rgba(255,255,255,.2); background: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.drawer-close:hover { background: rgba(255,255,255,.12); }
.drawer-close:active { transform: scale(.94); }
.drawer-nav { display: flex; flex-direction: column; padding: 8px 0; }
.drawer-nav a {
  display: flex; align-items: center; min-height: 52px; padding: 0 24px;
  font-family: var(--font-serif); font-size: 20px; color: var(--on-dark-72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.drawer-nav a.is-current { color: #fff; }
.drawer-foot { margin-top: auto; padding: 24px; display: flex; flex-direction: column; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.drawer-foot .btn--light { min-height: 48px; }
.drawer-langsocial { display: flex; align-items: center; justify-content: space-between; }
.drawer-lang { display: flex; align-items: center; gap: 10px; }
.drawer-lang span { display: inline-flex; align-items: center; height: 34px; padding: 0 14px; border-radius: 999px; font-family: var(--font-sans); font-size: 13px; }
.drawer-lang .is-active { background: rgba(255,255,255,.14); color: #fff; font-weight: 600; }
.drawer-lang .fa { color: var(--on-dark-72); font-family: var(--font-fa); }
.drawer-social { display: flex; gap: 14px; }
/* full-colour brand icons — the previous white filter flattened them to grey blobs */
.drawer-social img { width: 26px; height: 26px; object-fit: contain; opacity: .95; transition: opacity .2s ease, transform .2s ease; }
.drawer-social a:hover img { opacity: 1; transform: translateY(-1px); }

.scrim {
  position: fixed; inset: 0; z-index: 105; background: rgba(20,6,32,.5);
  backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .35s ease;
}

/* open state (toggled on <body>) */
body.menu-open { overflow: hidden; }
body.menu-open .drawer { transform: translateX(0); box-shadow: -18px 0 40px rgba(20,6,32,.3); }
body.menu-open .scrim { opacity: 1; pointer-events: auto; }
body.menu-open .nav-toggle span:first-child { transform: rotate(45deg) translateY(4.6px); }
body.menu-open .nav-toggle span:last-child  { transform: rotate(-45deg) translateY(-4.6px); }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--page) 0%, #EBDFF3 100%);
}
.hero-glow {
  position: absolute; top: -180px; right: 60px; width: 820px; height: 820px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,29,107,.42) 0%, rgba(76,29,107,0) 68%);
  filter: blur(30px); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 3; min-height: 620px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; padding: 80px 0 120px; }
.hero-title {
  font-family: var(--font-display); font-size: 84px; line-height: .98;
  color: var(--ink); letter-spacing: -.01em;
}
.hero-tagline { font-family: var(--font-serif); font-size: 21px; line-height: 1.6; color: var(--text-body); max-width: 38ch; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 4px; }
.hero-portrait { position: absolute; bottom: 0; right: 120px; z-index: 2; width: 480px; max-width: 42vw; height: auto; }

.hero-stats {
  position: relative; z-index: 4;
  border-top: 1px solid var(--border-12); background: #EEE3F5; backdrop-filter: blur(8px);
}
.hero-stats .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-top: 22px; padding-bottom: 22px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat + .stat { border-left: 1px solid var(--border-10); padding-left: 40px; }
.stat-num { font-family: var(--font-serif); font-size: 24px; color: var(--ink); line-height: 1.1; }
.stat-label { font-family: var(--font-sans); font-size: 13px; color: var(--text-label); }

/* ==========================================================================
   Generic two-column split (about, contact)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.prose p { font-family: var(--font-serif); font-size: 18px; line-height: 1.75; color: var(--text-body); }
.prose p + p { margin-top: 20px; }

.pullquote { border-left: 2px solid var(--gold); padding: 4px 0 4px 24px; }
.pullquote blockquote { font-family: var(--font-serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink); }

/* video card (about column + generic) */
.video-card { display: flex; flex-direction: column; gap: 12px; cursor: pointer; }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb .grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,16,51,0) 40%, rgba(36,16,51,.6) 100%); }
.video-thumb .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
}
.video-thumb .play::after { content: ""; width: 0; height: 0; border-left: 18px solid var(--ink); border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px; }
.video-thumb .play--sm { width: 48px; height: 48px; }
.video-thumb .play--sm::after { border-left-width: 14px; border-top-width: 8px; border-bottom-width: 8px; margin-left: 4px; }
.video-thumb .caption-over { position: absolute; bottom: 16px; left: 20px; right: 20px; color: #fff; font-family: var(--font-serif); font-size: 17px; }
.video-thumb .duration { position: absolute; bottom: 8px; right: 8px; background: rgba(36,16,51,.85); color: #fff; font-family: var(--font-sans); font-size: 11px; font-weight: 600; padding: 3px 6px; }
.video-meta { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-sans); font-size: 13px; color: var(--text-label); }
.video-title-fa { font-family: var(--font-fa); font-size: 14px; line-height: 1.8; color: var(--ink); direction: rtl; }

/* at-a-glance / spec table */
.factcard { background: var(--card); border: 1px solid var(--border-10); padding: 32px; }
.factcard .eyebrow { margin-bottom: 20px; display: block; }
.factlist li { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 14px 0; border-top: 1px solid var(--border-08); }
.factlist .k { font-family: var(--font-sans); font-size: 13px; color: var(--text-label); }
.factlist .v { font-family: var(--font-serif); font-size: 17px; color: var(--ink); }

/* ==========================================================================
   Books grid
   ========================================================================== */
.books-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.book-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 28px; }
.book-card {
  display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border-10);
  transition: box-shadow .25s ease, transform .25s ease; color: inherit;
}
.book-card:hover { box-shadow: 0 12px 32px rgba(36,16,51,.14); transform: translateY(-4px); color: inherit; }
.book-cover {
  height: 250px; display: flex; align-items: flex-end; justify-content: center; padding: 24px;
  background: linear-gradient(180deg, var(--tint-top) 0%, var(--tint-bottom) 100%);
  border-bottom: 1px solid var(--border-08);
}
.book-cover img { max-height: 200px; width: auto; object-fit: contain; box-shadow: 0 8px 18px rgba(36,16,51,.22); }
.book-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.book-tags { display: flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 11px; }
.book-tags .cat { letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.book-tags .dot { color: #B9AEC3; }
.book-tags .year { color: var(--text-label); }
.book-title { font-family: var(--font-serif); font-size: 20px; font-weight: 500; line-height: 1.25; color: var(--ink); }
.book-desc { font-family: var(--font-serif); font-size: 15px; line-height: 1.6; color: var(--text-small); flex: 1; }
.book-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; border-top: 1px solid var(--border-08); }
.book-foot .more { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--plum); }
.book-foot .badge { font-family: var(--font-sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.book-foot .soon { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--text-muted); }

/* ==========================================================================
   Awards
   ========================================================================== */
.award-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.award-card {
  background: var(--card); border: 1px solid var(--border-10); padding: 20px;
  display: flex; gap: 18px; cursor: pointer; text-align: left;
  transition: box-shadow .25s ease; width: 100%; font: inherit; color: inherit;
}
.award-card:hover { box-shadow: 0 12px 32px rgba(36,16,51,.12); }
.award-thumb { width: 78px; height: 100px; flex: 0 0 78px; overflow: hidden; background: var(--tint-bottom); border: 1px solid var(--border-08); }
.award-thumb img { width: 100%; height: 100%; object-fit: cover; }
.award-card .info { display: flex; flex-direction: column; gap: 6px; }
.award-card .k { font-family: var(--font-sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.award-card h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 500; line-height: 1.3; color: var(--ink); }
.award-card p { font-family: var(--font-serif); font-size: 14px; line-height: 1.55; color: var(--text-small); }
.award-card .view { font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: var(--plum); margin-top: 2px; }

/* ==========================================================================
   Reviews (dark band)
   ========================================================================== */
.band-glow { position: absolute; top: -200px; left: -100px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(122,63,160,.5) 0%, rgba(122,63,160,0) 70%); pointer-events: none; }

/* reviews carousel: 2 cards per page on desktop, 1 on mobile; JS translates the track */
.reviews-viewport { overflow: hidden; touch-action: pan-y; }
.reviews-track { display: flex; gap: 28px; transition: transform .5s cubic-bezier(.5,0,.15,1); will-change: transform; }
.reviews-track.no-anim { transition: none; }
.reviews-track .review-card { flex: 0 0 calc((100% - 28px) / 2); }
.review-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.review-card .quote-mark { font-family: var(--font-serif); font-size: 56px; line-height: .5; color: var(--gold-on-dark); height: 28px; }
.review-card blockquote { font-family: var(--font-serif); font-size: 21px; line-height: 1.65; color: var(--on-dark); }
.review-card .fa-note { font-family: var(--font-fa); font-size: 14px; line-height: 2; color: rgba(240,231,246,.5); direction: rtl; margin-top: -8px; }
.review-card figcaption { display: flex; align-items: center; gap: 16px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.14); }
.review-card figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: rgba(255,255,255,.1); }
.review-card .who { font-family: var(--font-serif); font-size: 17px; color: #fff; }
.review-card .meta { font-family: var(--font-sans); font-size: 12px; color: var(--on-dark-60); }
.review-card .on { font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: var(--gold-on-dark); }
.carousel-arrows { display: flex; gap: 10px; padding-bottom: 8px; }
.carousel-arrows button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: none; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); font-size: 16px; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.carousel-arrows button:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); color: #fff; }
.dots { display: flex; gap: 8px; justify-content: center; }
.dots button { width: 28px; height: 3px; padding: 0; border: none; background: rgba(255,255,255,.22); cursor: pointer; transition: background .25s ease, width .25s ease; }
.dots button.on { background: var(--gold-on-dark); width: 40px; }

/* ==========================================================================
   Videos strip
   ========================================================================== */
.videos-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.video-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.video-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.reasons { display: flex; flex-direction: column; margin-top: 8px; }
.reasons li { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--border-12); }
.reasons li:last-child { border-bottom: 1px solid var(--border-12); }
.reasons .n { font-family: var(--font-serif); font-size: 15px; color: var(--gold); width: 28px; }
.reasons .t { font-family: var(--font-serif); font-size: 20px; color: var(--ink); }
.reasons .d { font-family: var(--font-serif); font-size: 16px; line-height: 1.6; color: var(--text-small); }
.contact-email-row { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 8px; }
.contact-email { font-family: var(--font-serif); font-size: 20px; color: var(--plum); border-bottom: 1px solid rgba(76,29,107,.35); padding-bottom: 2px; }
.contact-social { display: flex; gap: 12px; }
.contact-social img { width: 22px; height: 22px; object-fit: contain; opacity: .6; }

.contact-form { background: var(--card); border: 1px solid var(--border-10); padding: 40px; display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span { font-family: var(--font-sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-label); font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form input, .contact-form textarea {
  border: 1px solid rgba(36,16,51,.2); background: var(--tint-top); padding: 0 14px;
  font-family: var(--font-serif); font-size: 16px; color: var(--ink); border-radius: var(--radius);
  outline: none; transition: border-color .2s ease, background .2s ease;
}
.contact-form input { height: 48px; }
.contact-form textarea { padding: 14px; line-height: 1.6; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--plum); background: #fff; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-note { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); line-height: 1.5; max-width: 26ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .mark { font-family: var(--font-display); font-size: 38px; line-height: 1; color: #fff; }
.footer-brand p { font-family: var(--font-serif); font-size: 16px; line-height: 1.6; color: var(--on-dark-60); max-width: 32ch; }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social img { width: 24px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); opacity: .7; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col .eyebrow { color: var(--gold-on-dark); }
.footer-col a { font-family: var(--font-sans); font-size: 14px; color: var(--on-dark-72); }
.footer-col a:hover { color: #fff; }
.footer-col a.is-active { color: #fff; font-weight: 600; }
.footer-col a.fa { font-family: var(--font-fa); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.12); font-family: var(--font-sans); font-size: 13px; color: rgba(240,231,246,.5); }

/* ==========================================================================
   Dialogs — award lightbox + stockist sheet
   ========================================================================== */
.dialog {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-start; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease;
}
.dialog.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.dialog-scrim { position: absolute; inset: 0; background: rgba(20,6,32,.86); backdrop-filter: blur(6px); cursor: pointer; }
body.dialog-open { overflow: hidden; }

/* award lightbox */
.award-dialog .dialog-panel {
  position: relative; margin: 80px auto 0; width: 1160px; max-width: 100%; height: 700px;
  max-height: calc(100dvh - 160px);
  background: #fff; box-shadow: 0 32px 80px rgba(0,0,0,.5);
  display: grid; grid-template-columns: 1.15fr 1fr; overflow: hidden;
  transform: scale(.97); transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.dialog.is-open .dialog-panel { transform: scale(1); }
.award-stage { position: relative; background: #1B0A28; display: flex; align-items: center; justify-content: center; overflow: hidden; touch-action: none; }
.award-stage img { max-width: 86%; max-height: 86%; object-fit: contain; box-shadow: 0 20px 50px rgba(0,0,0,.5); cursor: zoom-in; transition: transform .28s cubic-bezier(.5,0,.15,1); transform-origin: center center; user-select: none; -webkit-user-drag: none; }
.award-stage.is-zoomed img { cursor: grab; }
.award-stage.is-panning img { cursor: grabbing; transition: none; }
.award-stage .hint { position: absolute; top: 20px; left: 20px; font-family: var(--font-sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; }
.zoom-bar { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 6px; backdrop-filter: blur(8px); }
.zoom-bar button { width: 34px; height: 34px; border-radius: 50%; border: none; background: none; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; cursor: pointer; }
.zoom-bar button:hover { background: rgba(255,255,255,.16); }
.zoom-bar .val { font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: #fff; min-width: 44px; text-align: center; }
.zoom-bar .div { width: 1px; height: 20px; background: rgba(255,255,255,.2); margin: 0 4px; }

.award-detail { padding: 56px; display: flex; flex-direction: column; gap: 28px; position: relative; overflow-y: auto; }
.dialog-close {
  position: absolute; top: 20px; right: 20px; width: 38px; height: 38px;
  border: 1px solid rgba(36,16,51,.16); background: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--text-body); font-size: 16px; cursor: pointer;
}
.dialog-close:hover { background: var(--page); }
.award-detail h3 { font-family: var(--font-serif); font-size: 32px; line-height: 1.2; font-weight: 400; color: var(--ink); letter-spacing: -.01em; }
.award-detail .dl li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--border-10); }
.award-detail .dl li:last-child { border-bottom: 1px solid var(--border-10); }
.award-detail .dl .k { font-family: var(--font-sans); font-size: 13px; color: var(--text-label); }
.award-detail .dl .v { font-family: var(--font-serif); font-size: 16px; color: var(--ink); }
.award-detail .story { font-family: var(--font-serif); font-size: 17px; line-height: 1.75; color: var(--text-body); }
.award-nav { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border-10); }
.award-nav .pos { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); }
.award-nav .btns { display: flex; gap: 10px; }
.award-nav button { display: inline-flex; align-items: center; height: 40px; padding: 0 18px; font-family: var(--font-sans); font-size: 13px; font-weight: 600; border-radius: var(--radius); cursor: pointer; }
.award-nav .prev { border: 1px solid rgba(36,16,51,.2); background: none; color: var(--ink); }
.award-nav .prev:hover { background: var(--page); }
.award-nav .next { background: var(--ink); border: none; color: #fff; }
.award-nav .next:hover { background: var(--plum); }

/* stockist dialog */
.stockist-dialog { align-items: flex-start; }
.stockist-panel {
  position: relative; margin: 72px auto 0; width: 620px; max-width: 100%;
  max-height: calc(100dvh - 152px); overflow-y: auto;
  background: #fff; box-shadow: 0 32px 80px rgba(0,0,0,.5);
  transform: scale(.97); transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.dialog.is-open .stockist-panel { transform: scale(1); }
.stockist-head { padding: 32px 36px 24px; border-bottom: 1px solid var(--border-10); display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.stockist-head h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 400; line-height: 1.2; color: var(--ink); }
.stockist-group { padding: 24px 36px; display: flex; flex-direction: column; gap: 14px; }
.stockist-group + .stockist-group { padding-top: 4px; }
.stockist-list li { border-top: 1px solid var(--border-10); }
.stockist-list li:last-child { border-bottom: 1px solid var(--border-10); }
.stockist-list a.online { display: flex; align-items: center; gap: 16px; padding: 14px 0; color: var(--ink); }
.stockist-list a.online:hover { color: var(--plum); }
.stockist-list .logo { width: 38px; height: 38px; flex: 0 0 38px; background: var(--tint-bottom); border: 1px solid var(--border-08); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 15px; color: var(--plum); }
.stockist-list .store { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.stockist-list .store .name { font-family: var(--font-serif); font-size: 18px; }
.stockist-list .store .sub { font-family: var(--font-sans); font-size: 13px; color: var(--text-label); }
.stockist-list .arr { font-size: 14px; color: var(--text-muted); }
.stockist-list li.person { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 14px 0; }
.stockist-list li.person .name { font-family: var(--font-serif); font-size: 18px; color: var(--ink); display: block; }
.stockist-list li.person .sub { font-family: var(--font-sans); font-size: 13px; line-height: 1.5; color: var(--text-label); }
.stockist-list li.person a { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--plum); white-space: nowrap; }
.stockist-note { font-family: var(--font-sans); font-size: 13px; line-height: 1.6; color: var(--text-muted); margin-top: 4px; }

/* ==========================================================================
   Page hero (interior pages: biography, videos)
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #EBDFF3 0%, var(--page) 100%); }
.page-hero-glow { position: absolute; top: -220px; left: -60px; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, rgba(76,29,107,.34) 0%, rgba(76,29,107,0) 68%); filter: blur(20px); pointer-events: none; }
.page-hero .container { position: relative; }
.crumbs { display: flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 13px; color: var(--text-label); }
.crumbs .sep { color: #C0B3C9; }
.crumbs .here { color: var(--ink); }
.page-title { font-family: var(--font-display); color: var(--ink); line-height: 1; }
.page-subtitle { font-family: var(--font-serif); font-style: italic; line-height: 1.55; color: var(--text-body); }

.bio-hero .container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: end; }
.bio-hero-copy { display: flex; flex-direction: column; gap: 22px; padding: 64px 0 72px; }
.bio-hero .page-title { font-size: 76px; }
.bio-hero .page-subtitle { font-size: 24px; max-width: 34ch; }
.bio-hero-portrait { width: 100%; max-width: 420px; height: auto; justify-self: end; margin-bottom: -1px; position: relative; z-index: 2; }

/* fact strip */
.fact-strip { background: #fff; border-top: 1px solid var(--border-10); border-bottom: 1px solid var(--border-10); }
.fact-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-strip .cell { padding: 28px 0; display: flex; flex-direction: column; gap: 6px; }
.fact-strip .cell + .cell { padding-left: 32px; border-left: 1px solid var(--border-10); }
.fact-strip .k { font-family: var(--font-sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-label); font-weight: 600; }
.fact-strip .v { font-family: var(--font-serif); font-size: 18px; line-height: 1.4; color: var(--ink); }

/* biography body */
.bio-body .container { display: grid; grid-template-columns: 1fr 380px; gap: 88px; align-items: start; }
.timeline { display: flex; flex-direction: column; max-width: 62ch; }
.timeline li { position: relative; padding: 0 0 34px 34px; border-left: 1px solid rgba(36,16,51,.15); }
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before { content: ""; position: absolute; left: -5px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.timeline li:last-child::before { background: var(--ink); }
.timeline .yr { font-family: var(--font-serif); font-size: 16px; font-weight: 500; color: var(--gold); }
.timeline h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; line-height: 1.25; color: var(--ink); margin: 8px 0; }
.timeline p { font-family: var(--font-serif); font-size: 17px; line-height: 1.75; color: var(--text-body); }
.bio-aside { display: flex; flex-direction: column; gap: 24px; }
.aside-quote { background: var(--ink); padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.aside-quote .quote-mark { font-family: var(--font-serif); font-size: 52px; line-height: .5; color: var(--gold-on-dark); height: 26px; }
.aside-quote blockquote { font-family: var(--font-serif); font-style: italic; font-size: 21px; line-height: 1.6; color: var(--on-dark); }
.aside-quote figcaption { font-family: var(--font-sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-60); font-weight: 600; }
.press-card { background: #fff; border: 1px solid var(--border-10); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.press-list li { padding: 12px 0; border-top: 1px solid var(--border-10); }
.press-list li:last-child { border-bottom: 1px solid var(--border-10); }
.press-list a { font-family: var(--font-serif); font-size: 17px; color: var(--ink); }
.press-list a:hover { color: var(--plum); }

/* CTA band */
.cta-band { background: var(--ink); padding: 56px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { font-family: var(--font-serif); font-size: 30px; line-height: 1.2; color: #fff; font-weight: 400; }
.cta-band p { font-family: var(--font-sans); font-size: 14px; color: var(--on-dark-60); }

/* ==========================================================================
   Book detail
   ========================================================================== */
.book-detail .container { padding-top: 56px; }
.book-detail-crumbs { margin-bottom: 44px; }
.book-layout { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.book-side { display: flex; flex-direction: column; gap: 24px; }
.book-side-cover { background: #fff; border: 1px solid var(--border-10); padding: 28px; display: flex; align-items: center; justify-content: center; }
.book-side-cover img { width: 100%; height: auto; box-shadow: 0 10px 26px rgba(36,16,51,.24); }
.book-spec li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--border-10); }
.book-spec li:last-child { border-bottom: 1px solid var(--border-10); }
.book-spec .k { font-family: var(--font-sans); font-size: 13px; color: var(--text-label); }
.book-spec .v { font-family: var(--font-serif); font-size: 15px; color: var(--ink); }
.book-spec .v.gold { color: var(--gold); }
.book-side .btn { width: 100%; height: 48px; }

.book-main { display: flex; flex-direction: column; gap: 28px; }
.book-main-head { display: flex; flex-direction: column; gap: 16px; }
.book-main-head .page-title { font-size: 52px; line-height: 1.05; }
.book-main-head .page-subtitle { font-size: 20px; }
.hr { height: 1px; background: var(--border-12); }
.book-excerpt { display: flex; flex-direction: column; gap: 20px; max-width: 66ch; }
.book-excerpt p { font-family: var(--font-serif); font-size: 19px; line-height: 1.8; color: #33203F; }
.book-excerpt .dropcap::first-letter { float: left; font-size: 74px; line-height: .78; font-weight: 400; color: var(--plum); padding: 6px 12px 0 0; }
.book-excerpt figure { border-left: 2px solid var(--gold); padding: 8px 0 8px 24px; margin: 8px 0; }
.book-excerpt blockquote { font-family: var(--font-serif); font-style: italic; font-size: 22px; line-height: 1.55; color: var(--ink); }
.book-watch-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.book-nextrow { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border-top: 1px solid var(--border-12); border-bottom: 1px solid var(--border-12); }
.book-nextrow .next-book { font-family: var(--font-serif); font-size: 20px; color: var(--ink); }

/* ==========================================================================
   Video gallery
   ========================================================================== */
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.gallery-feature { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: stretch; }
.feature-video { position: relative; background: var(--ink); overflow: hidden; min-height: 420px; }
.feature-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-video .grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,16,51,.1) 40%, rgba(20,6,32,.88) 100%); }
.feature-video .tag { position: absolute; top: 20px; left: 20px; background: var(--gold); color: #fff; font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 5px 10px; }
.feature-video .play { position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%); width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.94); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.feature-video .play::after { content: ""; width: 0; height: 0; border-left: 22px solid var(--ink); border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }
.feature-video .cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; display: flex; flex-direction: column; gap: 10px; direction: rtl; }
.feature-video .cap h2 { font-family: var(--font-fa); font-size: 22px; font-weight: 700; line-height: 1.7; color: #fff; }
.feature-video .cap span { font-family: var(--font-sans); font-size: 13px; color: rgba(240,231,246,.7); direction: ltr; text-align: right; }
.browse-card { background: #fff; border: 1px solid var(--border-10); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.browse-series li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border-08); }
.browse-series li:last-child { border-bottom: 1px solid var(--border-08); }
.browse-series .fa { font-family: var(--font-fa); font-size: 14px; color: var(--ink); direction: rtl; }
.browse-series .n { font-family: var(--font-sans); font-size: 13px; color: var(--text-label); }
.browse-note { font-family: var(--font-sans); font-size: 13px; line-height: 1.6; color: var(--text-label); margin-top: auto; }
.gallery-cat { font-family: var(--font-sans); font-size: 12px; color: var(--text-label); }
.load-more { display: flex; justify-content: center; margin-top: 40px; }

/* ==========================================================================
   Reveal / entrance animation
   ========================================================================== */
[data-anim], [data-reveal], [data-reveal-group] > * { will-change: opacity, transform; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.reveal--scale { transform: scale(.94); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .reviews-track, .nav-underline, .book-longtext-inner { transition: none !important; }
}

/* ==========================================================================
   Filtering (books grid + video gallery)
   ========================================================================== */
.filterable { transition: opacity .3s ease, transform .3s ease; }
.filterable.filter-out { opacity: 0; transform: scale(.96); pointer-events: none; }
.filterable.filter-hidden { display: none; }

/* ==========================================================================
   Read more / less (book detail description)
   ========================================================================== */
.book-longtext { position: relative; }
.book-longtext-inner { overflow: hidden; transition: max-height .45s cubic-bezier(.5,0,.15,1); }
.book-longtext.is-collapsed .book-longtext-inner { position: relative; }
.book-longtext.is-collapsed::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 44px; height: 90px; pointer-events: none;
  background: linear-gradient(180deg, rgba(246,241,249,0) 0%, var(--page) 92%);
}
.readmore-toggle {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--plum);
  background: none; border: none; padding: 0; cursor: pointer;
}
.readmore-toggle .chev { transition: transform .3s ease; }
.book-longtext:not(.is-collapsed) .readmore-toggle .chev { transform: rotate(180deg); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .book-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .section { padding: 72px 0; }

  /* nav → drawer */
  .nav { display: none; }
  .nav-toggle { display: flex; }

  /* collapse splits + grids */
  .split { grid-template-columns: 1fr; gap: 48px; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 48px 0 40px; }
  .hero-title { font-size: 56px; }
  .hero-portrait { position: relative; right: auto; margin: 0 auto -1px; width: 320px; max-width: 80%; }
  .hero-stats .container { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat + .stat { padding-left: 16px; }
  .stat-num { font-size: 19px; }

  .book-grid { grid-template-columns: repeat(2, 1fr); }
  .award-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .video-grid-3 { grid-template-columns: repeat(2, 1fr); }

  .books-head, .videos-head, .gallery-head, .book-watch-head { flex-direction: column; align-items: flex-start; gap: 24px; }

  /* biography */
  .bio-hero .container { grid-template-columns: 1fr; }
  .bio-hero-portrait { justify-self: start; max-width: 300px; }
  .bio-hero .page-title { font-size: 56px; }
  .fact-strip .container { grid-template-columns: repeat(2, 1fr); }
  .fact-strip .cell:nth-child(2n) { padding-left: 24px; }
  .fact-strip .cell:nth-child(odd) { padding-left: 0; border-left: none; }
  .bio-body .container { grid-template-columns: 1fr; gap: 56px; }

  /* book detail */
  .book-layout { grid-template-columns: 1fr; gap: 40px; }
  .book-side-cover img { max-width: 260px; margin: 0 auto; }
  .gallery-feature { grid-template-columns: 1fr; }

  .cta-band .container { flex-direction: column; align-items: flex-start; gap: 24px; }

  /* dialogs on tablet/mobile: leave a clear gap below, scroll inside the panel */
  .award-dialog .dialog-panel { grid-template-columns: 1fr; height: auto; margin: 20px auto 0; max-height: calc(100dvh - 96px); overflow-y: auto; }
  .award-stage { min-height: 300px; }
  /* push the detail content clear of the close button (top 20px + 38px tall) so the gold kicker isn't covered */
  .award-detail { padding: 74px 24px 28px; }
  .stockist-panel { margin: 20px auto 0; max-height: calc(100dvh - 96px); }

  /* 2 cards per page → 1 on narrow screens */
  .reviews-track .review-card { flex-basis: 100%; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 560px) {
  .book-grid { grid-template-columns: 1fr; }
  .video-grid-4, .video-grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 48px; }
  .h-section { font-size: 30px; }
  .form-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  /* hide the two hero buttons on the smallest screens (nav/scroll covers these actions) */
  .hero .hero-cta { display: none; }
}
