:root {
  --black: #101010;
  --deep: #161616;
  --gold: #c7a45b;
  --cream: #f6f2e9;
  --white: #ffffff;
  --muted: #686868;
  --line: #ded8cc;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-weight: 800; letter-spacing: .12em; }
.desktop-nav { display: flex; gap: 30px; color: #454545; }
.desktop-nav a:hover { color: var(--gold); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #2a2a2a; }
.button-small { min-height: 42px; padding: 0 18px; }
.button-secondary { background: transparent; color: var(--black); }
.button-secondary:hover { background: var(--cream); }
.full-width { width: 100%; }

.hero { background: linear-gradient(135deg, #f9f7f2 0%, #ffffff 55%, #f3ecdc 100%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 12px; font-size: .78rem; letter-spacing: .16em; font-weight: 800; color: #8a6b2f; }
h1, h2, h3 { line-height: 1.1; margin-top: 0; }
h1, h2 { font-family: "Playfair Display", serif; }
h1 { font-size: clamp(3.2rem, 7vw, 6.3rem); max-width: 780px; margin-bottom: 22px; }
h1 span { color: #9a752e; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); margin-bottom: 20px; }
h3 { font-size: 1.6rem; }
.hero-text { font-size: 1.18rem; max-width: 650px; color: #4e4e4e; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 18px; }
.trust-line { color: var(--muted); font-size: .94rem; }
.hero-card { background: var(--deep); color: var(--white); padding: 18px; border-radius: 30px; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.portrait-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.hero-card-copy span { color: #bfbfbf; }

.proof-bar { background: var(--black); color: var(--white); padding: 30px 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.proof-grid div { display: flex; flex-direction: column; }
.proof-grid strong { font-size: 1.35rem; }
.proof-grid span { color: #bbbbbb; font-size: .9rem; }

.product-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.dark-card { min-height: 500px; border-radius: var(--radius); padding: 48px; background: var(--black); color: var(--white); display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 30px 70px rgba(0,0,0,.15); }
.dark-card p { color: var(--gold); font-weight: 800; letter-spacing: .15em; font-size: .8rem; }
.dark-card h2 { font-size: clamp(2.7rem,5vw,4.7rem); }
.dark-card span { color: #bebebe; }
.product-copy p { color: #555; }
.product-copy ul { padding-left: 20px; margin: 28px 0; }
.product-copy li { margin-bottom: 12px; }
.price-note { font-size: .85rem; color: var(--muted); }

.alt-section { background: var(--cream); }
.section-heading { max-width: 760px; text-align: center; margin: 0 auto 50px; }
.section-heading > p:last-child { color: #555; }
.book-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.offer-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.featured-card { border: 2px solid var(--gold); box-shadow: 0 20px 45px rgba(97,73,28,.12); }
.tag { display: inline-block; color: #8a6b2f; font-weight: 800; font-size: .75rem; letter-spacing: .14em; margin-bottom: 18px; }
.offer-card p { color: #5d5d5d; min-height: 78px; }
.offer-price { font-weight: 800; margin: 28px 0 18px; }

.event-section { background: #111; color: var(--white); }
.event-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.event-grid > div p:not(.eyebrow) { color: #c7c7c7; }
.event-form { background: var(--white); color: var(--black); border-radius: var(--radius); padding: 34px; }
.field-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
label { display: block; font-weight: 700; margin-bottom: 16px; }
input, select, textarea { width: 100%; margin-top: 8px; border: 1px solid #d4d4d4; border-radius: 12px; padding: 13px 14px; background: #fff; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(199,164,91,.25); border-color: var(--gold); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.checkbox-label input { width: auto; margin-top: 5px; }
.form-message { margin-bottom: 0; font-weight: 700; color: #1b6f3b; }

.site-footer { background: #080808; color: var(--white); padding: 54px 0 24px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.footer-logo { display: inline-block; margin-bottom: 10px; }
.site-footer p { color: #a8a8a8; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: start; }
.copyright { margin-top: 36px; padding-top: 20px; border-top: 1px solid #262626; color: #858585; font-size: .9rem; }

.toast { position: fixed; right: 22px; bottom: 22px; background: var(--black); color: white; border-radius: 12px; padding: 14px 18px; opacity: 0; transform: translateY(20px); pointer-events: none; transition: .25s ease; max-width: 340px; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 850px) {
  .section { padding: 72px 0; }
  .desktop-nav { display: none; }
  .hero-grid, .product-grid, .event-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { max-width: 560px; }
  .proof-grid { grid-template-columns: 1fr; gap: 18px; }
  .book-grid { grid-template-columns: 1fr; }
  .dark-card { min-height: 380px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px,1120px); }
  .site-header .button-small { display: none; }
  h1 { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .event-form { padding: 22px; }
  .footer-grid { flex-direction: column; }
}
.field-note {
  display: block;
  margin-top: 8px;
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}