/* ============================================================
   Hope in History — HIHNet Stylesheet
   Rich navy blue + gold palette
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --navy:        #0B2545;
  --navy-deep:   #060F1E;
  --blue:        #1B3A6B;
  --blue-mid:    #2A5298;
  --gold:        #C9A227;
  --gold-light:  #E8C84A;
  --gold-pale:   #F5E9C0;
  --cream:       #FBF7EE;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #4A5568;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Lato', system-ui, -apple-system, sans-serif;

  --radius:   10px;
  --shadow-sm: 0 2px 8px  rgba(0,0,0,.12);
  --shadow-md: 0 8px 24px rgba(0,0,0,.18);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.26);
  --shadow-xl: 0 28px 72px rgba(0,0,0,.36);

  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .3s;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: var(--font-sans); color: var(--text); background: var(--cream); line-height: 1.75; -webkit-font-smoothing: antialiased; }
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); color: var(--navy); margin-bottom: 1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }

/* ── Section Label pill ── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: .28rem .85rem;
  margin-bottom: .85rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.1rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--dur) var(--ease),
              color     var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform  var(--dur) var(--ease);
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201,162,39,.45);
}
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(11,37,69,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,39,.25);
  transition: background var(--dur) var(--ease);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .95rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-link { display: flex; align-items: center; gap: .75rem; }
.logo { width: 42px; height: 42px; object-fit: contain; border-radius: 6px; }
.site-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .12em;
}
.site-nav { display: flex; gap: 1.75rem; }
.site-nav a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--gold); }

/* ── Mobile hamburger (hidden on desktop) ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* JS in main.js drives translateY at ~40 % of scroll speed so the
     image scrolls upward more slowly than the page, revealing its
     lower portions as the user scrolls down (true parallax). */
  background-image:
    linear-gradient(160deg, rgba(11,37,69,.96) 0%, rgba(27,58,107,.82) 50%, rgba(42,82,152,.68) 100%),
    url('../images/HeroBG.webp');
  background-size:     100% 100%, cover;
  background-position: 0 0,       center 0%;  /* JS sweeps image layer 0→100 % */
  background-repeat:   no-repeat, no-repeat;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,162,39,.10) 0%, transparent 65%);
  pointer-events: none;
}
/* Decorative gold rule */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 840px;
  animation: fadeUp .9s var(--ease) .15s both;
}
.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* scroll hint arrow */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2.2s ease infinite;
}
.scroll-hint svg { width: 18px; opacity: .5; }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(32px); }
  to   { opacity:1; transform: translateY(0);    }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0);   }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2   { margin-bottom: 1.25rem; }
.about-text p    { color: var(--text-muted); }

.series-quote {
  margin-top: 2rem;
  padding: 1.6rem 2rem;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.series-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.65;
  margin: 0;
}
.about-image {
  position: relative;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid rgba(201,162,39,.35);
  border-radius: var(--radius);
  pointer-events: none;
}
.naked-cover {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  transition: transform .5s var(--ease);
}
.naked-cover:hover { transform: scale(1.02) rotate(.5deg); }

/* ============================================================
   VOLUMES GRID
   ============================================================ */
.volumes { background: var(--cream); }
.volumes-head { text-align: center; margin-bottom: 3.5rem; }
.volumes-head h2 { margin-bottom: .65rem; }
.section-intro {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}
.volumes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 1.75rem;
}

/* ── Individual Volume Card ── */
.vol-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition:
    transform  .35s var(--ease),
    box-shadow .35s var(--ease);
}
.vol-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.vol-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}
.vol-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.vol-card:hover .vol-card-img img { transform: scale(1.06); }
.vol-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
.vol-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.vol-card:hover .vol-card-overlay { opacity: 1; }
.vol-card-cta {
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vol-card-info {
  padding: .85rem 1rem;
  text-align: center;
  border-top: 2px solid var(--cream);
}
.vol-card-month {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.vol-card-num {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================================
   BOX SET
   ============================================================ */
.boxset { background: var(--navy); position: relative; overflow: hidden; }
.boxset::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(42,82,152,.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,162,39,.06) 0%, transparent 50%);
  pointer-events: none;
}
.boxset-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.boxset-img-wrap { position: relative; }
.boxset-img-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse, rgba(201,162,39,.18) 0%, transparent 65%);
  pointer-events: none;
}
.boxset-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  transition: transform .4s var(--ease);
}
.boxset-img:hover { transform: scale(1.03) rotate(-1deg); }
.boxset-text .section-label { border-color: var(--gold); }
.boxset-text h2   { color: var(--white); margin-bottom: 1.25rem; }
.boxset-text p    { color: rgba(255,255,255,.72); }
.boxset-text .btn { margin-top: 1.5rem; }

/* ── Kickstarter teaser ── */
.kickstarter-teaser {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: 1.5rem;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(201,162,39,.4);
  border-radius: var(--radius);
}
.ks-badge {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  padding: .25rem .6rem;
  border-radius: 5px;
}
.kickstarter-teaser p {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  line-height: 1.45;
  margin: 0;
}
.kickstarter-teaser strong { color: rgba(255,255,255,.88); }

/* ============================================================
   GIFT IDEAS
   ============================================================ */
.gifts { background: var(--white); }
.gifts-head { text-align: center; margin-bottom: 3rem; }
.gifts-head h2 { margin-bottom: .65rem; }
.gifts-head .section-intro { margin: 0 auto; }

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gift-card {
  background: var(--cream);
  border: 1.5px solid rgba(201,162,39,.22);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color var(--dur) var(--ease),
              box-shadow   var(--dur) var(--ease),
              transform    var(--dur) var(--ease);
}
.gift-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.gift-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.gift-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   THE APP
   ============================================================ */
.apps { background: var(--cream); }
.apps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.apps-text h2   { margin-bottom: 1.25rem; }
.apps-text p    { color: var(--text-muted); }

.apps-badges {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  transition: transform var(--dur) var(--ease),
              opacity   var(--dur) var(--ease);
}
.app-badge:hover { transform: translateY(-3px); opacity: .85; }
.app-badge img   { height: 48px; width: auto; display: block; }

/* "Coming soon to:" label above the store badges */
.apps-coming-soon-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 .6rem;
}
/* Web app badge — live link */
.web-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  background: var(--gold);
  color: #1a1008;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 18px rgba(200,155,60,.35);
}
.web-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200,155,60,.5);
  opacity: 1;
}
.web-badge:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200,155,60,.5);
  opacity: 1;
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.web-badge-icon { font-size: 1.4rem; }
.web-badge-label { letter-spacing: .03em; }

/* Store badges not yet live — render at reduced opacity, no pointer */
.coming-soon-badge {
  opacity: .45;
  cursor: default;
  pointer-events: none;
  filter: grayscale(30%);
}

.apps-logo-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,.09);
}
.apps-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.apps-logo-hint p {
  font-size: .88rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   CLOSING QUOTE BANNER
   ============================================================ */
.quote-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #A07C14 100%);
  padding: 4rem 0;
  text-align: center;
}
.quote-banner blockquote {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}
.quote-banner blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--navy-deep);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(201,162,39,.18);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .85rem; }
.footer-logo  { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: .95rem;
}
.footer-copy { color: rgba(255,255,255,.35); font-size: .8rem; }

/* ============================================================
   VOLUME PAGE
   ============================================================ */
.vol-hero {
  padding-top: 9rem;
  padding-bottom: 4.5rem;
  background:
    linear-gradient(160deg, rgba(6,15,30,.97) 0%, rgba(11,37,69,.93) 60%, rgba(27,58,107,.88) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vol-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  /* Tune the parallax here — both values are read by volume.js.
     --vol-hero-start : vertical % when the hero is fully in view (0=top, 100=bottom)
     --vol-hero-sweep : how many % points to travel as the hero scrolls away */
  --vol-hero-start: 15;
  --vol-hero-sweep: 80;
  background-position: center 32%; /* no-JS fallback only */
  opacity: .18;
  filter: blur(2px);
  transform: scale(1.08);
}
.vol-hero-inner { position: relative; z-index: 1; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.65);
  font-size: .87rem;
  margin-bottom: 2rem;
  transition: color var(--dur) var(--ease);
}
.back-link:hover { color: var(--gold); }
.vol-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-top: .5rem;
}
.vol-hero .vol-num-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .5rem;
}

.vol-body { background: var(--cream); }
.vol-body-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5.5rem 0;
}
.vol-cover-sticky {
  position: sticky;
  top: 90px;
}
.vol-cover-sticky img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  transition: transform .45s var(--ease);
}
.vol-cover-sticky img:hover { transform: scale(1.02) rotate(.5deg); }

.vol-series-eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.vol-text h2    { margin-bottom: 1.25rem; }
.vol-text p     { color: var(--text-muted); }
.vol-closing-quote { margin-bottom: 0; }
.vol-actions    { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.vol-pagination {
  border-top: 1px solid rgba(0,0,0,.09);
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vol-pagination a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--blue-mid);
  transition: color var(--dur) var(--ease);
}
.vol-pagination a:hover { color: var(--gold); }
.vol-pagination .center-link {
  font-family: var(--font-serif);
  font-size: .88rem;
  color: var(--text-muted);
}
.vol-pagination .center-link:hover { color: var(--navy); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid,
  .boxset-inner,
  .apps-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .about-image  { order: -1; }
  .naked-cover  { max-width: 280px; }

  .apps-badges  { flex-direction: row; flex-wrap: wrap; }

  .vol-body-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .vol-cover-sticky { position: static; max-width: 260px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .site-nav    { display: none; }
  .nav-toggle  { display: flex; flex-direction: column; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(11,37,69,.97);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(201,162,39,.2);
  }

  /* On mobile, 100vh includes browser chrome so centered content can slip
     behind the fixed header. Lock the hero to the safe-area viewport height
     and make it internally scrollable so the rest of the page only scrolls
     after the hero is fully consumed. */
  .hero {
    height: 100vh;
    height: 100svh; /* safe-area viewport height — excludes browser chrome */
    min-height: unset;
    overflow-y: auto;
    overflow-x: hidden;
    align-items: flex-start;
    padding-top: 4.75rem; /* clear the fixed header (~76 px / 4.75 rem) */
  }
  .hero-content {
    padding-top: 1.5rem;
    padding-bottom: 5rem; /* keep scroll-hint clear of content */
  }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .volumes-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gifts-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-title, .hero-eyebrow { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .vol-pagination { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 420px) {
  .gifts-grid { grid-template-columns: 1fr; }
  .apps-badges { flex-direction: column; }
}
