    /* ── Reset & base ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: #1a1a18;
      background: #faf9f7;
    }

    /* ── Typography scale ─────────────────────────────────────── */
    h1, h2, h3, .serif { font-family: 'Lora', Georgia, serif; }
    h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }
    h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }
    h3 { font-size: 1.1rem; font-weight: 500; line-height: 1.35; }
    p { max-width: 65ch; }

    /* ── Color tokens ─────────────────────────────────────────── */
    :root {
      --green-50:  #e8f5f0;
      --green-100: #c3e6d8;
      --green-600: #1a7a5a;
      --green-700: #145e45;
      --green-800: #0d4230;
      --gold-50:   #faf4e6;
      --gold-400:  #b8922a;
      --gold-600:  #8a6a18;
      --stone-100: #f0ede8;
      --stone-200: #e2ddd6;
      --stone-400: #9a9590;
      --stone-600: #5c5750;
      --stone-800: #2a2825;
      --white:     #ffffff;
    }

    /* ── Layout ───────────────────────────────────────────────── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
    section { padding: 80px 0; }
    section.alt { background: var(--stone-100); }

    /* ── Nav ──────────────────────────────────────────────────── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(250,249,247,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--stone-200);
      padding: 0 32px;
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-logo { display: flex; flex-direction: column; gap: 0; text-decoration: none; }
    .nav-logo-name { font-family: 'Lora', serif; font-size: 1rem; font-weight: 500; color: var(--stone-800); letter-spacing: 0.01em; }
    .nav-logo-sub { font-size: 0.7rem; color: var(--stone-400); letter-spacing: 0.04em; }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { font-size: 0.875rem; color: var(--stone-600); text-decoration: none; transition: color .15s; }
    .nav-links a:hover { color: var(--stone-800); }
    .nav-cta {
      font-size: 0.875rem; font-weight: 500;
      background: var(--green-600); color: #fff;
      padding: 9px 20px; border-radius: 6px;
      text-decoration: none; transition: background .15s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--green-700); }
    .nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; color: var(--stone-600); font-size: 1.5rem; }

    /* ── Hero ─────────────────────────────────────────────────── */
    .hero {
      padding: 96px 0 80px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
      color: var(--green-600);
      border-bottom: 1.5px solid var(--green-100);
      padding-bottom: 2px;
      margin-bottom: 20px;
    }
    .hero h1 { color: var(--stone-800); margin-bottom: 20px; }
    .hero-lead { font-size: 1.05rem; color: var(--stone-600); margin-bottom: 36px; max-width: 52ch; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-block; font-size: 0.9rem; font-weight: 500;
      background: var(--green-600); color: #fff;
      padding: 12px 26px; border-radius: 6px;
      text-decoration: none; border: none; cursor: pointer;
      transition: background .15s;
    }
    .btn-primary:hover { background: var(--green-700); }
    .btn-outline {
      display: inline-block; font-size: 0.9rem; font-weight: 500;
      background: none; color: var(--stone-600);
      padding: 12px 26px; border-radius: 6px;
      text-decoration: none; border: 1px solid var(--stone-200);
      cursor: pointer; transition: border-color .15s, color .15s;
    }
    .btn-outline:hover { border-color: var(--stone-400); color: var(--stone-800); }

    /* Profile card */
    .profile-card {
      background: var(--white);
      border: 1px solid var(--stone-200);
      border-radius: 12px;
      padding: 28px;
    }
    .profile-initials {
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--green-50); display: flex; align-items: center; justify-content: center;
      font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 500; color: var(--green-700);
      margin-bottom: 16px;
    }
    .profile-name { font-family: 'Lora', serif; font-size: 1rem; font-weight: 500; color: var(--stone-800); margin-bottom: 3px; }
    .profile-title { font-size: 0.8rem; color: var(--stone-400); margin-bottom: 18px; }
    .profile-quote { font-family: 'Lora', serif; font-style: italic; font-size: 0.9rem; color: var(--stone-600); line-height: 1.7; margin-bottom: 18px; border-left: 2px solid var(--green-100); padding-left: 14px; }
    .profile-tags { display: flex; flex-wrap: wrap; gap: 7px; }
    .tag {
      font-size: 0.75rem; color: var(--stone-600);
      background: var(--stone-100); padding: 4px 12px;
      border-radius: 20px; border: 1px solid var(--stone-200);
    }

    /* ── Trust bar ────────────────────────────────────────────── */
    .trust-bar {
      padding: 20px 0;
      border-top: 1px solid var(--stone-200);
      border-bottom: 1px solid var(--stone-200);
      background: var(--white);
    }
    .trust-bar-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 32px;
      display: flex; flex-wrap: wrap; gap: 32px; align-items: center;
    }
    .trust-item { display: flex; align-items: center; gap: 10px; }
    .trust-icon { font-size: 1.1rem; color: var(--green-600); }
    .trust-item span { font-size: 0.82rem; color: var(--stone-600); }

    /* ── Services ─────────────────────────────────────────────── */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 48px; }
    .service-card {
      background: var(--white);
      border: 1px solid var(--stone-200);
      border-radius: 10px; padding: 24px;
    }
    .service-icon {
      width: 40px; height: 40px; border-radius: 8px;
      background: var(--green-50); display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .service-icon svg { width: 20px; height: 20px; stroke: var(--green-600); fill: none; stroke-width: 1.5; }
    .service-card h3 { margin-bottom: 6px; color: var(--stone-800); font-size: 1rem; }
    .service-card p { font-size: 0.875rem; color: var(--stone-600); line-height: 1.65; max-width: none; }

    /* ── About / Bio ──────────────────────────────────────────── */
    .bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .bio-body p { color: var(--stone-600); margin-bottom: 18px; font-size: 0.95rem; }
    .bio-body p:last-child { margin-bottom: 0; }
    .creds-list { display: flex; flex-direction: column; gap: 10px; }
    .cred-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 18px; background: var(--white);
      border: 1px solid var(--stone-200); border-radius: 8px;
    }
    .cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); flex-shrink: 0; margin-top: 6px; }
    .cred-text strong { display: block; font-size: 0.875rem; font-weight: 500; color: var(--stone-800); margin-bottom: 2px; }
    .cred-text span { font-size: 0.8rem; color: var(--stone-400); }

    /* ── Pricing ──────────────────────────────────────────────── */
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 48px; }
    .pricing-card {
      background: var(--white); border: 1px solid var(--stone-200);
      border-radius: 10px; padding: 26px;
    }
    .pricing-card.featured { border: 2px solid var(--green-600); }
    .featured-badge {
      display: inline-block; font-size: 0.7rem; font-weight: 500;
      background: var(--green-50); color: var(--green-700);
      padding: 3px 10px; border-radius: 20px; margin-bottom: 14px;
    }
    .pricing-card h3 { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--stone-800); margin-bottom: 10px; }
    .pricing-amount { font-family: 'Lora', serif; font-size: 2rem; font-weight: 500; color: var(--stone-800); }
    .pricing-amount span { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 400; color: var(--stone-400); }
    .pricing-desc { font-size: 0.82rem; color: var(--stone-600); margin: 10px 0 18px; line-height: 1.6; max-width: none; }
    .pricing-divider { height: 1px; background: var(--stone-200); margin-bottom: 16px; }
    .pricing-includes { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .pricing-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--stone-600); }
    .check-circle {
      width: 16px; height: 16px; border-radius: 50%; background: var(--green-50);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
    }
    .check-circle svg { width: 9px; height: 9px; stroke: var(--green-700); fill: none; stroke-width: 2.5; }

    /* ── Testimonials ─────────────────────────────────────────── */
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 48px; }
    .testimonial-card {
      background: var(--white); border: 1px solid var(--stone-200);
      border-radius: 10px; padding: 26px;
      display: flex; flex-direction: column; gap: 16px;
    }
    .stars { color: var(--gold-400); font-size: 0.9rem; letter-spacing: 2px; }
    .testimonial-quote { font-family: 'Lora', serif; font-style: italic; font-size: 0.95rem; color: var(--stone-700, #3d3a36); line-height: 1.75; flex: 1; max-width: none; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--stone-200); }
    .author-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; font-weight: 500; flex-shrink: 0;
    }
    .author-name { font-size: 0.875rem; font-weight: 500; color: var(--stone-800); }
    .author-meta { font-size: 0.75rem; color: var(--stone-400); margin-top: 1px; }
    .testimonial-disclaimer { font-size: 0.75rem; color: var(--stone-400); margin-top: 24px; font-style: italic; }

    /* ── FAQ ──────────────────────────────────────────────────── */
    .faq-list { margin-top: 48px; border-top: 1px solid var(--stone-200); }
    .faq-item { border-bottom: 1px solid var(--stone-200); }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; cursor: pointer; gap: 16px;
    }
    .faq-question h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--stone-800); }
    .faq-chevron {
      width: 22px; height: 22px; border-radius: 50%;
      border: 1px solid var(--stone-200); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: transform .2s;
    }
    .faq-chevron svg { width: 12px; height: 12px; stroke: var(--stone-400); fill: none; stroke-width: 2; transition: stroke .2s; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--green-600); }
    .faq-item.open .faq-chevron svg { stroke: var(--green-600); }
    .faq-answer { display: none; padding-bottom: 22px; }
    .faq-item.open .faq-answer { display: block; }
    .faq-answer p { font-size: 0.9rem; color: var(--stone-600); max-width: 70ch; }

    /* ── Scheduler ────────────────────────────────────────────── */
    .scheduler-layout { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; margin-top: 48px; }
    .scheduler-intro h3 { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 500; color: var(--stone-800); margin-bottom: 14px; }
    .scheduler-intro p { font-size: 0.9rem; color: var(--stone-600); margin-bottom: 0; }
    .scheduler-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
    .sched-step { display: flex; align-items: flex-start; gap: 14px; }
    .sched-num {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--green-50); color: var(--green-700);
      font-size: 0.8rem; font-weight: 500;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .sched-step-text strong { display: block; font-size: 0.875rem; font-weight: 500; color: var(--stone-800); margin-bottom: 2px; }
    .sched-step-text span { font-size: 0.8rem; color: var(--stone-500, #6b6762); }

    /* Chat widget */
    .chat-shell {
      background: var(--white); border: 1px solid var(--stone-200);
      border-radius: 12px; overflow: hidden;
    }
    .chat-header {
      padding: 14px 18px; border-bottom: 1px solid var(--stone-200);
      display: flex; align-items: center; gap: 10px; background: var(--stone-100);
    }
    .chat-avatar {
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--green-50); display: flex; align-items: center; justify-content: center;
      font-family: 'Lora', serif; font-size: 0.85rem; font-weight: 500; color: var(--green-700);
    }
    .chat-header-name { font-size: 0.875rem; font-weight: 500; color: var(--stone-800); }
    .chat-header-status { font-size: 0.75rem; color: var(--green-600); display: flex; align-items: center; gap: 5px; }
    .online-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); }
    .chat-messages {
      padding: 18px; display: flex; flex-direction: column; gap: 12px;
      min-height: 260px; max-height: 320px; overflow-y: auto;
    }
    .msg { display: flex; gap: 8px; align-items: flex-start; }
    .msg.user { flex-direction: row-reverse; }
    .msg-avatar {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--green-50); display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem; font-weight: 500; color: var(--green-700); flex-shrink: 0; margin-top: 2px;
    }
    .msg-bubble { font-size: 0.82rem; line-height: 1.65; padding: 10px 14px; border-radius: 10px; max-width: 82%; }
    .msg.agent .msg-bubble { background: var(--stone-100); color: var(--stone-800); border-radius: 3px 10px 10px 10px; }
    .msg.user .msg-bubble { background: var(--green-600); color: #fff; border-radius: 10px 3px 10px 10px; }
    .calendly-card { background: var(--green-50); border-radius: 8px; padding: 14px; margin-top: 6px; }
    .calendly-card strong { display: block; font-size: 0.82rem; font-weight: 500; color: var(--green-800); margin-bottom: 5px; }
    .calendly-card p { font-size: 0.78rem; color: var(--green-700); line-height: 1.55; margin-bottom: 10px; max-width: none; }
    .calendly-btn {
      display: inline-block; font-size: 0.78rem; font-weight: 500;
      background: var(--green-600); color: #fff;
      padding: 7px 14px; border-radius: 5px; text-decoration: none; border: none; cursor: pointer;
    }
    .typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; background: var(--stone-100); border-radius: 3px 10px 10px 10px; }
    .typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--stone-400); animation: blink 1.2s infinite; }
    .typing span:nth-child(2) { animation-delay: .2s; }
    .typing span:nth-child(3) { animation-delay: .4s; }
    @keyframes blink { 0%,80%,100%{opacity:.2} 40%{opacity:1} }
    .quick-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 18px 14px; }
    .chip {
      font-size: 0.75rem; background: none; border: 1px solid var(--stone-200);
      color: var(--stone-600); padding: 6px 13px; border-radius: 20px; cursor: pointer;
      transition: background .15s, border-color .15s;
    }
    .chip:hover { background: var(--stone-100); border-color: var(--stone-400); }
    .chat-input-row { display: flex; gap: 8px; padding: 12px 18px; border-top: 1px solid var(--stone-200); }
    .chat-input-row input {
      flex: 1; font-size: 0.82rem; padding: 9px 12px;
      border-radius: 6px; border: 1px solid var(--stone-200);
      background: var(--stone-100); color: var(--stone-800);
      outline: none; font-family: 'Inter', sans-serif;
    }
    .chat-input-row input:focus { border-color: var(--green-600); }
    .chat-send-btn {
      font-size: 0.82rem; font-weight: 500; background: var(--green-600); color: #fff;
      border: none; padding: 9px 16px; border-radius: 6px; cursor: pointer; flex-shrink: 0;
      transition: background .15s;
    }
    .chat-send-btn:hover { background: var(--green-700); }

    /* ── Contact ──────────────────────────────────────────────── */
    .contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; margin-top: 48px; }
    .contact-form-card {
      background: var(--white); border: 1px solid var(--stone-200);
      border-radius: 12px; padding: 32px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .field label { font-size: 0.8rem; font-weight: 500; color: var(--stone-600); }
    .field input, .field select, .field textarea {
      font-size: 0.875rem; padding: 10px 13px;
      border-radius: 6px; border: 1px solid var(--stone-200);
      background: var(--stone-100); color: var(--stone-800);
      outline: none; font-family: 'Inter', sans-serif; width: 100%;
      transition: border-color .15s;
    }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-600); background: var(--white); }
    .field textarea { min-height: 110px; resize: vertical; }
    .form-submit {
      width: 100%; font-size: 0.9rem; font-weight: 500;
      background: var(--green-600); color: #fff; border: none;
      padding: 12px; border-radius: 6px; cursor: pointer; margin-top: 4px;
      transition: background .15s; font-family: 'Inter', sans-serif;
    }
    .form-submit:hover { background: var(--green-700); }
    .form-success { display: none; text-align: center; padding: 32px 20px; }
    .success-icon {
      width: 52px; height: 52px; border-radius: 50%; background: var(--green-50);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
    }
    .success-icon svg { width: 24px; height: 24px; stroke: var(--green-600); fill: none; stroke-width: 2; }
    .form-success h3 { font-family: 'Lora', serif; font-size: 1.2rem; color: var(--stone-800); margin-bottom: 8px; }
    .form-success p { font-size: 0.875rem; color: var(--stone-600); max-width: 36ch; margin: 0 auto; }

    .contact-aside h3 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 500; color: var(--stone-800); margin-bottom: 10px; }
    .contact-aside p { font-size: 0.875rem; color: var(--stone-600); margin-bottom: 24px; }
    .contact-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 14px 16px; background: var(--white);
      border: 1px solid var(--stone-200); border-radius: 8px;
    }
    .contact-detail-icon { color: var(--green-600); flex-shrink: 0; font-size: 1.1rem; margin-top: 1px; }
    .contact-detail strong { display: block; font-size: 0.82rem; font-weight: 500; color: var(--stone-800); margin-bottom: 2px; }
    .contact-detail span { font-size: 0.8rem; color: var(--stone-400); }
    .response-note {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 12px 14px; background: var(--green-50);
      border-radius: 7px; font-size: 0.8rem; color: var(--green-700); line-height: 1.55;
    }
    .response-note svg { width: 16px; height: 16px; stroke: var(--green-600); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }

    /* ── CTA band ─────────────────────────────────────────────── */
    .cta-band {
      background: var(--green-800);
      padding: 64px 0;
    }
    .cta-band-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 32px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
    }
    .cta-band h2 { color: #fff; font-size: 1.6rem; max-width: 42ch; }
    .cta-band p { color: var(--green-100); font-size: 0.9rem; margin-top: 6px; }
    .btn-light {
      display: inline-block; font-size: 0.9rem; font-weight: 500;
      background: #fff; color: var(--green-800);
      padding: 13px 28px; border-radius: 6px;
      text-decoration: none; border: none; cursor: pointer; white-space: nowrap;
      transition: background .15s;
    }
    .btn-light:hover { background: var(--green-50); }

    /* ── Footer ───────────────────────────────────────────────── */
    footer {
      background: var(--stone-800);
      padding: 40px 32px;
      color: var(--stone-400);
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: flex-start;
      flex-wrap: wrap; gap: 24px;
    }
    .footer-name { font-family: 'Lora', serif; font-size: 1rem; color: #fff; margin-bottom: 4px; }
    .footer-tagline { font-size: 0.78rem; }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 0.78rem; color: var(--stone-400); text-decoration: none; }
    .footer-links a:hover { color: #fff; }
    .footer-disclaimer { font-size: 0.72rem; margin-top: 24px; border-top: 1px solid #3a3833; padding-top: 18px; font-style: italic; }

    /* ── Mobile ───────────────────────────────────────────────── */
    @media (max-width: 860px) {
      .nav-links { display: none; }
      .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--stone-200); padding: 20px 32px; gap: 20px; z-index: 99; }
      .nav-links.open a, .nav-links.open .nav-cta { display: block; }
      .nav-mobile-btn { display: block; }
      .hero { grid-template-columns: 1fr; }
      .bio-grid { grid-template-columns: 1fr; gap: 36px; }
      .scheduler-layout { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .cta-band-inner { flex-direction: column; }
      .footer-inner { flex-direction: column; }
      .trust-bar-inner { gap: 18px; }
    }
    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
    }

    /* ── Section headings helper ──────────────────────────────── */
    .section-intro { margin-bottom: 12px; }
    .section-intro h2 { color: var(--stone-800); }
    .section-intro p { font-size: 0.95rem; color: var(--stone-600); margin-top: 10px; }

/* ── Screen reader utility ─────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ── Nav dropdown (Services menu) ─────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 0.875rem; color: var(--stone-600); background: none; border: none;
  cursor: pointer; padding: 0; font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-dropdown-toggle::-webkit-details-marker { display: none; }
.nav-dropdown-toggle:hover { color: var(--stone-800); }
.nav-dropdown-caret { width: 9px; height: 9px; stroke: var(--stone-400); fill: none; stroke-width: 2; transition: transform .15s; }
.nav-dropdown[open] .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 200px; padding: 8px;
  background: var(--white); border: 1px solid var(--stone-200); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
@media (min-width: 861px) {
  .nav-dropdown-menu { position: absolute; top: calc(100% + 14px); left: 0; }
}
.nav-dropdown-menu a {
  font-size: 0.875rem; color: var(--stone-600); text-decoration: none;
  padding: 8px 10px; border-radius: 5px; transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--stone-100); color: var(--stone-800); }
@media (max-width: 860px) {
  .nav-dropdown-menu { border: none; box-shadow: none; padding: 4px 0 4px 14px; }
  .nav-dropdown-toggle { font-size: 0.875rem; }
}

/* ── Page hero (service/inner pages, shorter than home) ───────────── */
.page-hero { padding: 64px 0 48px; }
.page-hero-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--green-600); border-bottom: 1.5px solid var(--green-100); padding-bottom: 2px; margin-bottom: 20px;
}
.page-hero h1 { color: var(--stone-800); margin-bottom: 16px; max-width: 20ch; }
.page-hero-lead { font-size: 1.05rem; color: var(--stone-600); max-width: 62ch; margin-bottom: 28px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Breadcrumb ───────────────────────────────────────────────────── */
.breadcrumb { font-size: 0.8rem; color: var(--stone-400); padding: 18px 0 0; }
.breadcrumb a { color: var(--stone-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--stone-600); }

/* ── Single pricing/callout card on service pages ─────────────────── */
.single-pricing-wrap { max-width: 420px; margin-top: 40px; }

/* ── Cross-link cards (related services) ───────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 20px; }
.related-card {
  background: var(--white); border: 1px solid var(--stone-200); border-radius: 10px; padding: 20px;
  text-decoration: none; display: block; transition: border-color .15s;
}
.related-card:hover { border-color: var(--green-600); }
.related-card h3 { color: var(--stone-800); font-size: 0.95rem; margin-bottom: 6px; }
.related-card p { color: var(--stone-600); font-size: 0.82rem; max-width: none; margin: 0; }
