    /* =========================
       Brand tokens
       ========================= */
    :root {
      --sage: #7b8b6f;
      --sage-dark: #5a6b50;
      --sage-deep: #3d4a36;
      --sage-soft: #e8ede3;
      --sage-mist: #f1f4ec;
      --cream: #faf6ec;
      --cream-warm: #f3ead8;
      --cream-soft: #fcfaf3;
      --gold: #c9a961;
      --gold-soft: #ead9a9;
      --ink: #2c2a26;
      --ink-soft: #5e594f;
      --line: #ebe2cd;
      --line-soft: #f1ead9;
      --white: #ffffff;
      --shadow-sm: 0 2px 8px rgba(60,50,30,0.04);
      --shadow-md: 0 12px 30px rgba(60,50,30,0.08);
      --shadow-lg: 0 24px 60px rgba(60,50,30,0.12);
      --radius-sm: 10px;
      --radius: 18px;
      --radius-lg: 28px;
      --radius-xl: 40px;
      --maxw: 1200px;
      --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
      --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* =========================
       Reset + base
       ========================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; }

    /* =========================
       Typography
       ========================= */
    h1, h2, h3, h4 {
      font-family: var(--serif);
      color: var(--sage-deep);
      font-weight: 500;
      line-height: 1.12;
      letter-spacing: -0.012em;
    }
    h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 500; }
    h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
    h3 { font-size: clamp(1.35rem, 2.1vw, 1.6rem); font-weight: 600; }
    h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--sans); color: var(--sage-deep); letter-spacing: -0.01em; }

    p { font-size: 1.04rem; color: var(--ink-soft); }
    .lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.6; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 0.7rem;
      font-family: var(--sans);
      font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em;
      color: var(--sage); font-weight: 600;
      margin-bottom: 1.25rem;
    }
    /* Decorative leading line removed per design feedback */
    .eyebrow::before { content: none; }

    /* =========================
       Layout
       ========================= */
    .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
    section { padding: 6rem 0; position: relative; }
    @media (max-width: 720px) { section { padding: 4rem 0; } }

    /* =========================
       Buttons
       ========================= */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
      padding: 0.95rem 1.6rem;
      border-radius: 100px;
      font-family: var(--sans);
      font-size: 0.96rem;
      font-weight: 600;
      letter-spacing: 0.005em;
      text-decoration: none;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
      white-space: nowrap;
    }
    .btn-primary { background: var(--sage); color: var(--white); }
    .btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(123,139,111,0.32); }
    .btn-secondary { background: transparent; color: var(--sage-deep); border-color: var(--sage); }
    .btn-secondary:hover { background: var(--sage-soft); transform: translateY(-2px); }
    .btn-ghost { background: transparent; color: var(--sage-deep); padding: 0.5rem 0; border-radius: 0; }
    .btn-ghost:hover { color: var(--sage); }
    .btn-ghost::after { content: ' →'; transition: transform .25s; display: inline-block; margin-left: 0.25rem; }
    .btn-ghost:hover::after { transform: translateX(4px); }
    .btn svg { width: 18px; height: 18px; }

    /* =========================
       Header
       ========================= */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(250, 246, 236, 0.85);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
    }
    header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(250, 246, 236, 0.95); }
    .nav { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; max-width: var(--maxw); margin: 0 auto; gap: 1.5rem; }
    .logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
    .logo svg { height: 88px; width: auto; }
    @media (max-width: 720px) { .logo svg { height: 56px; } }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--sage-deep);
      font-size: 0.94rem;
      font-weight: 500;
      text-decoration: none;
      position: relative;
      padding: 0.25rem 0;
      transition: color .25s;
    }
    .nav-links a::after {
      content: '';
      position: absolute; left: 0; bottom: -2px;
      width: 0; height: 1px;
      background: var(--sage);
      transition: width .25s ease;
    }
    .nav-links a:hover { color: var(--sage); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.7rem 1.2rem; background: var(--sage); color: white; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: all .25s ease; }
    .nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .nav-cta svg { width: 16px; height: 16px; }

    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      width: 44px; height: 44px;
      align-items: center; justify-content: center;
      cursor: pointer;
      border-radius: 8px;
      color: var(--sage-deep);
    }
    .nav-toggle:hover { background: var(--sage-soft); }
    .nav-toggle svg { width: 24px; height: 24px; }

    @media (max-width: 960px) {
      .nav-links { display: none; }
      .nav-toggle { display: inline-flex; }
      .nav-cta span.nav-cta-label { display: none; }
      .nav-cta { padding: 0.7rem 0.9rem; }
    }

    /* Mobile menu drawer */
    .mobile-menu {
      display: none;
      position: fixed; inset: 0;
      background: rgba(60,50,30,0.45);
      backdrop-filter: blur(6px);
      z-index: 200;
      opacity: 0;
      transition: opacity .3s ease;
    }
    .mobile-menu.open { display: block; opacity: 1; }
    .mobile-menu-panel {
      position: absolute; right: 0; top: 0; bottom: 0;
      width: min(85vw, 360px);
      background: var(--cream-soft);
      padding: 2rem 1.75rem;
      display: flex; flex-direction: column; gap: 1.25rem;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      overflow-y: auto;
    }
    .mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
    .mobile-menu-panel a { color: var(--sage-deep); text-decoration: none; font-size: 1.15rem; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid var(--line-soft); }
    .mobile-menu-close { align-self: flex-end; background: transparent; border: none; padding: 0.5rem; cursor: pointer; color: var(--sage-deep); }
    .mobile-menu-close svg { width: 24px; height: 24px; }
    .mobile-menu-cta { margin-top: 1rem; }

    /* =========================
       Hero
       ========================= */
    .hero { padding: 5rem 0 6rem; overflow: hidden; }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 4rem;
      align-items: center;
    }
    .hero h1 { margin-bottom: 1.5rem; }
    .hero h1 .accent { color: var(--sage); font-style: italic; font-weight: 400; }
    .hero .lead { max-width: 520px; margin-bottom: 2.25rem; }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
    .trust-row { display: flex; gap: 1.75rem; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
    .trust-item svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; }

    /* Hero visual — padding-top hack for 4:5 aspect ratio (works in 100% of browsers including older iOS Safari) */
    .hero-visual {
      position: relative;
      width: 100%;
      padding-top: 125%; /* 4:5 ratio = 5/4 = 125% */
      border-radius: var(--radius-xl);
      overflow: hidden;
      background:
        radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.7), transparent 60%),
        linear-gradient(135deg, var(--sage-soft) 0%, var(--cream-warm) 50%, var(--gold-soft) 100%);
      box-shadow: var(--shadow-lg);
    }
    .hero-visual::before {
      /* Subtle grain overlay */
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 20% 80%, rgba(123,139,111,0.18), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,169,97,0.18), transparent 55%);
      pointer-events: none;
    }
    .hero-visual-inner {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-illustration { width: 78%; height: auto; opacity: 0.95; }

    .hero-badge {
      position: absolute; left: 1.5rem; bottom: 1.5rem;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      display: flex; align-items: center; gap: 0.85rem;
      box-shadow: var(--shadow-md);
      max-width: 280px;
    }
    .hero-badge-icon {
      width: 44px; height: 44px;
      background: var(--sage-soft);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--sage-dark);
      flex-shrink: 0;
    }
    .hero-badge-icon svg { width: 22px; height: 22px; }
    .hero-badge-text { font-size: 0.86rem; line-height: 1.35; color: var(--ink); font-weight: 500; }
    .hero-badge-text strong { color: var(--sage-deep); display: block; font-size: 0.92rem; }

    .hero-photo-note {
      position: absolute; right: 1rem; top: 1rem;
      background: rgba(45,55,40,0.65);
      color: rgba(255,255,255,0.92);
      font-size: 0.7rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.35rem 0.7rem;
      border-radius: 100px;
      backdrop-filter: blur(6px);
    }

    @media (max-width: 900px) {
      .hero { padding: 3rem 0 4rem; }
      .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
      .hero-visual { max-width: 460px; margin: 0 auto; padding-top: 125%; }
      .hero-badge { left: 1rem; bottom: 1rem; padding: 0.85rem 1rem; max-width: 240px; }
      .hero-badge-text { font-size: 0.82rem; }
    }

    /* =========================
       Trust strip
       ========================= */
    .trust-strip {
      background: var(--sage-mist);
      padding: 2rem 0;
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
    }
    .trust-strip-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap;
    }
    .trust-strip-text { color: var(--sage-deep); font-weight: 500; font-size: 0.95rem; }
    .trust-strip-text strong { color: var(--sage-deep); font-weight: 700; }
    .trust-strip-points { display: flex; gap: 2rem; flex-wrap: wrap; }
    .trust-strip-points span {
      display: inline-flex; align-items: center; gap: 0.45rem;
      font-size: 0.88rem; color: var(--ink-soft); font-weight: 500;
    }
    .trust-strip-points svg { width: 16px; height: 16px; color: var(--sage); }

    /* =========================
       Why Everhome
       ========================= */
    .why { background: var(--cream); }
    .section-head { max-width: 760px; margin-bottom: 3.5rem; }
    .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-head h2 { margin-bottom: 1rem; }
    .section-head p { font-size: 1.1rem; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .feature-card {
      background: var(--white);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--sage-soft);
    }
    .feature-icon {
      width: 56px; height: 56px;
      background: var(--sage-soft);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      color: var(--sage-dark);
      margin-bottom: 1.5rem;
    }
    .feature-icon svg { width: 28px; height: 28px; }
    .feature-card h3 { margin-bottom: 0.6rem; color: var(--sage-deep); }
    .feature-card p { font-size: 0.98rem; }

    @media (max-width: 720px) {
      .why-grid { grid-template-columns: 1fr; }
      .feature-card { padding: 1.75rem; }
    }

    /* =========================
       Services
       ========================= */
    .services {
      background: var(--cream-soft);
    }
    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.75rem;
      margin-bottom: 3rem;
    }
    .service-block {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      border: 1px solid var(--line-soft);
      position: relative;
      overflow: hidden;
    }
    .service-block.featured {
      background: var(--sage-deep);
      border-color: var(--sage-deep);
      color: var(--cream);
    }
    .service-block.featured::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 240px; height: 240px;
      background: radial-gradient(circle, rgba(201,169,97,0.18), transparent 65%);
      pointer-events: none;
    }
    .service-block.featured h3 { color: var(--cream); }
    .service-block.featured p { color: rgba(250,246,236,0.78); }
    .service-block.featured .service-tag { background: rgba(201,169,97,0.2); color: var(--gold-soft); }
    .service-block.featured .service-list li { color: rgba(250,246,236,0.92); border-bottom-color: rgba(250,246,236,0.12); }
    .service-block.featured .service-list svg { color: var(--gold); }

    .service-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--sage-soft);
      color: var(--sage-dark);
      padding: 0.35rem 0.7rem;
      border-radius: 100px;
      margin-bottom: 1.25rem;
    }
    .service-block h3 { margin-bottom: 0.5rem; }
    .service-block > p { margin-bottom: 1.75rem; font-size: 0.98rem; }
    .service-list {
      list-style: none;
      position: relative;
      z-index: 1;
    }
    .service-list li {
      display: flex; align-items: flex-start; gap: 0.85rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--line-soft);
      font-size: 0.98rem;
      color: var(--ink);
    }
    .service-list li:last-child { border-bottom: none; }
    .service-list li svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
    .service-list li strong { display: block; font-weight: 600; margin-bottom: 0.1rem; font-family: var(--sans); }
    .service-list li small { font-size: 0.86rem; color: var(--ink-soft); display: block; }
    .service-block.featured .service-list li small { color: rgba(250,246,236,0.65); }

    .services-footer { text-align: center; }

    @media (max-width: 800px) {
      .services-grid { grid-template-columns: 1fr; }
      .service-block { padding: 2rem; }
    }

    /* =========================
       How it works
       ========================= */
    .how { background: var(--cream); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 3rem;
      position: relative;
    }
    .steps-grid::before {
      /* connecting line */
      content: '';
      position: absolute;
      top: 36px;
      left: 14%;
      right: 14%;
      height: 1px;
      background: repeating-linear-gradient(to right, var(--sage) 0 6px, transparent 6px 12px);
      z-index: 0;
    }
    .step {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .step-number {
      width: 72px; height: 72px;
      background: var(--cream);
      border: 1.5px solid var(--sage);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--serif);
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--sage-deep);
      position: relative;
    }
    .step-number::after {
      /* inner dot */
      content: '';
      position: absolute; inset: 6px;
      border: 1px solid var(--sage-soft);
      border-radius: 50%;
    }
    .step h3 { margin-bottom: 0.65rem; }
    .step p { font-size: 0.98rem; max-width: 320px; margin: 0 auto; }
    .how-footer { text-align: center; }

    @media (max-width: 800px) {
      .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .steps-grid::before { display: none; }
    }

    /* =========================
       About / founder
       ========================= */
    .about {
      background: var(--sage-mist);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 4rem;
      align-items: center;
    }
    .about-photo {
      position: relative;
      width: 100%;
      padding-top: 125%; /* 4:5 ratio */
      border-radius: var(--radius-xl);
      overflow: hidden;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 55%),
        linear-gradient(160deg, var(--sage-soft), var(--cream-warm));
      position: relative;
      box-shadow: var(--shadow-md);
    }
    .about-photo-content {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      color: var(--sage-deep);
    }
    .about-photo-monogram {
      width: 140px; height: 140px;
      background: var(--white);
      border: 2px solid var(--sage);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif);
      font-size: 3.4rem;
      font-weight: 500;
      color: var(--sage-deep);
      box-shadow: var(--shadow-md);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .about-photo-caption {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sage-dark);
      font-weight: 500;
    }
    .about-photo-note {
      position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
      font-size: 0.7rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ink-soft);
      background: rgba(255,255,255,0.7);
      padding: 0.35rem 0.7rem;
      border-radius: 100px;
      backdrop-filter: blur(4px);
      font-weight: 500;
    }
    .about-content h2 { margin-bottom: 1.5rem; }
    .about-content p { margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.7; }
    .about-signature {
      display: flex; align-items: center; gap: 1rem;
      margin-top: 2rem; padding-top: 1.5rem;
      border-top: 1px solid var(--line);
    }
    .about-signature-name {
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--sage-deep);
      font-weight: 500;
      font-style: italic;
    }
    .about-signature-role {
      font-size: 0.86rem;
      color: var(--ink-soft);
      letter-spacing: 0.04em;
    }

    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-photo { max-width: 380px; margin: 0 auto; }
    }

    /* =========================
       Testimonials
       ========================= */
    .testimonials { background: var(--cream-soft); }
    .testimonial-note {
      display: inline-block;
      font-size: 0.78rem;
      color: var(--ink-soft);
      background: var(--cream-warm);
      padding: 0.5rem 0.95rem;
      border-radius: 100px;
      margin-top: 1.25rem;
      font-style: italic;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
      margin-top: 3rem;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      border: 1px solid var(--line-soft);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .testimonial-quote-mark {
      font-family: var(--serif);
      font-size: 4rem;
      line-height: 0.8;
      color: var(--sage-soft);
      height: 2rem;
    }
    .testimonial-card blockquote {
      font-family: var(--serif);
      font-size: 1.18rem;
      color: var(--sage-deep);
      line-height: 1.45;
      font-weight: 500;
      flex-grow: 1;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 0.85rem;
      padding-top: 1rem;
      border-top: 1px solid var(--line-soft);
    }
    .testimonial-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--sage-soft);
      color: var(--sage-dark);
      display: flex; align-items: center; justify-content: center;
      font-weight: 600;
      font-size: 0.95rem;
    }
    .testimonial-author-info { font-size: 0.9rem; }
    .testimonial-author-info strong { display: block; color: var(--ink); font-weight: 600; }
    .testimonial-author-info small { color: var(--ink-soft); font-size: 0.84rem; }

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

    /* =========================
       Final CTA
       ========================= */
    .cta-final {
      padding: 6rem 0;
      background: var(--sage-deep);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }
    .cta-final::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,169,97,0.15), transparent 60%);
      pointer-events: none;
    }
    .cta-final::after {
      content: '';
      position: absolute;
      bottom: -200px; left: -200px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,237,227,0.08), transparent 60%);
      pointer-events: none;
    }
    .cta-final-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }
    .cta-final .eyebrow { color: var(--gold-soft); }
    .cta-final .eyebrow::before { background: var(--gold-soft); }
    .cta-final h2 { color: var(--cream); margin-bottom: 1.25rem; }
    .cta-final p { color: rgba(250,246,236,0.82); font-size: 1.18rem; margin-bottom: 2.5rem; }
    .cta-final .btn-primary { background: var(--gold); color: var(--sage-deep); }
    .cta-final .btn-primary:hover { background: var(--gold-soft); box-shadow: 0 14px 28px rgba(201,169,97,0.32); }
    .cta-final .btn-secondary { color: var(--cream); border-color: rgba(250,246,236,0.4); }
    .cta-final .btn-secondary:hover { background: rgba(250,246,236,0.08); border-color: var(--cream); }
    .cta-final-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* =========================
       Footer
       ========================= */
    footer {
      background: var(--cream-warm);
      padding: 4.5rem 0 2rem;
      border-top: 1px solid var(--line);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3.5rem;
    }
    .footer-brand p { font-size: 0.95rem; max-width: 320px; margin-top: 1rem; }
    .footer-brand .logo svg { height: 48px; }
    .footer-col h5 {
      font-family: var(--sans);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 1.25rem;
      font-weight: 700;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col a {
      color: var(--ink-soft);
      text-decoration: none;
      font-size: 0.94rem;
      transition: color .25s;
    }
    .footer-col a:hover { color: var(--sage); }
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 0.65rem;
      color: var(--ink); font-size: 0.94rem;
      margin-bottom: 0.85rem;
    }
    .footer-contact-item svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; margin-top: 4px; }
    .footer-contact-item a { color: var(--ink); text-decoration: none; }
    .footer-contact-item a:hover { color: var(--sage); }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid var(--line);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
      font-size: 0.85rem;
      color: var(--ink-soft);
    }
    .footer-bottom a { color: var(--ink-soft); text-decoration: none; }
    .footer-bottom a:hover { color: var(--sage); }
    .footer-disclaimer { font-size: 0.8rem; color: var(--ink-soft); max-width: 560px; line-height: 1.5; }

    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    /* =========================
       Floating mobile call button
       ========================= */
    .floating-call {
      display: none;
      position: fixed;
      right: 1.25rem; bottom: 1.25rem;
      background: var(--sage);
      color: white;
      width: 56px; height: 56px;
      border-radius: 50%;
      align-items: center; justify-content: center;
      text-decoration: none;
      box-shadow: 0 14px 28px rgba(60,50,30,0.18);
      z-index: 90;
      transition: background .25s, transform .25s;
    }
    .floating-call:hover { background: var(--sage-dark); transform: scale(1.05); }
    .floating-call svg { width: 24px; height: 24px; }
    @media (max-width: 720px) {
      .floating-call { display: inline-flex; }
    }

    /* =========================
       Skip link
       ========================= */
    .skip-link {
      position: absolute; left: -9999px;
      padding: 0.5rem 1rem;
      background: var(--sage-deep);
      color: var(--cream);
      z-index: 999;
      border-radius: 0 0 8px 0;
    }
    .skip-link:focus { left: 0; top: 0; }

    /* Reveal-on-scroll */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* =========================
       Photo frames & placeholders
       ========================= */
    .photo-frame {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.65), transparent 55%),
        linear-gradient(150deg, var(--sage-soft) 0%, var(--cream-warm) 55%, var(--gold-soft) 100%);
      box-shadow: var(--shadow-lg);
    }
    .photo-frame > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      z-index: 1;
    }
    .photo-frame > img.is-broken,
    .photo-frame > img:not([src]) { display: none; }

    /* Subtle "soft-focus" fallback scene for placeholders */
    .photo-fallback {
      position: absolute;
      inset: 0;
      z-index: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .photo-fallback::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 20% 80%, rgba(123,139,111,0.22), transparent 50%),
        radial-gradient(circle at 80% 25%, rgba(201,169,97,0.22), transparent 55%),
        radial-gradient(circle at 60% 60%, rgba(255,255,255,0.4), transparent 50%);
      pointer-events: none;
    }
    .photo-fallback-scene {
      position: relative;
      width: 78%;
      max-width: 360px;
      height: auto;
      opacity: 0.85;
      z-index: 1;
    }
    .photo-tag {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(6px);
      color: var(--sage-deep);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.4rem 0.8rem;
      border-radius: 100px;
      z-index: 2;
      pointer-events: none;
    }
    .photo-tag svg { width: 12px; height: 12px; color: var(--sage); }

    /* When a real <img> loads, hide the fallback + tag */
    .photo-frame.has-image .photo-fallback,
    .photo-frame.has-image .photo-tag { display: none; }

    /* =========================
       Lifestyle break section
       ========================= */
    .lifestyle-break {
      padding: 0;
      background: var(--cream);
    }
    .lifestyle-break-inner {
      position: relative;
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }
    .lifestyle-photo {
      position: relative;
      width: 100%;
      padding-top: 42.857%; /* 21:9 ratio = 9/21 */
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    .lifestyle-photo > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    .lifestyle-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(to right, rgba(61,74,54,0.78) 0%, rgba(61,74,54,0.35) 50%, rgba(61,74,54,0.05) 100%);
      display: flex;
      align-items: center;
      padding: 4rem;
    }
    .lifestyle-quote {
      max-width: 520px;
      color: var(--cream);
    }
    .lifestyle-quote .eyebrow { color: var(--gold-soft); }
    .lifestyle-quote .eyebrow::before { background: var(--gold-soft); }
    .lifestyle-quote blockquote {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      line-height: 1.2;
      color: var(--cream);
      font-weight: 500;
      margin: 0;
    }
    .lifestyle-quote cite {
      display: block;
      margin-top: 1.5rem;
      font-style: normal;
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      color: rgba(250,246,236,0.78);
      font-family: var(--sans);
    }
    @media (max-width: 760px) {
      /* On mobile: padding-top hack for 4:3 aspect ratio (works in every browser). */
      .lifestyle-photo {
        padding-top: 75%; /* 4:3 ratio = 3/4 = 75% */
        border-radius: 0;
      }
      .lifestyle-photo > img {
        object-position: center 35%;
      }
      .lifestyle-overlay {
        padding: 3.5rem 1.25rem 1.5rem 1.25rem;
        background: linear-gradient(to top, rgba(61,74,54,0.92) 0%, rgba(61,74,54,0.55) 55%, rgba(61,74,54,0) 90%);
        align-items: flex-end;
      }
      .lifestyle-quote { max-width: 100%; }
      .lifestyle-quote .eyebrow { font-size: 0.7rem; margin-bottom: 0.5rem; }
      .lifestyle-quote blockquote { font-size: 1.05rem; line-height: 1.35; }
      .lifestyle-quote cite { font-size: 0.78rem; margin-top: 0.75rem; display: block; }
      .lifestyle-break { padding: 0; }
      .lifestyle-break-inner { padding: 0; }
    }

    /* =========================
       About photo refinement
       ========================= */
    .about-photo.photo-frame { box-shadow: var(--shadow-md); }
    .about-photo .photo-fallback-content {
      position: relative;
      z-index: 1;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0.85rem;
      padding: 2rem;
      text-align: center;
    }

    /* =========================
       Modal / Enquiry form
       ========================= */
    .modal {
      position: fixed; inset: 0;
      background: rgba(35, 30, 18, 0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 300;
      display: flex; align-items: center; justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s ease, visibility .3s ease;
    }
    .modal.open { opacity: 1; visibility: visible; }
    .modal-panel {
      background: var(--cream-soft);
      border-radius: var(--radius-lg);
      width: 100%;
      max-width: 580px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 30px 80px rgba(0,0,0,0.25);
      transform: translateY(16px) scale(0.98);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .modal.open .modal-panel { transform: translateY(0) scale(1); }
    .modal-header {
      position: relative;
      padding: 2rem 2rem 1.25rem;
      border-bottom: 1px solid var(--line-soft);
    }
    .modal-header .eyebrow { margin-bottom: 0.75rem; }
    .modal-header h3 {
      font-family: var(--serif);
      font-size: clamp(1.6rem, 3vw, 2rem);
      color: var(--sage-deep);
      font-weight: 500;
      line-height: 1.15;
      margin: 0 0 0.5rem;
    }
    .modal-header p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }
    .modal-close {
      position: absolute;
      top: 1.25rem; right: 1.25rem;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--sage-soft);
      border: none;
      cursor: pointer;
      color: var(--sage-deep);
      display: flex; align-items: center; justify-content: center;
      transition: background .25s, transform .2s;
    }
    .modal-close:hover { background: var(--sage); color: var(--white); transform: rotate(90deg); }
    .modal-close svg { width: 18px; height: 18px; pointer-events: none; }
    /* Same fix for the mobile menu close so SVG taps register on the button */
    .mobile-menu-close svg { pointer-events: none; }
    .modal-body { padding: 1.5rem 2rem 2rem; }

    .form-row { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
    .form-row.two { grid-template-columns: 1fr 1fr; }
    @media (max-width: 540px) { .form-row.two { grid-template-columns: 1fr; } }

    .field label {
      display: block;
      font-family: var(--sans);
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--sage-deep);
      margin-bottom: 0.4rem;
      letter-spacing: 0.01em;
    }
    .field label .req { color: var(--gold); margin-left: 2px; }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      font-family: var(--sans);
      font-size: 0.96rem;
      color: var(--ink);
      transition: border-color .25s, box-shadow .25s;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--sage);
      box-shadow: 0 0 0 3px rgba(123,139,111,0.18);
    }
    .field textarea { resize: vertical; min-height: 90px; }
    .field select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b8b6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
      background-repeat: no-repeat;
      background-position: right 0.95rem center;
      background-size: 16px;
      padding-right: 2.5rem;
    }

    .checkbox-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
    }
    @media (max-width: 540px) { .checkbox-grid { grid-template-columns: 1fr; } }
    .checkbox-pill {
      position: relative;
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.7rem 0.9rem;
      border: 1px solid var(--line);
      border-radius: 12px;
      cursor: pointer;
      font-size: 0.9rem;
      background: var(--white);
      transition: all .2s;
    }
    .checkbox-pill input { position: absolute; opacity: 0; pointer-events: none; }
    .checkbox-pill .checkbox-mark {
      width: 18px; height: 18px;
      border: 1.5px solid var(--line);
      border-radius: 5px;
      background: var(--white);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: all .2s;
    }
    .checkbox-pill .checkbox-mark svg { width: 12px; height: 12px; color: var(--white); opacity: 0; transition: opacity .2s; }
    .checkbox-pill:hover { border-color: var(--sage); }
    .checkbox-pill input:checked ~ .checkbox-mark { background: var(--sage); border-color: var(--sage); }
    .checkbox-pill input:checked ~ .checkbox-mark svg { opacity: 1; }
    .checkbox-pill input:checked + .checkbox-mark + span { color: var(--sage-deep); font-weight: 600; }

    .form-footer {
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--line-soft);
      display: flex; justify-content: space-between; align-items: center;
      gap: 1rem; flex-wrap: wrap;
    }
    .form-privacy {
      font-size: 0.78rem;
      color: var(--ink-soft);
      max-width: 240px;
      line-height: 1.4;
    }
    .form-submit {
      flex-shrink: 0;
    }

    /* Success state */
    .modal-success {
      display: none;
      padding: 3rem 2rem;
      text-align: center;
    }
    .modal-success .success-icon {
      width: 72px; height: 72px;
      background: var(--sage-soft);
      color: var(--sage-dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
    }
    .modal-success .success-icon svg { width: 36px; height: 36px; }
    .modal-success h3 {
      font-family: var(--serif);
      font-size: 1.8rem;
      color: var(--sage-deep);
      margin-bottom: 0.75rem;
      font-weight: 500;
    }
    .modal-success p { color: var(--ink-soft); margin-bottom: 1.5rem; }
    .modal.success .modal-form-content { display: none; }
    .modal.success .modal-success { display: block; }

    @media (max-width: 600px) {
      .modal { padding: 0; align-items: flex-end; }
      .modal-panel { max-height: 96vh; border-radius: 24px 24px 0 0; }
      .modal-header { padding: 1.5rem 1.25rem 1rem; }
      .modal-body { padding: 1.25rem; }
    }

    /* =========================
       NEW: page hero (sub-pages)
       ========================= */
    .page-hero {
      padding: 6rem 0 4rem;
      background:
        radial-gradient(ellipse at 50% 0%, var(--sage-mist) 0%, transparent 60%),
        var(--cream);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: var(--line);
    }
    .page-hero .container { max-width: 760px; }
    .page-hero .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      color: var(--ink-soft);
      margin-bottom: 1.5rem;
    }
    .page-hero .breadcrumb a {
      color: var(--sage);
      text-decoration: none;
      font-weight: 500;
    }
    .page-hero .breadcrumb a:hover { text-decoration: underline; }
    .page-hero .breadcrumb svg { width: 14px; height: 14px; opacity: 0.6; }
    .page-hero h1 {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      margin-bottom: 1.25rem;
    }
    .page-hero p {
      font-size: 1.15rem;
      max-width: 600px;
      margin: 0 auto;
      color: var(--ink-soft);
      line-height: 1.65;
    }

    /* =========================
       NEW: nav current page highlight
       ========================= */
    .nav-links a.current { color: var(--sage); }
    .nav-links a.current::after {
      width: 100%;
      background: var(--sage);
    }

    /* =========================
       NEW: service detail blocks (services.html)
       ========================= */
    .service-detail {
      padding: 4rem 0;
      border-bottom: 1px solid var(--line-soft);
    }
    .service-detail:last-of-type { border-bottom: none; }
    .service-detail-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 4rem;
      align-items: start;
    }
    .service-detail-grid.reverse { grid-template-columns: 1.15fr 0.85fr; }
    .service-detail-grid.reverse .service-detail-side { order: 2; }
    .service-detail-side {
      position: sticky;
      top: 6rem;
    }
    .service-detail-icon {
      width: 64px; height: 64px;
      background: var(--sage-soft);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      color: var(--sage-dark);
      margin-bottom: 1.5rem;
    }
    .service-detail-icon svg { width: 32px; height: 32px; }
    .service-detail h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin-bottom: 1rem;
    }
    .service-detail-tagline {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--sage);
      font-style: italic;
      margin-bottom: 1.25rem;
    }
    .service-detail-body p { margin-bottom: 1.25rem; line-height: 1.7; }
    .service-detail-body h3 {
      font-family: var(--sans);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--sage-deep);
      margin: 2rem 0 1rem;
    }
    .service-detail-body ul {
      list-style: none;
      padding: 0;
    }
    .service-detail-body ul li {
      display: flex; align-items: flex-start; gap: 0.7rem;
      padding: 0.6rem 0;
      font-size: 1rem;
      color: var(--ink);
      border-bottom: 1px dashed var(--line-soft);
    }
    .service-detail-body ul li:last-child { border-bottom: none; }
    .service-detail-body ul li svg {
      width: 18px; height: 18px;
      color: var(--sage);
      flex-shrink: 0;
      margin-top: 4px;
    }
    .service-detail-meta {
      margin-top: 1.5rem;
      padding: 1.25rem 1.5rem;
      background: var(--cream-soft);
      border-radius: 14px;
      border-left: 3px solid var(--sage);
      font-size: 0.94rem;
    }
    .service-detail-meta strong { color: var(--sage-deep); }

    @media (max-width: 900px) {
      .service-detail-grid,
      .service-detail-grid.reverse { grid-template-columns: 1fr; gap: 2rem; }
      .service-detail-grid.reverse .service-detail-side { order: 0; }
      .service-detail-side { position: static; }
    }

    /* =========================
       NEW: FAQ accordion
       ========================= */
    .faq-section { padding: 5rem 0; }
    .faq-toc {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-bottom: 3rem;
    }
    .faq-toc a {
      padding: 0.5rem 1rem;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 100px;
      font-size: 0.86rem;
      color: var(--sage-deep);
      text-decoration: none;
      font-weight: 500;
      transition: all .25s;
    }
    .faq-toc a:hover { background: var(--sage-soft); border-color: var(--sage); }

    .faq-category {
      margin-bottom: 3rem;
      scroll-margin-top: 100px;
    }
    .faq-category > h2 {
      font-size: 1.6rem;
      margin-bottom: 1.5rem;
      padding-bottom: 0.85rem;
      border-bottom: 1px solid var(--line);
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    details.faq-item {
      background: var(--white);
      border: 1px solid var(--line-soft);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .25s, box-shadow .25s;
    }
    details.faq-item[open] {
      border-color: var(--sage-soft);
      box-shadow: var(--shadow-sm);
    }
    details.faq-item summary {
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-family: var(--sans);
      font-size: 1.04rem;
      font-weight: 600;
      color: var(--sage-deep);
      transition: background .25s;
    }
    details.faq-item summary::-webkit-details-marker { display: none; }
    details.faq-item summary:hover { background: var(--cream-soft); }
    details.faq-item summary::after {
      content: '';
      flex-shrink: 0;
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--sage-soft);
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b50' stroke-width='2.5' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
      background-size: 14px;
      background-repeat: no-repeat;
      background-position: center;
      transition: transform .3s;
    }
    details.faq-item[open] summary::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b50' stroke-width='2.5' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
      transform: rotate(180deg);
    }
    details.faq-item .faq-body {
      padding: 0 1.5rem 1.5rem;
      color: var(--ink-soft);
      line-height: 1.7;
      font-size: 0.98rem;
    }
    details.faq-item .faq-body p { margin-bottom: 0.85rem; color: var(--ink-soft); }
    details.faq-item .faq-body p:last-child { margin-bottom: 0; }
    details.faq-item .faq-body ul {
      list-style: none;
      padding: 0;
      margin: 0.5rem 0;
    }
    details.faq-item .faq-body ul li {
      padding: 0.35rem 0 0.35rem 1.4rem;
      position: relative;
    }
    details.faq-item .faq-body ul li::before {
      content: '';
      position: absolute;
      left: 0; top: 0.85rem;
      width: 6px; height: 1px;
      background: var(--sage);
    }

    /* =========================
       NEW: contact page grid
       ========================= */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: start;
    }
    .contact-info-card {
      background: var(--cream-soft);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
    }
    .contact-info-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .contact-channel {
      display: flex;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--line-soft);
    }
    .contact-channel:last-child { border-bottom: none; }
    .contact-channel-icon {
      width: 44px; height: 44px;
      background: var(--sage-soft);
      color: var(--sage-dark);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-channel-icon svg { width: 22px; height: 22px; }
    .contact-channel-content strong {
      display: block;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage-dark);
      font-weight: 700;
      margin-bottom: 0.35rem;
    }
    .contact-channel-content a,
    .contact-channel-content span {
      color: var(--sage-deep);
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 500;
      text-decoration: none;
    }
    .contact-channel-content a:hover { color: var(--sage); }
    .contact-channel-content small {
      display: block;
      color: var(--ink-soft);
      font-size: 0.86rem;
      margin-top: 0.35rem;
    }

    .contact-form-wrap {
      background: var(--white);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .contact-form-wrap .modal-header { border-radius: 0; }
    .contact-form-wrap .modal-body { padding: 1.5rem 2rem 2rem; }

    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .contact-info-card { padding: 2rem; }
    }

    /* =========================
       NEW: service map / area visual
       ========================= */
    .service-areas {
      padding: 4rem 0;
      background: var(--sage-mist);
    }
    .service-areas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 920px;
      margin: 0 auto;
    }
    .service-area-card {
      background: var(--white);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      padding: 1.75rem;
      text-align: center;
      transition: transform .25s, box-shadow .25s;
    }
    .service-area-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .service-area-card-icon {
      width: 56px; height: 56px;
      background: var(--sage-soft);
      color: var(--sage-dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1rem;
    }
    .service-area-card-icon svg { width: 26px; height: 26px; }
    .service-area-card h4 {
      font-family: var(--serif);
      font-size: 1.25rem;
      color: var(--sage-deep);
      margin-bottom: 0.4rem;
      font-weight: 500;
    }
    .service-area-card small {
      color: var(--ink-soft);
      font-size: 0.86rem;
    }
    @media (max-width: 720px) {
      .service-areas-grid { grid-template-columns: 1fr; }
    }

    /* =========================
       NEW: values list (about page)
       ========================= */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .value-block {
      padding: 1.75rem 0;
      border-top: 2px solid var(--sage);
    }
    .value-block .value-num {
      font-family: var(--serif);
      font-style: italic;
      color: var(--sage);
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      margin-bottom: 0.85rem;
    }
    .value-block h3 {
      font-size: 1.4rem;
      margin-bottom: 0.65rem;
      font-family: var(--serif);
      font-weight: 500;
      color: var(--sage-deep);
    }
    .value-block p { font-size: 0.98rem; line-height: 1.6; }

    @media (max-width: 800px) {
      .values-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    }

    /* =========================
       NEW: process timeline (how it works)
       ========================= */
    .process-timeline {
      max-width: 880px;
      margin: 0 auto;
    }
    .process-step {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 2rem;
      padding: 2.5rem 0;
      border-bottom: 1px solid var(--line-soft);
      position: relative;
    }
    .process-step:last-child { border-bottom: none; }
    .process-step-number {
      font-family: var(--serif);
      font-size: 4rem;
      color: var(--sage);
      line-height: 1;
      font-weight: 500;
      letter-spacing: -0.04em;
    }
    .process-step h2 {
      font-size: 1.7rem;
      margin-bottom: 0.85rem;
      color: var(--sage-deep);
    }
    .process-step p { line-height: 1.7; font-size: 1.02rem; margin-bottom: 0.85rem; }
    .process-step-meta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.85rem;
      padding: 0.45rem 0.85rem;
      background: var(--sage-soft);
      color: var(--sage-deep);
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 600;
    }
    .process-step-meta svg { width: 14px; height: 14px; }
    @media (max-width: 720px) {
      .process-step { grid-template-columns: 1fr; gap: 0.75rem; padding: 2rem 0; }
      .process-step-number { font-size: 3rem; }
    }

    /* =========================
       NEW: prose content (general)
       ========================= */
    .prose { max-width: 720px; margin: 0 auto; }
    .prose p { font-size: 1.06rem; line-height: 1.75; margin-bottom: 1.25rem; color: var(--ink-soft); }
    .prose p strong, .prose strong { color: var(--ink); font-weight: 600; }
    .prose blockquote {
      font-family: var(--serif);
      font-size: 1.5rem;
      line-height: 1.4;
      color: var(--sage-deep);
      padding: 1.5rem 0 1.5rem 1.75rem;
      border-left: 3px solid var(--sage);
      margin: 2rem 0;
      font-style: italic;
    }

    /* contact page: inline form success state */
    .contact-form-wrap.success .modal-form-content { display: none; }
    .contact-form-wrap.success .modal-success { display: block; }
