 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream:   #ffffff;
    --blush:   #CA9084;
    --teal:    #115562;
    --ink:    #000000;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--forest);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 4rem;
    background: var(--teal);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--blush); font-style: italic; }
  .nav-cta {
    background: var(--blush);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: #d9a396; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 4rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 520px; height: 520px;
    border-radius: 50%;
    border: 1.5px solid rgba(127,149,88,0.25);
  }
  .hero::after {
    content: '';
    position: absolute;
    right: -20px; top: -20px;
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 1.5px solid rgba(127,149,88,0.15);
  }
  .hero-text { position: relative; z-index: 2; }
  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
  }
  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--blush);
  }
  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
    max-width: 440px;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--blush);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #d9a396; transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: var(--teal);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border: 1px solid rgba(15,52,33,0.4);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--cream); transform: translateY(-2px); }

  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-card {
    background: rgba(244,241,208,0.06);
    border: 1px solid rgba(127,149,88,0.3);
    border-radius: 4px;
    padding: 2rem;
    width: 500px;
    height: 380px;
  }
  .hero-card-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 1.25rem;
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: var(--blush); opacity: 0.7; }
  .dot-y { background: #c8b84a; opacity: 0.7; }
  .dot-g { background: var(--sage); opacity: 0.7; }
  .mock-nav {
    height: 28px;
    background: rgba(127,149,88,0.15);
    border-radius: 2px;
    margin-bottom: 1rem;
  }
  .mock-hero-block {
    height: 100px;
    background: linear-gradient(135deg, rgba(17,85,98,0.4), rgba(15,52,33,0.6));
    border-radius: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mock-hero-block span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cream);
    opacity: 0.7;
    font-style: italic bold;
  }
  .mock-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }
  .mock-card {
    height: 50px;
    border-radius: 2px;
    background: rgba(127,149,88,0.2);
  }
  .mock-card:nth-child(2) { background: rgba(202,144,132,0.25); }
  .mock-card:nth-child(3) { background: rgba(17,85,98,0.3); }
  .hero-card-label {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: var(--ink);
    letter-spacing: 0.08em;
    text-align: center;
  }

  /* ── SECTION BASE ── */
  section { padding: 6rem 4rem; }
  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--blush); }

  /* ── WHY ── */
  .why {
    background: var(--teal);
    color: var(--cream);
  }
  .why .section-eyebrow { color: var(--cream); }
  .why .section-title { color: var(--cream); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .why-intro {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 2rem;
  }
  .why-stat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .why-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--blush);
    min-width: 80px;
  }
  .why-stat-label {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--cream);
    padding-top: 0.4rem;
  }
  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .why-card {
    background: var(--cream);
    border: 1px solid rgba(127,149,88,0.2);
    border-radius: 4px;
    padding: 1.5rem;
  }
  .why-card-icon {
    width: 36px; height: 36px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem;
  }
  .why-card-icon svg { width: 18px; height: 18px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
  .why-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 0.4rem;
  }
  .why-card p {
    font-size: 0.83rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink);
  }

  /* ── HOW ── */
  .how { background: var(--cream); }
  .how-intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink);
    max-width: 500px;
    margin-bottom: 3.5rem;
  }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .how-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, var(--sage), var(--teal), var(--sage));
    opacity: 0.3;
  }
  .how-step {
    padding: 0 1.5rem;
    text-align: center;
  }
  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
  }
  .step-num-1 { background: var(--teal); color: var(--cream); }
  .step-num-2 { background: var(--teal); color: var(--cream); }
  .step-num-3 { background: var(--teal); color: var(--cream); }
  .step-num-4 { background: var(--teal); color: var(--cream); }
  .how-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--blush);
    margin-bottom: 0.6rem;
  }
  .how-step p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--teal);
    text-align: center;
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(244,241,208,0.08);
  }
  .cta-section::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(244,241,208,0.06);
  }
  .cta-section .section-eyebrow { color: var(--cream); }
  .cta-section .section-title { color: var(--cream); }
  .cta-section .section-title em { color: var(--blush); }
  .cta-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    text-align: left;
    color: var(--cream);
    max-width: 480px;
    margin: 0 auto 3rem;
  }
  .cta-contact-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  .cta-contact-card {
    background: rgba(244,241,208,0.08);
    border: 1px solid rgba(244,241,208,0.2);
    border-radius: 4px;
    padding: 2rem 2.5rem;
    min-width: 220px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: block;
  }
  .cta-contact-card:hover {
    background: rgba(244,241,208,0.13);
    transform: translateY(-4px);
  }
  .cta-contact-type {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }
  .cta-contact-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--cream);
  }
  .cta-contact-card.primary-card {
    background: var(--blush);
    border-color: var(--blush);
  }
  .cta-contact-card.primary-card:hover { background: #d9a396; }
  .cta-contact-card.primary-card .cta-contact-type { color: rgba(15,52,33,0.7); }
  .cta-contact-card.primary-card .cta-contact-value { color: var(--forest); }

  .contact-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 420px);
    gap: 2rem;
    align-items: start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .contact-copy {
    text-align: left;
  }
  .contact-copy p {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  .contact-form {
    background: rgba(244,241,208,0.12);
    border: 1px solid rgba(244,241,208,0.1);
    border-radius: 8px;
    padding: 2rem;
  }
  .contact-field {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  .contact-field label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244,241,208,0.9);
  }
  .contact-field input,
  .contact-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15,52,33,0.15);
    border-radius: 6px;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--forest);
  }
  .contact-field input:focus,
  .contact-field textarea:focus {
    outline: none;
    border-color: var(--blush);
    box-shadow: 0 0 0 3px rgba(202,144,132,0.15);
  }
  .contact-field textarea {
    min-height: 150px;
    resize: vertical;
  }
  .contact-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(244,241,208,0.8);
  }
  .contact-submit {
    background: var(--blush);
    color: var(--cream);
    border: none;
    border-radius: 4px;
    padding: 1rem 1.6rem;
    font: 500 0.95rem 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
  }
  .contact-submit:hover { background: #d9a396; transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: var(--teal);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(127,149,88,0.15);
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--cream);
  }
  .footer-logo span { color: var(--blush); font-style: italic; }
  .footer-copy {
    font-size: 0.8rem;
    color: rgba(244,241,208,0.35);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-text > * {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }
  .hero-eyebrow { animation-delay: 0.1s; }
  .hero-headline { animation-delay: 0.25s; }
  .hero-sub { animation-delay: 0.4s; }
  .hero-actions { animation-delay: 0.55s; }
  .hero-visual {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  @media (max-width: 900px) {
    nav { padding: 1rem 2rem; }
    section { padding: 4rem 2rem; }
    .hero { grid-template-columns: 1fr; padding: 7rem 2rem 4rem; }
    .hero-visual { display: none; }
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .how-steps::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-copy { text-align: center; }
    .contact-form { padding: 1.5rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
  }