
  :root{
    --bg: #FBF3E6;
    --bg-alt: #F2E6D2;
    --card: #FFFDF9;
    --ink: #2B2118;
    --ink-soft: #6B5D4E;
    --accent: #E8A23A;
    --accent-deep: #C97A1F;
    --teal: #1F4C46;
    --teal-soft: #E4EEEC;
    --line: #E4D5BC;
    --radius: 14px;
    --shadow: 0 8px 30px rgba(43,33,24,0.08);
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }

  body{
    margin:0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  h1,h2,h3{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
  }

  a{ color: inherit; }

  .wrap{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
  }

  :focus-visible{
    outline: 3px solid var(--teal);
    outline-offset: 3px;
  }

  /* ---------- Header ---------- */
  header{
    padding: 22px 0;
    position: relative;
  }
  header::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:3px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--accent) 50%, var(--accent-deep) 100%);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .logo{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 20px;
    display:flex;
    align-items:center;
    gap:8px;
  }
  .logo .dot{
    width:9px; height:9px;
    border-radius:50%;
    background: var(--accent);
    display:inline-block;
    animation: pulse 1.8s ease-in-out infinite;
  }
  @media (prefers-reduced-motion: reduce){
    .logo .dot{ animation:none; }
  }
  @keyframes pulse{
    0%,100%{ transform: scale(1); opacity:1; }
    50%{ transform: scale(1.5); opacity:0.6; }
  }
  .nav-links{
    display:flex;
    gap:26px;
  }
  .nav-links a{
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    color: var(--ink-soft);
    transition: color 0.15s ease;
  }
  .nav-links a:hover{ color: var(--ink); }
  @media (max-width: 640px){
    .nav-links{ display:none; }
  }
  .nav-cta{
    font-size:14px;
    font-weight:700;
    padding:10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--bg);
    text-decoration:none;
  }

  /* ---------- Hero ---------- */
  .hero{
    padding: 56px 0 72px;
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items:center;
    position: relative;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-40px; right:-120px;
    width:420px; height:420px;
    background: radial-gradient(circle, rgba(232,162,58,0.16) 0%, rgba(232,162,58,0) 70%);
    pointer-events:none;
    z-index:0;
  }
  .hero > *{ position:relative; z-index:1; }
  .eyebrow{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color: var(--teal);
    background: var(--teal-soft);
    padding:6px 14px;
    border-radius: 999px;
    margin-bottom:18px;
  }
  .hero h1{
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing:-0.01em;
  }
  .hero h1 em{
    font-style: italic;
    color: var(--accent-deep);
  }
  .hero p.sub{
    margin-top:18px;
    font-size:18px;
    color: var(--ink-soft);
    max-width: 46ch;
  }
  .hero-actions{
    margin-top:30px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .btn-primary{
    background: var(--accent);
    color: var(--ink);
    font-weight:700;
    padding:14px 26px;
    border-radius: 999px;
    text-decoration:none;
    border:none;
    font-size:15px;
    cursor:pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    display:inline-block;
  }
  .btn-primary:hover{ background: var(--accent-deep); transform: translateY(-1px); }
  .btn-ghost{
    padding:14px 22px;
    border-radius:999px;
    border: 1.5px solid var(--line);
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    color: var(--ink);
  }

  /* Stopwatch signature element */
  .stopwatch-card{
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align:center;
    border: 1px solid var(--line);
  }
  .stopwatch-label{
    font-size:12px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }
  .stopwatch-face{
    width: 168px;
    height: 168px;
    margin: 0 auto 16px;
    border-radius:50%;
    border: 3px dashed var(--line);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    background: var(--bg);
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .stopwatch-face.running{
    border-style: solid;
    border-color: var(--accent);
    background: radial-gradient(circle at 50% 40%, #ffffff 0%, var(--teal-soft) 100%);
    animation: tick-pulse 1s ease-in-out infinite;
  }
  .stopwatch-face.done{
    border-style: solid;
    border-color: #4E9B3C;
    background: radial-gradient(circle at 50% 40%, #ffffff 0%, #E4F2E1 100%);
  }
  @keyframes tick-pulse{
    0%,100%{ box-shadow: 0 0 0 0 rgba(232,162,58,0.35); }
    50%{ box-shadow: 0 0 0 8px rgba(232,162,58,0); }
  }
  @media (prefers-reduced-motion: reduce){
    .stopwatch-face.running{ animation:none; }
  }
  .stopwatch-time{
    font-family:'Fraunces', serif;
    font-size: 36px;
    font-weight:600;
    color: var(--teal);
    font-variant-numeric: tabular-nums;
  }
  .stopwatch-face.idle .stopwatch-time{ color: var(--ink-soft); }
  .stopwatch-face.done .stopwatch-time{ color: #2C6B1F; }
  .stopwatch-caption{
    font-size:14px;
    color: var(--ink-soft);
    min-height: 2.4em;
  }
  .stopwatch-caption strong{ color: var(--ink); }

  @media (max-width: 860px){
    .hero{ grid-template-columns: 1fr; padding-top: 30px; }
  }

  /* ---------- Benefits ---------- */
  .section{ padding: 70px 0; }
  .section-head{
    max-width: 560px;
    margin-bottom: 44px;
  }
  .section-head .eyebrow{ margin-bottom: 14px; }
  .section-head h2{ font-size: clamp(26px, 3.4vw, 36px); }
  .section-head p{ color: var(--ink-soft); margin-top:12px; font-size:16px; }

  .benefit-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .benefit-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
  }
  .benefit-icon{
    width:40px; height:40px;
    border-radius:10px;
    background: var(--accent);
    margin-bottom:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
  }
  .benefit-card h3{ font-size:18px; margin-bottom:8px; }
  .benefit-card p{ color: var(--ink-soft); font-size:14.5px; margin:0; }
  .badge-soon{
    display:inline-block;
    font-size:11px;
    font-weight:700;
    background: var(--teal-soft);
    color: var(--teal);
    padding:3px 9px;
    border-radius:999px;
    margin-left:8px;
    vertical-align:middle;
  }

  @media (max-width: 860px){
    .benefit-grid{ grid-template-columns: 1fr; }
  }

  /* ---------- How it works ---------- */
  .how-section{ background: var(--bg-alt); }
  .how-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .how-step{ position:relative; }
  .how-number{
    font-family:'Fraunces', serif;
    font-style: italic;
    font-size: 46px;
    color: var(--accent-deep);
    line-height:1;
    margin-bottom: 14px;
  }
  .how-step h3{ font-size:17px; margin-bottom:8px; }
  .how-step p{ color: var(--ink-soft); font-size:14.5px; margin:0; }

  @media (max-width: 860px){
    .how-grid{ grid-template-columns: 1fr; gap:34px; }
  }

  /* ---------- Form ---------- */
  .form-section .wrap{
    display:grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items:start;
  }
  .form-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
  }
  .form-group{ margin-bottom:18px; }
  label{
    display:block;
    font-size:13px;
    font-weight:700;
    margin-bottom:6px;
    color: var(--ink);
  }
  input, textarea{
    width:100%;
    padding:12px 14px;
    border-radius:9px;
    border: 1.5px solid var(--line);
    background: var(--bg);
    font-family:'Manrope', sans-serif;
    font-size:14.5px;
    color: var(--ink);
  }
  input:focus, textarea:focus{
    border-color: var(--teal);
    outline: none;
  }
  textarea{ resize: vertical; min-height: 90px; }

  /* honeypot field — hidden from real users, visible to bots */
  .hp-field{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
  }

  button[type="submit"]{
    width:100%;
    padding:14px;
    border:none;
    border-radius:999px;
    background: var(--accent);
    color: var(--ink);
    font-weight:800;
    font-size:15.5px;
    cursor:pointer;
    transition: background 0.15s ease;
  }
  button[type="submit"]:hover{ background: var(--accent-deep); }
  button[type="submit"]:disabled{ background: #D8C9AE; cursor:not-allowed; }

  #successMsg, #errorMsg{
    display:none;
    padding:14px 16px;
    border-radius:9px;
    font-size:14px;
    margin-bottom:18px;
  }
  #successMsg{ background:#E4F2E1; color:#2C6B1F; border:1px solid #BEDCB4; }
  #errorMsg{ background:#FBE4E1; color:#A02E22; border:1px solid #F0BDB6; }

  /* ---------- Consent checkbox ---------- */
  .consent-row{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-top:6px;
    margin-bottom:18px;
    padding:14px 16px;
    background: var(--teal-soft);
    border: 1.5px solid var(--line);
    border-radius:9px;
  }
  .consent-row input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width:20px;
    margin: 1px 0 0 0;
    border: 2px solid var(--teal);
    border-radius: 5px;
    background: var(--card);
    cursor: pointer;
    position: relative;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .consent-row input[type="checkbox"]:checked{
    background: var(--teal);
  }
  .consent-row input[type="checkbox"]:checked::after{
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--card);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .consent-row input[type="checkbox"]:focus-visible{
    outline: 3px solid var(--teal);
    outline-offset: 2px;
  }
  .consent-row label{
    margin:0;
    font-size:13.5px;
    font-weight:500;
    color: var(--ink-soft);
    line-height:1.5;
    cursor:pointer;
  }

  @media (max-width: 860px){
    .form-section .wrap{ grid-template-columns: 1fr; }
  }

  footer{
    padding: 40px 0 60px;
    text-align:center;
    color: var(--ink-soft);
    font-size:13px;
  }

  /* ---------- About ---------- */
  .about-section{ background: var(--bg-alt); }
  .about-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items:center;
  }
  .about-grid h2{ font-size: clamp(24px, 3.2vw, 32px); margin-top:14px; }
  .about-card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    display:flex;
    flex-direction:column;
    gap:22px;
  }
  .about-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
  }
  .about-item:not(:last-child){
    padding-bottom:22px;
    border-bottom: 1px solid var(--line);
  }
  .about-item-icon{
    width:38px; height:38px;
    min-width:38px;
    border-radius:10px;
    background: var(--teal-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
  }
  .about-item h3{ font-size:15.5px; margin-bottom:4px; }
  .about-item p{ color: var(--ink-soft); font-size:13.5px; margin:0; }

  @media (max-width: 860px){
    .about-grid{ grid-template-columns: 1fr; }
  }

  /* ---------- Contact ---------- */
  .contact-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .contact-card{
    display:flex;
    align-items:center;
    gap:18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 26px;
    text-decoration:none;
    color: var(--ink);
    transition: border-color 0.15s ease, transform 0.15s ease;
  }
  .contact-card:hover{
    border-color: var(--accent);
    transform: translateY(-2px);
  }
  .contact-icon{
    width:44px; height:44px;
    min-width:44px;
    border-radius:50%;
    background: var(--teal-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
  }
  .contact-label{
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.05em;
    color: var(--ink-soft);
    margin-bottom:4px;
  }
  .contact-value{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:18px;
  }

  @media (max-width: 640px){
    .contact-grid{ grid-template-columns: 1fr; }
  }
