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

    :root {
      --gold:   #c9a84c;
      --gold-lt:#e8d08a;
      --dark:   #0e0b08;
      --mid:    #1c1610;
      --cream:  #f5f0e8;
      --text:   #2a2218;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--dark);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ─── HERO ─────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 40%,
        #3b2a14 0%, #1c1610 50%, #0e0b08 100%);
      z-index: 0;
    }

    /* animated floating particles */
    .particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
    .particle {
      position: absolute;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0;
      animation: float-up var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
    }
    @keyframes float-up {
      0%   { transform: translateY(100vh) scale(0); opacity: 0; }
      10%  { opacity: .35; }
      90%  { opacity: .1; }
      100% { transform: translateY(-10vh) scale(1); opacity: 0; }
    }

    .hero-content { position: relative; z-index: 2; max-width: 760px; }

    .tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(.85rem, 2vw, 1rem);
      letter-spacing: .35em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1.4rem;
      animation: fade-down .8s ease both;
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(3.5rem, 10vw, 7rem);
      line-height: 1;
      letter-spacing: -.01em;
      animation: fade-down 1s .2s ease both;
    }
    h1 span { color: var(--gold); }

    .hero-sub {
      font-size: clamp(.8rem, 1.8vw, .95rem);
      font-weight: 300;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #b8a98a;
      margin-top: 1rem;
      animation: fade-down 1s .4s ease both;
    }

    .hero-divider {
      width: 80px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 2.4rem auto;
      animation: fade-down 1s .5s ease both;
    }

    .hero-desc {
      font-size: clamp(.82rem, 1.6vw, .92rem);
      line-height: 1.95;
      color: #ccc0a8;
      max-width: 560px;
      margin: 0 auto;
      animation: fade-down 1s .6s ease both;
    }

    .hero-cta {
      display: inline-block;
      margin-top: 2.8rem;
      padding: .9rem 2.6rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .25em;
      text-transform: uppercase;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: color .35s;
      animation: fade-down 1s .8s ease both;
    }
    .hero-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
      z-index: -1;
    }
    .hero-cta:hover { color: var(--dark); }
    .hero-cta:hover::before { transform: scaleX(1); }

    @keyframes fade-down {
      from { opacity: 0; transform: translateY(-22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── NECKLACE VISUAL ───────────────────────────────── */
    .visual-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6rem 2rem;
      gap: 5rem;
      flex-wrap: wrap;
      background: var(--mid);
      position: relative;
    }
    .visual-section::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .necklace-svg-wrap {
      flex-shrink: 0;
      width: clamp(220px, 35vw, 340px);
      filter: drop-shadow(0 0 40px rgba(201,168,76,.25));
      animation: sway 6s ease-in-out infinite;
    }
    @keyframes sway {
      0%, 100% { transform: rotate(-2deg); }
      50%       { transform: rotate(2deg); }
    }

    .visual-text { max-width: 420px; }
    .section-label {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .visual-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2rem, 5vw, 3rem);
      line-height: 1.15;
      margin-bottom: 1.4rem;
    }
    .visual-text p {
      font-size: .88rem;
      line-height: 1.9;
      color: #bfb49a;
    }

    /* anatomy callouts */
    .callouts {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-top: 2rem;
    }
    .callout {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .callout-icon {
      width: 36px; height: 36px;
      flex-shrink: 0;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: .85rem;
      font-weight: 600;
    }
    .callout-body h4 {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: .25rem;
    }
    .callout-body p { font-size: .8rem; color: #a89b80; line-height: 1.6; }

    /* ─── HOW IT WORKS ──────────────────────────────────── */
    .how-section {
      padding: 6rem 2rem;
      text-align: center;
      background: var(--dark);
      position: relative;
    }
    .how-section::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .how-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 4.5vw, 2.8rem);
      margin-bottom: .5rem;
    }
    .how-section .sub {
      font-size: .82rem;
      color: #9a8e76;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 3.5rem;
    }
    .steps {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      max-width: 900px;
      margin: 0 auto;
    }
    .step {
      flex: 1 1 200px;
      max-width: 230px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .9rem;
    }
    .step-num {
      width: 52px; height: 52px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--gold);
      position: relative;
    }
    .step-num::after {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,.2);
    }
    .step h3 {
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .step p { font-size: .78rem; color: #9a8e76; line-height: 1.7; }

    /* ─── PROS ──────────────────────────────────────────── */
    .pros-section {
      padding: 6rem 2rem;
      background: var(--mid);
      position: relative;
    }
    .pros-section::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .pros-inner {
      max-width: 1000px;
      margin: 0 auto;
    }
    .pros-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .pros-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 4.5vw, 2.8rem);
      margin-bottom: .4rem;
    }
    .pros-header p {
      font-size: .82rem;
      color: #9a8e76;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .pros-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }
    .pro-card {
      border: 1px solid rgba(201,168,76,.18);
      border-radius: 2px;
      padding: 1.8rem 1.6rem;
      background: rgba(255,255,255,.02);
      transition: border-color .3s, transform .3s;
      position: relative;
      overflow: hidden;
    }
    .pro-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 0;
      background: var(--gold);
      transition: height .4s ease;
    }
    .pro-card:hover { border-color: rgba(201,168,76,.5); transform: translateY(-4px); }
    .pro-card:hover::before { height: 100%; }
    .pro-card-icon {
      font-size: 1.4rem;
      margin-bottom: .9rem;
      display: block;
    }
    .pro-card h3 {
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: .6rem;
    }
    .pro-card p {
      font-size: .8rem;
      color: #a89b80;
      line-height: 1.75;
    }

    /* ─── QUOTE BAND ────────────────────────────────────── */
    .quote-band {
      padding: 5rem 2rem;
      text-align: center;
      background: #0a0806;
      position: relative;
    }
    .quote-band::before,
    .quote-band::after {
      content: '';
      position: absolute; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .quote-band::before { top: 0; }
    .quote-band::after  { bottom: 0; }
    .quote-band blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.4rem, 4vw, 2.2rem);
      font-weight: 300;
      color: var(--cream);
      max-width: 700px;
      margin: 0 auto 1.2rem;
      line-height: 1.55;
    }
    .quote-band cite {
      font-size: .72rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ─── FOOTER ────────────────────────────────────────── */
    footer {
      padding: 2.5rem 2rem;
      text-align: center;
      background: var(--dark);
      border-top: 1px solid rgba(201,168,76,.1);
    }
    footer p {
      font-size: .7rem;
      color: #5a5040;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    footer .brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      letter-spacing: .3em;
      color: var(--gold);
      display: block;
      margin-bottom: .5rem;
    }

    /* scroll reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
