/* ===============  RESET & BASE  =============== */
*,*::before,*::after { box-sizing: border-box; }
html,body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: #eaf6ff;
  background: #0b0f1d radial-gradient(140% 80% at 50% -10%, rgba(64,64,128,.25), transparent 70%) no-repeat;
  line-height: 1.55;
}
/* ===== Header / Nav (matches mockup) ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left brand / centered nav / right socials */
  align-items: center;
  padding: 14px 24px;
  backdrop-filter: blur(10px);
  background: rgba(10, 12, 25, 0.45);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Left brand */
.brand{
  justify-self: start;
  color: #eaf6ff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 18px;
}
.brand span{ color: #7ee3dc; }

/* Center nav */
.main-nav{
  justify-self: center;
  display: flex;
  gap: 28px;
}
.nav-link{
  color: rgba(255,255,255,0.84);
  text-decoration: none;
  font-weight: 600;
}
.nav-link:hover{ color: #fff; text-shadow: 0 0 16px rgba(126, 227, 220, .2); }

/* Right socials */
.socials{
  justify-self: end;
  display: flex;
  gap: 10px;
}
.social-link{
  display: inline-flex;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.social-link:hover{ background: rgba(255,255,255,.16); }
.social-link svg{
  width: 18px; height: 18px;
  margin: auto;
  fill: #c7d2fe;
}

/* Make room for the sticky header at the top of the hero */
.hero{ padding-top: 80px; }

/* Responsive tweaks */
@media (max-width: 900px){
  .main-nav{ gap: 18px; }
}
@media (max-width: 700px){
  .site-header{
    grid-template-columns: 1fr auto; /* brand + right stack */
    grid-template-areas:
      "brand socials"
      "nav nav";
    row-gap: 8px;
  }
  .brand{ grid-area: brand; font-size: 16px; }
  .socials{ grid-area: socials; justify-self: end; }
  .main-nav{ grid-area: nav; justify-self: center; gap: 16px; }
}

/* Helpful defaults */
img { max-width: 100%; height: auto; display: block; }
a { color: #a5b4fc; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===============  CONTAINER / SECTIONS  =============== */
.section { padding: 72px 0; }
.section:first-child { padding-top: 96px; }
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.center { text-align: center; }
.mt-24 { margin-top: 24px; }

/* ===============  TYPOGRAPHY  =============== */
.gradient-text {
  background: linear-gradient(90deg, #b4e1ff, #9ae6ff, #8beaf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glow {
  text-shadow:
    0 0 15px rgba(139,92,246,.5),
    0 0 30px rgba(6,182,212,.35);
}
.big-title {
  font-weight: 800;
  letter-spacing: .5px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  margin: 0 0 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 10px;
}
.section-subtitle { margin: 0 0 28px; }
.muted { color: rgba(255,255,255,.78); }
.tiny { font-size: 12px; }

/* ===============  HERO  =============== */
.hero { position: relative; overflow: hidden; }
.hero-center { text-align: center; position: relative; }
.hero .lead { margin: 8px auto 22px; max-width: 720px; }

.hero-swirl {
  position: absolute;
  inset: -10px -15vw auto -15vw; /* top | right | bottom | left */
  height: 360px;               /* change to make ribbon taller/shorter */
  width: calc(100% + 30vw);
  pointer-events: none;
  opacity: .9;
  transform: rotate(6deg);
  z-index: 0;
}
.hero .big-title { position: relative; z-index: 1; }
.hero .btn-row { position: relative; z-index: 1; }

/* ===============  BUTTONS  =============== */
.btn-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px; font-weight: 700;
  border: 2px solid transparent; text-decoration: none;
  transition: .25s ease;
}
.btn.small { padding: 8px 14px; font-weight: 700; }
.btn-gradient {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4, #10b981);
  color: #fff;
  background-size: 200% auto;
  box-shadow: 0 8px 32px rgba(139, 92, 246, .35);
}
.btn-gradient:hover { background-position: right center; transform: translateY(-1px); }
.btn-ghost {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline {
  color: #e5e7eb;
  border-color: rgba(255,255,255,.28);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ===============  GRID & CARDS  =============== */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px){ .grid-3{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .grid-3{ grid-template-columns: 1fr; } }

.card {
  background: rgba(10,10,25,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,.35);
  box-shadow: 0 30px 80px rgba(139,92,246,.25);
}
.card-tag {
  display: inline-block;
  font-size: 12px; letter-spacing: .2px; color: #a5b4fc;
  background: rgba(139,92,246,.15); padding: 5px 8px; border-radius: 999px;
  margin-bottom: 10px;
}
.card-title {
  display: block; font-weight: 800; font-size: 20px; margin: 6px 0 8px;
  color: #eaf6ff; text-decoration: none;
}
.card-title:hover { text-decoration: underline; }
.card-excerpt { color: rgba(255,255,255,.82); margin: 0 0 12px; }
.card-meta { color: rgba(255,255,255,.55); display: flex; gap: 8px; margin-bottom: 10px; font-size: 14px; }

/* Book covers inside cards */
.book-cover {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.45);
}

/* ===============  ABOUT  =============== */
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
@media (max-width: 860px){ .about-grid{ grid-template-columns: 1fr; } }

.about-photo-wrap {
  position: relative; aspect-ratio: 1/1; width: 100%;
  border-radius: 20px; overflow: hidden;
  background: radial-gradient(60% 60% at 30% 30%, rgba(139,92,246,.25), rgba(6,182,212,.15) 60%, transparent);
}
.about-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.orb { position: absolute; width: 18px; height: 18px; border-radius: 999px; filter: blur(.5px); }
.orb-1 { background: #8b5cf6; left: 10%; top: 8%; box-shadow: 0 0 18px #8b5cf6; }
.orb-2 { background: #06b6d4; right: 12%; bottom: 10%; box-shadow: 0 0 18px #06b6d4; }

.about-name { font-size: 22px; margin: 6px 0 14px; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 16px; }
@media (max-width: 640px){ .feature-grid{ grid-template-columns: 1fr; } }
.feature {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  padding: 12px 14px; border-radius: 12px;
}

/* ===============  CTA  =============== */
.cta-box {
  border-radius: 20px;
  padding: 28px;
  background:
    radial-gradient(40% 70% at 10% 0%, rgba(139,92,246,.25), transparent 60%),
    radial-gradient(30% 60% at 100% 100%, rgba(6,182,212,.20), transparent 60%),
    rgba(14, 18, 36, .65);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.cta-left { max-width: 800px; margin-inline: auto; }
.small-tight { line-height: 1.1; }
.inline-form { display: inline-flex; gap: 10px; flex-wrap: wrap; }

/* ===============  FORMS  =============== */
.input {
  width: 220px;
  padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); color: #fff; outline: none;
}
.input::placeholder { color: rgba(255,255,255,.55); }
.input:focus { border-color: rgba(139,92,246,.6); box-shadow: 0 0 0 3px rgba(139,92,246,.15); }

.form { display: grid; gap: 12px; }
.form label span { display: block; font-size: 13px; opacity: .8; margin-bottom: 6px; }

/* ===============  CONTACT  =============== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
@media (max-width: 980px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact-aside .info-block {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 14px; border-radius: 14px; margin-bottom: 12px;
}
.socials { display: flex; gap: 10px; }
.social {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border-radius: 999px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); color: #eaf6ff; text-decoration: none;
}
.social:hover { background: rgba(255,255,255,.12); }

/* ===============  FOOTER  =============== */
.footer { padding: 40px 0 60px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; align-items: center; gap: 10px; justify-content: center; }
.spark { font-size: 20px; color: #8b5cf6; }
.footer-nav { display: flex; gap: 16px; justify-content: center; margin: 14px 0; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.86); }
.footer-copy { text-align: center; opacity: .85; }

/* ===============  QUICK TUNING  =============== */
/* Move the ribbon up/down/left/right */
@media (min-width: 981px){
  .hero-swirl { inset: -8px -12vw auto -12vw; }
}
/* Make the ribbon taller/shorter: change height above.
   Make it brighter/softer: change stdDeviation in index.astro, and adjust path opacity. */
/* Hero swirl container */
.hero-swirl{
  position: absolute;
  inset: -56px -14vw auto -14vw;   /* nudge if needed */
  height: 300px;                   /* make taller/shorter */
  pointer-events: none;
  z-index: 0;
}
.hero-swirl svg{ display:block; width:100%; height:100%; }

/* The magic: spin the group smoothly forever */
.swirl-group{
  transform-origin: 600px 140px;   /* center of the viewBox (1200x280) */
  animation: spinOrbit 24s linear infinite;
}

/* Faster/slower? Change 24s. Reverse? add 'reverse'. */
@keyframes spinOrbit{
  from{ transform: rotate(0deg); }
  to  { transform: rotate(360deg); }
}
/* ======= Header / Nav ======= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(120%) blur(8px);
  background: linear-gradient(180deg, rgba(10,12,24,.75), rgba(10,12,24,.35) 60%, transparent);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 64px;
}
.brand {
  justify-self: start;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none;
  color: #c8ecff;
}
.main-nav {
  justify-self: center;
  display: inline-flex; gap: 22px;
}
.main-nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.main-nav a:hover { color: #fff; text-decoration: underline; }
.header-socials {
  justify-self: end; display: inline-flex; gap: 14px; color: #c8ecff;
}
.header-socials a { color: inherit; opacity: .9; }
.header-socials a:hover { opacity: 1; }

/* ======= Hero layout + spacing ======= */
.hero { padding: 56px 0 32px; /* smaller gap to next section */ }
.hero-wrap { position: relative; text-align: center; }
.big-title { font-size: clamp(40px, 6.6vw, 78px); line-height: 1.1; }

/* Gradient text + glow (you already have something similar) */
.gradient-text {
  background: linear-gradient(90deg, #8bd3ff, #bce6ff 35%, #94e2ff 70%, #b3d9ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.glow { text-shadow:
  0 0 10px rgba(139,92,246,.35),
  0 0 28px rgba(6,182,212,.28); }

.lead { margin: 10px 0 22px; color: rgba(255,255,255,.78); }

/* Buttons */
.btn-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px; font-weight: 700; text-decoration: none;
  border: 2px solid transparent; }
.btn-gradient {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4, #10b981);
  color: #fff; background-size: 200% auto; transition: .35s;
  box-shadow: 0 14px 40px rgba(35,170,255,.26);
}
.btn-gradient:hover { background-position: right center; transform: translateY(-1px); }
.btn-ghost {
  color: #e7f6ff; background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.13); }

/* ======= Animated ribbon (swirl behind heading) ======= */
.hero-swirl {
  position: absolute;
  /* POSITION: tweak here (see notes below) */
  inset: -40px -10vw auto -10vw;  /* top | right | bottom | left */
  height: 360px;                  /* THICKNESS/HEIGHT of the ribbon area */
  pointer-events: none; z-index: -1; opacity: .9;
}
.hero-swirl .swirl {
  width: 120%; height: 100%;
  animation: ribbon-pan 10s linear infinite;
  transform: translateX(-5%);
}
@keyframes ribbon-pan {
  0%   { transform: translateX(-10%) rotate(0.2deg); }
  50%  { transform: translateX( 10%) rotate(-0.2deg); }
  100% { transform: translateX(-10%) rotate(0.2deg); }
}
/* ========= HEADER LAYOUT: force true center nav + right-aligned socials ========= */
.site-header .header-row{
  position: relative;                /* so we can absolutely center the nav */
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* left: brand just stays on the left */
.site-header .brand{
  flex: 0 0 auto;
}

/* center: nav is absolutely centered to the container */
.site-header .main-nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
}

/* right: socials are pushed to the far right */
.site-header .header-socials{
  margin-left: auto;                 /* pushes it to the right edge */
  display: inline-flex;
  gap: 14px;
}

/* nice hover + accessible tap targets (optional) */
.site-header .main-nav a,
.site-header .header-socials a{
  padding: 6px 2px;
}

/* responsive: when space is tight, keep it clean */
@media (max-width: 780px){
  .site-header .main-nav{
    gap: 16px;
  }
}
@media (max-width: 640px){
  .site-header .main-nav{
    position: static;                /* stop forcing center on very small screens */
    transform: none;
    margin: 0 auto;
  }
  .site-header .header-row{
    justify-content: space-between;  /* brand left, nav center-ish, socials right */
  }
}
/* ==== Header: brand left, nav dead-center, socials right ==== */
.site-header { position: sticky; top: 0; z-index: 50; }
.site-header .header-inner {
  position: relative;            /* anchor for absolute center */
  display: flex;
  align-items: center;
  gap: 16px;
}

/* left */
.site-header .brand { flex: 0 0 auto; }

/* center (absolute centering so brand/social widths don’t matter) */
.site-header .main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
}

/* right */
.site-header .header-socials {
  margin-left: auto;
  display: inline-flex;
  gap: 14px;
}

/* polish */
.site-header a { text-decoration: none; }
.site-header .main-nav a,
.site-header .header-socials a { padding: 6px 2px; }

/* responsive */
@media (max-width: 780px){
  .site-header .main-nav { gap: 18px; }
}
@media (max-width: 640px){
  .site-header .main-nav {
    position: static;
    transform: none;
    margin: 0 auto;              /* centers between brand & socials on small screens */
  }
  .site-header .header-inner { justify-content: space-between; }
}
/* ================== HEADER ================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(5,10,22,.75), rgba(5,10,22,.45) 40%, transparent);
  backdrop-filter: blur(6px);
}

/* width helper (re-use your container if you already have one) */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.site-header .header-inner {
  position: relative;              /* anchor for absolute centering */
  display: flex; align-items: center; gap: 16px;
  min-height: 58px;
}

/* Left brand */
.site-header .brand {
  font-weight: 800; font-size: 22px; letter-spacing: .3px;
  color: #eaf6ff; text-decoration: none;
}

/* Centered nav — absolute center, independent of left/right widths */
.site-header .main-nav {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: inline-flex; gap: 28px; white-space: nowrap;
}
.site-header .main-nav a {
  color: rgba(234,246,255,.9); text-decoration: none;
  font-weight: 600; padding: 6px 2px; border-radius: 8px;
}
.site-header .main-nav a:hover { color: #b9e5ff; text-shadow: 0 0 18px rgba(139,92,246,.35); }

/* Right socials */
.site-header .socials { margin-left: auto; display: inline-flex; gap: 14px; }
.site-header .social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: #cfe9ff; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.site-header .social-link:hover {
  background: rgba(139,92,246,.18); color: #ffffff; transform: translateY(-1px);
}

/* Responsive: keep nav usable on phones */
@media (max-width: 820px){
  .site-header .main-nav { gap: 18px; }
}
@media (max-width: 640px){
  .site-header .header-inner { justify-content: space-between; }
  .site-header .main-nav {
    position: static; transform: none; margin: 0 auto;
  }
}
/* === FORCE CENTER THE NAV === */
header.site-header .header-inner {
  position: relative;                /* anchor for absolute centering */
  display: flex;
  align-items: center;
  min-height: 58px;
}

header.site-header .brand {
  margin-right: auto;                /* pushes nav toward center */
}

header.site-header nav.main-nav {
  position: absolute !important;     /* win against earlier rules */
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  z-index: 1;                        /* stay above background effects */
}

header.site-header nav.main-nav a {
  color: rgba(234,246,255,.9);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 2px;
  border-radius: 8px;
}

header.site-header .socials {
  margin-left: auto;                 /* keeps socials pinned right */
  display: inline-flex;
  gap: 14px;
}

/* Responsive fallback: on narrow screens, drop the absolute centering */
@media (max-width: 640px){
  header.site-header nav.main-nav {
    position: static !important;
    transform: none !important;
    margin: 0 auto;
  }
}
.book-page {
  padding: 6rem 2rem;
  color: var(--text-color, #f0f0f0);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.book-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.book-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b3c8ff; /* glowing light blue like your hero */
  text-shadow: 0 0 10px rgba(179, 200, 255, 0.6);
}

.book-subtitle {
  font-size: 1.25rem;
  font-style: italic;
  margin: 0.5rem 0;
  color: #ccc;
}

.book-author {
  font-size: 1rem;
  color: #aaa;
  margin-top: 0.5rem;
}

.book-description p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.book-description strong {
  color: #ff4fa2; /* accent for “But lies rot in the dark.” */
  font-weight: 600;
}

.book-description em {
  font-style: italic;
  color: #9ad1ff;
}

.tagline {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 2.5rem;
  color: #ffdd57;
}
/* Base button style */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px; /* pill shape */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary button (gradient) */
.btn-primary {
  background: linear-gradient(90deg, #9b5de5, #00bbf9);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #7a3ed1, #0099cc);
  transform: translateY(-2px);
}

/* Secondary button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #444;
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
/* Button grouping/placement */
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Alignment helpers */
.btn-group.center { justify-content: center; }
.btn-group.start  { justify-content: flex-start; }
.btn-group.end    { justify-content: flex-end; }

/* Optional: slightly larger hero buttons (use if you want) */
.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; }

/* Make sure real <button> elements look like links too */
button.btn {
  background: none;
  border: none;
}
/* Storyteller: circular portrait with soft glow */
.author-circle {
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
  padding: 0;               /* override .about-photo-wrap padding */
  display: grid;
  place-items: center;
  background:
    radial-gradient(55% 55% at 30% 25%, rgba(139,92,246,.25), transparent 60%),
    radial-gradient(45% 45% at 80% 75%, rgba(6,182,212,.20), transparent 60%),
    rgba(14,18,36,.55);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 30px 90px rgba(0,0,0,.35),
    0 0 36px rgba(139,92,246,.12) inset;
}

.author-circle .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  /* Keep bio first on mobile if you prefer — or remove this block */
  .about-grid { grid-template-columns: 1fr; }
}

/* Gentle spacing tune for the title/subtitle pairing */
#storyteller .section-title { margin-bottom: 6px; }
#storyteller .section-subtitle { margin-bottom: 22px; }
.mt-24 { margin-top: 24px; }
.mini-title { font-weight: 700; letter-spacing: .2px; }
