*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --ink: #22231A;
    --olive: #616044;
    --sage: #879571;
    --sage-deep: #6B7857;
    --taupe: #B1ABA1;
    --stone: #D4D0CB;
    --stone-light: #EBE9E3;
    --white: #FFFFFF;
    --peach: #E89A6A;
    --peach-light: #F2B384;
    --warm-white: #FFFFFF;
    --salt: #EBE9E3;
    --amber: #E89A6A;
    --amber-light: #F2B384;
    --rose-salt: #879571;
    --rose-pale: #B1ABA1;
    --cream: #D4D0CB;
    --muted: #7A7D6D;
    --ember: #E89A6A;
    --ember-light: #F2B384;
    --gold: #6B7857;
    --gold-pale: #879571;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "DM Sans", system-ui, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--ink); color: var(--warm-white); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

  /* HEADER */
  .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: linear-gradient(to bottom, rgba(34,35,26,0.95) 0%, rgba(34,35,26,0.85) 70%, rgba(34,35,26,0) 100%); backdrop-filter: blur(6px); transition: background 0.3s; }
  .site-header.scrolled { background: rgba(34,35,26,0.97); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .header-inner { padding: 1rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 1500px; margin: 0 auto; }
  .brand { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; flex-shrink: 0; }
  .brand-logo { max-height: 64px; width: auto; transition: opacity 0.25s; }
  .brand:hover .brand-logo { opacity: 0.85; }
  .brand-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-pale); white-space: nowrap; }
  .primary-nav ul { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
  .primary-nav a { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); text-decoration: none; transition: color 0.25s; position: relative; padding: 0.4rem 0; }
  .primary-nav a:hover { color: var(--amber-light); }
  .primary-nav a.current { color: var(--amber-light); }
  .primary-nav a.current::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--amber); }
  .header-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
  .header-phone { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-pale); text-decoration: none; transition: color 0.25s; }
  .header-phone:hover { color: var(--amber-light); }
  .header-cta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: var(--amber); text-decoration: none; padding: 0.7rem 1.5rem; border-radius: 2px; transition: background 0.3s, transform 0.2s; }
  .header-cta:hover { background: var(--amber-light); transform: translateY(-1px); }
  .nav-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.18); width: 44px; height: 44px; border-radius: 2px; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
  .nav-toggle:hover { border-color: var(--amber); }
  .nav-toggle span { width: 18px; height: 1.5px; background: var(--rose-pale); transition: transform 0.3s, opacity 0.2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; background: rgba(34,35,26,0.98); backdrop-filter: blur(10px); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.35s; padding: 6rem 2rem 3rem; }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
  .mobile-menu a { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--warm-white); text-decoration: none; }
  .mobile-menu a:hover { color: var(--rose-pale); }
  .mobile-menu .mm-cta { background: var(--amber); color: #fff; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 1rem 2.5rem; border-radius: 2px; }
  .mobile-menu .mm-phone { font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-pale); }
  .mobile-menu .mm-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.15); }
  @media (max-width: 1100px) { .primary-nav, .header-phone { display: none; } .nav-toggle { display: flex; } }
  @media (max-width: 900px) { .header-inner { padding: 0.85rem 1.5rem; } .brand-name { display: none; } }

  /* FAQ */
  .faq { background: #110a05; padding: 6rem; }
  .faq-list { margin-top: 3rem; max-width: 880px; }
  .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .faq-item summary { list-style: none; cursor: pointer; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover .faq-q { color: var(--amber-light); }
  .faq-q { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; color: var(--warm-white); transition: color 0.25s; }
  .faq-toggle { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--amber); transition: transform 0.3s; flex-shrink: 0; }
  .faq-item[open] .faq-toggle { transform: rotate(45deg); }
  .faq-a { font-size: 0.92rem; color: var(--cream); font-weight: 300; line-height: 1.85; padding: 0 0 1.5rem; max-width: 720px; }
  .faq-a a { color: var(--amber-light); }
  .faq-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
  .faq-grid .faq-list { margin-top: 0; max-width: none; }
  .faq-art { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; background: #2a2b22; position: sticky; top: 100px; border: 1px solid rgba(232,154,106,0.22); }
  .faq-art img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.6s ease; display: block; }
  .faq-art:hover img { transform: scale(1.04); }
  .faq-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(34,35,26,0.55)); pointer-events: none; }
  @media (max-width: 1100px) { .faq-grid { grid-template-columns: 1fr; gap: 2rem; } .faq-art { display: none; } }
  .faq .section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
  .faq .section-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--warm-white); margin-bottom: 1.25rem; }
  .faq .section-title em { font-style: italic; color: var(--rose-pale); }
  @media (max-width: 900px) { .faq { padding: 4rem 2rem; } }

  /* FOOTER */
  .site-footer { background: #08050a; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 5rem; }
  .footer-inner { max-width: 1500px; margin: 0 auto; padding: 0 6rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; }
  .footer-brand .footer-logo { max-height: 110px; width: auto; margin-bottom: 1.5rem; }
  .footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--rose-pale); margin-bottom: 1.5rem; line-height: 1.4; }
  .footer-address { font-size: 0.88rem; color: var(--cream); line-height: 1.75; margin-bottom: 1rem; }
  .footer-contact { font-size: 0.88rem; color: var(--cream); line-height: 1.9; }
  .footer-contact a { color: var(--cream); text-decoration: none; transition: color 0.25s; }
  .footer-contact a:hover { color: var(--amber-light); }
  .footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
  .footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--cream); transition: border-color 0.25s, color 0.25s, background 0.25s; }
  .footer-social a:hover { border-color: var(--amber); color: var(--amber-light); background: rgba(232,154,106,0.08); }
  .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
  .footer-col h4 { font-family: var(--serif); font-size: 0.85rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-pale); margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.65rem; }
  .footer-col a { font-size: 0.88rem; color: var(--cream); text-decoration: none; transition: color 0.25s; }
  .footer-col a:hover { color: var(--amber-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.75rem 6rem; max-width: 1500px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
  .footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: var(--muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--cream); }
  .footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
  @media (max-width: 1100px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 0 3rem 4rem; } .footer-bottom { padding: 1.75rem 3rem; } }
  @media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; padding: 0 2rem 3rem; gap: 2.5rem; } .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; align-items: flex-start; } }

  /* HERO */
  .hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
  .hero-img { position: absolute; inset: 0; }
  .hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.7; }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(34,35,26,0.25) 0%, rgba(34,35,26,0.05) 35%, rgba(34,35,26,0.65) 70%, rgba(34,35,26,0.96) 100%); }
  .hero-content { position: relative; z-index: 2; padding: 0 6rem 5rem; max-width: 820px; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 1rem; }
  .eyebrow::before { content: ""; display: block; width: 2.5rem; height: 1px; background: var(--amber); }
  .hero-headline { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.08; color: var(--warm-white); margin-bottom: 1.5rem; }
  .hero-headline em { font-style: italic; color: var(--rose-pale); }
  .hero-sub { font-size: 1.05rem; color: var(--cream); font-weight: 300; max-width: 540px; line-height: 1.8; margin-bottom: 2.5rem; }
  .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .btn-primary { display: inline-block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; background: var(--amber); color: #fff; text-decoration: none; padding: 0.9rem 2.2rem; border-radius: 2px; transition: background 0.25s; }
  .btn-primary:hover { background: var(--amber-light); }
  .btn-ghost { display: inline-block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-pale); text-decoration: none; padding: 0.9rem 0; border-bottom: 1px solid rgba(135,149,113,0.4); transition: border-color 0.25s; }
  .btn-ghost:hover { border-color: var(--rose-pale); }

  /* SALT DIVIDER */
  .salt-divider { height: 4px; background: linear-gradient(to right, #879571, #F2B384, #EBE9E3, #F2B384, #879571); opacity: 0.6; }

  /* INTRO */
  .intro { padding: 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; background: #110c07; }
  .intro-text .section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
  .intro-text .section-title { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.2; color: var(--warm-white); margin-bottom: 1.25rem; }
  .intro-text .section-title em { font-style: italic; color: var(--rose-pale); }
  .intro-text p { font-size: 0.96rem; color: var(--cream); font-weight: 300; line-height: 1.9; margin-bottom: 1rem; }
  .intro-img { border-radius: 2px; overflow: hidden; }
  .intro-img img { width: 100%; display: block; opacity: 0.88; border-radius: 2px; }

  /* WHAT IS */
  .what-is { padding: 5rem 6rem; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.05); }
  .what-is-inner { max-width: 760px; margin: 0 auto; text-align: center; }
  .what-is-inner .section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
  .what-is-inner .section-title { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.2; color: var(--warm-white); margin-bottom: 1.5rem; }
  .what-is-inner .section-title em { font-style: italic; color: var(--rose-pale); }
  .what-is-inner p { font-size: 0.975rem; color: var(--cream); font-weight: 300; line-height: 1.9; margin-bottom: 1rem; }
  .halogenerator-badge { display: inline-flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; padding: 0.75rem 1.5rem; border: 1px solid rgba(232,154,106,0.35); border-radius: 2px; }
  .halogenerator-badge span { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-light); }

  /* BENEFITS */
  .benefits { background: #110c07; padding: 6rem; }
  .benefits-header { margin-bottom: 3.5rem; }
  .section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
  .section-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--warm-white); }
  .section-title em { font-style: italic; color: var(--rose-pale); }
  .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
  .benefit-card { background: #110c07; padding: 2.25rem 2rem; transition: background 0.25s; }
  .benefit-card:hover { background: #1d1208; }
  .benefit-number { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: rgba(232,154,106,0.22); line-height: 1; margin-bottom: 0.75rem; }
  .benefit-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--warm-white); margin-bottom: 0.6rem; }
  .benefit-desc { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.75; }

  /* GALLERY */
  .gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: rgba(255,255,255,0.04); padding: 0; }
  .gallery-item { overflow: hidden; position: relative; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; transition: opacity 0.4s, transform 0.6s; }
  .gallery-item:hover img { opacity: 1; transform: scale(1.03); }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(34,35,26,0.8), transparent); font-family: var(--serif); font-size: 1rem; font-style: italic; font-weight: 300; color: var(--rose-pale); opacity: 0; transition: opacity 0.3s; }
  .gallery-item:hover .gallery-caption { opacity: 1; }

  /* SESSION */
  .session { background: #22231A; padding: 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .session-info { padding-top: 0.5rem; }
  .session-steps { margin: 2rem 0; }
  .step { display: flex; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .step-num { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: var(--amber); flex-shrink: 0; padding-top: 0.15rem; min-width: 1.5rem; }
  .step-text { font-size: 0.9rem; color: var(--cream); font-weight: 300; line-height: 1.7; }
  .step-text strong { color: var(--warm-white); font-weight: 400; }
  .pricing-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pricing-name { font-size: 0.9rem; color: var(--cream); font-weight: 300; }
  .pricing-price { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--rose-pale); }
  .pricing-note { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; font-style: italic; }
  .session-aside { }
  .session-aside img { width: 100%; border-radius: 2px; opacity: 0.9; margin-bottom: 1.5rem; }
  .who-loves { background: rgba(255,255,255,0.04); border-radius: 2px; padding: 1.5rem; border-left: 2px solid var(--amber); }
  .who-loves h4 { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--rose-pale); margin-bottom: 0.75rem; }
  .who-loves ul { list-style: none; }
  .who-loves li { font-size: 0.85rem; color: var(--cream); padding: 0.4rem 0; display: flex; gap: 0.6rem; }
  .who-loves li::before { content: ""; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 0.55rem; }

  /* CTA */
  .cta-block { background: linear-gradient(160deg, #2e3023 0%, #22231A 60%); text-align: center; padding: 7rem 6rem; border-top: 1px solid rgba(232,154,106,0.15); position: relative; overflow: hidden; }
  .cta-block::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 60%; height: 120%; background: radial-gradient(ellipse, rgba(232,154,106,0.1), transparent 65%); pointer-events: none; }
  .cta-title { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.15; color: var(--warm-white); margin-bottom: 1rem; }
  .cta-title em { font-style: italic; color: var(--rose-pale); }
  .cta-body { font-size: 0.975rem; color: var(--cream); font-weight: 300; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.85; }
  .cta-actions { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

  /* FOOTER */
  footer { background: #080503; padding: 2rem 6rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 1rem; }
  footer p { font-size: 0.78rem; color: var(--muted); }
  footer a { color: var(--muted); text-decoration: none; }
  footer a:hover { color: var(--cream); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  .hero-content > * { opacity: 0; animation: fadeUp 0.9s ease forwards; }
  .hero-content .eyebrow { animation-delay: 0.2s; }
  .hero-content .hero-headline { animation-delay: 0.4s; }
  .hero-content .hero-sub { animation-delay: 0.6s; }
  .hero-content .hero-actions { animation-delay: 0.8s; }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .hero-content { padding: 0 2rem 4rem; }
    .intro, .session { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 2rem; }
    .what-is, .benefits { padding: 4rem 2rem; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .gallery-item.tall { grid-row: span 1; }
    .cta-block { padding: 5rem 2rem; }
    footer { padding: 1.5rem 2rem; }
  }
  @media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }