:root {
  --navy: #06264a;
  --navy-dark: #031b35;
  --cream: #f7ead7;
  --cream-soft: #fff8ee;
  --orange: #de7918;
  --orange-dark: #b95b09;
  --text: #10243d;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(3, 27, 53, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream-soft);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px min(7vw, 90px);
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.logo { font-family: 'Cormorant Garamond', serif; line-height: .9; letter-spacing: 2px; }
.logo span { display:block; font-size: 30px; }
.logo strong { display:block; color: var(--orange); font-size: 18px; letter-spacing: 7px; }
.nav { display:flex; gap: 28px; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.nav a { opacity: .95; }
.nav a:hover { color: #ffd39d; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 45%, rgba(222,121,24,.18), transparent 26%),
    linear-gradient(110deg, var(--cream-soft) 0%, var(--cream) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  min-height: 560px;
  gap: 48px;
}
.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 800;
  font-size: 14px;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; margin: 0; }
h1 {
  font-size: clamp(58px, 8vw, 100px);
  line-height: .88;
  text-transform: uppercase;
  color: var(--navy-dark);
  letter-spacing: 5px;
}
.divider { display:flex; align-items:center; gap:18px; color:var(--orange); margin: 26px 0; font-size: 26px; }
.divider span { width: 130px; height: 2px; background: var(--orange); }
.bio { max-width: 410px; line-height: 1.65; font-size: 18px; }
.signature {
  max-width: 520px;
  margin-top: 28px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--orange);
  font-size: 31px;
  font-style: italic;
  line-height: 1.25;
}
.hero-image { position: relative; align-self: end; }
.hero-image::after {
  content:"";
  position:absolute;
  right:-70px;
  bottom:40px;
  width:260px;
  height:120px;
  background: var(--orange);
  opacity:.65;
  transform: rotate(-18deg);
  z-index:0;
  border-radius: 60% 40% 55% 35%;
}
.hero-image img { position:relative; z-index:1; max-height: 560px; object-fit: contain; filter: drop-shadow(var(--shadow)); }

.why {
  background: linear-gradient(90deg, var(--cream-soft) 0%, var(--cream) 50%, var(--navy) 50%, var(--navy-dark) 100%);
}
.why-grid { display:grid; grid-template-columns: 1fr 1fr; gap:70px; align-items:center; }
.icon { color: var(--orange); font-size: 48px; display:block; margin-bottom: 12px; }
h2 { font-size: clamp(34px, 4vw, 48px); text-transform: uppercase; color: var(--navy-dark); }
.section-title p { max-width: 440px; line-height:1.7; }
blockquote {
  margin: 0;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.25;
  text-align: center;
}
blockquote::before { content: "“"; color: var(--orange); font-size: 80px; display:block; line-height:.4; }

.book { background: var(--cream-soft); }
.book-grid { display:grid; grid-template-columns: 300px 1fr; gap:70px; align-items:center; }
.book-cover img { border-radius: 4px; box-shadow: var(--shadow); }
.book-copy h2 { margin-bottom: 16px; }
.book-copy p { max-width: 650px; line-height:1.65; }
.features { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; margin: 28px 0; }
.features div { display:flex; gap:10px; align-items:center; color: var(--orange); font-size: 28px; }
.features span { color: var(--text); font-size: 14px; line-height:1.3; }
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 260px;
  padding: 15px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--orange), #f2992e);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 10px 20px rgba(222,121,24,.25);
}
.button:hover { transform: translateY(-2px); }

.freebie {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: var(--white);
}
.freebie-grid { display:grid; grid-template-columns: 1fr 360px; gap:60px; align-items:center; }
.freebie h2 { color: var(--white); }
.freebie p { max-width: 560px; line-height:1.7; }
.gift { font-size: 54px; display:block; margin-bottom:12px; }
.download-card {
  border: 2px dashed rgba(255,255,255,.75);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  background: rgba(255,255,255,.04);
}
.download-card h3 { font-size: 30px; margin-bottom: 24px; color: var(--white); }
.button.light { min-width: 220px; }

.social { text-align:center; background: var(--cream-soft); }
.social h2 { margin-bottom: 30px; }
.social-links { display:flex; justify-content:center; gap:90px; flex-wrap:wrap; }
.social-links a { font-weight: 700; }
.social-icon {
  width:70px; height:70px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  margin: 0 auto 10px; color: white; font-size: 32px; box-shadow: var(--shadow);
}
.instagram { background: radial-gradient(circle at 30% 110%, #feda75, #d62976, #4f5bd5); }
.tiktok { background: #050505; }
.youtube { background: #d41414; }

.contact { background: var(--cream); }
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap:70px; align-items:center; }
.contact p { max-width: 450px; line-height:1.7; }
.email-box { display:flex; gap:20px; align-items:center; font-size:18px; }
.email-box span { color:var(--orange); font-size:46px; }
.email-box p { margin:0 0 6px; font-size:14px; }
.email-box a { font-size:22px; font-weight:700; }

.footer {
  padding: 32px 20px;
  text-align:center;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: var(--white);
}
.footer h2 { color: var(--white); font-size:34px; }
.footer p { color: #ffb05d; font-weight:700; }
.footer small { opacity:.85; }

@media (max-width: 850px) {
  .site-header { position: static; flex-direction: column; gap: 16px; }
  .nav { flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
  .hero-grid, .why-grid, .book-grid, .freebie-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 24px; }
  .hero-image img { margin: 0 auto; max-height: 440px; }
  .why { background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 50%, var(--navy) 50%, var(--navy-dark) 100%); }
  blockquote { padding: 30px 0; }
  .book-cover { max-width: 260px; margin: 0 auto; }
  .features { grid-template-columns: 1fr; }
  .freebie-grid { gap: 30px; }
  .social-links { gap: 38px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 46px 0; }
  .divider span { width: 78px; }
  h1 { letter-spacing: 2px; }
  .signature { font-size: 26px; }
  .button { width: 100%; min-width: 0; }
}

.social-icon i { font-size: 34px; line-height: 1; }
@media (max-width: 768px) {
  .why {
    padding-bottom: 46px;
  }

  .why-content,
  .why .container {
    display: grid;
    gap: 36px;
  }

  .why-text {
    padding-bottom: 0;
  }

  .quote-card {
    position: static;
    margin-top: 0;
    padding: 70px 24px;
  }
}
@media (max-width: 768px) {
  .why {
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 50px !important;
    overflow: visible !important;
  }

  .why .container,
  .why-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .why-text {
    width: 100% !important;
    padding-bottom: 0 !important;
  }

  .quote-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 20px 0 0 0 !important;
    padding: 70px 24px !important;
  }
}
