:root {
  --bg: #F5F0EB;
  --dark: #2A2624;
  --accent: #816E83;
  --text: #4A4543;
  --light: #7A7572;
  --ivory: #F5F0EB;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 145, 156, 0.15);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  transition: all 0.2s;
}

.nav-cta:hover { background: var(--dark); color: var(--ivory); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

a { color: var(--accent); }
.expert-section a { color: var(--accent); }
.faq-item a { color: var(--accent); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  padding-top: 5rem;
  align-items: center;
}

.hero-text { padding: 4rem 3rem 4rem 4rem; }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--light);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary { background: var(--dark); color: var(--ivory); border: 1px solid var(--dark); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }

.btn-ghost { background: transparent; color: var(--dark); border: 1px solid rgba(42,38,36,0.3); }
.btn-ghost:hover { border-color: var(--dark); }

.hero-visual { height: 85vh; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.problem { background: var(--dark); color: var(--ivory); padding: 5rem 3rem; }
.problem h2 { color: var(--ivory); text-align: center; font-size: 2rem; margin-bottom: 2.5rem; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.problem-item {
  padding: 1.5rem;
  border: 1px solid rgba(245,240,235,0.15);
  font-size: 1rem;
}

.offers { padding: 6rem 3rem; }
.inner { max-width: 960px; margin: 0 auto; }

.offer-block { margin-bottom: 3rem; }

.offer-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.primary-offer {
  background: white;
  padding: 3rem;
  border-top: 3px solid var(--accent);
}

.primary-offer h2 { font-size: 2.2rem; margin: 0.5rem 0 1rem; }
.offer-desc { font-size: 1.05rem; color: var(--light); margin-bottom: 2rem; max-width: 640px; }

.two-use {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.use-card {
  padding: 1.5rem;
  background: var(--bg);
  border-left: 3px solid var(--accent);
}

.use-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.use-card p { font-size: 0.9rem; color: var(--light); }

.premium-note { font-size: 0.9rem; margin-bottom: 1.5rem; color: var(--text); }
.disclaimer { font-size: 0.85rem; color: var(--light); font-style: italic; margin-bottom: 1rem; }

.secondary-offer {
  padding: 2.5rem;
  border: 1px solid rgba(129,110,131,0.25);
}

.secondary-offer h2 { font-size: 1.8rem; margin: 0.5rem 0 1rem; }

.samples { padding: 5rem 3rem; background: white; }
.samples h2 { text-align: center; font-size: 2.2rem; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--light); margin-bottom: 2.5rem; }

.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.sample-grid a { display: block; aspect-ratio: 3/4; overflow: hidden; }
.sample-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sample-grid a:hover img { transform: scale(1.04); }

.doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.doc-links a {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.doc-links a:hover { text-decoration: underline; }

.roi { padding: 5rem 3rem; }
.roi h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.roi-col { padding: 2rem; background: white; }
.roi-col h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.roi-col ul { list-style: none; }
.roi-col li { padding: 0.4rem 0; border-bottom: 1px solid rgba(129,110,131,0.1); font-size: 0.95rem; }

.roi-col.highlight { background: var(--dark); color: var(--ivory); }
.roi-col.highlight h3 { color: #D6C1A9; }

.footer {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--dark);
  color: var(--ivory);
}

.footer h2 { color: #D6C1A9; font-size: 2rem; margin-bottom: 1rem; }
.footer p { opacity: 0.85; margin-bottom: 1.5rem; }
.footer-links { margin-top: 2rem; font-size: 0.8rem; opacity: 0.6; }
.footer-links a { color: var(--ivory); }

.faq-section {
  padding: 5rem 2rem;
  background: white;
}

.faq-section .inner { max-width: 820px; margin: 0 auto; }

.faq-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.faq-section .section-sub { text-align: center; margin-bottom: 2.5rem; }

.faq-list { list-style: none; }

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(129, 110, 131, 0.15);
}

.faq-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.faq-item p {
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.expert-section {
  padding: 5rem 2rem;
}

.expert-section .inner {
  max-width: 720px;
  margin: 0 auto;
}

.expert-section h2 { font-size: 2rem; margin-bottom: 1.25rem; }

.expert-section p {
  color: var(--light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

@media (max-width: 900px) {
  .hero, .two-use, .problem-grid, .sample-grid, .roi-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 50vh; }
  .nav-links { display: none; }
  .sample-grid { grid-template-columns: repeat(2, 1fr); }
}
