/* ─── Self-hosted fonts ─────────────────────────────────────────────────────── */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/eb-garamond-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/eb-garamond-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/nunito-sans-latin.woff2') format('woff2');
}

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --bg:           #FBF7EE;       /* warm cream */
  --surface:      #FFFFFF;
  --honey-deep:   #C68A1A;
  --honey:        #E0A934;       /* primary honey */
  --honey-soft:   #F4C56A;
  --honey-tint:   #FBE8A6;
  --honey-bg:     #FFF5DA;       /* page accent */
  --ink:          #1B1A17;
  --ink-soft:     #3A3833;
  --text:         #232220;
  --text-muted:   #6F6A60;
  --border:       #E8E2D2;
  --black:        #0A0A0A;
  --radius:       10px;
  --shadow:       0 2px 16px rgba(60,40,10,.08);
  --shadow-hover: 0 10px 32px rgba(60,40,10,.16);
  --max-w:        1200px;
  --font-serif:   'EB Garamond', Georgia, serif;          /* neonyang.com */
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-nav:     'Nunito Sans', 'Inter', system-ui, sans-serif; /* aglamar.com topbar */
  --font-display: 'Nunito Sans', 'Inter', system-ui, sans-serif; /* eyebrows / labels */
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--honey-deep); text-decoration: none; }
a:hover { color: var(--ink); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ─── Top black bar (matched to aglamar.com / g5plus-auteur theme) ──────────── */
/*  Spec from aglamar.com: Nunito Sans 700 14px uppercase, letter-spacing .05em,
    color rgba(255,255,255,.7) → #fff on hover, item spacing 35px, bg #000.   */
.topbar {
  background: #000000;
  color: rgba(255,255,255,.7);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.topbar-brand {
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 14px;
}
.topbar-brand:hover { color: #fff; opacity: .85; }
.topbar-nav { display: flex; gap: 35px; }
.topbar-nav a {
  color: rgba(255,255,255,.7);
  font-family: var(--font-nav);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 14px;
  padding: .35rem 0;
  transition: color .3s;
}
.topbar-nav a:hover { color: #ffffff; }

.topbar-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .35rem; }
.topbar-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; border-radius: 1px; transition: .25s; }

/* ─── Masthead with book-cover watermarks ──────────────────────────────────── */
/*  Inspired by neonyang.com: a full-bleed background image with a dark overlay
    at ~72% (Squarespace's imageOverlayOpacity) and the title set in EB Garamond.
    Here the "image" is a tight horizontal band of the four book covers.        */
.masthead {
  position: relative;
  overflow: hidden;
  background: #1a1714;       /* fallback dark base under the watermark band */
  color: #fff;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.masthead--front { padding: 7rem 0 6rem; min-height: 40vh; }

/* The book-cover band sits behind everything */
.masthead-watermarks {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5%;
  padding: 0 2%;
  pointer-events: none;
  z-index: 0;
}
.masthead-watermarks .watermark {
  flex: 1 1 0;
  max-width: 22%;
  height: 80%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  filter: saturate(.9) brightness(.95);
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

/* Dark overlay on top of the band — the neonyang "imageOverlayOpacity:0.72" trick */
.masthead::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,15,8,.55) 0%, rgba(20,15,8,.78) 60%, rgba(20,15,8,.92) 100%);
  z-index: 1;
}

.masthead-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 720px;
}
.masthead-eyebrow {
  font-family: var(--font-nav);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 700;
  color: var(--honey-soft);
  margin-bottom: 1.1rem;
}
.masthead-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -.005em;
}
.masthead-title a { color: inherit; }
.masthead-title a:hover { color: var(--honey-soft); }
.masthead-tagline {
  margin-top: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 560px;
}

/* ─── Section headings ───────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-eyebrow {
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: .55rem;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--ink);
}

/* ─── Awards section ────────────────────────────────────────────────────────── */
.awards-section {
  background: linear-gradient(180deg, var(--bg) 0%, #FFF6DD 100%);
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.award-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--honey);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--text);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.award-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-left-color: var(--honey-deep);
}
.award-card__cover {
  width: 56px;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(40,20,0,.18);
  flex-shrink: 0;
}
.award-card__body { min-width: 0; }
.award-card__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: .3rem;
}
.award-card__book {
  font-family: var(--font-nav);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.award-card__book em {
  font-style: normal;
  color: var(--honey-deep);
  font-weight: 700;
}
@media (max-width: 768px) {
  .awards-grid { grid-template-columns: 1fr; }
  .awards-section { padding: 3rem 0; }
}

/* ─── Books carousel ─────────────────────────────────────────────────────────── */
.books-section { padding: 5rem 0; }

.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
  padding: 1.5rem .25rem 2rem;
}
.carousel-slide {
  flex: 0 0 calc((100% - 4rem) / 3);   /* 3 visible on desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text);
  transition: transform .25s;
}
.carousel-slide:hover { transform: translateY(-4px); }

.carousel-meta {
  margin-top: 1.5rem;
  max-width: 280px;
}
.book-publisher {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.book-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .4rem;
}
.book-subtitle {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.book-cta {
  display: inline-block;
  margin-top: .8rem;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 38%;
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .2s, color .2s;
}
.carousel-btn:hover { background: var(--honey); color: #fff; border-color: var(--honey); }
.carousel-btn--prev { left: -.25rem; }
.carousel-btn--next { right: -.25rem; }

.carousel-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: .5rem;
}
.carousel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dot.is-active { background: var(--honey); transform: scale(1.25); }

/* ─── 3-D Book look (Victoria Aveyard style) ────────────────────────────────── */
.book-3d {
  position: relative;
  width: 200px;
  height: 300px;
  perspective: 1400px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 22px 28px rgba(40,20,0,.22));
}
.book-3d--lg { width: 280px; height: 420px; }

.book-3d__cover {
  position: absolute;
  inset: 0;
  transform: rotateY(-6deg);
  transform-origin: left center;
  border-radius: 2px 6px 6px 2px;
  overflow: hidden;
  background: #ddd;
  box-shadow:
    inset 4px 0 6px rgba(0,0,0,.15),
    inset -1px 0 0 rgba(255,255,255,.04);
}
.book-3d__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* page edge — the stacked pages on the right */
.book-3d__pages {
  position: absolute;
  top: 4px; bottom: 4px;
  right: -8px;
  width: 16px;
  background:
    repeating-linear-gradient(
      to bottom,
      #f7efdc 0px, #f7efdc 1px,
      #e7dcc1 1px, #e7dcc1 2px
    );
  transform: rotateY(-6deg) translateX(2px);
  transform-origin: left center;
  border-radius: 0 3px 3px 0;
  box-shadow:
    inset -1px 0 0 rgba(0,0,0,.08),
    1px 0 2px rgba(0,0,0,.18);
}

/* ─── About section ──────────────────────────────────────────────────────────── */
.about-section {
  background: var(--honey-bg);
  padding: 5rem 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.about-photo img {
  width: 280px; height: 350px;
  object-fit: cover; object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-content h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.about-content p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-highlights { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.25rem; }
.highlight-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.speaking-box {
  margin-top: 1.5rem;
  padding: 1.1rem 1.3rem;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--honey);
}
.speaking-box h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.speaking-box p { font-size: .9rem; color: var(--text-muted); margin: 0; }
.speaking-box a { color: var(--honey-deep); font-weight: 600; }

/* ─── Resources section ─────────────────────────────────────────────────────── */
.resources-section { padding: 5rem 0; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.resource-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s;
}
.resource-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.resource-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}
.resource-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

.btn-resource {
  display: inline-block;
  padding: .5rem 1rem;
  background: var(--honey-tint);
  color: var(--ink);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .18s, color .18s;
  align-self: flex-start;
}
.btn-resource:hover { background: var(--honey); color: #fff; }

/* ─── Buy / audio buttons (shared) ──────────────────────────────────────────── */
.buy-section { margin-top: 1.25rem; }
.buy-label, .audio-divider {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.audio-divider { margin: 1rem 0 .5rem; display: flex; align-items: center; gap: .5rem; }
.audio-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.buy-buttons { display: flex; flex-wrap: wrap; gap: .45rem; }
.btn-buy {
  display: inline-block;
  padding: .45rem .9rem;
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 600;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
}
.btn-buy:hover { opacity: .88; transform: translateY(-1px); }
.btn-bookshop { background: #2A7F62; color: #fff; }
.btn-amazon   { background: #FF9900; color: #111; }
.btn-indigo   { background: #5B2D8E; color: #fff; }

.btn-audio {
  display: inline-block;
  padding: .4rem .85rem;
  border-radius: 5px;
  font-size: .78rem;
  font-weight: 600;
  background: #1a1a1a;
  color: #fff;
  transition: opacity .15s;
}
.btn-audio:hover { opacity: .82; color: #fff; }

.audio-note { font-size: .78rem; color: var(--text-muted); margin-top: .4rem; }
.extra-links { margin-top: 1rem; }

/* ─── Book detail page ──────────────────────────────────────────────────────── */
.book-detail { padding: 4rem 0 5rem; }

.back-link {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.back-link:hover { color: var(--honey-deep); }

.book-detail__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}
.book-detail__cover { display: flex; justify-content: center; }

.book-detail__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  color: var(--ink);
  margin: .4rem 0 .6rem;
}
.book-detail__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.book-detail__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin: 1rem 0 1.5rem;
}

.book-awards {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.4rem;
}
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--honey-tint);
  border: 1px solid var(--honey-soft);
  color: #6c4d10;
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 20px;
}

.reviews { margin-top: 4rem; }
.reviews-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--ink);
  text-align: center;
  margin-bottom: 2rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--honey);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: .85rem;
}
.review figcaption {
  font-family: var(--font-display);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

/* ─── Contact section (lighter honey) ───────────────────────────────────────── */
.contact-section {
  background: linear-gradient(180deg, var(--honey-bg) 0%, #FFE9B1 100%);
  color: var(--ink);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.contact-info p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 1rem; }
.contact-info a { color: var(--honey-deep); font-weight: 600; }

.contact-card {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-top: 1rem;
  backdrop-filter: blur(2px);
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: .35rem;
}
.contact-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.dc-form { display: flex; flex-direction: column; gap: .85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.dc-form label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: block;
  margin-bottom: .3rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.dc-form input, .dc-form textarea, .dc-form select {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 7px;
  color: var(--ink);
  padding: .65rem .85rem;
  font-size: .95rem;
  font-family: var(--font-sans);
  transition: border-color .18s, box-shadow .18s;
}
.dc-form input::placeholder, .dc-form textarea::placeholder { color: rgba(0,0,0,.32); }
.dc-form input:focus, .dc-form textarea:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(224,169,52,.22);
}
.dc-form textarea { resize: vertical; min-height: 120px; }

/* Honeypot — visually hidden but reachable to bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hp-field-strict { display: none !important; }

.btn-submit {
  background: var(--honey);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: .8rem 2rem;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s, transform .15s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--honey-deep); transform: translateY(-1px); }

.form-msg { font-size: .9rem; font-weight: 500; padding: .6rem .9rem; border-radius: 6px; margin-bottom: .85rem; min-height: 1rem; }
.form-msg--ok  { background: #d1fae5; color: #065f46; }
.form-msg--err { background: #fee2e2; color: #991b1b; }
.form-msg:empty { display: none; }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.55);
  padding: 1.6rem 0;
  text-align: center;
  font-size: .82rem;
}
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--honey-soft); }

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .carousel-slide { flex: 0 0 calc((100% - 2rem) / 2); }
  .book-detail__top { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .topbar-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--black); flex-direction: column; gap: 0; padding: .5rem 1.5rem 1rem; border-bottom: 1px solid #1a1a1a; }
  .topbar-nav.open { display: flex; }
  .topbar-nav a { padding: .65rem 0; }
  .topbar-toggle { display: block; }

  .masthead { padding: 3rem 0 2.8rem; }
  .masthead--front { padding: 4rem 0 3.2rem; }
  .watermark--1 { width: 100px; }
  .watermark--2, .watermark--3, .watermark--4 { width: 110px; }

  .carousel-slide { flex: 0 0 100%; }
  .carousel-btn { top: 35%; width: 38px; height: 38px; font-size: 1.4rem; }

  .about-inner { grid-template-columns: 1fr; }
  .about-photo img { width: 100%; max-width: 320px; height: auto; margin: 0 auto; }

  .resources-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .book-3d { width: 170px; height: 255px; }
  .book-3d--lg { width: 220px; height: 330px; }
}
@media (max-width: 480px) {
  .books-section, .about-section, .resources-section, .contact-section { padding: 3rem 0; }
}
