*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0A0A0A;
  --white: #FAFAFA;
  --accent: #C8A96A;
  --gray-1: #1A1A1A;
  --gray-2: #2C2C2C;
  --gray-3: #6B6B6B;
  --gray-4: #A0A0A0;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--sans); font-weight: 300; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; padding: 22px 48px; display: flex; justify-content: space-between; align-items: center; z-index: 100; background: rgba(10,10,10,0.97); border-bottom: 1px solid var(--gray-2); }
.nav-logo { font-family: var(--serif); font-size: 18px; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--gray-4); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--accent); color: var(--black) !important; padding: 10px 20px; font-weight: 600 !important; font-size: 12px !important; letter-spacing: 0.06em; text-transform: uppercase; transition: opacity 0.2s !important; }
.nav-cta:hover { opacity: 0.88; }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 16px 36px; background: var(--accent); color: var(--black); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: opacity 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { opacity: 0.88; }
.btn-ghost { font-size: 14px; font-weight: 400; color: var(--gray-4); text-decoration: none; border-bottom: 1px solid var(--gray-2); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.btn-ghost:hover { color: var(--white); border-color: var(--gray-4); }
.btn-outline { display: inline-block; padding: 14px 32px; border: 1px solid var(--gray-3); color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--white); }

/* SECTIONS */
.section { padding: 96px 48px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: block; }
.section-heading { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); line-height: 1.15; color: var(--white); margin-bottom: 20px; max-width: 700px; }
.section-body { font-size: 16px; color: var(--gray-4); max-width: 620px; line-height: 1.8; margin-bottom: 32px; }
.dark-section { background: var(--gray-1); border-top: 1px solid var(--gray-2); border-bottom: 1px solid var(--gray-2); }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 140px 48px 80px; max-width: 960px; }
.hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 28px; display: block; }
.hero h1 { font-family: var(--serif); font-size: clamp(38px, 6.5vw, 72px); line-height: 1.08; color: var(--white); margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 18px; font-weight: 300; color: var(--gray-4); max-width: 580px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; flex-direction: column; gap: 16px; }
.hero-actions .btn-primary { align-self: flex-start; }
.hero-note { font-size: 13px; color: var(--gray-3); margin-top: 16px; }
.hero-secondary { font-size: 14px; color: var(--gray-4); margin-top: 8px; }
.hero-secondary a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(200,169,106,0.4); }

/* PULL QUOTE */
.pull-quote { border-left: 2px solid var(--accent); padding: 20px 28px; margin: 40px 0; max-width: 580px; }
.pull-quote p { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--gray-4); line-height: 1.5; }

/* STEPS */
.steps { display: flex; flex-direction: column; max-width: 680px; margin-top: 48px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--gray-2); }
.step:first-child { border-top: 1px solid var(--gray-2); }
.step-num { font-family: var(--serif); font-size: 13px; color: var(--accent); padding-top: 3px; opacity: 0.7; }
.step-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--gray-4); line-height: 1.7; }

/* OFFER CARD */
.offer-card { border: 1px solid var(--gray-2); padding: 40px; max-width: 580px; margin-top: 32px; }
.offer-price { font-family: var(--serif); font-size: 36px; color: var(--accent); margin-bottom: 8px; }
.offer-title { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.offer-desc { font-size: 15px; color: var(--gray-4); line-height: 1.75; margin-bottom: 24px; }
.offer-note { font-size: 12px; color: var(--gray-3); margin-top: 16px; }

/* CTA SECTION */
.cta-section { text-align: center; padding: 112px 48px; background: var(--gray-1); border-top: 1px solid var(--gray-2); }
.cta-section .section-label { display: block; text-align: center; }
.cta-section .section-heading { margin: 0 auto 20px; text-align: center; max-width: 560px; }
.cta-section .section-body { margin: 0 auto 36px; text-align: center; }

/* DIVIDER */
.divider { width: 1px; height: 48px; background: var(--gray-2); margin: 0 auto; }
.divider-h { width: 48px; height: 1px; background: var(--accent); margin: 0 48px; opacity: 0.4; }

/* FOOTER */
footer { padding: 64px 48px 40px; border-top: 1px solid var(--gray-2); display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 8px; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand .tagline { font-size: 13px; color: var(--gray-3); margin-bottom: 16px; }
.footer-brand .desc { font-size: 13px; color: var(--gray-3); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--gray-4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 24px 48px; border-top: 1px solid var(--gray-2); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--gray-3); }
.footer-bottom a { font-size: 12px; color: var(--gray-3); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--white); }

/* OPT-IN FORM */
.opt-in-form { display: flex; gap: 0; max-width: 480px; margin-top: 8px; }
.opt-in-form input { flex: 1; padding: 16px 20px; background: var(--gray-1); border: 1px solid var(--gray-2); border-right: none; color: var(--white); font-size: 14px; font-family: var(--sans); outline: none; }
.opt-in-form input::placeholder { color: var(--gray-3); }
.opt-in-form input:focus { border-color: var(--gray-3); }
.opt-in-form button { padding: 16px 24px; background: var(--accent); color: var(--black); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; transition: opacity 0.2s; }
.opt-in-form button:hover { opacity: 0.88; }
.form-note { font-size: 12px; color: var(--gray-3); margin-top: 12px; }

/* PAGE HEADER (for inner pages) */
.page-header { padding: 140px 48px 64px; border-bottom: 1px solid var(--gray-2); max-width: 800px; }
.page-header h1 { font-family: var(--serif); font-size: clamp(32px, 5vw, 56px); line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.page-header p { font-size: 18px; color: var(--gray-4); line-height: 1.7; max-width: 560px; }

/* FEATURE LIST */
.feature-list { list-style: none; margin: 24px 0; }
.feature-list li { padding: 12px 0; border-bottom: 1px solid var(--gray-2); font-size: 15px; color: var(--gray-4); padding-left: 20px; position: relative; }
.feature-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* CHECKLIST */
.checklist { list-style: none; margin: 24px 0; }
.checklist li { padding: 10px 0; font-size: 15px; color: var(--gray-4); padding-left: 24px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

/* PRICE BLOCK */
.price-block { padding: 32px; border: 1px solid var(--gray-2); display: inline-block; margin: 32px 0; }
.price-amount { font-family: var(--serif); font-size: 52px; color: var(--white); line-height: 1; }
.price-note { font-size: 13px; color: var(--gray-3); margin-top: 8px; }

/* FAQ */
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--gray-2); max-width: 680px; }
.faq-item:first-child { border-top: 1px solid var(--gray-2); }
.faq-q { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.faq-a { font-size: 14px; color: var(--gray-4); line-height: 1.75; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text p { font-size: 16px; color: var(--gray-4); line-height: 1.8; margin-bottom: 20px; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 64px; }
  .section { padding: 64px 24px; }
  .cta-section { padding: 72px 24px; }
  footer { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 32px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
  .opt-in-form { flex-direction: column; }
  .opt-in-form input { border-right: 1px solid var(--gray-2); border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; }
  .divider-h { margin: 0 24px; }
  .page-header { padding: 120px 24px 48px; }
}
