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

  :root {
    --gold: #B8965A;
    --gold-light: #D4B078;
    --gold-pale: #F5EDD8;
    --dark: #1A1512;
    --dark-2: #2C2319;
    --mid: #5C4A35;
    --stone: #8C7B6A;
    --stone-light: #C4B49E;
    --cream: #FAF6EF;
    --white: #FFFDF9;
    --sage: #7A8C72;
    --sage-light: #E8EDE6;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--cream); color: var(--dark); font-size: 16px; line-height: 1.7; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(26,21,18,0.92); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 68px;
  }
  .nav-logo {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    color: var(--gold-light); letter-spacing: 0.12em; text-decoration: none;
  }
  .nav-logo span { font-style: italic; font-weight: 300; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-family: var(--sans); font-size: 12px; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-light);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-book {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark);
    background: var(--gold); padding: 10px 24px; text-decoration: none;
    transition: background 0.2s;
  }
  .nav-book:hover { background: var(--gold-light); }

  /* ── PROMO BAR ── */
  .promo-bar {
    background: var(--gold); color: var(--dark);
    text-align: center; padding: 10px;
    font-size: 12px; letter-spacing: 0.15em; font-weight: 500; text-transform: uppercase;
  }
  .promo-bar span { font-weight: 400; letter-spacing: 0.05em; text-transform: none; }

  /* ── HERO ── */
  .hero {
    position: relative; height: 92vh; min-height: 620px;
    display: flex; align-items: flex-end;
    overflow: hidden;
    background: var(--dark-2);
    padding-top: 68px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,21,18,0.25) 0%, rgba(26,21,18,0.72) 100%),
      url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?w=1800&q=85&auto=format&fit=crop') center/cover no-repeat;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 80px 80px;
    max-width: 760px;
  }
  .hero-eyebrow {
    font-family: var(--sans); font-size: 11px; font-weight: 400;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light);
    margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
  .hero h1 {
    font-family: var(--serif); font-size: clamp(52px,7vw,88px);
    font-weight: 300; line-height: 1.05; color: var(--white);
    margin-bottom: 10px;
  }
  .hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 300; }
  .hero-sub {
    font-family: var(--serif); font-size: 20px; font-weight: 300;
    font-style: italic; color: var(--stone-light); margin-bottom: 36px;
  }
  .hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-tag {
    border: 1px solid rgba(184,150,90,0.5); color: var(--gold-light);
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 6px 16px; font-family: var(--sans); font-weight: 400;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--dark);
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 16px 36px; text-decoration: none;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--gold); color: var(--gold-light);
    font-family: var(--sans); font-size: 12px; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 16px 36px; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-outline:hover { background: rgba(184,150,90,0.1); }
  .hero-scroll {
    position: absolute; right: 60px; bottom: 80px;
    writing-mode: vertical-rl; font-size: 10px;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--stone-light); display: flex; align-items: center; gap: 12px;
  }
  .hero-scroll::after { content: ''; display: block; width: 1px; height: 60px; background: var(--gold); }

  /* ── SECTIONS ── */
  section { padding: 90px 80px; }
  .section-eyebrow {
    font-family: var(--sans); font-size: 10px; font-weight: 400;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px;
  }
  h2 {
    font-family: var(--serif); font-size: clamp(32px,4vw,52px);
    font-weight: 300; line-height: 1.1; color: var(--dark);
  }
  h2 em { font-style: italic; color: var(--mid); }
  .divider {
    width: 48px; height: 1px; background: var(--gold); margin: 24px 0;
  }
  p { color: var(--mid); font-size: 16px; line-height: 1.8; }

  /* ── INTRO STRIP ── */
  .intro-strip {
    background: var(--dark); padding: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
  .intro-img {
    background: url('https://images.unsplash.com/photo-1552693673-1bf958298935?w=900&q=85&auto=format&fit=crop') center/cover;
  }
  .intro-text {
    padding: 80px 72px; display: flex; flex-direction: column; justify-content: center;
  }
  .intro-text .section-eyebrow { color: var(--gold-light); }
  .intro-text h2 { color: var(--white); }
  .intro-text h2 em { color: var(--gold-light); }
  .intro-text .divider { background: var(--gold); }
  .intro-text p { color: var(--stone-light); }
  .intro-text p + p { margin-top: 16px; }
  .treatment-details {
    margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .detail-item { border-left: 2px solid var(--gold); padding-left: 16px; }
  .detail-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
  .detail-value { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--gold-light); }

  /* ── BENEFITS ── */
  .benefits-section { background: var(--cream); }
  .benefits-section .section-eyebrow { text-align: center; }
  .benefits-section h2 { text-align: center; }
  .benefits-section .divider { margin: 24px auto; }
  .benefits-grid {
    margin-top: 60px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .benefit-card {
    background: var(--white); padding: 44px 36px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
  }
  .benefit-card:hover { border-top-color: var(--gold); }
  .benefit-icon {
    width: 52px; height: 52px; background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .benefit-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .benefit-card h3 {
    font-family: var(--serif); font-size: 22px; font-weight: 400;
    color: var(--dark); margin-bottom: 12px;
  }
  .benefit-card p { font-size: 14px; color: var(--stone); line-height: 1.7; }

  /* ── WHO SHOULD ── */
  .who-section {
    background: var(--gold-pale);
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
    align-items: center;
  }
  .who-img {
    height: 520px;
    background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=900&q=85&auto=format&fit=crop') center/cover;
  }
  .who-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
  .who-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px; color: var(--mid);
  }
  .who-list li::before {
    content: ''; display: block; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%; margin-top: 9px; flex-shrink: 0;
  }

  /* ── PROCEDURE ── */
  .procedure-section { background: var(--dark); }
  .procedure-section .section-eyebrow { color: var(--gold-light); }
  .procedure-section h2 { color: var(--white); }
  .procedure-section h2 em { color: var(--gold-light); }
  .procedure-section .divider { background: var(--gold); }
  .procedure-section > p { color: var(--stone-light); margin-bottom: 60px; }
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .step-card { background: rgba(255,255,255,0.04); padding: 40px 32px; position: relative; }
  .step-num {
    font-family: var(--serif); font-size: 64px; font-weight: 300;
    color: rgba(184,150,90,0.18); line-height: 1;
    position: absolute; top: 24px; right: 28px;
  }
  .step-card h3 {
    font-family: var(--serif); font-size: 20px; font-weight: 400;
    color: var(--gold-light); margin-bottom: 12px;
  }
  .step-card p { font-size: 14px; color: var(--stone-light); line-height: 1.7; }
  .step-line {
    width: 32px; height: 1px; background: var(--gold);
    margin-bottom: 24px;
  }

  /* ── OILS ── */
  .oils-section { background: var(--white); }
  .oils-section .section-eyebrow { text-align: center; }
  .oils-section h2 { text-align: center; }
  .oils-section .divider { margin: 24px auto; }
  .oils-grid {
    margin-top: 60px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .oil-card {
    border: 1px solid var(--stone-light); padding: 36px 28px; text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .oil-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(184,150,90,0.12); }
  .oil-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gold-pale); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .oil-circle svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .oil-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--dark); margin-bottom: 10px; }
  .oil-card p { font-size: 13px; color: var(--stone); line-height: 1.6; }

  /* ── COMPARISON ── */
  .compare-section { background: var(--cream); }
  .compare-section h2 { text-align: center; }
  .compare-section .section-eyebrow { text-align: center; }
  .compare-section .divider { margin: 24px auto; }
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 60px; }
  .compare-card { background: var(--white); padding: 44px 40px; border-left: 4px solid var(--gold-pale); }
  .compare-card.featured { border-left-color: var(--gold); }
  .compare-card .badge {
    display: inline-block; background: var(--gold); color: var(--dark);
    font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 5px 14px; margin-bottom: 20px;
  }
  .compare-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--dark); margin-bottom: 16px; }
  .compare-card p { font-size: 15px; color: var(--stone); line-height: 1.8; }

  /* ── SAFETY ── */
  .safety-section {
    background: var(--dark-2); padding: 72px 80px;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  }
  .safety-card { }
  .safety-icon { font-size: 28px; margin-bottom: 14px; }
  .safety-card h3 { font-family: var(--serif); font-size: 20px; color: var(--gold-light); margin-bottom: 10px; }
  .safety-card p { font-size: 14px; color: var(--stone-light); line-height: 1.7; }

  /* ── AFTER ── */
  .after-section { background: var(--sage-light); }
  .after-section h2 { text-align: center; }
  .after-section .section-eyebrow { text-align: center; }
  .after-section .divider { margin: 24px auto; }
  .timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; position: relative; }
  .timeline::before {
    content: ''; position: absolute; top: 30px; left: calc(100%/6); right: calc(100%/6);
    height: 1px; background: var(--sage);
  }
  .timeline-item { text-align: center; padding: 0 24px; }
  .timeline-dot {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--sage);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; position: relative; z-index: 2;
    font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--sage);
  }
  .timeline-item h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--dark); margin-bottom: 10px; }
  .timeline-item p { font-size: 14px; color: var(--mid); }

  /* ── WHY YARA ── */
  .why-section {
    background: var(--dark); padding: 90px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .why-text .section-eyebrow { color: var(--gold-light); }
  .why-text h2 { color: var(--white); }
  .why-text h2 em { color: var(--gold-light); }
  .why-text .divider { background: var(--gold); }
  .why-text p { color: var(--stone-light); }
  .why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
  .why-item { display: flex; gap: 20px; }
  .why-item-num {
    font-family: var(--serif); font-size: 36px; font-weight: 300;
    color: rgba(184,150,90,0.4); line-height: 1; flex-shrink: 0; width: 32px;
  }
  .why-item-text h4 { font-family: var(--serif); font-size: 18px; color: var(--gold-light); margin-bottom: 6px; }
  .why-item-text p { font-size: 14px; color: var(--stone-light); }
  .why-img {
    height: 520px;
    background: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=900&q=85&auto=format&fit=crop') center/cover;
    position: relative;
  }
  .why-img::after {
    content: '28,000+\ASuccessful\ASessions'; white-space: pre;
    position: absolute; bottom: 32px; left: -32px;
    background: var(--gold); color: var(--dark);
    font-family: var(--serif); font-size: 20px; text-align: center;
    padding: 24px 28px; line-height: 1.4;
  }

  /* ── FINAL CTA ── */
  .cta-section {
    background: var(--gold-pale); text-align: center; padding: 100px 80px;
  }
  .cta-section h2 { margin-bottom: 16px; }
  .cta-section p { color: var(--mid); max-width: 560px; margin: 0 auto 40px; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .location-select {
    display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap;
  }
  .location-btn {
    border: 1px solid var(--stone-light); padding: 10px 24px; background: transparent;
    font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--mid); cursor: pointer;
    transition: all 0.2s;
  }
  .location-btn:hover, .location-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(184,150,90,0.06); }
  .price-display {
    font-family: var(--serif); font-size: 40px; font-weight: 300;
    color: var(--dark); margin-top: 24px;
  }
  .price-display small { font-size: 16px; color: var(--stone); font-family: var(--sans); font-weight: 300; }

  /* ── FOOTER NAV ── */
  .footer {
    background: var(--dark); padding: 40px 80px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(184,150,90,0.2);
  }
  .footer-logo { font-family: var(--serif); font-size: 18px; color: var(--gold-light); letter-spacing: 0.1em; }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); text-decoration: none; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer p { font-size: 12px; color: var(--stone); }

  /* ── FAQ ── */
  .faq-section { background: var(--white); }
  .faq-section .section-eyebrow { text-align: center; }
  .faq-section h2 { text-align: center; }
  .faq-section .divider { margin: 24px auto; }
  .faq-section > p { text-align: center; color: var(--stone); max-width: 560px; margin: 0 auto 56px; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .faq-item {
    background: var(--cream); padding: 0;
    border-bottom: 1px solid var(--stone-light);
  }
  .faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 28px 32px;
    background: none; border: none; cursor: pointer; text-align: left;
    font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--dark);
    line-height: 1.3; transition: color 0.2s;
  }
  .faq-question:hover { color: var(--gold); }
  .faq-question.open { color: var(--gold); }
  .faq-icon {
    flex-shrink: 0; width: 28px; height: 28px;
    border: 1px solid var(--stone-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    font-size: 18px; color: var(--stone); line-height: 1;
  }
  .faq-question.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--dark); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 32px;
    font-size: 14px; color: var(--stone); line-height: 1.8;
  }
  .faq-answer.open { max-height: 300px; padding: 0 32px 28px; }

  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 60px 24px; }
    .hero-content { padding: 0 32px 60px; }
    .intro-strip, .who-section, .why-section { grid-template-columns: 1fr; }
    .intro-img, .who-img, .why-img { height: 320px; }
    .benefits-grid, .steps-grid { grid-template-columns: 1fr; }
    .oils-grid { grid-template-columns: 1fr 1fr; }
    .compare-grid, .timeline { grid-template-columns: 1fr; }
    .safety-section { grid-template-columns: 1fr; }
    .footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
    .why-img::after { left: 0; }
    .cta-section { padding: 60px 24px; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-question { padding: 22px 20px; font-size: 17px; }
    .faq-answer { padding: 0 20px; }
    .faq-answer.open { padding: 0 20px 22px; }
  }
