:root {
  --ink: #171512;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --gold: #c8a24c;
  --gold-dark: #9e7b2e;
  --brown: #44382c;
  --muted: #6f695f;
  --line: #ded6c8;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(23,21,18,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; color: white; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: "Cormorant Garamond", serif; font-weight: 700;
}
.brand-text { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; font-weight: 700; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #eee7dc; font-size: .93rem; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { border: 1px solid var(--gold); padding: 10px 16px; }
.menu-toggle { display: none; background: none; color: white; border: 0; font-size: 1.6rem; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(200,162,76,.18), transparent 32%),
    linear-gradient(115deg, #11100e 0%, #211d18 52%, #3f3429 100%);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -45% 30%;
  height: 600px;
  border: 1px solid rgba(200,162,76,.16);
  transform: rotate(-10deg);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center;
}
.eyebrow, .section-kicker {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700;
  color: var(--gold-dark);
}
.hero .eyebrow { color: var(--gold); }
.hero h1, h2, .big-question {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: .95;
}
.hero h1 { font-size: clamp(4.2rem, 8vw, 7.2rem); color: white; font-weight: 600; }
.hero h1 span { color: var(--gold); }
.tagline {
  font-family: "Cormorant Garamond", serif; color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 24px 0 16px;
}
.hero-text { color: #ddd2c4; max-width: 650px; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px; border: 1px solid transparent;
  font-weight: 700; font-size: .92rem; cursor: pointer; transition: .2s ease;
}
.btn-primary { background: var(--gold); color: #16130f; }
.btn-primary:hover { background: #d8b35a; transform: translateY(-1px); }
.btn-secondary { color: white; border-color: rgba(255,255,255,.5); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: #171512; width: fit-content; }

.book-visual { display: flex; flex-direction: column; align-items: center; }
.book {
  width: min(340px, 86vw); aspect-ratio: .68;
  background: linear-gradient(145deg, #1b1916 0%, #302921 100%);
  box-shadow: -18px 22px 50px rgba(0,0,0,.38), inset 10px 0 18px rgba(255,255,255,.03);
  border-left: 9px solid #0d0c0b;
  padding: 42px 30px; color: white;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  transform: rotate(2deg);
}
.book-topline { font-size: .68rem; letter-spacing: .2em; color: #dfcfaa; margin-bottom: 34px; }
.book-title { font-family: "Cormorant Garamond", serif; font-size: 3.15rem; line-height: .88; font-weight: 700; color: var(--gold); }
.book-divider { width: 58px; height: 1px; background: var(--gold); margin: 28px 0; }
.book-subtitle { font-size: .82rem; letter-spacing: .13em; line-height: 1.7; }
.book-note { color: #a89f92; font-size: .75rem; margin-top: 18px; }

.intro-strip { background: var(--gold); padding: 26px 0; }
.intro-strip blockquote {
  margin: 0 auto; max-width: 980px; text-align: center;
  font-family: "Cormorant Garamond", serif; font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 600; line-height: 1.25;
}

.section { padding: 100px 0; }
.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
h2 { font-size: clamp(2.7rem, 5vw, 4.5rem); font-weight: 600; margin-top: 10px; }
.prose { font-size: 1.05rem; color: #443f38; }
.prose p:first-child { font-size: 1.28rem; color: var(--ink); }
.section-dark { background: #191713; }
.light { color: white !important; }
.section-dark .section-kicker { color: var(--gold) !important; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 58px; }
.card {
  border: 1px solid rgba(255,255,255,.12); padding: 30px 24px; min-height: 265px;
  background: rgba(255,255,255,.025); color: #e7dfd2;
}
.card-num { color: var(--gold); font-size: .8rem; letter-spacing: .1em; }
.card h3 { font-family: "Cormorant Garamond", serif; color: white; font-size: 2rem; margin: 30px 0 8px; }
.card p { font-size: .93rem; color: #c9c0b3; }

.author-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: center; }
.portrait-placeholder {
  min-height: 520px; display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(200,162,76,.23), transparent 23%),
    linear-gradient(145deg,#211d18,#57493a);
  color: rgba(255,255,255,.62); letter-spacing: .2em; font-size: .8rem;
  border: 10px solid #eee5d6;
  outline: 1px solid #d0c3af;
}
.lead { font-size: 1.22rem; line-height: 1.6; }
.section-warm { background: var(--cream); }
.center-head { text-align: center; max-width: 880px; margin: 0 auto; }
.narrow { max-width: 780px; margin: 18px auto 0; }
.speaking-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 55px; }
.speaking-item { background: white; border-top: 4px solid var(--gold); padding: 30px; box-shadow: 0 15px 35px rgba(45,35,20,.05); }
.speaking-item h3 { font-family: "Cormorant Garamond", serif; font-size: 2rem; margin: 0 0 10px; }
.center-action { text-align: center; margin-top: 40px; }

.quote-section { background: #29231c; color: white; text-align: center; }
.big-question { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.05; max-width: 1000px; margin: 0 auto; }
.big-answer { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.8rem; margin-top: 26px; }

.contact-section { background: #12110f; color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-copy { color: #cfc6b9; max-width: 540px; }
.contact-details { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; color: var(--gold); }
.contact-form {
  border: 1px solid rgba(255,255,255,.12);
  padding: 30px; display: grid; gap: 17px; background: rgba(255,255,255,.03);
}
.contact-form label { display: grid; gap: 6px; font-size: .83rem; color: #ddd4c7; }
.contact-form input, .contact-form textarea {
  width: 100%; background: #1b1916; border: 1px solid #403a33; color: white;
  padding: 13px 14px; font: inherit; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.form-note { font-size: .72rem; color: #92897d; margin: 0; }

footer { background: #090908; color: #aaa195; padding: 28px 0; font-size: .8rem; }
.footer-wrap { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-wrap > div:first-child { display: flex; flex-direction: column; }
.footer-wrap strong { color: white; font-family: "Cormorant Garamond", serif; font-size: 1.15rem; }

@media (max-width: 900px) {
  .nav-links {
    position: absolute; left: 0; right: 0; top: 76px;
    background: #171512; padding: 20px; display: none; flex-direction: column; align-items: stretch; gap: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding: 85px 0; }
  .hero-grid, .two-col, .author-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .cards { grid-template-columns: 1fr 1fr; }
  .speaking-grid { grid-template-columns: 1fr; }
  .portrait-placeholder { min-height: 430px; }
}

@media (max-width: 600px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .brand-text { font-size: 1.1rem; }
  .hero h1 { font-size: 4.1rem; }
  .cards { grid-template-columns: 1fr; }
  .book { width: 285px; }
  .book-title { font-size: 2.7rem; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
