/* ==========================================================================
   Imagine Nature's Wheelwork — Shared Stylesheet
   Think As Nature Intended
   ========================================================================== */

:root {
  --ocean:      #0D3B6E;  /* Deep Ocean Blue */
  --ocean-dk:   #0A2E56;
  --forest:     #2D6A4F;  /* Forest Green */
  --forest-dk:  #21503C;
  --sky:        #1A6B9A;  /* Sky Blue */
  --gold:       #C8963E;  /* Sand Gold */
  --gold-dk:    #A97B2C;
  --sage:       #E8F4EC;  /* Light Sage */
  --space:      #0A0A0F;  /* Deep Space Black */
  --ink:        #0F0F1A;
  --muted:      #5A6472;
  --line:       #E2E6EC;
  --paper:      #FFFFFF;
  --paper-2:    #F7F9FB;
  --sand:       #F5F2ED;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(13,59,110,0.06);
  --shadow-md: 0 8px 26px rgba(13,59,110,0.10);
  --shadow-lg: 0 18px 48px rgba(13,59,110,0.16);
  --t: 0.22s ease;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--sky); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--ocean); }
h1,h2,h3,h4 { font-family: var(--serif); color: var(--ocean); line-height: 1.18; margin: 0 0 0.5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 0.6rem;
}
.band-blue .eyebrow, .band-green .eyebrow, .hero .eyebrow { color: var(--gold); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 760px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Section bands — ONLY blue or green on dark */
.band-blue  { background: var(--ocean); color: #fff; }
.band-blue h1, .band-blue h2, .band-blue h3, .band-blue h4 { color: #fff; }
.band-green { background: var(--forest); color: #fff; }
.band-green h1, .band-green h2, .band-green h3, .band-green h4 { color: #fff; }
.band-sage  { background: var(--sage); }
.band-soft  { background: var(--paper-2); }
.band-blue .lead, .band-green .lead { color: rgba(255,255,255,0.85); }
.band-blue a, .band-green a { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: 13px 28px; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(200,150,62,0.35); }
.btn-gold:hover { background: var(--gold-dk); color: #fff; }
.btn-ocean { background: var(--ocean); color: #fff; }
.btn-ocean:hover { background: var(--ocean-dk); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: #fff; color: var(--ocean); border-color: #fff; }
.btn-outline { background: transparent; color: var(--ocean); border-color: var(--ocean); }
.btn-outline:hover { background: var(--ocean); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,59,110,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: 1.18rem; line-height: 1.05; letter-spacing: 0.2px;
}
.brand-name small { display: block; font-family: var(--sans); font-weight: 400;
  font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: rgba(255,255,255,0.86); font-weight: 600; font-size: 0.96rem;
  padding: 9px 14px; border-radius: 7px; position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.10); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-links a.ext::after { content: " ↗"; font-size: 0.7em; color: var(--gold); }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 50% 22%, rgba(26,107,154,0.55), transparent 60%),
    linear-gradient(160deg, var(--ocean) 0%, var(--ocean-dk) 60%, var(--space) 130%);
  color: #fff; text-align: center; padding: 96px 0 104px; position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 40%, transparent 55%, rgba(10,10,15,0.35));
}
.hero .wrap { position: relative; z-index: 2; }
.hero-star {
  width: 130px; height: 130px; margin: 0 auto 26px;
  filter: drop-shadow(0 10px 26px rgba(200,150,62,0.4));
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.26); } }
.hero h1 { color: #fff; margin-bottom: 0.35em; }
.hero .tagline {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem); color: var(--gold); margin: 0 0 1.8rem;
}
.hero-collab { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin: 0.2em 0 0.6em; letter-spacing: 0.01em; }
.hero-lead { margin-left: auto; margin-right: auto; text-align: center; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner { color: #fff; text-align: center; padding: 74px 0 66px; position: relative; }
.page-banner.band-blue  { background: linear-gradient(155deg, var(--ocean), var(--ocean-dk)); }
.page-banner.band-green { background: linear-gradient(155deg, var(--forest), var(--forest-dk)); }
.page-banner h1 { color: #fff; margin-bottom: 0.3em; }
.page-banner p { color: rgba(255,255,255,0.88); max-width: 700px; margin: 0 auto; font-size: 1.15rem; }
.page-banner .mini-star { 
  width: 58px; height: 58px; margin: 0 auto 18px; opacity: 0.95;
  animation: breathe 6s ease-in-out infinite;
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #cfd8e3; }
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--muted); margin-bottom: 1rem; }
.card .card-foot { margin-top: auto; }
.card-icon {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 16px; color: #fff;
}
.ic-ocean { background: var(--ocean); }
.ic-forest { background: var(--forest); }
.ic-sky { background: var(--sky); }
.ic-gold { background: var(--gold); }
.ic-space { background: var(--space); }
.card-link { font-weight: 700; color: var(--sky); }
.card-link::after { content: " →"; transition: margin var(--t); }
.card:hover .card-link::after { margin-left: 4px; }

/* Feature two-column */
.two-col { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---------- Characters ---------- */
.char-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.char-mini { text-align: center; }
.char-mini img {
  width: 108px; height: 108px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px;
  border: 4px solid #fff; box-shadow: var(--shadow-md);
}
.band-blue .char-mini img, .band-green .char-mini img { border-color: rgba(255,255,255,0.85); }
.char-mini h4 { margin: 0 0 2px; font-size: 1.15rem; }
.band-blue .char-mini h4, .band-green .char-mini h4 { color: #fff; }
.char-mini .role { font-size: 0.9rem; color: var(--muted); }
.band-blue .char-mini .role, .band-green .char-mini .role { color: rgba(255,255,255,0.78); }

.char-card { display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.char-card img { width: 150px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.char-card h3 { margin-bottom: 2px; }
.char-card .role { font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--forest); margin-bottom: 10px; }
.char-card p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Book covers ---------- */
.book-feature { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
.book-feature .cover img { border-radius: 10px; box-shadow: var(--shadow-lg); }
.chapter-list { columns: 2; column-gap: 34px; list-style: none; padding: 0; margin: 18px 0 26px; counter-reset: ch; }
.chapter-list li {
  break-inside: avoid; padding: 7px 0 7px 40px; position: relative; color: var(--ink); font-size: 0.98rem;
  border-bottom: 1px dashed var(--line);
}
.chapter-list li::before {
  counter-increment: ch; content: counter(ch,decimal-leading-zero);
  position: absolute; left: 0; top: 7px; font-family: var(--serif); font-weight: 700;
  color: var(--gold); font-size: 0.95rem;
}
.book-cover-card { text-align: center; }
.book-cover-card img { border-radius: 10px; box-shadow: var(--shadow-md); margin-bottom: 14px; transition: transform var(--t); }
.book-cover-card:hover img { transform: translateY(-6px); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 6px 0 6px 28px; font-size: 0.95rem; color: var(--ink); border-bottom: 1px dashed var(--line); }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 6px; color: var(--forest); font-weight: 700; }

/* Dual cover: front + back */
.dual-cover { display: flex; gap: 14px; align-items: flex-start; flex-wrap: wrap; margin: 20px 0 6px; }
.dual-cover figure { margin: 0; text-align: center; flex: 1 1 0; min-width: 130px; }
.dual-cover img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-md); }
.dual-cover figcaption { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* Zoomable cover thumbnail */
.zoomable { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; position: relative; border-radius: 8px; overflow: hidden; }
.zoomable img { display: block; margin: 0; }
.zoomable::after { content: "\2315"; position: absolute; right: 8px; bottom: 8px; width: 30px; height: 30px;
  display: grid; place-items: center; font-size: 1.05rem; color: #fff; background: rgba(13,59,110,0.78);
  border-radius: 50%; opacity: 0; transform: scale(0.8); transition: opacity var(--t), transform var(--t); pointer-events: none; }
.zoomable:hover::after, .zoomable:focus-visible::after { opacity: 1; transform: scale(1); }
.zoomable:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Lightbox overlay */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center;
  background: rgba(8,20,38,0.92); padding: 40px 20px; }
.lightbox.open { display: flex; }
.lightbox-inner { margin: 0; max-width: 92vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-inner img { max-width: 92vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
.lightbox-inner figcaption { color: #fff; font-family: var(--serif); font-size: 1rem; margin-top: 16px; letter-spacing: 0.02em; }
.lightbox-close { position: fixed; top: 18px; right: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer;
  transition: background var(--t); }
.lightbox-close:hover { background: rgba(255,255,255,0.26); }

/* Initiative cards with lead graphic */
.init-card { overflow: hidden; }
.init-graphic { display: block; width: calc(100% + 56px); height: auto; object-fit: contain;
  margin: -28px -28px 18px; border-radius: 0; box-shadow: none; background: #fff; }
.init-card h3 { color: var(--ocean); }
.init-card p { color: var(--muted); }
.init-card a { color: var(--ocean); font-weight: 700; }
.init-card a:hover { color: var(--forest); }

/* ---------- Badges / chips ---------- */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
}
.badge-soon { background: var(--gold); color: #fff; }
.badge-live { background: var(--forest); color: #fff; }
.badge-ghost { background: rgba(255,255,255,0.16); color: #fff; border: 1px solid rgba(255,255,255,0.4); }

/* ---------- Simulation lab ---------- */
.sim-toolbar { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.sim-search { position: relative; flex: 1; min-width: 240px; max-width: 420px; }
.sim-search input {
  width: 100%; padding: 12px 16px 12px 42px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 1rem; background: #fff url("data:image/svg+xml,%3Csvg xmlns='https://images.icon-icons.com/3065/PNG/512/search_magnifier_icon_190940.png' width='18' height='18' fill='none' stroke='%235A6472' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") no-repeat 14px center;
  transition: border-color var(--t), box-shadow var(--t);
}
.sim-search input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(26,107,154,0.15); }
.sim-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem;
  padding: 8px 15px; border-radius: 100px; border: 1.5px solid var(--line);
  background: #fff; color: var(--muted); cursor: pointer; transition: var(--t); white-space: nowrap;
}
.filter-btn:hover { border-color: var(--sky); color: var(--sky); }
.filter-btn.active { background: var(--ocean); border-color: var(--ocean); color: #fff; }
.filter-btn .count { opacity: 0.7; font-weight: 400; margin-left: 3px; font-size: 0.85em; }

.sim-count { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }
.sim-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sim-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 20px 18px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.sim-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfd8e3; }
.sim-cat {
  display: inline-block; align-self: flex-start; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 9px; border-radius: 5px; margin-bottom: 12px;
  background: var(--sage); color: var(--forest);
}
.sim-card h4 { font-family: var(--serif); color: var(--ocean); font-size: 1.12rem; margin: 0 0 8px; line-height: 1.25; }
.sim-card p { color: var(--muted); font-size: 0.9rem; margin: 0 0 16px; flex: 1; }
.sim-launch {
  align-self: flex-start; font-weight: 700; font-size: 0.9rem; color: #fff; background: var(--sky);
  padding: 8px 16px; border-radius: 7px; transition: var(--t);
}
.sim-launch:hover { background: var(--ocean); color: #fff; transform: translateX(2px); }
.sim-empty { text-align: center; color: var(--muted); padding: 60px 0; grid-column: 1/-1; display: none; }
.cat-section-title { grid-column: 1/-1; font-family: var(--serif); color: var(--ocean); font-size: 1.5rem;
  margin: 22px 0 2px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.cat-section-title:first-child { margin-top: 0; }

/* Simulation Lab — quick jump navigation */
.sim-jump { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
.sim-jump-card { display: flex; flex-direction: column; gap: 8px; padding: 20px; background: #fff;
  border: 1px solid var(--line); border-top: 4px solid var(--ocean); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink);
  transition: transform var(--t), box-shadow var(--t); }
.sim-jump-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sim-jump-name { font-family: var(--serif); font-weight: 700; font-size: 1.18rem; color: var(--ocean);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sim-jump-name .badge-soon { position: static; }
.sim-jump-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.55; flex: 1; }
.sim-jump-btn { font-weight: 700; color: var(--forest); font-size: 0.92rem; }
@media (max-width: 760px) { .sim-jump { grid-template-columns: 1fr; } }

/* Simulation Lab — source sections */
.sim-source { margin-top: 54px; scroll-margin-top: 90px; }
.sim-source:first-of-type { margin-top: 10px; }
.sim-source-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-bottom: 12px; margin-bottom: 6px; border-bottom: 3px solid var(--ocean); }
.sim-source-head h2 { margin: 0; color: var(--ocean); }
.sim-source-head .badge-soon { position: static; }
.sim-source-intro { color: var(--muted); font-size: 1rem; max-width: 820px; margin: 12px 0 22px; line-height: 1.65; }
.sim-source .sim-filters { margin-bottom: 22px; }
.sim-card.coming { background: #f7f9fc; border-style: dashed; }
.sim-card.coming:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--line); }
.sim-book-tag { display: inline-block; align-self: flex-start; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; padding: 3px 9px; border-radius: 5px; margin-bottom: 10px;
  background: var(--ocean); color: #fff; }
.sim-type { display: inline-block; align-self: flex-start; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; padding: 3px 9px; border-radius: 5px; margin-bottom: 12px;
  margin-left: 6px; background: var(--sage); color: var(--forest); }
.sim-soon-note { align-self: flex-start; font-weight: 700; font-size: 0.82rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.5px; }
.sim-source.hidden { display: none; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px;
  font-family: var(--sans); font-size: 1rem; transition: border-color var(--t), box-shadow var(--t); background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(26,107,154,0.15);
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-form input { flex: 1; min-width: 220px; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px; font-size: 1rem; font-family: var(--sans); background: rgba(255,255,255,0.95); }
.inline-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(200,150,62,0.4); }

/* ---------- Callout / pullquote ---------- */
.callout { border-left: 4px solid var(--gold); background: var(--sand); padding: 20px 26px; border-radius: 0 10px 10px 0; margin: 24px 0; }
.pullquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.35rem; color: var(--ocean);
  border-left: 3px solid var(--gold); padding-left: 20px; margin: 28px 0; line-height: 1.4; }
.band-blue .pullquote, .band-green .pullquote { color: #fff; }

.divider-star { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 4px 0 40px; }
.divider-star::before, .divider-star::after { content: ""; height: 1px; width: 80px; background: var(--line); }
.divider-star img { width: 34px; height: 34px; opacity: 0.8; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ocean); color: rgba(255,255,255,0.82); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 44px; height: 44px; }
.footer-brand .brand-name { font-size: 1.2rem; }
.site-footer p { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 0.82rem; letter-spacing: 1.6px;
  text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.8); font-size: 0.96rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom .tagline { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }

/* ---------- Utilities / reveal ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .sim-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; gap: 34px; }
  .book-feature { grid-template-columns: 1fr; gap: 28px; justify-items: center; text-align: center; }
  .book-feature .cover { max-width: 300px; }
  .chapter-list { columns: 1; text-align: left; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .char-row { grid-template-columns: repeat(2,1fr); gap: 30px; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; right: 0; height: calc(100vh - 72px); width: min(80vw, 320px);
    background: var(--ocean-dk); flex-direction: column; align-items: stretch; gap: 2px;
    padding: 22px; transform: translateX(105%); transition: transform 0.28s ease; overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 12px; font-size: 1.05rem; border-radius: 8px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .sim-grid { grid-template-columns: 1fr; }
  .char-row { grid-template-columns: repeat(2,1fr); }
  .char-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .char-card img { width: 170px; }
  .section { padding: 60px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .sim-toolbar { flex-direction: column; align-items: stretch; }
  .sim-search { max-width: none; }
}
@media (max-width: 420px) {
  .char-row { grid-template-columns: 1fr; }
  .brand-name { font-size: 1rem; }
}
