/* ==========================================================
   CHRISTMAS DAY TRUCE — christmasdaytruce.com
   Shared stylesheet for all pages
   ========================================================== */

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

:root {
  --khaki:       #8B7355;
  --deep-green:  #2C3B2D;
  --trench-mud:  #4A3728;
  --aged-paper:  #F5EDD9;
  --cream:       #FAF6EE;
  --sepia-dark:  #1C1410;
  --blood-red:   #8B1A1A;
  --gold:        #C9A84C;
  --mist:        #D4CFC6;
  --white:       #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--sepia-dark);
  color: var(--aged-paper);
  font-family: 'Crimson Text', Georgia, serif;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--gold); }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(28, 20, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  animation: fadeDown 0.8s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--blood-red);
  color: var(--aged-paper) !important;
  padding: 8px 20px;
  border: 1px solid rgba(139,26,26,0.5);
  transition: background 0.3s !important;
}
.nav-cta:hover { background: #a82020 !important; }

/* mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 8px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ── HERO (homepage) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,20,16,0.6) 0%, rgba(28,20,16,0.3) 40%, rgba(28,20,16,0.75) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  filter: sepia(60%) brightness(0.55);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, transparent 30%, rgba(28,20,16,0.7) 100%);
}

.hero-date {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: riseUp 1s 0.3s ease both;
}

.hero-date::before, .hero-date::after {
  content: '——';
  margin: 0 12px;
  opacity: 0.6;
}

@keyframes riseUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--aged-paper);
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  animation: riseUp 1s 0.5s ease both;
  max-width: 900px;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  position: relative;
  font-family: 'Crimson Text', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--mist);
  margin-top: 24px;
  max-width: 620px;
  line-height: 1.6;
  animation: riseUp 1s 0.7s ease both;
}

.hero-actions {
  position: relative;
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
  animation: riseUp 1s 0.9s ease both;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 180px 24px 100px;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(28,20,16,0.75) 0%, var(--sepia-dark) 100%),
    linear-gradient(135deg, #2a1e16 0%, var(--sepia-dark) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.page-hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-hero-eyebrow::before, .page-hero-eyebrow::after {
  content: '——';
  margin: 0 12px;
  opacity: 0.6;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--aged-paper);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 em { color: var(--gold); font-style: italic; }

.page-hero p {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--mist);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blood-red);
  color: var(--aged-paper);
  padding: 16px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(139,26,26,0.7);
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  background: #a82020;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,26,26,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--aged-paper);
  padding: 15px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,237,217,0.4);
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── STAR RATING STRIP ── */
.rating-strip {
  background: var(--deep-green);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  flex-wrap: wrap;
}

.rating-item { display: flex; align-items: center; gap: 12px; }

.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }

.rating-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

.rating-text strong { color: var(--gold); font-size: 1.1rem; }

.divider-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── SECTIONS ── */
section { padding: 100px 24px; }

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--aged-paper);
  margin-bottom: 24px;
}

.section-title em { color: var(--gold); font-style: italic; }

.section-body {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--mist);
  max-width: 680px;
}

/* ── ABOUT SECTION ── */
.about { background: var(--trench-mud); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.book-cover-wrap { position: relative; }

.book-cover-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}

.book-cover {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.6), -4px -4px 20px rgba(201,168,76,0.05);
  transition: transform 0.4s ease;
}

.book-cover:hover { transform: rotate(-1deg) scale(1.02); }

/* ── QUOTE SECTION ── */
.quotes { background: var(--sepia-dark); }

.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.quote-card {
  background: rgba(44,59,45,0.3);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}

.quote-card:hover { background: rgba(44,59,45,0.5); }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}

.quote-text {
  font-family: 'Crimson Text', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--aged-paper);
  margin-bottom: 24px;
}

.quote-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }

.quote-source {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--khaki);
}

/* ── EXCERPT ── */
.excerpt {
  background: linear-gradient(135deg, var(--trench-mud) 0%, #2a1e16 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.excerpt-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.excerpt-text {
  font-family: 'Crimson Text', serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--aged-paper);
  margin: 40px 0;
  position: relative;
  padding: 0 40px;
}

.excerpt-text::before, .excerpt-text::after {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  line-height: 1;
}

.excerpt-text::before { top: -10px; left: 0; }
.excerpt-text::after  { bottom: -30px; right: 0; }

/* ── HISTORY STRIP ── */
.history { background: var(--deep-green); }

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  margin-top: 60px;
}

.history-card {
  background: var(--deep-green);
  padding: 48px 36px;
  transition: background 0.3s;
}

.history-card:hover { background: rgba(44,59,45,0.8); }

.history-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.history-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--aged-paper);
  margin-bottom: 12px;
}

.history-body { font-size: 1rem; line-height: 1.7; color: var(--mist); }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--sepia-dark);
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.newsletter-inner { max-width: 600px; margin: 0 auto; }

.newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  color: var(--aged-paper);
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  outline: none;
}

.newsletter-input::placeholder { color: rgba(212,207,198,0.4); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }

.newsletter-btn {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--sepia-dark);
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-btn:hover { background: #d9b85c; }

.newsletter-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--khaki);
  font-style: italic;
}

/* ── AUTHOR SECTION ── */
.author {
  background: var(--sepia-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.author-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #3a2a1e 0%, #1a1208 100%);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.6);
  filter: sepia(15%);
  overflow: hidden;
}

.author-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.author-portrait::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
}

.author-portrait p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1.8;
}

.author-body p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--mist);
  margin-bottom: 22px;
}

.author-body p strong { color: var(--aged-paper); font-weight: 600; }

.author-signature {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,0.2);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}

.author-signature small {
  display: block;
  margin-top: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--khaki);
}

/* ── FAQ ── */
.faq { background: var(--trench-mud); }

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.faq-header .section-label { justify-content: center; }

.faq-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--mist);
  font-style: italic;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.15);
}

.faq-item { background: var(--trench-mud); transition: background 0.3s; }

.faq-item[open] { background: rgba(44,59,45,0.35); }

.faq-item summary {
  padding: 28px 32px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--aged-paper);
  list-style: none;
  position: relative;
  padding-right: 60px;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 32px 28px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mist);
}

.faq-answer p { margin-bottom: 16px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── TRUE STORIES ── */
.stories {
  background: linear-gradient(180deg, var(--sepia-dark) 0%, #14100c 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.stories-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.stories-header .section-label { justify-content: center; }

.stories-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--mist);
  font-style: italic;
}

.stories-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
  max-width: 980px;
  margin: 0 auto;
}

.story-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.story-card:last-child { border-bottom: none; padding-bottom: 0; }

.story-meta { position: sticky; top: 100px; }

.story-meta-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--aged-paper);
  line-height: 1.2;
  margin-bottom: 8px;
}

.story-meta-rank {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.story-meta-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
  opacity: 0.5;
}

.story-meta-detail {
  font-family: 'Crimson Text', serif;
  font-size: 0.9rem;
  color: var(--khaki);
  line-height: 1.7;
  font-style: italic;
}

.story-meta-detail strong {
  color: var(--mist);
  font-style: normal;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 2px;
}

.story-body p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--mist);
  margin-bottom: 20px;
}

.story-body p strong { color: var(--aged-paper); font-weight: 600; }

.story-quote {
  margin: 28px 0;
  padding: 24px 28px 24px 32px;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.05);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--aged-paper);
  position: relative;
}

.story-quote::before {
  content: '"';
  position: absolute;
  top: -4px;
  left: 10px;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.story-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--khaki);
}

/* ── CHILDREN'S BOOKS ── */
.childrens {
  background: #1a2420;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.childrens-inner { display: flex; align-items: center; gap: 60px; }

.childrens-text { flex: 1; }

.childrens-badge {
  background: var(--gold);
  color: var(--sepia-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.childrens-placeholder {
  flex: 0 0 300px;
  height: 360px;
  background: rgba(201,168,76,0.08);
  border: 1px dashed rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.childrens-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

/* ── CONTACT ── */
.contact-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 48px;
  background: rgba(44,59,45,0.3);
  border: 1px solid rgba(201,168,76,0.2);
}

.contact-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--mist);
  margin-bottom: 28px;
}

.contact-email {
  display: inline-block;
  padding: 20px 36px;
  border: 1px solid var(--gold);
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}

.contact-email:hover {
  background: var(--gold);
  color: var(--sepia-dark);
}

.contact-socials {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-socials a {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  font-family: monospace;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}

.contact-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* ── HISTORY PAGE ── */
.history-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.history-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--aged-paper);
  margin-top: 56px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.history-article h2:first-child { margin-top: 0; }

.history-article p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--mist);
  margin-bottom: 22px;
}

.history-article p strong { color: var(--aged-paper); font-weight: 600; }

.history-article blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.05);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--aged-paper);
}

.history-article blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--khaki);
}

/* ── FOOTER ── */
footer {
  background: #0f0c09;
  padding: 60px 48px 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--khaki);
  max-width: 320px;
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--khaki);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--aged-paper); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
  font-family: monospace;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(212,207,198,0.3);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.08em;
}

/* ── 404 PAGE ── */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.error-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}

.error-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--aged-paper);
  margin: 20px 0 16px;
}

.error-page p {
  font-family: 'Crimson Text', serif;
  font-size: 1.15rem;
  color: var(--mist);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 500px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(28,20,16,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .about-grid, .childrens-inner, .author-grid { grid-template-columns: 1fr; gap: 40px; }
  .quotes-grid, .history-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .rating-strip { gap: 20px; }
  section { padding: 70px 20px; }
  .faq-item summary { padding: 22px 20px; padding-right: 50px; font-size: 1rem; }
  .faq-item summary::after { right: 20px; }
  .faq-answer { padding: 0 20px 22px; }
  .story-card { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .story-meta { position: static; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(201,168,76,0.3); }
}
