/* ============================================================
   KIM FINDLAY — RUNAWAY ROMANCE
   Shared stylesheet for all pages
   ============================================================ */

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

:root{
  --mauve: #b48caf;
  --mauve-light: #d4b8d0;
  --mauve-pale: #f4eef3;
  --mauve-deep: #7a5a76;
  --mauve-darker: #5c3f58;
  --sage: #8a9e8c;
  --sage-light: #c4d4c6;
  --sage-pale: #eef3ee;
  --cream: #faf6f0;
  --cream-mid: #ede4d8;
  --cream-deep: #c8b49a;
  --ink: #2a1f28;
  --ink-light: #5a4558;
  --ink-muted: #9a8096;
  --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Raleway', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(42,31,40,0.10);
  --shadow-sm: 0 2px 8px rgba(42,31,40,0.08);
}

html{scroll-behavior:smooth}

body{
  font-family:var(--sans);
  background:var(--cream);
  color:var(--ink);
  font-weight:300;
  line-height:1.7;
  overflow-x:hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4{font-family:var(--serif);font-weight:400;line-height:1.2}
h1{font-size:clamp(2.4rem,5vw,4rem)}
h2{font-size:clamp(1.8rem,3.5vw,2.8rem)}
h3{font-size:clamp(1.3rem,2.5vw,1.8rem)}
h4{font-size:1.2rem}
p{margin-bottom:1rem}
p:last-child{margin-bottom:0}
em{font-style:italic}
a{color:var(--mauve-deep);text-decoration:none}
a:hover{color:var(--mauve-darker)}

.eyebrow{
  font-family:var(--sans);
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--mauve);
  margin-bottom:0.6rem;
}

/* ---- BUTTONS ---- */
.btn-primary{
  display:inline-block;
  background:var(--mauve-deep);
  color:var(--white);
  padding:0.75rem 1.8rem;
  border-radius:var(--radius);
  font-family:var(--sans);
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  transition:background 0.2s,transform 0.2s;
  border:none;cursor:pointer;
}
.btn-primary:hover{background:var(--mauve-darker);color:var(--white);transform:translateY(-1px)}

.btn-secondary{
  display:inline-block;
  border:1.5px solid var(--mauve-deep);
  color:var(--mauve-deep);
  padding:0.7rem 1.7rem;
  border-radius:var(--radius);
  font-family:var(--sans);
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  transition:all 0.2s;
}
.btn-secondary:hover{background:var(--mauve-deep);color:var(--white);transform:translateY(-1px)}

.btn-ghost{
  display:inline-block;
  color:var(--ink-muted);
  font-family:var(--sans);
  font-size:0.8rem;
  font-weight:500;
  letter-spacing:0.06em;
  text-decoration:underline;
  text-underline-offset:3px;
  transition:color 0.2s;
}
.btn-ghost:hover{color:var(--mauve-deep)}

/* ---- NAV ---- */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:0.9rem 3rem;
  background:rgba(250,246,240,0.93);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--cream-mid);
  transition:box-shadow 0.3s;
}
nav.scrolled{box-shadow:var(--shadow-sm)}

.nav-logo{
  display:flex;align-items:center;gap:0.8rem;
  text-decoration:none;
  flex-shrink:0;
}
.nav-logo-img{
  height:44px;width:44px;border-radius:50%;
  object-fit:cover;border:2px solid var(--mauve-light);
}
.nav-logo-text{
  display:flex;flex-direction:column;line-height:1.1;
}
.nav-logo-name{
  font-family:var(--serif);font-size:1.15rem;font-weight:500;
  color:var(--ink);letter-spacing:0.02em;
}
.nav-logo-sub{
  font-size:0.62rem;font-weight:600;letter-spacing:0.18em;
  text-transform:uppercase;color:var(--mauve);
}

.nav-links{
  display:flex;align-items:center;gap:0.2rem;
  list-style:none;
}
.nav-links > li{position:relative}
.nav-links > li > a{
  display:block;
  padding:0.45rem 0.85rem;
  font-size:0.78rem;font-weight:500;letter-spacing:0.07em;
  color:var(--ink-light);text-transform:uppercase;
  border-radius:var(--radius);
  transition:color 0.2s,background 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active{color:var(--mauve-deep);background:var(--mauve-pale)}

/* Dropdown */
.nav-dropdown{position:relative}
.nav-dropdown-toggle{cursor:pointer}
.nav-dropdown-toggle::after{
  content:'▾';margin-left:4px;font-size:0.65rem;
}
.dropdown-menu{
  display:none;
  position:absolute;top:calc(100% + 8px);left:0;
  background:var(--white);
  border:1px solid var(--cream-mid);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  min-width:200px;
  list-style:none;
  overflow:hidden;
}
.dropdown-menu li a{
  display:block;padding:0.6rem 1.1rem;
  font-size:0.78rem;font-weight:500;letter-spacing:0.05em;
  color:var(--ink-light);text-transform:uppercase;
  transition:background 0.15s,color 0.15s;
}
.dropdown-menu li a:hover{background:var(--mauve-pale);color:var(--mauve-deep)}
.nav-dropdown:hover .dropdown-menu{display:block}

.nav-cta{margin-left:0.5rem}

/* Mobile nav */
.nav-hamburger{
  display:none;flex-direction:column;gap:5px;
  cursor:pointer;padding:4px;border:none;background:none;
}
.nav-hamburger span{
  display:block;width:22px;height:2px;
  background:var(--ink);border-radius:2px;
  transition:all 0.3s;
}
.mobile-nav{
  display:none;
  position:fixed;top:0;left:0;right:0;bottom:0;z-index:300;
  background:var(--cream);
  flex-direction:column;
  padding:2rem;
  overflow-y:auto;
}
.mobile-nav.open{display:flex}
.mobile-nav-close{
  align-self:flex-end;font-size:1.5rem;
  background:none;border:none;cursor:pointer;color:var(--ink);
  margin-bottom:2rem;
}
.mobile-nav-links{list-style:none;display:flex;flex-direction:column;gap:0.5rem}
.mobile-nav-links a{
  display:block;padding:0.75rem 0;
  font-size:1rem;font-weight:500;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--ink);border-bottom:1px solid var(--cream-mid);
}
.mobile-nav-sub{list-style:none;padding-left:1rem}
.mobile-nav-sub a{font-size:0.85rem;color:var(--ink-muted)}

/* ---- PAGE WRAPPER ---- */
.page-content{padding-top:74px}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero{
  background:linear-gradient(135deg,var(--mauve-pale) 0%,var(--cream) 60%,var(--sage-pale) 100%);
  padding:5rem 2rem 4rem;
  text-align:center;
}
.page-hero .eyebrow{margin-bottom:0.8rem}
.page-hero h1{margin-bottom:1rem;color:var(--ink)}
.page-hero .lead{
  font-size:1.1rem;color:var(--ink-muted);
  max-width:580px;margin:0 auto;
}

/* ---- SECTION UTILITIES ---- */
section{padding:5rem 2rem}
.section-inner{max-width:1100px;margin:0 auto}
.section-inner-narrow{max-width:760px;margin:0 auto}
.section-header{text-align:center;margin-bottom:3.5rem}
.section-header .eyebrow{margin-bottom:0.5rem}
.section-header h2{margin-bottom:1rem}
.section-header p{color:var(--ink-muted);max-width:560px;margin:0 auto}

/* ---- BOOK GRID ---- */
.book-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:2.5rem 2rem;
}
.book-card{display:flex;flex-direction:column}
.book-cover{
  width:100%;aspect-ratio:2/3;
  object-fit:cover;border-radius:var(--radius);
  box-shadow:0 4px 20px rgba(42,31,40,0.15), 0 12px 44px rgba(42,31,40,0.18);
  transition:transform 0.3s,box-shadow 0.3s;
  background:var(--cream-mid);
}
.book-cover:hover{transform:translateY(-4px);box-shadow:0 6px 24px rgba(42,31,40,0.20), 0 16px 52px rgba(42,31,40,0.22)}
.book-info{padding:1rem 0 0}
.book-series{
  font-size:0.65rem;font-weight:600;letter-spacing:0.15em;
  text-transform:uppercase;color:var(--mauve);margin-bottom:0.25rem;
}
.book-title{
  font-family:var(--serif);font-size:1.2rem;font-weight:500;
  color:var(--ink);margin-bottom:0.2rem;line-height:1.2;
}
.book-trope{font-size:0.75rem;color:var(--ink-muted);margin-bottom:0.6rem}
.book-stars{font-size:0.75rem;color:var(--mauve);margin-bottom:0.8rem}
.book-actions{display:flex;gap:0.5rem;flex-wrap:wrap}

/* ---- BOOK FEATURE (single book highlight) ---- */
.book-feature{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:center;
  max-width:1100px;margin:0 auto;
  padding:5rem 2rem;
}
.book-feature.reverse{direction:rtl}
.book-feature.reverse > *{direction:ltr}
.book-feature-cover{
  width:100%;max-width:360px;
  border-radius:var(--radius);box-shadow:0 8px 32px rgba(42,31,40,0.20), 0 24px 64px rgba(42,31,40,0.26);
}
.book-feature-content .eyebrow{margin-bottom:0.5rem}
.book-feature-content h2{margin-bottom:0.5rem}
.book-feature-content .book-stars{font-size:0.85rem;color:var(--mauve);margin-bottom:1rem}
.book-feature-content p{color:var(--ink-light);margin-bottom:1rem}
.book-feature-content .pov{
  background:var(--mauve-pale);border-left:3px solid var(--mauve);
  padding:1rem 1.2rem;border-radius:0 var(--radius) var(--radius) 0;
  margin-bottom:1.5rem;
}
.book-feature-content .pov strong{
  display:block;font-family:var(--serif);font-size:1.1rem;margin-bottom:0.3rem;
}
.book-feature-actions{display:flex;gap:0.75rem;flex-wrap:wrap;margin-top:1.2rem}

/* ---- TROPES STRIP ---- */
.tropes-strip{
  background:var(--mauve-pale);
  padding:3rem 2rem;
}
.tropes-inner{max-width:1100px;margin:0 auto}
.tropes-title{
  font-family:var(--serif);font-size:1.5rem;font-weight:500;
  text-align:center;margin-bottom:1.5rem;color:var(--mauve-deep);
}
.tropes-list{
  display:flex;flex-wrap:wrap;gap:0.75rem;justify-content:center;
  list-style:none;
}
.tropes-list li a{
  display:block;
  padding:0.4rem 1rem;
  border:1.5px solid var(--mauve-light);
  border-radius:20px;
  font-size:0.75rem;font-weight:500;letter-spacing:0.06em;
  color:var(--mauve-deep);
  transition:all 0.2s;
}
.tropes-list li a:hover{background:var(--mauve-deep);color:var(--white);border-color:var(--mauve-deep)}

/* ---- BONUS / VAULT ---- */
.bonus-hero{
  background:var(--mauve-darker);
  color:var(--white);
  text-align:center;
  padding:6rem 2rem 5rem;
}
.bonus-hero h1{color:var(--white)}
.bonus-hero .lead{color:var(--mauve-light);max-width:520px;margin:1rem auto 2rem}
.bonus-password{
  display:flex;gap:0.75rem;justify-content:center;flex-wrap:wrap;
  margin-top:1.5rem;
}
.bonus-password input{
  padding:0.75rem 1.2rem;
  border:1.5px solid var(--mauve-light);border-radius:var(--radius);
  background:rgba(255,255,255,0.1);color:var(--white);
  font-family:var(--sans);font-size:0.9rem;
  width:240px;
}
.bonus-password input::placeholder{color:var(--mauve-light)}

/* ---- BONUS SCENE ---- */
.bonus-scene{
  max-width:760px;margin:0 auto;
  padding:5rem 2rem;
}
.bonus-scene h1{margin-bottom:0.5rem}
.bonus-scene .book-ref{
  font-size:0.8rem;color:var(--mauve);margin-bottom:2rem;
  font-weight:500;letter-spacing:0.06em;
}
.bonus-scene .scene-body{
  font-size:1.05rem;line-height:1.85;color:var(--ink-light);
}
.bonus-scene .scene-body p{margin-bottom:1.4rem}
.pov-tag{
  display:inline-block;
  font-family:var(--serif);font-size:1.5rem;font-style:italic;
  color:var(--mauve-deep);margin-bottom:0.5rem;
}

/* ---- NEWSLETTER ---- */
.newsletter{
  background:var(--mauve-deeper, var(--mauve-darker));
  color:var(--white);
  text-align:center;
  padding:5rem 2rem;
}
.newsletter h2{color:var(--white);margin-bottom:0.75rem}
.newsletter .eyebrow{color:var(--mauve-light)}
.newsletter p{color:var(--mauve-light);max-width:500px;margin:0 auto 2rem}
.newsletter-form{
  display:flex;gap:0.75rem;justify-content:center;flex-wrap:wrap;
}
.newsletter-form input{
  padding:0.75rem 1.2rem;
  border:1.5px solid var(--mauve-light);border-radius:var(--radius);
  background:rgba(255,255,255,0.1);color:var(--white);
  font-family:var(--sans);font-size:0.9rem;
  width:260px;
}
.newsletter-form input::placeholder{color:var(--mauve-light)}
.newsletter-form button{
  padding:0.75rem 1.6rem;
  background:var(--cream);color:var(--mauve-darker);
  border:none;border-radius:var(--radius);
  font-family:var(--sans);font-size:0.8rem;font-weight:700;
  letter-spacing:0.08em;text-transform:uppercase;cursor:pointer;
  transition:background 0.2s;
}
.newsletter-form button:hover{background:var(--white)}

/* ---- FOOTER ---- */
footer{
  background:var(--ink);
  color:var(--ink-muted);
  text-align:center;
  padding:3rem 2rem;
}
.footer-logo{
  font-family:var(--serif);font-size:1.5rem;font-weight:400;
  color:var(--cream-mid);margin-bottom:1.2rem;letter-spacing:0.04em;
}
.footer-links{
  display:flex;flex-wrap:wrap;gap:0.5rem 1.5rem;
  justify-content:center;list-style:none;
  margin-bottom:1.2rem;
}
.footer-links a{
  font-size:0.75rem;font-weight:500;letter-spacing:0.08em;
  text-transform:uppercase;color:var(--ink-muted);
  transition:color 0.2s;
}
.footer-links a:hover{color:var(--mauve-light)}
.footer-social{display:flex;gap:0.75rem;justify-content:center;margin-bottom:1.2rem}
.footer-social a{
  display:flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:50%;
  border:1px solid rgba(154,128,150,0.3);
  font-size:0.65rem;font-weight:700;letter-spacing:0.05em;
  color:var(--ink-muted);transition:all 0.2s;
}
.footer-social a:hover{border-color:var(--mauve);color:var(--mauve)}
.footer-copy{font-size:0.72rem;color:rgba(154,128,150,0.5)}

/* ---- REVIEW TEAM ---- */
.reviewers-section{max-width:700px;margin:0 auto;padding:5rem 2rem}
.reviewers-section h2{margin-bottom:1.5rem}
.criteria-list{list-style:none;margin-bottom:2rem}
.criteria-list li{
  padding:0.75rem 0;border-bottom:1px solid var(--cream-mid);
  font-size:0.95rem;color:var(--ink-light);
  padding-left:1.5rem;position:relative;
}
.criteria-list li::before{
  content:'✓';position:absolute;left:0;
  color:var(--mauve);font-weight:700;
}

/* ---- CONTACT ---- */
.contact-section{max-width:600px;margin:0 auto;padding:5rem 2rem;text-align:center}
.contact-form{display:flex;flex-direction:column;gap:1rem;text-align:left;margin-top:2rem}
.contact-form input,
.contact-form textarea{
  padding:0.8rem 1rem;
  border:1.5px solid var(--cream-mid);border-radius:var(--radius);
  background:var(--white);font-family:var(--sans);font-size:0.9rem;color:var(--ink);
  transition:border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus{border-color:var(--mauve);outline:none}
.contact-form textarea{min-height:160px;resize:vertical}
.contact-form label{font-size:0.78rem;font-weight:600;letter-spacing:0.06em;color:var(--ink-light)}

/* ---- CHARLIE ---- */
.charlie-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:1.2rem;
  max-width:1100px;margin:0 auto;padding:3rem 2rem;
}
.charlie-photo{
  width:100%;aspect-ratio:1;object-fit:cover;
  border-radius:var(--radius);box-shadow:var(--shadow-sm);
  transition:transform 0.3s;
}
.charlie-photo:hover{transform:scale(1.02)}
.charlie-caption{
  font-family:var(--serif);font-size:0.95rem;font-style:italic;
  text-align:center;margin-top:0.5rem;color:var(--ink-muted);
}

/* ---- ALL BOOKS HUB ---- */
.series-hub{max-width:1100px;margin:0 auto;padding:5rem 2rem}
.series-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:2rem}
.series-card{
  background:var(--white);border-radius:var(--radius);
  box-shadow:var(--shadow-sm);overflow:hidden;
  transition:transform 0.3s,box-shadow 0.3s;text-decoration:none;
  display:flex;flex-direction:column;
}
.series-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.series-card-img{
  width:100%;aspect-ratio:4/3;object-fit:cover;
  background:var(--mauve-pale);
}
.series-card-body{padding:1.2rem}
.series-card-body h3{font-size:1.2rem;margin-bottom:0.4rem;color:var(--ink)}
.series-card-body p{font-size:0.85rem;color:var(--ink-muted);margin:0}

/* ---- DIVIDERS ---- */
.divider{
  width:60px;height:2px;background:var(--mauve-light);
  margin:1.5rem auto;border-radius:2px;
}

/* ---- RESPONSIVE ---- */
@media(max-width:900px){
  nav{padding:0.9rem 1.5rem}
  .nav-links,.nav-cta{display:none}
  .nav-hamburger{display:flex}
  .book-feature{grid-template-columns:1fr;gap:2rem;text-align:center;padding:3rem 1.5rem}
  .book-feature.reverse{direction:ltr}
  .book-feature-cover{max-width:260px;margin:0 auto}
  .book-feature-actions{justify-content:center}
}
@media(max-width:600px){
  section{padding:3.5rem 1.2rem}
  .page-hero{padding:4rem 1.2rem 3rem}
  h1{font-size:2.2rem}
  h2{font-size:1.7rem}
  .book-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem 1rem}
  .charlie-gallery{grid-template-columns:repeat(2,1fr);gap:0.75rem}
}

/* Fix dropdown click area */
.nav-dropdown .dropdown-menu {
  pointer-events: auto;
}
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Print styles */
@media print {
  nav, .mobile-nav, .newsletter, footer, .btn-primary, .btn-secondary { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  h1, h2, h3 { page-break-after: avoid; }
}

/* ============================================================
   MOBILE RESPONSIVE — max-width 768px
   All rules below are mobile-only, desktop unaffected
   ============================================================ */

@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0.9rem 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* HERO SECTIONS — stack vertically */
  section > div[style*="grid-template-columns:1fr 1fr"],
  section > div[style*="grid-template-columns:1fr 1.4fr"],
  section > div[style*="grid-template-columns:1fr 1.5fr"],
  div[style*="grid-template-columns:1fr 1.4fr"],
  div[style*="grid-template-columns:1fr 1.5fr"],
  div[style*="grid-template-columns:460px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  /* Hero images — constrain on mobile */
  div[style*="grid-template-columns:1fr 1.5fr"] img,
  div[style*="grid-template-columns:1fr 1.4fr"] img {
    max-width: 280px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* BOOK GRIDS — 3 col → 2 col on mobile, 1 col on small */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
  }

  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  /* Section banners spanning full grid */
  div[style*="grid-column:1/-1"] {
    grid-column: 1 / -1 !important;
  }

  /* TYPOGRAPHY */
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.5rem !important; }

  /* PADDING — reduce on mobile */
  section { padding: 3rem 1.2rem !important; }
  div[style*="padding:4rem 2rem"],
  div[style*="padding:5rem 2rem"],
  div[style*="padding:3rem 2rem"] {
    padding: 2.5rem 1.2rem !important;
  }

  /* BUTTONS — full width on mobile for easier tapping */
  .book-feature-actions,
  div[style*="display:flex;gap:0.75rem;flex-wrap:wrap"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .btn-primary, .btn-secondary {
    text-align: center !important;
    display: block !important;
  }

  /* ABOUT KIM — image full width */
  div[style*="grid-template-columns:460px"] img {
    max-width: 100% !important;
  }

  /* CHARLIE GALLERY — 2 columns */
  .charlie-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    padding: 1.5rem 1.2rem !important;
  }

  /* BOOK FEATURE — center text when stacked */
  .book-feature {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 3rem 1.2rem !important;
    text-align: center !important;
  }

  .book-feature-cover {
    max-width: 240px !important;
    margin: 0 auto !important;
  }

  .book-feature-actions {
    justify-content: center !important;
  }

  /* TROPES — single card centered */
  section > div[style*="max-width:360px"],
  section > div[style*="max-width:320px"] {
    max-width: 100% !important;
    padding: 2rem 1.2rem !important;
  }

  /* FOOTER */
  .footer-links {
    gap: 0.4rem 1rem !important;
  }

  /* NEWSLETTER */
  .newsletter-form {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .newsletter-form input {
    width: 100% !important;
  }

  /* LOVE INSPIRED — 3 col → 1 col */
  div[style*="grid-template-columns:repeat(3,1fr)"][style*="max-width:900px"] {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  /* ALL BOOKS — 2x2 → 1 col */
  div[style*="max-width:800px"] > div[style*="repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  /* CUPIDS — 3+2 → all 1 col */
  div[style*="max-width:1100px"] div[style*="repeat(3,1fr)"],
  div[style*="max-width:1100px"] div[style*="repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  /* HOUSE OF HADES — images full width */
  .book-feature-cover[style*="max-width:460px"] {
    max-width: 280px !important;
  }

  /* BONUS PAGE — password input */
  .bonus-password {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .bonus-password input { width: 100% !important; }

  /* CONTACT FORM — name fields stack */
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

}

/* Extra small screens */
@media (max-width: 480px) {
  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .charlie-gallery {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .contact-social-buttons {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .contact-social-buttons a {
    text-align: center !important;
    justify-content: center !important;
  }
}
