/* Growth Strategy Collective — luxury book landing (WCAG AA) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --green-deep: #0a2e24;
  --green-mid: #134536;
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --gold-dark: #9a7b1a;
  --cream: #f7f3eb;
  --cream-dark: #e8e0d0;
  --burgundy: #6b1d3a;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --white: #ffffff;
  --focus: #0066cc;
  --max: 72rem;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(10, 46, 36, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-mid);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover { color: var(--burgundy); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  background: var(--green-deep);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.25;
  max-width: min(100%, 14rem);
}

.logo span { color: var(--gold); }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.nav-list a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  background: linear-gradient(145deg, var(--green-deep) 0%, var(--green-mid) 55%, #1a5240 100%);
  color: var(--cream);
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--gold-light);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  opacity: 0.92;
  margin: 0 0 2rem;
  max-width: 36rem;
}

.hero-book {
  justify-self: center;
  position: relative;
}

.hero-book img {
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  max-width: 320px;
  width: 100%;
}

.hero-book::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.5;
  pointer-events: none;
}

/* Amazon CTA — high contrast, impossible to miss */
.btn-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.25rem;
  background: linear-gradient(180deg, #ffdf6b 0%, var(--gold) 45%, var(--gold-dark) 100%);
  color: var(--green-deep);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 0 var(--gold-dark), 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 14rem;
}

.btn-amazon:hover {
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--gold-dark), 0 16px 36px rgba(0, 0, 0, 0.4);
}

.btn-amazon:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--gold-dark), 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-amazon svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.btn-amazon-hero { margin-top: 0.5rem; }

.btn-amazon-block {
  display: flex;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 4.5rem 1.5rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-dark {
  background: var(--green-deep);
  color: var(--cream);
}

.section-dark a { color: var(--gold-light); }

.section-cream { background: var(--cream); }

.section-alt { background: var(--cream-dark); }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.75rem;
}

.section-dark .eyebrow { color: var(--gold); }

h2.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 2rem;
}

.section-dark .lead { color: rgba(247, 243, 235, 0.85); }

/* Story grid */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.story-card-body { padding: 1.5rem; }

.story-card h3 { margin-top: 0; font-size: 1.2rem; }

/* Film gallery */
.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.film-still {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  background: var(--green-mid);
}

.film-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.film-still:hover img { transform: scale(1.04); }

.film-still figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(10, 46, 36, 0.92));
  color: var(--cream);
  font-size: 0.875rem;
}

/* Cast */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cast-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.cast-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  border: 3px solid var(--gold);
}

.cast-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.25rem;
  color: var(--cream);
}

.cast-role {
  font-size: 0.875rem;
  color: var(--gold-light);
  margin: 0;
}

/* Quotes */
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--burgundy);
  border-left: 4px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2.5rem 0;
  max-width: 36rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--burgundy) 0%, #4a1228 100%);
  color: var(--cream);
  text-align: center;
  padding: 4rem 1.5rem;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.cta-band p {
  max-width: 32rem;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Two column prose */
.prose-columns {
  columns: 2;
  column-gap: 2.5rem;
}

.prose-columns p { break-inside: avoid; margin-top: 0; }

/* Timeline */
.timeline {
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem;
  margin: 2rem 0;
}

.timeline-item {
  margin-bottom: 1.75rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.05rem;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--green-deep);
}

.timeline-year {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--green-deep);
  color: var(--cream);
  padding: 3.5rem 1.5rem;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.page-hero p { margin: 0; opacity: 0.9; max-width: 40rem; }

/* Contact */
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-details strong {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Legal */
.legal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  color: var(--green-deep);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.legal-content li { margin-bottom: 0.5rem; }

/* Footer */
.site-footer {
  background: #061a14;
  color: rgba(247, 243, 235, 0.85);
  padding: 3rem 1.5rem 2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0;
}

.footer-grid a { color: var(--gold-light); }

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 0.8125rem;
  opacity: 0.75;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-nav a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-nav a:hover { text-decoration: underline; }

.domain-note {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 6rem 1.5rem;
}

.error-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: var(--green-deep);
  margin: 0 0 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-book { order: -1; }
  .film-grid { grid-template-columns: 1fr; }
  .prose-columns { columns: 1; }
  .btn-amazon-block { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .film-still img { transition: none; }
  .btn-amazon { transition: none; }
}
