:root {
  --bg: #f5f0e8;
  --surface: #fffdf9;
  --surface-2: #efe7db;
  --text: #1c1a16;
  --muted: #645f58;
  --line: rgba(28,26,22,0.12);
  --gold: #c9a84c;
  --gold-dark: #a98a35;
  --gold-light: #f0d892;
  --dark: #1c1a16;
  --dark-soft: #2b2823;
  --white: #ffffff;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(28,26,22,0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Jost', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar { background: var(--dark); color: rgba(255,255,255,0.88); font-size: 14px; padding: 10px 0; }
.topbar .wrap { display: flex; gap: 8px 18px; flex-wrap: wrap; justify-content: center; align-items: center; }
.topbar a { color: #f6e7bb; }
header { position: sticky; top: 0; z-index: 20; background: rgba(245,240,232,0.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; letter-spacing: 0.02em; }
.logo span { color: var(--gold-dark); font-style: italic; }
nav ul { display: flex; list-style: none; gap: 20px; padding: 0; margin: 0; align-items: center; }
nav a { font-size: 15px; }
nav a:hover, nav a.active { color: var(--gold-dark); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 999px; font-weight: 500; border: 1px solid transparent; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-line { border-color: rgba(255,255,255,0.24); color: var(--white); background: transparent; }
.btn-line:hover { border-color: var(--gold-light); }
.btn-soft { border-color: var(--line); background: transparent; }
.btn-soft:hover { border-color: var(--gold-dark); }

.hero { background: linear-gradient(180deg, #1c1a16 0%, #26221d 100%); color: var(--white); padding: 84px 0 68px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 34px; align-items: start; }
.eyebrow, .section-label { display: inline-block; text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; margin-bottom: 14px; }
.eyebrow { color: var(--gold-light); }
section .section-label { color: var(--gold-dark); }
.dark-section .section-label { color: var(--gold-light); }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.12; margin: 0 0 14px; }
h1 { font-size: clamp(2.3rem, 5vw, 4.4rem); max-width: 760px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); max-width: 820px; }
h2 em { font-style: italic; color: var(--gold-dark); }
.dark-section h2 em { color: var(--gold-light); }
h3 { font-size: 1.55rem; }

.lead { font-size: 1.12rem; max-width: 720px; color: rgba(255,255,255,0.9); margin-bottom: 26px; }
.section-intro { max-width: 760px; color: var(--muted); font-size: 1.08rem; }

.simple-list, .checklist, .result-list, .pain-list, .hero-points { list-style: none; padding: 0; margin: 22px 0 0; }
.hero-points { margin-top: 0; }
.hero-points li, .simple-list li, .checklist li, .result-list li { padding-left: 18px; position: relative; margin-bottom: 11px; }
.hero-points li::before, .simple-list li::before, .checklist li::before, .result-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.checklist li, .result-list li { color: var(--muted); }
.dark-section .checklist li, .dark-section .result-list li, .dark-section .simple-list li { color: rgba(255,255,255,0.84); }
.pain-list { max-width: 760px; }
.pain-list li { padding: 16px 20px; margin-bottom: 12px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; font-size: 1.02rem; color: var(--text); }

.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.hero-card h3 { margin-bottom: 10px; }
.hero-card .simple-list { margin-top: 0; }
.hero-card .simple-list li { color: rgba(255,255,255,0.84); }

section { padding: 68px 0; scroll-margin-top: 92px; }
.alt-bg { background: var(--surface-2); }
.dark-section { background: var(--dark); color: var(--white); }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.card p { color: var(--muted); margin-bottom: 0; }
.dark-section .card { background: var(--dark-soft); border-color: rgba(255,255,255,0.1); color: var(--white); }
.dark-section .card p { color: rgba(255,255,255,0.84); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.kern-num, .step-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; margin-bottom: 6px; color: var(--gold-dark); }
.dark-section .kern-num, .dark-section .step-num { color: var(--gold-light); }

.faiza-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: center; }
.faiza-photo { border: 10px solid var(--white); box-shadow: var(--shadow); border-radius: 4px; width: 100%; }

.quote { background: var(--surface-2); border-left: 4px solid var(--gold); padding: 24px 26px; border-radius: 0 var(--radius) var(--radius) 0; font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; line-height: 1.35; margin: 24px 0; }
.dark-section .quote { background: rgba(255,255,255,0.05); color: var(--white); }

.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.contrast-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.contrast-col.problem { border-top: 3px solid var(--muted); }
.contrast-col.solution { border-top: 3px solid var(--gold); box-shadow: var(--shadow); }
.contrast-tag { display: inline-block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem; margin-bottom: 14px; }
.contrast-col.problem .contrast-tag { color: var(--muted); }
.contrast-col.solution .contrast-tag { color: var(--gold-dark); }
.contrast-list { list-style: none; padding: 0; margin: 0; }
.contrast-list li { padding-left: 24px; position: relative; margin-bottom: 12px; color: var(--muted); }
.contrast-col.problem .contrast-list li::before { content: "\00D7"; position: absolute; left: 0; color: var(--muted); font-weight: 600; }
.contrast-col.solution .contrast-list li::before { content: "\2192"; position: absolute; left: 0; color: var(--gold-dark); }

.mini-tag { display: block; text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; font-weight: 600; margin: 0 0 6px; }
.mini-tag.prob { color: var(--muted); }
.mini-tag.sol { color: var(--gold-dark); margin-top: 18px; }
.card-line { margin: 0; color: var(--text); }
.dark-section .card-line { color: rgba(255,255,255,0.9); }
.dark-section .mini-tag.prob { color: rgba(255,255,255,0.55); }
.dark-section .mini-tag.sol { color: var(--gold-light); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.link-more { display: inline-block; margin-top: 18px; color: var(--gold-dark); font-weight: 500; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.link-more:hover { color: var(--text); }
.dark-section .link-more { color: var(--gold-light); border-color: var(--gold-light); }
.note { margin-top: 26px; font-size: 0.95rem; color: var(--muted); max-width: 760px; }

.page-head { background: linear-gradient(180deg, #1c1a16 0%, #26221d 100%); color: var(--white); padding: 64px 0 52px; }
.page-head .eyebrow { color: var(--gold-light); }
.page-head h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.page-head h1 em { font-style: italic; color: var(--gold-light); }
.page-head p { color: rgba(255,255,255,0.86); max-width: 720px; font-size: 1.08rem; }

footer { background: var(--dark); color: rgba(255,255,255,0.82); padding: 28px 0 40px; font-size: 14px; }
footer a { color: #f6e7bb; }
.footer-meta { margin-top: 10px; color: rgba(255,255,255,0.6); }
.footer-links { margin-top: 8px; }

.mobile-menu { display: none; }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .two-col, .faiza-grid, .contrast { grid-template-columns: 1fr; }
  .kern-grid { grid-template-columns: repeat(2, 1fr); }
  .faiza-photo { max-width: 360px; }
  nav ul { display: none; }
  .mobile-menu { display: inline-flex; }
  .nav.open ul { display: flex; position: absolute; left: 16px; right: 16px; top: 78px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px; flex-direction: column; align-items: flex-start; z-index: 30; }
}
@media (max-width: 700px) {
  .hero { padding: 64px 0 56px; }
  section { padding: 54px 0; }
  .hero-card, .card { padding: 20px; }
  .kern-grid { grid-template-columns: 1fr; }
  .topbar .wrap { justify-content: flex-start; }
}
