/* =========================================================================
   The Case for Nature — site styles
   Palette drawn directly from the book's cover:
   cerise #b32967 · teal #18787f · forest green #225f49 · bone #f5f2e9
   Type: Fraunces (display) · Spectral (reading) · Inter (interface)
   ========================================================================= */

:root {
  --bone:        #f5f2e9;
  --bone-deep:   #ece5d5;
  --paper:       #fcfaf3;
  --ink:         #1c2a23;
  --ink-soft:    #4a564d;
  --ink-faint:   #76806f;
  --cerise:      #b32967;
  --cerise-deep: #8c1d4f;
  --teal:        #18787f;
  --teal-deep:   #115a60;
  --green:       #225f49;
  --line:        rgba(28, 42, 35, 0.14);
  --line-soft:   rgba(28, 42, 35, 0.08);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Spectral", Georgia, serif;
  --font-ui:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --prose: 660px;
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.4, 0, 0.1, 1);
}

/* ---- alternative colour schemes (less pink, more upmarket) ----
   Drawn from both covers: Duckworth bottle-green, PRH olive-gold + teal.
   Each demotes the cerise to a restrained, premium accent. */
body[data-theme="forest"] { --cerise:#2f6b4f; --cerise-deep:#234f3b; }            /* deep forest green */
body[data-theme="brass"]  { --cerise:#a9802f; --cerise-deep:#866325; --teal:#2b6f6a; } /* olive-gold / brass */
body[data-theme="petrol"] { --cerise:#147074; --cerise-deep:#0e565a; --teal:#3f8a7d; --ink:#16282b; } /* deep petrol teal */
body[data-theme="plum"]   { --cerise:#7d2148; --cerise-deep:#5e1736; }            /* deep, classier plum */
body[data-theme="ember"]  { --cerise:#a8542b; --cerise-deep:#833f1f; --teal:#2b6f6a; } /* warm terracotta */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* a whisper of paper grain so the page feels printed, not generated */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  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='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; height: auto; }
picture { display: block; }

a { color: var(--cerise); text-decoration: none; }
a:hover { color: var(--cerise-deep); }

::selection { background: rgba(179, 41, 103, 0.18); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-optical-sizing: auto;
}

p { margin: 0 0 1.1rem; }

/* ---- shared layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3.5rem); position: relative; z-index: 2; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; z-index: 2; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--bone-deep { background: var(--bone-deep); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--bone); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--teal); opacity: 0.6; }
.eyebrow--center { justify-content: center; }
.section--ink .eyebrow { color: #7fc6c2; }
.section--ink .eyebrow::before { background: #7fc6c2; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.section-head p { font-size: 1.18rem; color: var(--ink-soft); margin-top: 0.5rem; }

.lede { font-size: clamp(1.2rem, 2.4vw, 1.5rem); line-height: 1.55; color: var(--ink); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui); font-size: 0.95rem; font-weight: 500;
  padding: 0.85rem 1.6rem; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: all 0.25s var(--ease); text-align: center; line-height: 1;
}
.btn svg { width: 1em; height: 1em; }
.btn-primary { background: var(--cerise); color: #fff; }
.btn-primary:hover { background: var(--cerise-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-solid-light { background: rgba(255,255,255,0.94); color: var(--ink); border-color: rgba(255,255,255,0.94); }
.btn-solid-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

.link-arrow { font-family: var(--font-ui); font-weight: 500; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.link-arrow svg { width: 1em; height: 1em; transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ====================== HEADER ====================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 1.1rem 0;
}
/* frosted layer lives on a pseudo-element, NOT on .site-header itself:
   an element with backdrop-filter becomes the containing block for its
   position:fixed descendants, which would trap the mobile slide-in nav
   inside the header box. Keeping the blur on ::before avoids that. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(245, 242, 233, 0.55);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  transition: background 0.4s var(--ease);
}
.site-header.scrolled::before {
  background: rgba(245, 242, 233, 0.9);
}
.site-header.scrolled {
  box-shadow: 0 1px 0 var(--line-soft);
  padding: 0.7rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); transition: color 0.4s var(--ease); white-space: nowrap; text-shadow: 0 1px 10px rgba(245,242,233,0.4); }
.brand:hover { color: var(--ink); }
.scrolled .brand { color: var(--ink); text-shadow: none; }
.brand .brand-leaf { color: var(--cerise); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a.navlink {
  font-family: var(--font-ui); font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  transition: color 0.4s var(--ease); position: relative;
}
.nav a.navlink:hover { color: var(--cerise); }
.scrolled .nav a.navlink { color: var(--ink-soft); }
.scrolled .nav a.navlink:hover { color: var(--cerise); }
.nav .btn { padding: 0.6rem 1.25rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; color: var(--ink); }
.scrolled .nav-toggle { color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--bone); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 2rem 2.2rem; transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.15); }
  .nav.open { transform: translateX(0); }
  .nav a.navlink { color: var(--ink-soft); font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; z-index: 101; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.35); opacity: 0; visibility: hidden; transition: opacity 0.4s; z-index: 99; }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
}

/* ====================== HERO ====================== */
.hero { position: relative; min-height: 100svh; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; background: #0f1f18; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center center; }

/* light wash at the top (small dark title over the bright sky), strong shade at the foot (white CTAs) */
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(245,242,233,0.55) 0%, rgba(245,242,233,0.22) 12%, rgba(20,30,24,0) 30%, rgba(20,30,24,0.4) 55%, rgba(20,30,24,0.74) 76%, rgba(20,30,24,0.9) 90%, rgba(20,30,24,0.94) 100%); }

.hero-wrap { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; min-height: 100svh; padding-top: 5.5rem; padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.hero-top { text-align: right; margin-left: auto; max-width: 420px; text-shadow: none; }
.hero-kicker { font-family: var(--font-display); font-style: italic; font-size: clamp(0.95rem, 1.7vw, 1.2rem); color: #36473d; margin: 0.5rem 0 0; }
.hero h1 { color: #111c16; font-size: clamp(1.8rem, 3.4vw, 2.9rem); line-height: 1.0; margin: 0; font-weight: 500; letter-spacing: -0.015em; }
.hero h1 em { font-style: italic; }
.hero-bottom { max-width: 560px; color: #fff; }
.hero-hook { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: #ffffff; margin: 0 0 1.5rem; line-height: 1.5; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.hero-byline { font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-top: 1.6rem; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.scroll-cue { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.85); animation: bob 2.4s ease-in-out infinite; }
.scroll-cue svg { width: 26px; height: 26px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }

@media (max-width: 768px) {
  .hero-top { max-width: 80%; }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

/* ====================== INTRO / THESIS ====================== */
.thesis { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.thesis-text p { font-size: 1.18rem; }
.thesis-figure { position: relative; }
.thesis-figure img { border-radius: var(--radius); width: 100%; }
.thesis-figure figcaption { font-family: var(--font-ui); font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.7rem; letter-spacing: 0.02em; }
.stat-row { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin: 2.4rem 0 0; flex-wrap: wrap; }
.stat { }
.stat b { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 500; color: var(--cerise); display: block; line-height: 1; }
.stat span { font-family: var(--font-ui); font-size: 0.85rem; color: var(--ink-soft); display: block; margin-top: 0.4rem; max-width: 18ch; }
@media (max-width: 820px) { .thesis { grid-template-columns: 1fr; } .thesis-figure { order: -1; } }

/* ====================== PRAISE ====================== */
.praise-grid { columns: 2; column-gap: 1.6rem; }
@media (max-width: 760px) { .praise-grid { columns: 1; } }
.praise-card { break-inside: avoid; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 1.8rem 1.8rem 1.6rem; margin-bottom: 1.6rem; }
.praise-card.feature { border-color: rgba(179,41,103,0.3); }
.praise-card blockquote { margin: 0; font-family: var(--font-display); font-size: 1.22rem; line-height: 1.4; color: var(--ink); }
.praise-card.feature blockquote { font-size: 1.42rem; }
.praise-card cite { display: block; margin-top: 1.1rem; font-style: normal; font-family: var(--font-ui); font-size: 1.1rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.praise-card cite span { display: block; color: var(--ink-faint); font-weight: 400; font-size: 0.82rem; margin-top: 0.25rem; }
.quote-mark { font-family: var(--font-display); color: var(--cerise); font-size: 2.4rem; line-height: 0.6; display: block; margin-bottom: 0.4rem; }

/* ====================== JOURNEY MAP ====================== */
.journey { background: var(--ink); color: var(--bone); }
.journey .eyebrow { color: #7fc6c2; } .journey .eyebrow::before { background: #7fc6c2; }
.journey h2 { color: var(--bone); }
.journey .section-head p.journey-lead { color: #ffffff; max-width: 620px; }
.map-stage { position: relative; margin-top: 2.5rem; }
.map-frame { position: relative; width: 100%; aspect-ratio: 2 / 1; background:
  radial-gradient(ellipse at 50% 45%, rgba(127,198,194,0.07), transparent 70%); }
.map-frame svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-land { fill: rgba(245,242,233,0.10); stroke: rgba(245,242,233,0.14); stroke-width: 0.4; }
.marker { position: absolute; transform: translate(-50%, -50%); z-index: 3; }
.marker button {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--bone);
  background: var(--cerise); cursor: pointer; padding: 0; position: relative;
  transition: transform 0.25s var(--ease); box-shadow: 0 0 0 0 rgba(179,41,103,0.5);
  animation: pulse 3s ease-out infinite;
}
.marker button:hover, .marker button[aria-expanded="true"] { transform: scale(1.35); }
.marker button:focus-visible { outline: 3px solid #7fc6c2; outline-offset: 3px; }
.marker .marker-label { position: absolute; left: 50%; top: -1.7rem; transform: translateX(-50%); font-family: var(--font-ui); font-size: 0.72rem; font-weight: 500; color: rgba(245,242,233,0.85); white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.25s; }
.marker:hover .marker-label, .marker button[aria-expanded="true"] + .marker-label { opacity: 1; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(179,41,103,0.45); } 70% { box-shadow: 0 0 0 12px rgba(179,41,103,0); } 100% { box-shadow: 0 0 0 0 rgba(179,41,103,0); } }
@media (prefers-reduced-motion: reduce) { .marker button { animation: none; } }

.place-panel {
  margin-top: 2rem; background: rgba(245,242,233,0.04); border: 1px solid rgba(245,242,233,0.12);
  border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 280px;
}
.place-panel .place-img { position: relative; min-height: 240px; background: #16241d; }
.place-panel .place-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s var(--ease); }
.place-panel .place-img img.loaded { opacity: 1; }
.place-panel .place-body { padding: clamp(1.6rem, 4vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.place-body .place-where { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: #7fc6c2; margin-bottom: 0.8rem; }
.place-body h3 { color: var(--bone); font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.place-body .place-quote { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; line-height: 1.45; color: rgba(245,242,233,0.92); }
.place-body .place-chapter { font-family: var(--font-ui); font-size: 0.8rem; color: rgba(245,242,233,0.55); margin-top: 1.1rem; }
.place-nav { display: flex; gap: 0.5rem; margin-top: 1.6rem; }
.place-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(245,242,233,0.25); background: transparent; color: var(--bone); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all 0.25s; }
.place-nav button:hover { background: rgba(245,242,233,0.12); }
@media (max-width: 760px) { .place-panel { grid-template-columns: 1fr; } .place-panel .place-img { order: -1; min-height: 220px; } }

/* ====================== EXTRACT TEASER ====================== */
.extract-teaser { max-width: var(--prose); margin: 0 auto; text-align: center; }
.extract-teaser .pull { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.5rem); line-height: 1.3; color: var(--ink); margin-bottom: 1.6rem; }
.extract-teaser .pull .drop { color: var(--cerise); }

/* ====================== QUOTE CARDS ====================== */
.cards-rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(82vw, 360px); gap: 1.4rem; overflow-x: auto; padding: 0.5rem clamp(1.25rem, 5vw, 3.5rem) 1.5rem; scroll-snap-type: x mandatory; margin: 0 calc(-1 * clamp(1.25rem, 5vw, 3.5rem)); scrollbar-width: thin; }
.cards-rail::-webkit-scrollbar { height: 6px; }
.cards-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.qcard { scroll-snap-align: start; position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); }
.qcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.qcard .qcard-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,24,18,0.9) 8%, rgba(12,24,18,0.25) 55%, rgba(12,24,18,0.45) 100%); }
.qcard .qcard-body { position: absolute; inset: 0; padding: 1.7rem; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.qcard blockquote { margin: 0; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.32; }
.qcard .qcard-attr { font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 0.9rem; }
.qcard .qcard-dl { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); border: 0; color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s, background 0.2s; }
.qcard:hover .qcard-dl, .qcard:focus-within .qcard-dl { opacity: 1; }
.qcard .qcard-dl:hover { background: var(--cerise); }
.rail-hint { font-family: var(--font-ui); font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }

/* ====================== THE BOOK / BUY ====================== */
.buy { background: var(--bone-deep); }
.buy-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.book-cover { position: relative; }
.cover-duo { display: flex; gap: clamp(0.7rem, 1.8vw, 1.2rem); align-items: flex-end; }
.cover-item { margin: 0; flex: 1; min-width: 0; position: relative; }
.cover-item img { width: 100%; border-radius: 2px; box-shadow: 0 24px 50px -24px rgba(28,42,35,0.45), 0 6px 16px -10px rgba(28,42,35,0.3); }
.cover-item figcaption { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.7rem; text-align: center; }
.cover-item .ribbon { position: absolute; top: -0.6rem; right: -0.4rem; z-index: 3; background: var(--cerise); color: #fff; font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 2px; white-space: nowrap; box-shadow: 0 6px 16px -8px rgba(28,42,35,0.5); }
@media (max-width: 760px) { .cover-item .ribbon { font-size: 0.62rem; padding: 0.35rem 0.7rem; } }
.buy-panel h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.region-tabs { display: inline-flex; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 0.25rem; margin: 1.4rem 0 1.6rem; gap: 0.2rem; }
.region-tabs button { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 500; border: 0; background: transparent; color: var(--ink-soft); padding: 0.5rem 1.1rem; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.region-tabs button[aria-selected="true"] { background: var(--ink); color: var(--bone); }
.region-tabs button .flag { margin-right: 0.35rem; font-size: 1.05em; line-height: 1; }
.retailers { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.7rem; }
.retailers[hidden] { display: none; }
.retailers a { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.85rem 1.1rem; font-family: var(--font-ui); font-size: 0.92rem; font-weight: 500; color: var(--ink); transition: all 0.2s; }
.retailers a:hover { border-color: var(--cerise); color: var(--cerise); transform: translateY(-2px); }
.retailers a svg { width: 1em; height: 1em; opacity: 0.5; }
.buy-note { font-family: var(--font-ui); font-size: 0.88rem; color: var(--ink-soft); margin-top: 1.4rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.buy-note svg { width: 1.2em; height: 1.2em; color: var(--green); flex-shrink: 0; margin-top: 0.1rem; }
.buy-note--strong { font-size: 0.98rem; color: var(--ink); }
.buy-note--strong svg { width: 1.4em; height: 1.4em; }
.buy-note--strong strong { color: var(--green); font-weight: 600; }
.edition-meta { font-family: var(--font-ui); font-size: 0.8rem; color: var(--ink-faint); margin-top: 1rem; }
@media (max-width: 760px) { .buy-grid { grid-template-columns: 1fr; } .book-cover { max-width: 440px; margin: 0 auto; } }

/* Translation editions */
.translations { max-width: 640px; margin: clamp(2.6rem, 5vw, 3.8rem) auto 0; padding-top: clamp(2rem, 4vw, 2.8rem); border-top: 1px solid var(--line); text-align: center; }
.translations-title { font-size: clamp(1.15rem, 2.4vw, 1.5rem); margin: 0.3rem 0 0; }
.translation-covers { display: flex; justify-content: center; gap: clamp(1.8rem, 5vw, 3.4rem); margin-top: 1.9rem; flex-wrap: wrap; }
.trans-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; width: 150px; }
.trans-shot img { width: 150px; height: auto; border-radius: 2px; box-shadow: 0 20px 40px -22px rgba(28,42,35,0.45), 0 5px 14px -9px rgba(28,42,35,0.28); transition: transform .3s ease, box-shadow .3s ease; }
.trans-item:hover .trans-shot img { transform: translateY(-4px); box-shadow: 0 28px 52px -22px rgba(28,42,35,0.5), 0 8px 18px -9px rgba(28,42,35,0.32); }
.trans-lang { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); font-weight: 600; margin-top: 0.95rem; }
.trans-meta { font-family: var(--font-ui); font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.25rem; line-height: 1.45; }
.trans-meta i { font-style: italic; }

/* ====================== READING GUIDE TEASER ====================== */
.guide-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.guide-band .guide-img img { border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.guide-media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: #0f1f18; box-shadow: 0 30px 60px -34px rgba(28,42,35,0.55); }
.guide-media .fr-video { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
@media (max-width: 760px) { .guide-media .fr-video { aspect-ratio: 4 / 3; } }
@media (max-width: 760px) { .guide-band { grid-template-columns: 1fr; } }

/* ====================== ABOUT ====================== */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.about-photo img { border-radius: var(--radius-lg); width: 100%; height: auto; display: block; }
.about-photo figcaption { font-family: var(--font-ui); font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.6rem; }
.about-text p { font-size: 1.12rem; }
.about-socials { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.about-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all 0.2s; }
.about-socials a:hover { border-color: var(--cerise); color: var(--cerise); transform: translateY(-2px); }
.about-socials svg { width: 19px; height: 19px; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } .about-photo { max-width: 420px; } }

/* ====================== PRESS ====================== */
.press-row { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 2.8rem); align-items: center; justify-content: center; margin-top: 2rem; }
.press-row span { font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-style: italic; color: var(--ink-faint); }
.press-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.press-quote { border-left: 2px solid var(--teal); padding-left: 1.2rem; }
.press-quote p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--ink); }
.press-quote cite { font-family: var(--font-ui); font-style: normal; font-size: 0.8rem; color: var(--ink-faint); }

/* ====================== NEWSLETTER ====================== */
.signup { text-align: center; max-width: 640px; margin: 0 auto; }
.signup h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--bone); }
.signup p { color: rgba(245,242,233,0.8); }
.signup-form { display: flex; gap: 0.6rem; margin-top: 1.8rem; flex-wrap: wrap; justify-content: center; }
.signup-form input[type="email"] {
  flex: 1; min-width: 240px; font-family: var(--font-ui); font-size: 1rem; padding: 0.9rem 1.2rem;
  border-radius: 100px; border: 1px solid rgba(245,242,233,0.3); background: rgba(245,242,233,0.06); color: var(--bone);
}
.signup-form input::placeholder { color: rgba(245,242,233,0.5); }
.signup-form input:focus { outline: 2px solid #7fc6c2; outline-offset: 1px; }
.signup-note { font-family: var(--font-ui); font-size: 0.78rem; color: rgba(245,242,233,0.55); margin-top: 1rem; }
.signup-success { display: none; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: #9fded7; margin-top: 1.5rem; }

/* ====================== FOOTER ====================== */
.site-footer { background: var(--ink); color: rgba(245,242,233,0.7); padding: clamp(3rem, 6vw, 5rem) 0 2.5rem; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(245,242,233,0.12); }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--bone); margin-bottom: 0.6rem; }
.footer-brand + p { font-size: 0.98rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,242,233,0.5); font-weight: 600; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(245,242,233,0.75); font-family: var(--font-ui); font-size: 0.92rem; margin-bottom: 0.6rem; }
.footer-col a:hover { color: #9fded7; }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; font-family: var(--font-ui); font-size: 0.8rem; color: rgba(245,242,233,0.5); }
.footer-base a { color: rgba(245,242,233,0.6); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ====================== REVEAL ANIMATION ====================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* image fade-in */
.fade-img { opacity: 0; transition: opacity 0.7s var(--ease); }
.fade-img.loaded { opacity: 1; }

/* skip link */
.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--cerise); color: #fff; padding: 0.7rem 1.2rem; border-radius: 0 0 var(--radius) 0; font-family: var(--font-ui); font-size: 0.9rem; }
.skip:focus { left: 0; color: #fff; }

/* ====================== READING / GUIDE PAGES ====================== */
.subpage-hero { padding: 9rem 0 3rem; background: var(--bone-deep); position: relative; z-index: 2; }
.subpage-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.subpage-hero .eyebrow { color: var(--teal); } .subpage-hero .eyebrow::before { background: var(--teal); }
.read-body { max-width: var(--prose); margin: 0 auto; padding: clamp(3rem,6vw,5rem) clamp(1.25rem,5vw,2rem); position: relative; z-index: 2; }
.read-body p { font-size: 1.2rem; line-height: 1.78; }
.read-body p.dropcap::first-letter { font-family: var(--font-display); font-size: 3.6em; float: left; line-height: 0.8; padding: 0.05em 0.12em 0 0; color: var(--cerise); }
.read-body .scene-break { text-align: center; color: var(--cerise); margin: 2.2rem 0; letter-spacing: 0.5em; }
.read-body h2 { font-size: 1.8rem; margin-top: 2.5rem; }
.guide-q { background: var(--paper); border: 1px solid var(--line-soft); border-left: 3px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.5rem; margin-bottom: 1rem; }
.guide-q b { font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.5rem; }
.guide-theme { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin: 2.4rem 0 1rem; }
.backlink { font-family: var(--font-ui); font-size: 0.9rem; display: inline-flex; gap: 0.4rem; align-items: center; margin-bottom: 1.5rem; }

/* =========================================================================
   REDESIGN LAYER (2026-06) — art-led pass: no thin rules/borders, larger
   imagery, full-bleed video interludes. Loaded last, so it overrides above.
   ========================================================================= */

/* no more hairline straight lines anywhere (they read as "templated") */
.eyebrow::before { content: none !important; }
.eyebrow { gap: 0; }
.journey .eyebrow::before, .section--ink .eyebrow::before, .subpage-hero .eyebrow::before { content: none !important; }

/* praise: borderless cards, told apart by tone and the cerise quote mark */
.praise-card { border: 0; background: var(--paper); box-shadow: 0 1px 2px rgba(28,42,35,0.05); }
.praise-card.feature { background: linear-gradient(155deg, rgba(168,84,43,0.10), rgba(43,111,106,0.06)); }

/* buy: borderless region toggle + retailer chips */
.region-tabs { border: 0; background: rgba(28,42,35,0.055); }
.retailers a { border: 0; background: var(--paper); box-shadow: 0 1px 2px rgba(28,42,35,0.05); }
.retailers a:hover { color: var(--cerise); transform: translateY(-2px); box-shadow: 0 10px 24px -14px rgba(28,42,35,0.5); }

/* press: no left rule; an indented italic opened by a soft quote mark */
.press-quote { border-left: 0; padding-left: 0; }
.press-quote p::before { content: "\201C"; font-family: var(--font-display); color: var(--cerise); font-size: 1.7em; line-height: 0; vertical-align: -0.36em; margin-right: 0.1em; }

/* reading-guide question cards: borderless */
.guide-q { border: 0; background: var(--paper); border-radius: var(--radius-lg); box-shadow: 0 1px 2px rgba(28,42,35,0.05); }

/* footer: rely on spacing, not divider rules */
.footer-grid { border-bottom: 0; }
.footer-base { border-top: 0; }

/* ghost button becomes an editorial underline link, not a pill with a border */
.btn-ghost { border: 0; background: transparent; color: var(--cerise); border-radius: 0; padding: 0.2rem 0; }
.btn-ghost:hover { background: transparent; color: var(--cerise-deep); transform: none; }

/* social icons: soft fill, no outline ring */
.about-socials a { border: 0; background: rgba(28,42,35,0.06); }
.about-socials a:hover { background: var(--cerise); color: #fff; }

/* larger, fuller, more confident imagery */
.thesis { grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 6vw, 5.5rem); }
.thesis-figure img { aspect-ratio: 4 / 5; object-fit: cover; }
.guide-band .guide-img img { aspect-ratio: 3 / 4; }
.about-photo img { aspect-ratio: auto; }
@media (max-width: 820px) { .thesis-figure img { aspect-ratio: 16 / 10; } }
@media (max-width: 760px) { .guide-band .guide-img img { aspect-ratio: 4 / 3; } }

/* breadth line: understated, no place-name ticker */
.datelines { display: none; }

/* ---------- full-bleed video / photo interludes ---------- */
/* feature rows: looping video + text; alternating on desktop, stacked on mobile */
.feature-row { padding: clamp(2.5rem, 6vw, 5rem) 0; position: relative; z-index: 2; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; }
.feature-media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: #0f1f18; box-shadow: 0 30px 60px -34px rgba(28,42,35,0.55); }
.fr-video { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #0f1f18; }
.feature-text { max-width: 30rem; }
.feature-text .eyebrow { margin-bottom: 0.9rem; }
.feature-text .ft-body { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.62; color: var(--ink); margin: 0; }
.feature-text .ft-body em { font-style: italic; }
.feature-text .pq { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.2; color: var(--ink); margin: 0; }
.feature-text .pa { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 1rem; }
@media (min-width: 769px) {
  .feature-row.flip .feature-media { order: 2; }
  .feature-row.flip .feature-text { order: 1; }
  .feature-text { margin-left: auto; }
  .feature-row.flip .feature-text { margin-left: 0; margin-right: auto; }
}
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-row .feature-text { order: 1; max-width: 100%; }
  .feature-row .feature-media { order: 2; }
  .fr-video { aspect-ratio: 4 / 5; }
}

/* closing full-width band (uses width:100%, not 100vw, so it never causes horizontal scroll) */
.closing-band { position: relative; width: 100%; overflow: hidden; height: clamp(42vh, 60vh, 70vh); background: #0f1f18; z-index: 2; }
.closing-band .fr-video { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.closing-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(10,20,15,0.12), rgba(10,20,15,0.45)); }

/* section dot navigation (right edge) */

/* media mentions */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem, 1.8vw, 1.4rem); margin-top: 2.6rem; }
@media (max-width: 900px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .media-grid { grid-template-columns: 1fr; } }
.media-card { display: flex; flex-direction: column; gap: 0.35rem; background: var(--paper); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; box-shadow: 0 1px 2px rgba(28,42,35,0.05); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); color: var(--ink); }
.media-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -20px rgba(28,42,35,0.4); }
.media-outlet { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.media-kind { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cerise); }
.media-quote { font-family: var(--font-body); font-size: 1rem; line-height: 1.55; color: var(--ink-soft); margin: 0.4rem 0 0.7rem; flex: 1; }
.media-read { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 500; color: var(--cerise); display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto; }
.media-read svg { width: 15px; height: 15px; }
.media-card:hover .media-read { color: var(--cerise-deep); }
.media-contact { text-align: center; margin: 2.4rem auto 0; max-width: 52ch; font-family: var(--font-ui); font-size: 0.98rem; line-height: 1.6; color: var(--ink-soft); }
.media-contact a { color: var(--cerise); text-decoration: underline; text-underline-offset: 2px; }
.media-contact a:hover { color: var(--cerise-deep); }

/* festivals & events */
.media-festivals { text-align: center; margin-top: clamp(2.6rem, 5vw, 3.6rem); }
.media-festivals h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--ink); margin: 0.35rem 0 1.7rem; }
.festival-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.3rem 2.6rem; max-width: 62rem; margin: 0 auto; }
.fest { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.fest b { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink); }
.fest i { font-family: var(--font-ui); font-style: normal; font-size: 0.74rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--cerise); }

/* ---------- map: graceful panel for locations with no photo ---------- */
.place-panel.noimg .place-img { background: radial-gradient(ellipse at 60% 38%, #20463a, #0f231c 76%); display: flex; align-items: center; justify-content: center; }
.place-panel.noimg .place-img::after { content: attr(data-place); font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 4vw, 2.4rem); color: rgba(159,222,215,0.55); text-align: center; padding: 1.5rem; }

/* universities / "on the syllabus" wordmark row */
.uni-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.7rem 1.9rem; margin-top: 1.8rem; }
.uni-row span { font-family: var(--font-display); font-size: clamp(1.05rem, 2.2vw, 1.5rem); color: var(--ink-faint); }

/* hero: two praise quotes stacked at the foot */
.hero-praise { margin-top: 1.4rem; max-width: 560px; }
.hero-praise p { font-family: var(--font-display); font-style: italic; font-size: clamp(0.85rem, 1.2vw, 1rem); line-height: 1.4; color: rgba(255,255,255,0.93); margin: 0 0 0.5rem; text-shadow: 0 1px 14px rgba(0,0,0,0.55); }
.hero-praise p:last-child { margin-bottom: 0; }
/* a feature row that is text only (no video), centred */
.feature-text--center { max-width: 42rem; margin: 0 auto; text-align: center; }
/* share-your-story: centred invitation block */
.share-story { text-align: center; max-width: 640px; margin: 0 auto; }
.share-story h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.share-story p { color: var(--ink-soft); font-size: 1.12rem; max-width: 48ch; margin: 0 auto 1.6rem; }
.share-story .eyebrow--center { justify-content: center; }

/* translations line, a touch larger so the languages read clearly */
