:root{
    --black:#0A0A0B;
    --charcoal:#18181A;
    --gold:#C9A24B;
    --gold-soft:#E4CE94;
    --red:#7A1F2B;
    --red-deep:#5E1620;
    --cream:#F7F4EC;
    --cream-dim:#EFEADC;
    --ink:#171512;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    background:var(--cream);
    color:var(--ink);
    -webkit-font-smoothing:antialiased;
    line-height:1.6;
  }
  h1,h2,h3{
    font-family:'Fraunces', serif;
    font-weight:600;
    letter-spacing:-0.01em;
  }
  a{color:inherit; text-decoration:none;}
  .eyebrow{
    font-size:0.72rem;
    letter-spacing:0.22em;
    text-transform:uppercase;
    font-weight:600;
    color:var(--gold);
  }
  .wrap{max-width:1100px; margin:0 auto; padding:0 32px;}

  /* ---- Emblem / seal signature mark ---- */
  .seal{
    width:56px; height:56px;
    border:1.5px solid var(--gold);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    position:relative;
    flex-shrink:0;
  }
  .seal::before{
    content:'';
    position:absolute; inset:5px;
    border:1px solid var(--gold);
    border-radius:50%;
    opacity:0.55;
  }
  .seal-mark{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:1.05rem;
    color:var(--gold);
  }

  /* ---- Header ---- */
  header{
    background:var(--black);
    border-bottom:1px solid rgba(201,162,75,0.25);
    position:sticky; top:0; z-index:40;
  }
  .nav-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 32px;
    max-width:1100px; margin:0 auto;
  }
  .brand{
    display:flex; align-items:center; gap:12px;
    color:var(--cream);
  }
  .brand-name{
    font-family:'Fraunces', serif;
    font-size:1.15rem;
    letter-spacing:0.02em;
    color:var(--cream);
  }
  .brand-name span{color:var(--gold);}
  nav.links{display:flex; gap:30px;}
  nav.links a{
    color:#C9C6BE;
    font-size:0.86rem;
    font-weight:500;
    letter-spacing:0.01em;
    transition:color 0.2s ease;
  }
  nav.links a:hover{color:var(--gold);}
  .nav-cta{
    background:var(--gold);
    color:var(--black);
    padding:10px 20px;
    border-radius:2px;
    font-size:0.82rem;
    font-weight:700;
    letter-spacing:0.03em;
    white-space:nowrap;
  }
  .menu-btn{display:none; background:none; border:none; color:var(--cream); font-size:1.5rem;}

  /* ---- Hero ---- */
  .hero{
    background:var(--black);
    color:var(--cream);
    padding:96px 32px 110px;
    position:relative;
    overflow:hidden;
    text-align:center;
  }
  .hero::before, .hero::after{
    content:'';
    position:absolute; left:50%; transform:translateX(-50%);
    width:min(920px,86%);
    height:1px;
    background:linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  }
  .hero::before{top:40px;}
  .hero::after{bottom:40px;}
  .hero-seal{margin:0 auto 28px; }
  .hero h1{
    font-size:clamp(2.3rem, 5vw, 3.6rem);
    max-width:820px;
    margin:0 auto 22px;
    line-height:1.12;
  }
  .hero h1 em{
    font-style:italic;
    color:var(--gold-soft);
  }
  .hero p.lede{
    max-width:600px;
    margin:0 auto 38px;
    color:#C9C6BE;
    font-size:1.06rem;
  }
  .btn-row{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}
  .btn{
    display:inline-block;
    padding:14px 30px;
    font-size:0.9rem;
    font-weight:700;
    letter-spacing:0.02em;
    border-radius:2px;
    transition:transform 0.2s ease, box-shadow 0.2s ease;
  }
  .btn-primary{
    background:var(--gold);
    color:var(--black);
  }
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(201,162,75,0.25);}
  .btn-ghost{
    border:1px solid rgba(247,244,236,0.35);
    color:var(--cream);
  }
  .btn-ghost:hover{border-color:var(--gold); color:var(--gold);}

  .tagline-strip{
    background:var(--red);
    color:var(--cream);
    text-align:center;
    padding:13px 20px;
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:1rem;
    letter-spacing:0.01em;
  }

  /* ---- Offers ---- */
  section{padding:96px 0;}
  .section-head{
    text-align:center;
    max-width:640px;
    margin:0 auto 56px;
  }
  .section-head h2{
    font-size:clamp(1.8rem, 3vw, 2.3rem);
    margin-top:12px;
    color:var(--ink);
  }
  .section-head p{color:#5A5648; margin-top:14px; font-size:1rem;}

  .offer-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:1px;
    background:rgba(23,21,18,0.1);
    border:1px solid rgba(23,21,18,0.1);
  }
  .offer-card{
    background:var(--cream);
    padding:38px 34px;
    transition:background 0.25s ease;
  }
  .offer-card:hover{background:#fff;}
  .offer-card .roman{
    font-family:'Fraunces', serif;
    font-style:italic;
    color:var(--red);
    font-size:1rem;
    margin-bottom:14px;
    display:block;
  }
  .offer-card h3{
    font-size:1.2rem;
    margin-bottom:10px;
    color:var(--ink);
  }
  .offer-card p{color:#5A5648; font-size:0.95rem;}

  /* ---- Approach / dark section ---- */
  .approach{
    background:var(--black);
    color:var(--cream);
  }
  .approach .wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
  }
  .approach .eyebrow{margin-bottom:14px; display:block;}
  .approach h2{
    font-size:clamp(1.7rem, 3vw, 2.2rem);
    line-height:1.25;
    margin-bottom:20px;
  }
  .approach p{color:#B9B6AC; font-size:0.98rem; margin-bottom:16px;}
  .approach-quote{
    border-left:2px solid var(--gold);
    padding-left:26px;
  }
  .approach-quote q{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:1.5rem;
    line-height:1.4;
    color:var(--gold-soft);
    display:block;
    margin-bottom:16px;
  }
  .approach-quote cite{
    font-style:normal;
    font-size:0.85rem;
    color:#8B887E;
    letter-spacing:0.02em;
  }

  /* ---- How it works ---- */
  .steps{
    background:var(--cream-dim);
  }
  .steps-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:44px;
    margin-top:10px;
  }
  .step .numeral{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:2.1rem;
    color:var(--red);
    display:block;
    margin-bottom:16px;
  }
  .step h3{font-size:1.05rem; margin-bottom:10px;}
  .step p{color:#5A5648; font-size:0.93rem;}

  /* ---- CTA band ---- */
  .cta-band{
    background:linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    color:var(--cream);
    text-align:center;
    padding:88px 32px;
  }
  .cta-band .eyebrow{color:var(--gold-soft);}
  .cta-band h2{
    font-size:clamp(1.8rem, 3.4vw, 2.5rem);
    max-width:640px;
    margin:14px auto 18px;
  }
  .cta-band p{max-width:520px; margin:0 auto 32px; color:#EAD9D2; font-size:1rem;}

  /* ---- Footer ---- */
  footer{
    background:var(--black);
    color:#B9B6AC;
    padding:64px 0 32px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:48px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(201,162,75,0.18);
  }
  footer h4{
    color:var(--gold);
    font-size:0.78rem;
    letter-spacing:0.14em;
    text-transform:uppercase;
    margin-bottom:18px;
  }
  footer .brand-name{margin-bottom:14px;}
  footer p.desc{font-size:0.9rem; max-width:320px; color:#8B887E;}
  footer ul{list-style:none;}
  footer li{margin-bottom:10px; font-size:0.9rem;}
  footer a:hover{color:var(--gold);}
  .foot-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:26px; font-size:0.8rem; color:#6E6B62; flex-wrap:wrap; gap:12px;
  }
  .social-row{display:flex; gap:16px;}
  .social-row a{
    width:34px; height:34px; border:1px solid rgba(201,162,75,0.35);
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:0.78rem; color:var(--gold-soft);
  }

  @media (max-width: 860px){
    nav.links{display:none;}
    .approach .wrap{grid-template-columns:1fr;}
    .offer-grid{grid-template-columns:1fr;}
    .steps-grid{grid-template-columns:1fr; gap:36px;}
    .footer-grid{grid-template-columns:1fr; gap:32px;}
  }
