:root {
  --ink: #1f2421;
  --deep: #25312d;
  --forest: #344b42;
  --sage: #8c9b90;
  --paper: #f4efe5;
  --paper-dark: #e8dfd0;
  --warm: #b9854f;
  --line: rgba(31, 36, 33, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
section { scroll-margin-top: 96px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 100;
  background: white; padding: 10px 14px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 94px; padding: 0 5vw;
  background: rgba(244,239,229,.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-icon { display: block; width: 56px; height: 66px; object-fit: cover; border-radius: 4px; }
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--ink); border-radius: 50%;
  font: 700 17px/1 var(--serif);
}
.brand-mark span { color: var(--warm); }
.brand-name { font: 600 23px/1 var(--serif); letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .9rem; }
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--warm); }
.nav-cta { border: 1px solid var(--ink); padding: 9px 16px; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; background: var(--ink); margin: 6px; }

.hero {
  min-height: calc(100vh - 82px);
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
  padding: 7vw 7vw 8vw; overflow: hidden;
}
.hero-copy { max-width: 760px; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px; color: var(--warm);
  text-transform: uppercase; letter-spacing: .18em;
  font-size: .73rem; font-weight: 600;
}
h1, h2, h3 { font-family: var(--serif); line-height: .98; margin-top: 0; }
h1 { font-size: clamp(4.2rem, 8vw, 8.8rem); letter-spacing: -.045em; margin-bottom: 28px; }
h2 { font-size: clamp(3rem, 5vw, 5.7rem); letter-spacing: -.035em; }
h3 { font-size: 2rem; }
.hero-lede { max-width: 650px; font-size: clamp(1.03rem, 1.6vw, 1.3rem); color: #4e5651; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 0 24px; text-decoration: none;
  border: 1px solid var(--ink); font-weight: 600; font-size: .9rem;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: var(--paper); }
.button.secondary { background: transparent; }
.button.warm { background: var(--warm); border-color: var(--warm); color: #fff; }
.hero-art { min-height: 600px; position: relative; display: grid; place-items: center; color: var(--deep); }
.sun-disc {
  position: absolute; width: min(39vw, 550px); aspect-ratio: 1;
  border-radius: 50%; background: #d8c9ad;
}
.iron-ring {
  position: absolute; width: min(31vw, 430px); aspect-ratio: 1;
  border: 2px solid var(--deep); border-radius: 50%;
}
.feather { width: 205px; height: 450px; position: relative; transform: rotate(12deg); }
.manifesto {
  padding: 9vw 12vw; background: var(--deep); color: var(--paper);
}
.manifesto p {
  max-width: 1150px; margin: 0 0 16px;
  font: 500 clamp(2rem, 4.1vw, 5rem)/1.08 var(--serif);
}
.manifesto .manifesto-emphasis { color: #d7b184; margin-top: 45px; }

.split-section {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw;
  padding: 10vw 9vw;
}
.split-section h2 { max-width: 650px; }
.author-portrait {
  position: relative; max-width: 560px; margin: 52px 0 0;
}
.author-portrait::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--warm); pointer-events: none;
}
.author-portrait img {
  position: relative; width: 100%; height: clamp(450px, 48vw, 620px); object-fit: cover;
  object-position: 52% center; filter: saturate(.85) contrast(.97);
}
.prose { max-width: 720px; font-size: 1.08rem; }
.prose p:first-child::first-letter {
  float: left; font: 600 5rem/.73 var(--serif); padding: 10px 10px 0 0; color: var(--warm);
}

.books-section { padding: 9vw; background: #ede5d8; }
.section-heading { max-width: 820px; margin-bottom: 58px; }
.section-heading > p:last-child { max-width: 650px; font-size: 1.08rem; }
.book-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.book-card { background: rgba(255,255,255,.45); padding: 38px; border: 1px solid var(--line); }
.book-card.featured {
  grid-column: 1 / -1; display: grid; grid-template-columns: minmax(250px, .7fr) 1.3fr;
  gap: 6vw; align-items: center; padding: 5vw;
}
.book-cover {
  aspect-ratio: .67; min-height: 430px; padding: 35px 27px;
  background: linear-gradient(155deg, #283b34 0%, #18211e 70%);
  color: #efe7d8; box-shadow: 0 28px 50px rgba(15,20,18,.22);
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: center; border: 8px double rgba(239,231,216,.24);
}
.book-cover strong { font: 600 clamp(3.2rem, 5vw, 5rem)/.85 var(--serif); }
.book-cover .series, .book-cover .author { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.book-copy { max-width: 600px; }
.status { color: var(--warm); text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 600; }
.book-number { font: 600 4.5rem/1 var(--serif); color: rgba(31,36,33,.25); margin-bottom: 55px; }
.text-link { text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.text-link span { color: var(--warm); }

.mentorship-section { padding: 10vw 9vw; background: var(--forest); color: var(--paper); }
.section-heading.light > p:last-child { color: #d1d8d3; }
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 65px 0 45px; border-top: 1px solid rgba(255,255,255,.25);
}
.service-grid article { padding: 34px 30px 34px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.service-grid article + article { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.25); }
.service-grid span { color: #d7b184; font-size: .75rem; }
.service-grid h3 { margin: 35px 0 18px; font-size: 1.8rem; }
.service-grid p { color: #d1d8d3; font-size: .94rem; }

.philosophy-section { padding: 10vw 12vw; }
.philosophy-card { max-width: 1100px; margin: auto; border-left: 1px solid var(--warm); padding-left: 7vw; }
blockquote {
  margin: 0 0 45px; font: 500 clamp(2.8rem, 5vw, 6rem)/1.02 var(--serif);
  letter-spacing: -.035em;
}
.philosophy-card > p:not(.eyebrow) { max-width: 730px; font-size: 1.06rem; }

.connect-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8vw;
  padding: 9vw; background: var(--paper-dark);
}
.connect-section > div { min-width: 0; }
.connect-section > div:first-child p:last-child { max-width: 560px; }
.release-signup { margin-top: 38px; scroll-margin-top: 110px; }
.quick_form_11_css {
  box-sizing: border-box; width: min(100%, 540px); padding: 24px; background: var(--forest);
  border-top: 4px solid var(--warm); color: var(--paper);
}
.quick_form_11_css #SIGNUP_HEADING {
  margin: 0 0 20px; color: var(--paper); font: 600 1.35rem/1.25 var(--serif);
}
.quick_form_11_css form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.quick_form_11_css .SIGNUP_FLD input[type="email"],
.quick_form_11_css .SIGNUP_FLD input[type="text"] {
  width: 100%; min-height: 42px; padding: 8px 4px; border: 0; border-bottom: 1px solid var(--warm);
  border-radius: 0; outline: 0; background: transparent; color: var(--paper); font: 500 .9rem var(--sans);
}
.quick_form_11_css .SIGNUP_FLD input::placeholder { color: #d1d8d3; opacity: 1; }
.quick_form_11_css .SIGNUP_FLD input:focus { border-bottom-width: 2px; }
.quick_form_11_css #zcWebOptin {
  min-height: 42px; padding: 0 18px; border: 1px solid var(--warm); background: var(--warm);
  color: white; cursor: pointer; font: 600 .82rem var(--sans);
}
.signup-message { grid-column: 1 / -1; padding: 10px; margin-bottom: 12px; font-size: .82rem; }
.signup-success { background: #e5f1e7; color: var(--deep); }
.signup-error { background: #ffebe8; color: #8f1717; }
#zcOptinOverLay { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.5); }
#zcOptinSuccessPopup {
  position: fixed; z-index: 101; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(90vw, 680px); max-height: 80vh; overflow: auto; padding: 35px;
  background: white; border: 1px solid var(--paper-dark); box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
#closeSuccess { position: absolute; top: 8px; right: 12px; border: 0; background: none; font-size: 1.5rem; cursor: pointer; }
.connect-actions { border-top: 1px solid var(--ink); }
.social-card {
  position: relative; display: grid; gap: 5px; padding: 26px 50px 26px 0;
  border-bottom: 1px solid var(--ink); text-decoration: none;
}
.social-card > span:first-child { color: var(--warm); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.social-card strong { font: 600 1.75rem/1.2 var(--serif); overflow-wrap: anywhere; }
.social-card .arrow { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; }
.social-card:hover strong { color: var(--warm); }

footer {
  min-height: 250px; display: grid; grid-template-columns: 1fr auto auto;
  align-items: end; gap: 35px; padding: 60px 5vw;
  background: #17201d; color: #e9e1d4; font-size: .82rem;
}
.footer-brand { align-self: center; }
footer p { margin: 0; }
footer p a { text-underline-offset: 4px; }

.legal-page {
  min-height: 70vh; padding: 8vw max(7vw, calc((100vw - 920px) / 2));
  background: var(--paper);
}
.legal-page .eyebrow { margin-bottom: 14px; }
.legal-page h1 { max-width: 820px; font-size: clamp(3.8rem, 7vw, 7rem); }
.legal-intro { max-width: 760px; margin-bottom: 55px; font-size: 1.15rem; color: #4e5651; }
.legal-content { max-width: 820px; }
.legal-content section { margin: 0 0 42px; scroll-margin-top: 110px; }
.legal-content h2 { margin-bottom: 15px; font-size: clamp(2rem, 3vw, 3rem); }
.legal-content p, .legal-content li { color: #3f4742; }
.legal-content ul { padding-left: 1.25rem; }
.legal-content a { text-underline-offset: 4px; }

.services-page { background: var(--paper); }
.services-hero {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end;
  padding: 9vw; background: var(--forest); color: var(--paper);
}
.services-hero h1 { max-width: 850px; margin-bottom: 0; font-size: clamp(4rem, 7.5vw, 8rem); }
.services-hero-copy { max-width: 560px; padding-bottom: 12px; color: #d1d8d3; font-size: 1.08rem; }
.services-list { padding: 9vw; }
.service-offer {
  display: grid; grid-template-columns: minmax(220px, .65fr) 1.35fr; gap: 7vw;
  padding: 55px 0; border-top: 1px solid var(--line);
}
.service-offer:last-of-type { border-bottom: 1px solid var(--line); }
.service-offer h2 { margin-bottom: 10px; font-size: clamp(2.5rem, 4vw, 4.5rem); }
.service-price { margin: 0; color: var(--warm); font-weight: 600; letter-spacing: .05em; }
.service-offer-copy { max-width: 680px; }
.service-offer-copy ul { padding-left: 1.2rem; }
.services-note { max-width: 720px; margin: 50px 0 35px; }

@media (max-width: 980px) {
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 81px;
    flex-direction: column; align-items: stretch; padding: 25px 5vw;
    background: var(--paper); border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 11vw; }
  .hero-art { min-height: 500px; }
  .sun-disc { width: 450px; }
  .iron-ring { width: 350px; }
  .split-section, .connect-section { grid-template-columns: 1fr; }
  .services-hero, .service-offer { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .book-card.featured { grid-template-columns: 1fr; }
  .book-cover { max-width: 370px; width: 100%; margin: auto; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid article:nth-child(3) { border-left: 0; padding-left: 0; }
  footer { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 600px) {
  .site-header { min-height: 72px; }
  .brand-name { font-size: 19px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-icon { width: 46px; height: 54px; border-radius: 3px; }
  .site-nav { top: 71px; }
  .hero { min-height: auto; padding: 18vw 6vw 12vw; }
  h1 { font-size: 4.2rem; }
  .hero-art { display: block; min-height: 390px; margin-top: 30px; }
  .sun-disc { top: 0; left: 50%; width: 280px; transform: translateX(-50%); }
  .iron-ring { top: 28px; left: 50%; width: 225px; transform: translateX(-50%); }
  .feather {
    position: absolute; top: 5px; left: 50%; width: 112px; height: 270px;
    transform: translateX(-50%) rotate(12deg);
  }
  .manifesto, .split-section, .books-section, .mentorship-section, .philosophy-section, .connect-section { padding: 18vw 7vw; }
  .legal-page { padding: 18vw 7vw; }
  .services-hero, .services-list { padding: 18vw 7vw; }
  .service-offer { gap: 20px; padding: 42px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article + article { border-left: 0; padding-left: 0; }
  .book-card, .book-card.featured { padding: 28px; }
  .book-cover { min-height: 390px; }
  .philosophy-card { padding-left: 28px; }
  .author-portrait { margin: 40px 18px 20px 0; }
  .author-portrait::before { inset: 12px -8px -12px 12px; }
  .author-portrait img { height: min(115vw, 520px); }
  .quick_form_11_css { padding: 22px 18px; }
  .quick_form_11_css form { grid-template-columns: 1fr; }
  .quick_form_11_css .signup-submit, .quick_form_11_css #zcWebOptin { width: 100%; }
}
