:root {
  --green-950: #10271d;
  --green-900: #173d2b;
  --green-700: #2f5a3b;
  --green-500: #6f8f45;
  --plum-900: #33213f;
  --plum-700: #5c3a6d;
  --gold-700: #a87824;
  --gold-500: #cf9d3d;
  --gold-300: #eed59b;
  --cream: #fbf7ef;
  --cream-2: #f5ecdc;
  --white: #fffdf8;
  --ink: #29271f;
  --muted: #6e695d;
  --shadow: 0 24px 70px rgba(25, 39, 28, .16);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 9999;
  background: var(--white); color: var(--green-950); padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 12px; }
.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(251, 247, 239, .92);
  color: var(--green-950);
  box-shadow: 0 10px 35px rgba(22, 38, 28, .10);
  backdrop-filter: blur(18px);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 11px; color: white; line-height: 1.1; }
.scrolled .brand { color: var(--green-950); }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid currentColor;
  border-radius: 50%; color: var(--gold-300); background: rgba(255,255,255,.08);
}
.scrolled .brand-mark { color: var(--gold-700); background: var(--white); }
.brand strong { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 18px; letter-spacing: .01em; }
.brand small { display: block; margin-top: 4px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }
.nav-links { display: flex; align-items: center; gap: 24px; color: white; font-size: 14px; font-weight: 700; }
.scrolled .nav-links { color: var(--green-950); }
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--gold-500); transition: width .2s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--gold-500); color: var(--green-950) !important; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px; }

.hero {
  min-height: 920px; position: relative; display: grid; align-items: center; overflow: hidden;
  background: url('assets/hero.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 37, 27, .92) 0%, rgba(15, 37, 27, .78) 34%, rgba(15, 37, 27, .25) 69%, rgba(15, 37, 27, .10) 100%),
    linear-gradient(0deg, rgba(16,39,29,.35), transparent 45%);
}
.hero-grid { position: relative; z-index: 2; padding-top: 105px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.hero-copy { color: white; max-width: 690px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--gold-500); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .22em; }
.hero h1 { margin: 0; font: 400 clamp(48px, 6.7vw, 92px)/.92 Georgia, 'Times New Roman', serif; letter-spacing: -.04em; }
.hero h1 span { color: #f1dba4; }
.hero-tagline { margin: 21px 0 24px; font: italic 22px Georgia, serif; color: #f5e8c7; }
.hero h2 { margin: 0; max-width: 560px; font: 400 clamp(28px, 3.1vw, 46px)/1.12 Georgia, serif; color: white; }
.hero-lead { max-width: 620px; margin: 22px 0 28px; font-size: 18px; color: rgba(255,255,255,.86); }
.hero-actions, .story-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.btn {
  border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; min-height: 50px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #17281f; background: linear-gradient(135deg, #f3d687, var(--gold-500)); box-shadow: 0 12px 30px rgba(207,157,61,.27); }
.btn-ghost { color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.42); backdrop-filter: blur(10px); }
.btn-light { background: white; color: var(--green-950); }
.btn-gold { background: var(--gold-500); color: var(--green-950); }
.btn-outline-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,.55); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-meta span { border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 7px 12px; background: rgba(255,255,255,.06); font-size: 12px; letter-spacing: .06em; }
.book-stage { position: relative; min-height: 650px; display: grid; place-items: center; perspective: 1300px; }
.book-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,225,145,.42), rgba(255,225,145,0) 67%); filter: blur(15px); }
.book-cover { position: relative; z-index: 2; width: min(410px, 90%); margin: 0; transform: rotateY(-10deg) rotateX(2deg) rotateZ(1deg); transition: transform .5s cubic-bezier(.2,.8,.2,1); filter: drop-shadow(0 40px 45px rgba(12,30,21,.42)); }
.book-cover:hover { transform: rotateY(-4deg) rotateX(0deg) translateY(-8px); }
.book-cover img { border-radius: 5px 12px 12px 5px; }
.book-cover::before { content: ''; position: absolute; inset: 3% auto 3% -14px; width: 16px; background: linear-gradient(90deg, #2c1f3b, #61426e); transform: translateZ(-2px); border-radius: 4px 0 0 4px; }
.floating-note { position: absolute; z-index: 3; padding: 10px 14px; border-radius: 14px; color: var(--green-950); background: rgba(255,253,248,.90); box-shadow: 0 18px 50px rgba(18,40,29,.22); font-size: 13px; font-weight: 800; backdrop-filter: blur(10px); }
.note-one { top: 150px; right: 0; }
.note-two { bottom: 130px; left: -30px; }
.scroll-cue { position: absolute; z-index: 3; bottom: 24px; left: 50%; color: white; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; display: grid; place-items: center; animation: bob 2s infinite; }
@keyframes bob { 50% { transform: translateY(7px); } }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(5px); opacity: .35; }
.orb-one { width: 18px; height: 18px; background: #ffd86b; top: 34%; left: 47%; }
.orb-two { width: 8px; height: 8px; background: white; top: 27%; right: 20%; }

.trust-bar { background: var(--white); border-bottom: 1px solid rgba(48,75,54,.1); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-grid div { padding: 23px 30px; text-align: center; position: relative; }
.trust-grid div + div::before { content: ''; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: rgba(48,75,54,.15); }
.trust-grid strong { display: block; color: var(--green-900); font-family: Georgia, serif; font-size: 18px; }
.trust-grid span { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }

.section { padding: 110px 0; }
.section-heading { text-align: center; max-width: 790px; margin: 0 auto 48px; }
.section-heading h2, .story-copy h2, .nature-copy h2, .author-copy h2, .contact-copy h2 { margin: 0; color: var(--green-950); font: 400 clamp(37px, 4.2vw, 60px)/1.08 Georgia, serif; letter-spacing: -.025em; }
.section-heading p:not(.section-kicker) { color: var(--muted); font-size: 17px; }
.story { background: linear-gradient(180deg, var(--cream), #fffaf1); }
.story-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 95px; align-items: center; }
.story-art { position: relative; max-width: 470px; justify-self: center; }
.story-art img { border-radius: 8px; box-shadow: var(--shadow); transform: rotate(-2deg); }
.book-badge { position: absolute; right: -24px; top: 42px; width: 90px; height: 90px; border-radius: 50%; background: var(--plum-700); color: white; display: grid; place-items: center; text-align: center; font-family: Georgia, serif; box-shadow: 0 14px 30px rgba(52,33,63,.25); }
.story-copy p { font-size: 17px; color: #4f4b42; }
.story-copy blockquote { margin: 32px 0; padding: 25px 30px; border-left: 3px solid var(--gold-500); background: var(--white); color: var(--plum-900); font: italic 25px/1.45 Georgia, serif; box-shadow: 0 12px 40px rgba(40,50,42,.07); }
.feature-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 11px; }
.feature-list li { position: relative; padding-left: 30px; }
.feature-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-700); }
.text-link { font-weight: 800; color: var(--green-700); }

.characters { background: #f0e7d7; position: relative; overflow: hidden; }
.characters::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 10% 20%, rgba(196,145,65,.14), transparent 26%), radial-gradient(circle at 92% 68%, rgba(92,58,109,.09), transparent 28%); }
.characters .container { position: relative; }
.character-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.character-card { background: rgba(255,253,248,.92); border: 1px solid rgba(37,67,45,.1); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 18px 50px rgba(49,54,44,.08); transition: transform .25s ease, box-shadow .25s ease; }
.character-card:hover { transform: translateY(-8px); box-shadow: 0 30px 75px rgba(49,54,44,.14); }
.character-image { aspect-ratio: 1.25/1; background: #fbf7ef; overflow: hidden; }
.character-image img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.04); }
.character-copy { padding: 27px; position: relative; }
.character-number { position: absolute; right: 25px; top: 24px; color: rgba(47,90,59,.18); font: 700 34px Georgia, serif; }
.character-copy h3 { margin: 0 0 10px; color: var(--green-950); font: 400 34px Georgia, serif; }
.character-copy p { margin: 0 0 20px; color: var(--muted); }
.character-trait { display: inline-block; color: var(--plum-700); border: 1px solid rgba(92,58,109,.25); padding: 6px 11px; border-radius: 999px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.nature { position: relative; color: white; background: var(--green-950); overflow: hidden; }
.nature-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,35,24,.98), rgba(12,35,24,.86)), url('assets/hero.webp') center/cover; opacity: .9; }
.nature-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.section-kicker.light { color: var(--gold-300); }
.nature-copy h2, .contact-copy h2 { color: white; }
.nature-copy p { color: rgba(255,255,255,.78); font-size: 17px; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.facts-grid article { min-height: 190px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15); border-radius: 22px; padding: 24px; backdrop-filter: blur(10px); }
.facts-grid span { font-size: 30px; }
.facts-grid h3 { margin: 14px 0 5px; font: 400 24px Georgia, serif; }
.facts-grid p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }

.meetings { background: var(--cream); }
.section-heading.split { max-width: none; text-align: left; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.section-heading.split > p { margin: 0; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; border-radius: 24px; cursor: zoom-in; background: #ddd; }
.gallery-item.large { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(10,30,20,.70)); }
.gallery-item span { position: absolute; z-index: 2; left: 20px; bottom: 18px; color: white; font-weight: 800; letter-spacing: .03em; }
.meeting-cta { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-radius: 26px; padding: 30px 34px; background: var(--white); border: 1px solid rgba(31,68,42,.1); box-shadow: 0 16px 50px rgba(28,56,37,.08); }
.meeting-cta h3 { margin: 0 0 5px; color: var(--green-950); font: 400 26px Georgia, serif; }
.meeting-cta p { margin: 0; color: var(--muted); }

.author { background: #fffaf1; }
.author-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.author-photo { position: relative; max-width: 500px; }
.author-photo::before { content: ''; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid var(--gold-500); border-radius: 28px; }
.author-photo img { position: relative; width: 100%; border-radius: 28px; box-shadow: var(--shadow); }
.author-copy p { color: var(--muted); font-size: 17px; }
.author-role { color: var(--plum-700) !important; font-weight: 800; }
.author-signature { margin-top: 26px; color: var(--green-900); font: italic 35px Georgia, serif; }

.quote-banner { position: relative; padding: 110px 0; text-align: center; color: white; background: linear-gradient(rgba(34,25,44,.84), rgba(34,25,44,.84)), url('assets/hero.webp') center 65%/cover; background-attachment: fixed; }
.quote-banner p { margin: 0; font: italic clamp(34px,5vw,66px)/1.26 Georgia, serif; color: #fff5dc; }

.contact { background: var(--cream); }
.contact-card { min-height: 330px; border-radius: 34px; padding: 58px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; background: linear-gradient(135deg, var(--green-900), var(--green-950)); color: white; box-shadow: var(--shadow); }
.contact-copy p:not(.section-kicker) { color: rgba(255,255,255,.76); font-size: 17px; }
.contact-actions { justify-content: flex-end; }

.footer { padding: 70px 0 26px; background: #0e251a; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 70px; }
.footer-brand img { width: 290px; border-radius: 22px; background: var(--cream); }
.footer h3 { margin: 0 0 18px; color: var(--gold-300); font: 400 22px Georgia, serif; }
.footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.78); }
.footer p { color: rgba(255,255,255,.65); }
.footer-note { font-size: 12px; }
.footer-bottom { margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.54); font-size: 12px; }

.modal, .lightbox { border: 0; padding: 0; border-radius: 26px; color: var(--ink); background: var(--white); box-shadow: 0 40px 120px rgba(10,26,17,.4); }
.modal { width: min(560px, calc(100% - 28px)); padding: 36px; }
.modal::backdrop, .lightbox::backdrop { background: rgba(9,25,17,.72); backdrop-filter: blur(8px); }
.modal h2 { margin: 5px 0 10px; color: var(--green-950); font: 400 34px Georgia, serif; }
.modal p { color: var(--muted); }
.modal-icon { font-size: 40px; }
.modal-close, .lightbox-close { position: absolute; right: 15px; top: 12px; width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer; background: var(--cream-2); font-size: 25px; }
.contact-form { display: grid; gap: 15px; margin-top: 24px; }
.contact-form label { display: grid; gap: 6px; color: var(--green-950); font-weight: 800; font-size: 13px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid rgba(31,68,42,.22); border-radius: 12px; padding: 12px 13px; background: white; color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 2px solid rgba(207,157,61,.45); border-color: var(--gold-500); }
.lightbox { width: min(1100px, calc(100% - 30px)); background: transparent; overflow: visible; }
.lightbox img { max-height: 88vh; width: 100%; object-fit: contain; border-radius: 18px; }
.lightbox-close { color: white; background: rgba(0,0,0,.55); right: -8px; top: -8px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --container: min(100% - 30px, 850px); }
  .menu-toggle { display: block; color: white; }
  .scrolled .menu-toggle { color: var(--green-950); }
  .nav-links { position: absolute; top: 72px; left: 15px; right: 15px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; border-radius: 20px; color: var(--green-950); background: rgba(251,247,239,.98); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 145px 0 80px; gap: 30px; }
  .hero-copy { max-width: 720px; }
  .book-stage { min-height: 550px; }
  .book-cover { width: 330px; }
  .floating-note { display: none; }
  .story-grid, .nature-grid, .author-grid, .contact-card { grid-template-columns: 1fr; }
  .story-grid, .author-grid { gap: 55px; }
  .story-art { max-width: 390px; }
  .character-grid { grid-template-columns: 1fr; max-width: 680px; margin: auto; }
  .character-card { display: grid; grid-template-columns: .8fr 1.2fr; }
  .character-image { aspect-ratio: auto; min-height: 310px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 8px; }
  .contact-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 700px) {
  .section { padding: 78px 0; }
  .nav { min-height: 70px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 9px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-grid { padding-top: 120px; }
  .hero h1 { font-size: 51px; }
  .hero h2 { font-size: 31px; }
  .hero-lead { font-size: 16px; }
  .book-stage { min-height: 460px; }
  .book-cover { width: 275px; }
  .trust-grid { grid-template-columns: 1fr; padding: 8px 0; }
  .trust-grid div { padding: 15px; }
  .trust-grid div + div::before { top: 0; left: 20%; right: 20%; width: auto; height: 1px; bottom: auto; }
  .story-grid { gap: 45px; }
  .story-copy blockquote { font-size: 21px; }
  .character-card { grid-template-columns: 1fr; }
  .character-image { min-height: auto; aspect-ratio: 1.3/1; }
  .facts-grid { grid-template-columns: 1fr; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 280px); }
  .gallery-item.large, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .meeting-cta { align-items: flex-start; flex-direction: column; }
  .author-photo::before { display: none; }
  .quote-banner { background-attachment: scroll; }
  .contact-card { padding: 35px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
