/* ===== DESIGN TOKENS ===== */
:root {
  --gold:        #C09A3A;
  --gold-light:  #D4B870;
  --gold-dark:   #8A6B1E;
  --teal:        #1A7A87;
  --teal-deep:   #0E5E6A;
  --teal-mist:   rgba(26,122,135,0.09);
  --navy:        #661C5D;
  --cream:       #F9F6F0;
  --white:       #FFFFFF;
  --text-body:   #2E3A4A;
  --text-light:  #6B7B8A;
  --border:      rgba(192,154,58,0.25);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.75;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.brand { display:flex; align-items:center; gap:16px; text-decoration:none; }
.brand img { height:56px; width:auto; }
.brand-text { display:flex; flex-direction:column; }
.brand-name { font-family:'Cinzel',serif; font-size:15px; letter-spacing:0.1em; color:var(--navy); line-height:1.2; }
.brand-sub { font-family:'Lato',sans-serif; font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold-dark); margin-top:3px; }
nav { display:flex; gap:32px; align-items:center; }
nav a { font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.1em; color:var(--navy); text-decoration:none; text-transform:uppercase; transition:color 0.2s; }
nav a:hover, nav a.active { color:var(--teal); }
.nav-cta { background:var(--teal)!important; color:var(--white)!important; padding:10px 20px; border-radius:2px; }
.nav-cta:hover { background:var(--teal-deep)!important; }

/* ===== COLOUR BAR ===== */
.colour-bar { height:4px; background:linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--teal), var(--navy)); }

/* ===== BUTTONS ===== */
.btn-primary {
  display:inline-block; background:var(--teal); color:var(--white);
  font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.15em; text-transform:uppercase;
  padding:14px 32px; text-decoration:none; border-radius:2px; transition:background 0.2s;
}
.btn-primary:hover { background:var(--teal-deep); }
.btn-ghost {
  display:inline-block; color:var(--navy);
  font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.15em; text-transform:uppercase;
  padding:14px 32px; text-decoration:none; border:1px solid var(--border); border-radius:2px; transition:all 0.2s;
}
.btn-ghost:hover { border-color:var(--teal); color:var(--teal); }
.btn-gold {
  display:inline-block; background:var(--gold); color:var(--white);
  font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.15em; text-transform:uppercase;
  padding:14px 32px; text-decoration:none; border-radius:2px; transition:background 0.2s;
}
.btn-gold:hover { background:var(--gold-dark); }

/* ===== HERO ===== */
.hero {
  background:var(--cream); padding:96px 64px;
  display:flex; align-items:center; gap:80px;
}
.hero-text { flex:1; }
.eyebrow { font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:18px; }
.hero h1 { font-family:'Cormorant Garamond',serif; font-size:56px; font-weight:300; line-height:1.15; color:var(--navy); margin-bottom:24px; }
.hero h1 em { font-style:italic; color:var(--teal); }
.hero-body { font-size:17px; line-height:1.85; color:var(--text-body); max-width:520px; margin-bottom:36px; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; }
.hero-visual {
  flex:0 0 360px; height:440px;
  background:linear-gradient(160deg, #E8E2D5 0%, #CEC8BB 100%);
  border-radius:4px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; position:relative;
}
.hero-visual img { width:100%; height:100%; object-fit:cover; }
.hero-visual-placeholder { text-align:center; padding:24px; }
.hero-visual-placeholder p { font-family:'Cormorant Garamond',serif; font-size:15px; font-style:italic; color:var(--gold-dark); opacity:0.6; line-height:1.6; }

/* ===== SECTION COMMON ===== */
.section { padding:80px 64px; }
.section-label { font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:12px; }
.section-title { font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:300; color:var(--navy); margin-bottom:12px; line-height:1.2; }
.divider { width:60px; height:2px; background:linear-gradient(90deg,var(--gold),var(--teal)); margin:16px 0 28px; }
.section-intro { font-size:16px; line-height:1.85; color:var(--text-body); max-width:680px; margin-bottom:48px; }

/* ===== BOOKS GRID ===== */
.books-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.book-card {
  background:var(--teal-mist); border:1px solid var(--border); border-radius:4px;
  overflow:hidden; transition:box-shadow 0.25s, transform 0.25s; display:flex; flex-direction:column;
}
.book-card:hover { box-shadow:0 8px 28px rgba(26,122,135,0.13); transform:translateY(-3px); }
.book-cover { position:relative; overflow:hidden; aspect-ratio:3/4; background:#DDD8CE; }
.book-cover img { width:100%; height:100%; object-fit:cover; display:block; }
.book-cover-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; padding:24px; text-align:center; }
.book-cover-placeholder span { font-family:'Cormorant Garamond',serif; font-size:13px; font-style:italic; color:var(--gold-dark); opacity:0.55; }
.book-num { position:absolute; top:10px; left:10px; font-family:'Cinzel',serif; font-size:9px; letter-spacing:0.15em; color:var(--gold-dark); background:rgba(255,255,255,0.9); padding:4px 8px; border-radius:2px; }
.book-info { padding:18px; flex:1; display:flex; flex-direction:column; }
.book-title { font-family:'Cormorant Garamond',serif; font-size:16px; font-weight:600; color:var(--navy); line-height:1.3; margin-bottom:8px; }
.book-tagline { font-size:12px; color:var(--text-light); line-height:1.55; margin-bottom:16px; flex:1; }
.book-actions { display:flex; gap:8px; flex-wrap:wrap; }
.book-actions a { font-family:'Cinzel',serif; font-size:9px; letter-spacing:0.1em; text-transform:uppercase; padding:7px 12px; border-radius:2px; text-decoration:none; transition:background 0.2s; }
.btn-details { background:transparent; border:1px solid var(--teal); color:var(--teal); }
.btn-details:hover { background:var(--teal); color:var(--white); }
.btn-buy { background:var(--gold); color:var(--white); }
.btn-buy:hover { background:var(--gold-dark); }

/* ===== MISSION STRIP ===== */
.mission-strip { background:var(--navy); padding:72px 64px; display:flex; gap:64px; align-items:flex-start; }
.mission-logo { flex:0 0 100px; }
.mission-logo img { width:90px; opacity:0.92; }
.mission-text { flex:1; }
.mission-eyebrow { font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:14px; }
.mission-title { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:300; color:var(--white); line-height:1.25; margin-bottom:18px; }
.mission-body { font-size:16px; line-height:1.85; color:rgba(255,255,255,0.70); max-width:600px; }

/* ===== FOOTER ===== */
.site-footer { background:#3F1140; padding:26px 64px; border-top:1px solid rgba(192,154,58,0.14); }
.footer-inner { display:flex; justify-content:space-between; align-items:flex-start; }
.footer-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:18px; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,0.07); }
.footer-brand { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:300; color:var(--white); }
.footer-brand span { color:var(--gold); }
.footer-brand p { font-size:12px; color:rgba(255,255,255,0.35); font-family:'Lato',sans-serif; margin-top:6px; letter-spacing:0.05em; }
.footer-nav { display:flex; gap:24px; flex-wrap:wrap; align-items:center; }
.footer-nav a { font-family:'Cinzel',serif; font-size:10px; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.4); text-decoration:none; transition:color 0.2s; }
.footer-nav a:hover { color:var(--gold); }
.footer-links-right { display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; }
.footer-copy { font-size:11px; color:rgba(255,255,255,0.25); }
.footer-link-iamown { font-family:'Cinzel',serif; font-size:10px; letter-spacing:0.15em; color:var(--teal); text-decoration:none; }
.footer-link-iamown:hover { color:var(--gold); }
.footer-utility-strip { background:#1a2e1a; padding:14px 64px; text-align:center; font-family:'Cinzel',serif; font-size:10px; letter-spacing:0.15em; color:rgba(255,255,255,0.35); }
.footer-utility-strip a { color:rgba(255,255,255,0.40); text-decoration:none; transition:color 0.2s; text-transform:uppercase; }
.footer-utility-strip a:hover { color:var(--gold); }
.footer-copyright { background:#111f11; padding:10px 64px; text-align:center; font-size:11px; color:rgba(255,255,255,0.25); }

/* ===== INNER PAGES — PAGE HERO ===== */
.page-hero { background:var(--cream); padding:64px 64px 48px; border-bottom:1px solid var(--border); }
.page-hero h1 { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:300; color:var(--navy); line-height:1.2; margin-bottom:12px; }
.page-hero p { font-size:17px; color:var(--text-light); max-width:600px; line-height:1.8; }

/* ===== BOOK DETAIL PAGE ===== */
.book-detail { padding:64px; display:flex; gap:64px; align-items:flex-start; }
.book-detail-cover { flex:0 0 280px; }
.book-detail-cover img { width:100%; border-radius:4px; box-shadow:0 12px 40px rgba(0,0,0,0.18); }
.book-detail-cover-placeholder { width:280px; aspect-ratio:3/4; background:var(--teal-mist); border:1px solid var(--border); border-radius:4px; display:flex; align-items:center; justify-content:center; }
.book-detail-content { flex:1; }
.book-detail-memra { font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.25em; color:var(--gold-dark); margin-bottom:12px; text-transform:uppercase; }
.book-detail-title { font-family:'Cormorant Garamond',serif; font-size:42px; font-weight:300; color:var(--navy); line-height:1.2; margin-bottom:8px; }
.book-detail-tagline { font-size:18px; color:var(--teal); font-family:'Cormorant Garamond',serif; font-style:italic; margin-bottom:24px; line-height:1.5; }
.book-divider { width:60px; height:2px; background:linear-gradient(90deg,var(--gold),var(--teal)); margin-bottom:24px; }
.book-detail-desc { font-size:16px; line-height:1.9; color:var(--text-body); margin-bottom:32px; }
.buy-buttons { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:32px; }
.buy-btn { display:inline-flex; align-items:center; gap:8px; font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.12em; text-transform:uppercase; padding:14px 24px; text-decoration:none; border-radius:2px; transition:background 0.2s; }
.buy-btn-amazon { background:var(--teal); color:var(--white); }
.buy-btn-amazon:hover { background:var(--teal-deep); }
.buy-btn-bookvault { background:var(--gold); color:var(--white); }
.buy-btn-bookvault:hover { background:var(--gold-dark); }
.buy-note { font-size:12px; color:var(--text-light); }
.back-link { font-family:'Cinzel',serif; font-size:10px; letter-spacing:0.15em; color:var(--teal); text-decoration:none; text-transform:uppercase; display:inline-flex; align-items:center; gap:6px; }
.back-link:hover { color:var(--gold); }

/* ===== ABOUT / CONTACT / ORDER PAGES ===== */
.prose-section { padding:64px; max-width:820px; }
.prose-section h2 { font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:300; color:var(--navy); margin:40px 0 12px; line-height:1.3; }
.prose-section h2:first-child { margin-top:0; }
.prose-section p { font-size:16px; line-height:1.9; color:var(--text-body); margin-bottom:18px; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width:560px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-family:'Cinzel',serif; font-size:10px; letter-spacing:0.15em; text-transform:uppercase; color:var(--navy); margin-bottom:8px; }
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:12px 16px; border:1px solid var(--border);
  background:var(--cream); font-family:'Lato',sans-serif; font-size:15px; font-weight:300;
  color:var(--text-body); border-radius:2px; outline:none; transition:border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color:var(--teal); }
.form-group textarea { height:140px; resize:vertical; }
.btn-submit {
  background:var(--teal); color:var(--white); border:none; cursor:pointer;
  font-family:'Cinzel',serif; font-size:11px; letter-spacing:0.15em; text-transform:uppercase;
  padding:14px 36px; border-radius:2px; transition:background 0.2s;
}
.btn-submit:hover { background:var(--teal-deep); }

/* ===== HOW TO ORDER ===== */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:40px; }
.step { background:var(--teal-mist); border:1px solid var(--border); border-radius:4px; padding:32px; }
.step-num { font-family:'Cinzel',serif; font-size:28px; color:var(--gold-dark); margin-bottom:12px; }
.step h3 { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:600; color:var(--navy); margin-bottom:10px; }
.step p { font-size:14px; line-height:1.8; color:var(--text-body); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .site-header { padding:0 32px; }
  .hero { padding:72px 32px; gap:40px; }
  .hero-visual { flex:0 0 280px; height:360px; }
  .books-grid { grid-template-columns:repeat(3,1fr); }
  .section { padding:64px 32px; }
  .mission-strip { padding:56px 32px; }
  .site-footer { padding:40px 32px; }
  .book-detail { padding:48px 32px; }
  .prose-section { padding:48px 32px; }
}
@media (max-width: 768px) {
  .site-header { padding:0 20px; height:72px; }
  nav { display:none; }
  .hero { flex-direction:column; padding:48px 20px; }
  .hero-visual { width:100%; flex:none; height:280px; }
  .hero h1 { font-size:40px; }
  .books-grid { grid-template-columns:repeat(2,1fr); }
  .section { padding:48px 20px; }
  .mission-strip { flex-direction:column; padding:48px 20px; gap:32px; }
  .steps { grid-template-columns:1fr; }
  .book-detail { flex-direction:column; padding:32px 20px; }
  .book-detail-cover { width:100%; max-width:240px; flex:none; }
  .footer-top { flex-direction:column; gap:24px; }
  .site-footer { padding:32px 20px; }
  .prose-section { padding:32px 20px; }
}


/* ===== EDITORIAL BOOK CARDS ===== */
.series-section {
  padding: 72px 64px;
  border-top: 1px solid var(--border);
}
.series-section:first-of-type { border-top: none; }
.series-section.alt { background: var(--cream); }

.series-header { margin-bottom: 40px; }
.series-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.series-desc {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  max-width: 560px;
  line-height: 1.65;
}

/* Book grid (replaces carousel) */
.book-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 4px;
}

/* Carousel shell (kept for reference) */
.book-rail-wrap { position: relative; }
.book-rail { display: flex; gap: 28px; overflow: hidden; }
.book-rail-track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual card */
.memra-card {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.memra-cover-wrap {
  position: relative;
  width: 160px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.22));
  transition: filter 0.3s, transform 0.3s;
}
.memra-cover-wrap:hover {
  filter: drop-shadow(0 14px 32px rgba(0,0,0,0.32));
  transform: translateY(-4px);
}
.memra-cover-wrap a { display: block; }
.memra-cover-wrap img {
  width: 160px;
  display: block;
  border-radius: 2px 4px 4px 2px;
}
/* Elegant placeholder — looks like a real blank book cover */
.memra-cover-ph {
  width: 160px;
  height: 220px;
  background: linear-gradient(160deg, #F7F3EC 0%, #EDE7DC 100%);
  border-radius: 2px 4px 4px 2px;
  border-left: 5px solid var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  text-align: center;
}
.memra-cover-ph .ph-imprint {
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.memra-cover-ph .ph-symbol {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.7;
}
.memra-cover-ph .ph-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.memra-cover-ph .ph-num {
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 14px;
  text-transform: uppercase;
}

.memra-meta { padding: 0; text-align: center; display: flex; flex-direction: column; flex: 1; }
.memra-num-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.memra-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}
.memra-title:hover { color: var(--teal); }
.memra-line {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 16px;
  min-height: 36px;
}
.memra-actions { display: flex; flex-direction: column; gap: 7px; align-items: center; margin-top: auto; }
.btn-magnetise {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: var(--teal);
  color: var(--white);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-magnetise:hover { background: var(--teal-deep); }
.btn-learn {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
  padding-bottom: 1px;
}
.btn-learn:hover { color: var(--teal); border-bottom-color: var(--teal); }

/* Rail nav arrows */
.rail-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  justify-content: flex-end;
}
.rail-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.rail-arrow:hover:not(:disabled) { background: var(--teal); color: var(--white); border-color: var(--teal); }
.rail-arrow:disabled { opacity: 0.28; cursor: default; }
.rail-dots { display: flex; gap: 0; align-items: center; margin: 0 4px; }
.rail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); border: none; padding: 9px; box-sizing: content-box; background-clip: content-box; cursor: pointer; transition: background 0.2s; }
.rail-dot.on { background: var(--teal); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .series-section { padding: 56px 32px; }
  .memra-card { flex: 0 0 170px; }
  .memra-cover-wrap, .memra-cover-wrap img, .memra-cover-ph { width: 136px; }
}
@media (max-width: 640px) {
  .series-section { padding: 40px 20px; }
  .memra-card { flex: 0 0 150px; }
  .memra-cover-wrap, .memra-cover-wrap img, .memra-cover-ph { width: 120px; }
  .memra-cover-ph { height: 168px; }
}


/* ===== VIBRANCY ADDITIONS ===== */

/* Richer hero */
.hero {
  background: linear-gradient(135deg, #F4EFE6 0%, #EDE5D8 60%, #E0D8C8 100%);
  padding: 96px 64px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,154,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-visual {
  background: linear-gradient(160deg, #2A6B75 0%, #1A5560 40%, #0E3D45 100%);
  position: relative;
  overflow: hidden;
}
.hero-visual img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-visual-placeholder {
  padding: 40px;
  text-align: center;
}
.hero-visual-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Opening statement */
.opening-statement {
  background: var(--white);
  padding: 80px 120px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.opening-statement::before {
  content: '✦';
  display: block;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.3em;
}
.opening-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 28px;
}
.opening-quote em { color: var(--teal); font-style: normal; }
.opening-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 28px;
}

/* ── Three Fields Section ────────────────────── */
.three-fields { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 120px; }
.three-fields-inner { max-width: 760px; margin: 0 auto; }
.three-fields-eyebrow { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: block; text-align: center; margin-bottom: 32px; }
.three-fields-title { font-family: 'Cinzel', serif; font-size: 18px; color: var(--navy); text-align: center; margin: 0 0 40px; font-weight: 400; letter-spacing: 0.04em; }
.three-fields p { font-family: 'Cormorant Garamond', serif; font-size: 18px; line-height: 1.8; color: var(--text-body); margin: 0 0 1.4em; }
.three-fields p:last-child { margin-bottom: 0; font-style: italic; color: var(--navy); }

/* Benediction */
.benediction {
  background: linear-gradient(160deg, #0D1A2E 0%, #661C5D 50%, #0E2233 100%);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}
.benediction::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(192,154,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.benediction::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,135,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.benediction-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.benediction-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.benediction-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 48px;
  display: block;
}
.benediction-poem {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 2;
  margin-bottom: 48px;
}
.benediction-poem strong {
  font-style: normal;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  margin-top: 8px;
}
.benediction-body {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255,255,255,0.62);
  max-width: 640px;
  margin: 0 auto 40px;
}
.benediction-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 40px;
  line-height: 1.8;
}
.benediction-seal {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  font-family: 'Cinzel', serif;
  margin-top: 32px;
}
.bene-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  margin: 32px auto;
}

/* Series sections — richer */
.series-section {
  padding: 72px 64px;
  border-top: 1px solid var(--border);
}
.series-section.alt {
  background: linear-gradient(180deg, #F7F3EC 0%, #F0EAE0 100%);
}
.series-name {
  background: linear-gradient(90deg, var(--navy), var(--teal-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Richer book cards */
.memra-cover-wrap {
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.28));
}
.memra-cover-wrap:hover {
  filter: drop-shadow(0 16px 36px rgba(26,122,135,0.35));
}
.btn-magnetise {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  box-shadow: 0 4px 16px rgba(26,122,135,0.3);
}
.btn-magnetise:hover {
  box-shadow: 0 6px 20px rgba(26,122,135,0.45);
  transform: translateY(-1px);
}

/* Colour-coded series badges */
.series-badge {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* Mission strip — richer */
.mission-strip {
  background: linear-gradient(135deg, #661C5D 0%, #0E1A2E 60%, #1A3A3A 100%);
  position: relative;
  overflow: hidden;
}
.mission-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,154,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .opening-statement { padding: 56px 24px; }
  .opening-quote { font-size: 22px; }
  .benediction { padding: 64px 24px; }
  .benediction-poem { font-size: 18px; }
}

/* ─── BENEDICTION BANNER STRIP ─────────────────────────────────────────── */
.bene-banner {
  background: var(--navy);
  text-align: center;
  padding: 15px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 1px solid rgba(192,154,58,0.18);
}
.bene-banner .bene-banner-mark {
  color: var(--gold);
  font-style: normal;
  margin: 0 12px;
  font-size: 13px;
}

/* ===== COHERENCE & BREATHING FIX ======================================== */

/* 1 · BANNER — gold-bordered, cream, no dark wall */
.bene-banner {
  background: var(--cream) !important;
  border-top: 2px solid var(--gold) !important;
  border-bottom: 2px solid var(--gold) !important;
  color: var(--navy) !important;
  padding: 13px 40px !important;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.bene-banner .bene-banner-mark {
  color: var(--gold) !important;
  font-size: 11px;
  opacity: 0.8;
}

/* 2 · HERO — tighten vertical breathing */
.hero { padding: 60px 64px !important; }

/* 3 · OPENING STATEMENT — reduce the chasm */
.opening-statement { padding: 50px 100px !important; }

/* 4 · BENEDICTION — not a full wall; smaller padding, inset feel */
.benediction { padding: 56px 80px !important; }
.benediction-inner { max-width: 760px; }

/* 5 · SERIES SECTIONS — reduce padding, remove colour-block alternating */
.series-section {
  padding: 44px 64px !important;
}
.series-section.alt {
  background: var(--white) !important;   /* same as plain sections — no colour blocks */
}

/* 6 · MISSION STRIP — less imposing */
.mission-strip { padding: 52px 64px !important; }

/* 7 · PAGE HERO (Books page etc) — tighter */
.page-hero { padding: 48px 64px 36px !important; }

/* 8 · ORNAMENTAL BRIDGE — thin gold rule with centred mark between sections */
.section-bridge {
  display: block;
  text-align: center;
  padding: 6px 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.6em;
  opacity: 0.55;
  border: none;
  background: none;
}

/* 9 · RESPONSIVE tightening */
@media (max-width: 1024px) {
  .hero              { padding: 48px 32px !important; }
  .opening-statement { padding: 40px 48px !important; }
  .benediction       { padding: 44px 32px !important; }
  .series-section    { padding: 36px 32px !important; }
  .mission-strip     { padding: 44px 32px !important; }
  .page-hero         { padding: 40px 32px 28px !important; }
}
@media (max-width: 768px) {
  .hero              { padding: 36px 20px !important; }
  .opening-statement { padding: 32px 24px !important; }
  .benediction       { padding: 36px 20px !important; }
  .series-section    { padding: 28px 20px !important; }
  .mission-strip     { padding: 32px 20px !important; }
  .page-hero         { padding: 32px 20px 24px !important; }
}


/* ===== CONTAINED COLUMN LAYOUT — like EGA site ========================= */
/* The entire site sits as a centred column; warm parchment either side    */

html {
  background: #E4DFD6;   /* warm parchment — the "margins" of the page */
}
body {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 80px rgba(26,35,64,0.10), 0 0 24px rgba(0,0,0,0.05);
}

/* Header already sticky — stays within the column, which is correct */
/* Colour bar at top also stays within column — consistent */

/* On very wide screens, centre the site-header text properly */
.site-header { max-width: 100%; }

/* Remove the side-padding on full-bleed sections now that the column IS the constraint */
@media (min-width: 1280px) {
  .hero              { padding-left: 80px;  padding-right: 80px;  }
  .opening-statement { padding-left: 120px; padding-right: 120px; }
  .benediction       { padding-left: 100px; padding-right: 100px; }
  .series-section    { padding-left: 72px;  padding-right: 72px;  }
  .mission-strip     { padding-left: 80px;  padding-right: 80px;  }
  .site-footer       { padding-left: 80px;  padding-right: 80px;  }
  .page-hero         { padding-left: 72px;  padding-right: 72px;  }
}

/* ===== MOBILE HAMBURGER NAV ============================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-cta-mobile {
  margin-top: 16px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(192,154,58,0.4);
  padding: 14px 32px;
  border-radius: 2px;
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { display: none !important; }
}

/* ===== MOBILE POLISH ===================================================== */

/* Banner: shorter text on small screens */
@media (max-width: 768px) {
  .bene-banner {
    font-size: 13px !important;
    padding: 10px 16px !important;
    line-height: 1.6;
  }
  .bene-banner .bene-banner-mark { margin: 0 6px; }
  /* Hide the "Publisher's Benediction" label on very small screens */
  .bene-banner span[style*="Cinzel"] { display: none; }

  /* Hero: single column, text centred */
  .hero { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-body { max-width: 100%; }

  /* Opening statement */
  .opening-quote { font-size: 20px !important; }

  /* Book cards on mobile rail: slightly narrower */
  .memra-card { flex: 0 0 140px !important; }
  .memra-cover-wrap,
  .memra-cover-wrap img,
  .memra-cover-ph { width: 112px !important; }
  .memra-cover-ph { height: 156px !important; }

  /* Series sections: remove the left-border indent on tiny screens */
  .series-section[style*="border-left"] {
    border-left: none !important;
    padding-left: 20px !important;
    border-top: 3px solid currentColor;
  }

  /* Book detail pages: full-width cover */
  .book-detail-cover { width: 100% !important; max-width: 200px; margin: 0 auto 24px; }

  /* Mission strip: smaller logo */
  .mission-logo img { width: 64px; }
  .mission-title { font-size: 26px !important; }
}

/* Hamburger: use gold on the mobile nav overlay */
@media (max-width: 768px) {
  /* Keep body from being wider than the viewport */
  body { max-width: 100% !important; box-shadow: none !important; }
  html { background: var(--white) !important; }
}

/* Tablet: show warm margins still but adjust */
@media (min-width: 769px) and (max-width: 1024px) {
  body { max-width: 100%; box-shadow: none; }
  html { background: #E4DFD6; }
}

/* ===== REMOVE DARK INDIGO — light benediction + mission ================= */

/* Benediction: warm cream instead of dark navy */
.benediction {
  background: linear-gradient(160deg, #FAF7F1 0%, #F4EEE4 100%) !important;
  border-top: 2px solid var(--gold) !important;
  border-bottom: 2px solid var(--gold) !important;
}
.benediction::before,
.benediction::after { display: none !important; }

.benediction-label  { color: var(--gold-dark) !important; }
.benediction-title  { color: var(--teal-deep) !important; letter-spacing: 0.2em; }
.benediction-poem   { color: var(--navy) !important; }
.benediction-poem strong { color: var(--teal) !important; }
.benediction-body   { color: var(--text-body) !important; }
.benediction-close  { color: var(--teal-deep) !important; }
.benediction-seal   { color: var(--text-light) !important; }

/* Bene divider: gold line */
.bene-divider {
  border-color: var(--gold) !important;
  opacity: 0.35 !important;
}

/* Mission strip: warm cream, no navy */
.mission-strip {
  background: var(--cream) !important;
  border-top: 1px solid var(--border) !important;
}
.mission-strip::before { display: none !important; }
.mission-eyebrow { color: var(--gold-dark) !important; }
.mission-title   { color: var(--navy) !important; }
.mission-body    { color: var(--text-body) !important; }

/* Mobile nav: deep teal instead of navy — warmer */
.mobile-nav { background: var(--teal-deep) !important; }
.mobile-nav a { color: var(--cream) !important; }
.mobile-nav a:hover { color: var(--gold-light) !important; }
.mobile-nav-close { color: var(--gold-light) !important; }


/* ===== PALE TEAL BACKGROUND ============================================= */
html {
  background: #D8EBEE !important;   /* pale teal — serene, spiritual */
}
/* On mobile keep it clean white */
@media (max-width: 768px) {
  html { background: var(--white) !important; }
}

/* ── Podcast Player Strip ───────────────────────────────────────────────── */
.podcast-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}
.podcast-inner {
  max-width: 620px;
  margin: 0 auto;
}
.podcast-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.podcast-strip audio {
  width: 100%;
  max-width: 560px;
  accent-color: var(--navy);
  border-radius: 4px;
}
.podcast-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-light);
  margin-top: 12px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .podcast-strip { padding: 28px 16px; }
}

/* ── Free PDF button (book pages) ──────────────�