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

  :root {
    --forest:   #1a4a35;
    --pine:     #2d6b4a;
    --sage:     #6a9e72;
    --teal:     #4a9a8a;
    --sky:      #7abfcc;
    --logo-blue: #7b9fcb;
    --lavender: #b3b5cf;
    --mist:     #c8d8cc;
    --petal:    #dde8e0;
    --canvas:   #f2f0eb;
    --white:    #ffffff;
    --mid:      #7a8c82;
    --line:     #d8e2da;
    --dark:     #111f18;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--canvas);
    color: var(--forest);
    font-size: 16px;
    line-height: 1.6;
    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: 1rem 5vw;
    background: rgba(242,240,235,0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }

  .nav-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--line);
    background: var(--white);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-circle img {
    width: 120%; height: 120%;
    object-fit: cover;
    object-position: center;
  }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.03em;
  }

  .nav-logo-text .bloom { color: var(--lavender); }

  .nav-links { display: flex; gap: 2rem; align-items: center; }

  nav a.nav-link {
    color: var(--mid);
    text-decoration: none;
    font-size: 0.77rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  nav a.nav-link:hover { color: var(--forest); }

  .nav-cta {
    background: var(--forest);
    color: var(--white) !important;
    padding: 0.55rem 1.35rem;
    border-radius: 2px;
    font-size: 0.77rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--pine) !important; }

  .nav-phone {
    color: var(--forest);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.2s;
  }
  .nav-phone:hover { color: var(--pine); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--petal);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    padding-top: 68px;
    overflow: hidden;
    position: relative;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--line);
  }

  .hero-left {
    padding: 6vw 4vw 6vw 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--teal);
    flex-shrink: 0;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.2vw, 5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--forest);
    margin-bottom: 1.75rem;
    letter-spacing: 0.01em;
  }

  .hero h1 em { font-style: italic; color: var(--pine); }
  .hero h1 .bloom { color: var(--lavender); }

  .hero-sub--cta {
    font-weight: 400;
    color: var(--logo-blue);
    margin-top: -1rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--mid);
    max-width: 440px;
    line-height: 1.85;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
  }

  .hero-pain {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--pine);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    opacity: 0.8;
  }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

  .btn-primary {
    background: var(--forest);
    color: var(--white);
    padding: 0.9rem 2.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--pine); transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: var(--forest);
    padding: 0.9rem 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-bottom: 1px solid var(--sage);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-ghost:hover { color: var(--teal); border-color: var(--teal); }

  /* Hero right */
  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5vw 4rem 2vw;
    position: relative;
  }

  .hero-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-logo-ring {
    width: 340px; height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(26,74,53,0.12);
    position: absolute;
    animation: slowspin 40s linear infinite;
  }

  .hero-logo-ring-2 {
    width: 270px; height: 270px;
    border-radius: 50%;
    border: 1px solid rgba(74,154,138,0.18);
    position: absolute;
    animation: slowspin 28s linear infinite reverse;
  }

  .hero-logo-ring::after {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.6;
  }

  @keyframes slowspin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  .hero-logo-wrap img {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 6px 28px rgba(74,154,138,0.15));
  }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--forest);
    padding: 1.1rem 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(200,216,204,0.6);
  }

  .trust-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    opacity: 0.7;
  }

  /* ── PILLARS ── */
  .pillars {
    background: var(--dark);
    padding: 4rem 5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .pillar {
    padding: 2.25rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    cursor: default;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .pillar::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--lavender));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .pillar:hover::before { transform: scaleX(1); }

  .pillar:last-child { border-right: none; }
  .pillar:hover { background: rgba(255,255,255,0.03); }

  .pillar-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.7rem;
  }

  .pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--petal);
    letter-spacing: 0.02em;
    margin-bottom: 0.7rem;
    line-height: 1.2;
  }

  .pillar p {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(200,216,204,0.5);
    line-height: 1.75;
  }

  /* ── SECTION SHARED ── */
  .section-label {
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 300;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 520px;
    letter-spacing: 0.01em;
  }

  .section-sub {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--mid);
    max-width: 460px;
    margin-bottom: 3.5rem;
    line-height: 1.9;
  }

  /* ── OFFERINGS ── */
  .offerings {
    padding: 7rem 5vw;
    background: var(--canvas);
  }

  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .offering-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 2.5rem 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: default;
  }

  .offering-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--teal), var(--lavender));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26,74,53,0.09);
    border-color: var(--mist);
  }

  .offering-card:hover::after { transform: scaleX(1); }

  .offering-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }

  .offering-card p {
    font-size: 0.86rem;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.25rem;
  }

  .offering-outcome {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .offering-outcome::before {
    content: '→';
    font-style: normal;
  }


  /* ── WHY IT WORKS ── */
  /* ── WHY IT WORKS ── */
  .why-it-works {
    padding: 0;
    background: var(--canvas);
  }

  .why-intro {
    padding: 6rem 5vw 5rem;
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
  }

  .why-intro-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    color: var(--forest);
    line-height: 1.1;
    margin-top: 0.75rem;
    max-width: 560px;
    letter-spacing: 0.01em;
  }

  .why-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .why-block {
    padding: 5vw 6vw;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background 0.25s;
  }

  .why-block:nth-child(even) {
    border-right: none;
  }

  .why-block--light {
    background: var(--white);
  }

  .why-block--light:hover {
    background: var(--petal);
  }

  .why-block--dark {
    background: var(--forest);
  }

  .why-block--dark:hover {
    background: var(--pine);
  }

  .why-block--cta {
    background: var(--teal);
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }

  .why-block--cta:hover {
    background: var(--pine);
  }

  .why-block-inner {
    max-width: 480px;
  }

  .why-block-inner--cta {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .why-block-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
    text-transform: none;
    display: block;
    margin-bottom: 1rem;
    color: var(--logo-blue);
  }

  .why-block--dark .why-block-tag {
    color: var(--logo-blue);
    opacity: 0.85;
  }

  .why-block-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
  }

  .why-block--light .why-block-heading {
    color: var(--forest);
  }

  .why-block--dark .why-block-heading {
    color: var(--petal);
  }

  .why-block-body {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.85;
  }

  .why-block--light .why-block-body {
    color: var(--mid);
  }

  .why-block--dark .why-block-body {
    color: rgba(200,216,204,0.55);
  }

  .why-cta-bar-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--logo-blue);
    margin-bottom: 0.4rem;
    line-height: 1.2;
  }

  .why-cta-bar-sub {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
  }

  .why-cta-btn {
    background: var(--white);
    color: var(--forest);
    flex-shrink: 0;
  }

  .why-cta-btn:hover {
    background: var(--petal);
  }

  @media (max-width: 800px) {
    .why-blocks {
      grid-template-columns: 1fr;
    }
    .why-block {
      border-right: none;
    }
    .why-block--cta {
      grid-column: 1;
    }
  }

  

  /* ── PROCESS ── */
  .process {
    padding: 7rem 5vw;
    background: var(--canvas);
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
    border-top: 1px solid var(--line);
  }

  .process-step {
    padding: 2.25rem 2rem 2rem 0;
    border-right: 1px solid var(--line);
    cursor: default;
    transition: background 0.2s;
    padding-right: 1.5rem;
  }

  .process-step:last-child { border-right: none; }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--line);
    line-height: 1;
    margin-bottom: 1.1rem;
    transition: color 0.25s;
  }

  .process-step:hover .step-num { color: var(--teal); }

  .process-step h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s;
  }

  .process-step:hover h4 { color: var(--teal); }

  .process-step p {
    font-size: 0.83rem;
    color: var(--mid);
    line-height: 1.75;
    font-weight: 300;
    transition: color 0.25s;
  }

  .process-step:hover p { color: var(--forest); }

  .process-timeline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.75rem;
  }

  /* ── ABOUT ── */
  .about {
    padding: 7rem 5vw;
    background: var(--petal);
    display: block;
    max-width: 720px;
  }
  .about--text .about-right {
    max-width: 40rem;
  }

  .about-portrait-frame {
    width: 100%;
    max-width: 420px;
    background: var(--mist);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--line);
    line-height: 0;
  }

  .about-portrait {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 1584 / 1248;
    object-fit: cover;
    object-position: center center;
  }

  .about-portrait-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(160deg, var(--mist) 0%, var(--petal) 100%);
  }

  .about-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.25rem;
    font-weight: 300;
    color: var(--forest);
    letter-spacing: 0.08em;
    line-height: 1;
    opacity: 0.7;
  }

  .about-initials-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
  }

  .about-right { display: flex; flex-direction: column; gap: 1.25rem; }
  .about-right .section-title { max-width: 100%; }

  .about-body {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.9;
  }

  .about-differentiators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
  }

  .diff-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
  }

  .diff-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(74,154,138,0.15);
    border: 1px solid rgba(74,154,138,0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-size: 0.6rem;
    color: var(--teal);
  }

  .diff-item p {
    font-size: 0.86rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.6;
  }

  .diff-item strong { color: var(--forest); font-weight: 500; }

  .about-sig {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    color: var(--pine);
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    display: inline-block;
  }

  /* ── CONTACT ── */
  .contact {
    padding: 7rem 5vw;
    background: var(--forest);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 6vw;
    align-items: start;
  }

  .contact .section-label { color: var(--sky); }
  .contact .section-title { color: var(--petal); max-width: 380px; font-size: clamp(2rem, 3vw, 2.8rem); }
  .contact .section-sub { color: rgba(122,191,204,0.5); max-width: 380px; }

  .contact-promise {
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  .promise-item { display: flex; gap: 0.9rem; align-items: flex-start; }

  .promise-dot {
    width: 5px; height: 5px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
  }

  .promise-item p {
    font-size: 0.87rem;
    color: rgba(200,216,204,0.6);
    line-height: 1.65;
    font-weight: 300;
  }

  .promise-item strong { color: var(--petal); font-weight: 500; }

  .contact-form { display: flex; flex-direction: column; gap: 1rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-group { display: flex; flex-direction: column; gap: 0.35rem; }

  .form-group label {
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(122,191,204,0.55);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(122,191,204,0.18);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: var(--petal);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(200,216,204,0.2); }

  .form-group select option { background: var(--forest); color: var(--petal); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--teal);
    background: rgba(255,255,255,0.07);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

  .form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .form-note {
    font-size: 0.75rem;
    color: rgba(200,216,204,0.35);
    font-weight: 300;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
  }

  .form-submit {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 0.9rem 2.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
  }

  .form-submit:hover { background: var(--sky); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 3.5rem 5vw 2rem;
    border-top: 1px solid rgba(122,191,204,0.08);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .footer-brand { display: flex; flex-direction: column; gap: 1rem; }

  .footer-logo-row { display: flex; align-items: center; gap: 0.75rem; }

  .footer-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(122,191,204,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .footer-circle img {
    width: 120%; height: 120%;
    object-fit: cover;
    object-position: center;
  }

  .footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--petal);
    letter-spacing: 0.04em;
  }

  .footer-logo-text .bloom { color: var(--lavender); }

  .footer-tagline {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(200,216,204,0.35);
    line-height: 1.75;
    max-width: 220px;
  }

  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.25rem;
  }

  .footer-contact-info a {
    font-size: 0.8rem;
    color: rgba(200,216,204,0.4);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-contact-info a:hover { color: var(--petal); }

  .footer-col h5 {
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

  .footer-col ul li a {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(200,216,204,0.4);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }

  .footer-col ul li a:hover { color: var(--petal); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-bottom p {
    font-size: 0.7rem;
    color: rgba(200,216,204,0.18);
    font-weight: 300;
    letter-spacing: 0.04em;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .pillars { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step:nth-child(2) { border-right: none; }
    .about { grid-template-columns: 1fr; }
    .about-left { order: -1; }
    .about-left { display: block; }
    .about {
      display: flex;
      flex-direction: column;
    }
    .about-left {
      order: -1;
      width: 100%;
      display: block !important;
      visibility: visible !important;
    }
    .about-portrait-frame {
      max-width: 100%;
      width: 100%;
      margin: 0 0 1.75rem;
      display: block !important;
    }
    .about-portrait {
      display: block !important;
      width: 100%;
      height: auto;
    }
    .contact { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .nav-links { display: none; }
  }

  @media (max-width: 600px) {
    .trust-strip { gap: 1.5rem; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
  }

  /* ── SCROLL BAR ── */
  .scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--lavender));
    z-index: 200;
    transition: width 0.1s linear;
    pointer-events: none;
  }

  /* ── GOOD FIT BOX ── */
  .good-fit {
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 1.75rem 2rem;
    margin-top: 0.5rem;
  }

  .good-fit-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
  }

  .good-fit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .good-fit-list li {
    font-size: 0.84rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.65;
    padding-left: 1.1rem;
    position: relative;
  }

  .good-fit-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 0.75rem;
    opacity: 0.6;
  }

  .good-fit-note {
    font-size: 0.8rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--mid);
    opacity: 0.7;
    border-top: 1px solid var(--line);
    padding-top: 0.9rem;
  }

  /* ── WHY CTA BTN ── */
  .why-cta-btn {
    margin-top: 1.5rem;
    display: inline-block;
  }

  /* ── STICKY CTA ── */
  .sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--forest);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 90;
    box-shadow: 0 4px 24px rgba(26,74,53,0.25);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
  }

  .sticky-cta--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sticky-cta:hover { background: var(--pine); }

  @media (max-width: 600px) {
    .sticky-cta {
      bottom: 1rem;
      right: 1rem;
      left: 1rem;
      text-align: center;
    }
  }

  /* ── OFFERING OUTCOME SLIDE ── */
  .offering-outcome {
    transform: translateY(4px);
    transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s;
  }

  .offering-card:hover .offering-outcome {
    transform: translateY(0);
    color: var(--teal);
  }


  /* Prefer to call near contact */
  .contact-prefer {
    font-size: 1.05rem;
    color: var(--petal);
    margin: 0.5rem 0 1.25rem;
    font-weight: 400;
  }
  .contact-prefer a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(122,191,204,0.35);
    transition: color 0.2s, border-color 0.2s;
  }
  .contact-prefer a:hover {
    color: var(--white);
    border-color: var(--sky);
  }
  .contact-prefer-also {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: rgba(200,216,204,0.55);
    font-weight: 300;
  }
  .contact-prefer-also a {
    font-weight: 400;
    border-bottom-color: rgba(122,191,204,0.25);
  }

  .form-privacy {
    margin-top: 1rem;
    font-size: 0.72rem;
    line-height: 1.5;
    color: rgba(200,216,204,0.4);
    font-weight: 300;
  }

  .why-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
  }
  .why-cta-btn-secondary {
    color: rgba(255,255,255,0.9) !important;
    border-bottom-color: rgba(255,255,255,0.45) !important;
  }
  .why-cta-btn-secondary:hover {
    color: var(--white) !important;
    border-bottom-color: var(--white) !important;
  }

  .process-step a {
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(74,154,138,0.35);
  }
  .process-step a:hover { color: var(--pine); }

  /* Form status */
  .form-status {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    margin: 0.75rem 0 0;
    min-height: 1.25em;
  }
  .form-status.is-ok { color: var(--pine); }
  .form-status.is-error { color: #a33; }
  .form-status[hidden] { display: none; }
  .contact-form button.form-submit:disabled { opacity: 0.6; cursor: wait; }

  footer .footer-contact-info span {
    font-size: 0.8rem;
    color: rgba(200,216,204,0.4);
    font-weight: 300;
  }

  /* Mobile nav toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--forest);
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 900px) {
    .nav-toggle { display: flex; }
    nav { flex-wrap: wrap; }
    .nav-links {
      display: none !important;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
      padding: 0.75rem 0 0.5rem;
      border-top: 1px solid var(--line);
      margin-top: 0.75rem;
    }
    .nav-links.is-open {
      display: flex !important;
    }
    .nav-links .nav-link,
    .nav-links .nav-phone,
    .nav-links .nav-cta {
      padding: 0.75rem 0.5rem;
    }
    .nav-links .nav-phone {
      font-size: 1rem;
    }
  }



/* Let's Talk — green box CTA */
.btn-talk {
  background: var(--pine) !important;
  color: var(--white) !important;
  padding: 1rem 2.5rem !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  box-shadow: 0 2px 0 rgba(26, 74, 53, 0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-talk:hover {
  background: var(--forest) !important;
  transform: translateY(-1px);
}
.nav-cta {
  background: var(--pine) !important;
}
.nav-cta:hover {
  background: var(--forest) !important;
}
