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

    :root {
      --sage: #5A7D6B;
      --sage-light: #E8F0EC;
      --sage-mid: #7EA08E;
      --cream: #FAF7F2;
      --gold: #C8A96E;
      --charcoal: #2C2C2C;
      --text-mid: #555;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250, 247, 242, 0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #e5e0d8;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo-icon { display: none; }
    .nav-logo-text {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 1.2rem;
      font-weight: normal;
      color: var(--sage);
      letter-spacing: 0.01em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-mid);
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--sage); }

    .nav-cta {
      background: var(--sage);
      color: var(--white) !important;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-size: 0.9rem !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: #4a6a5a !important; color: var(--white) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 92vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 4rem;
      padding: 5rem 4rem 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-eyebrow {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }

    .hero h1 {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: normal;
      line-height: 1.2;
      color: var(--charcoal);
      margin-bottom: 1.5rem;
    }

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

    .hero-body {
      font-size: 1.1rem;
      color: var(--text-mid);
      max-width: 480px;
      margin-bottom: 2.5rem;
    }

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

    .btn-primary {
      background: var(--sage);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: #4a6a5a; transform: translateY(-1px); }

    .btn-secondary {
      border: 1.5px solid var(--sage);
      color: var(--sage);
      padding: 0.85rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      transition: background 0.2s, color 0.2s;
      display: inline-block;
    }
    .btn-secondary:hover { background: var(--sage-light); }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-card {
      background: var(--white);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      box-shadow: 0 8px 48px rgba(90,125,107,0.12);
      text-align: center;
      max-width: 340px;
      width: 100%;
    }
    .hero-card-willow {
      margin-bottom: 1.5rem;
    }
    .hero-stat {
      font-family: Georgia, serif;
      font-size: 3rem;
      color: var(--sage);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.85rem;
      color: var(--text-mid);
      margin-top: 0.3rem;
    }
    .hero-divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 1.5rem auto;
    }
    .hero-card-tagline {
      font-family: Georgia, serif;
      font-style: italic;
      font-size: 1.05rem;
      color: var(--sage);
      line-height: 1.5;
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--sage);
      padding: 1.4rem 2rem;
    }
    .trust-bar-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .trust-item {
      color: rgba(255,255,255,0.9);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .trust-item svg { opacity: 0.8; }

    /* ── SECTION BASE ── */
    section { padding: 5rem 2rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: normal;
      line-height: 1.25;
      margin-bottom: 1rem;
    }
    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-mid);
      max-width: 580px;
      margin-bottom: 3rem;
    }

    /* ── SERVICES ── */
    #services { background: var(--white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.8rem;
    }
    .service-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 2rem 1.8rem;
      border-left: 4px solid var(--sage);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .service-card:hover {
      box-shadow: 0 6px 30px rgba(90,125,107,0.12);
      transform: translateY(-2px);
    }
    .service-icon {
      width: 44px;
      height: 44px;
      background: var(--sage-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .service-card h3 {
      font-family: Georgia, serif;
      font-size: 1.15rem;
      font-weight: normal;
      margin-bottom: 0.6rem;
      color: var(--charcoal);
    }
    .service-card p {
      font-size: 0.93rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ── WHY WILLOW ── */
    #why { background: var(--sage-light); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .why-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
    .why-list li {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .why-check {
      width: 28px;
      height: 28px;
      background: var(--sage);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .why-check svg { color: white; }
    .why-list h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }
    .why-list p { font-size: 0.92rem; color: var(--text-mid); }

    .why-aside {
      background: var(--white);
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 4px 24px rgba(90,125,107,0.08);
    }
    .why-aside h3 {
      font-family: Georgia, serif;
      font-size: 1.3rem;
      font-weight: normal;
      margin-bottom: 1.2rem;
      color: var(--sage);
    }
    .why-aside p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }
    .why-aside .quote-mark {
      font-family: Georgia, serif;
      font-size: 3.5rem;
      color: var(--sage-light);
      line-height: 0.5;
      margin-bottom: 0.8rem;
      display: block;
    }

    /* ── SERVICE AREA ── */
    #service-area { background: var(--white); }
    .area-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 2rem;
    }
    .area-tag {
      background: var(--sage-light);
      color: var(--sage);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.9rem;
    }

    /* ── PROCESS ── */
    #process { background: var(--cream); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .process-step { text-align: center; }
    .process-num {
      width: 56px;
      height: 56px;
      background: var(--sage);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Georgia, serif;
      font-size: 1.3rem;
      margin: 0 auto 1.2rem;
    }
    .process-step h3 {
      font-family: Georgia, serif;
      font-weight: normal;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .process-step p { font-size: 0.9rem; color: var(--text-mid); }

    /* ── CONTACT ── */
    #contact { background: var(--sage); }
    #contact .section-title { color: var(--white); }
    #contact .section-subtitle { color: rgba(255,255,255,0.8); }
    #contact .section-eyebrow { color: var(--gold); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-info { color: rgba(255,255,255,0.9); }
    .contact-info-item {
      display: flex;
      gap: 1rem;
      align-items: center;
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }
    .contact-icon {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-form {
      background: var(--white);
      border-radius: 20px;
      padding: 2.5rem;
    }
    .contact-form h3 {
      font-family: Georgia, serif;
      font-weight: normal;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: var(--charcoal);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .form-group { margin-bottom: 1rem; }
    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-mid);
      margin-bottom: 0.4rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.7rem 1rem;
      border: 1.5px solid #e0dbd4;
      border-radius: 10px;
      font-size: 0.95rem;
      font-family: inherit;
      color: var(--charcoal);
      background: var(--cream);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--sage);
    }
    .form-group textarea { height: 100px; resize: vertical; }
    .form-submit {
      width: 100%;
      background: var(--sage);
      color: var(--white);
      border: none;
      padding: 0.9rem;
      border-radius: 50px;
      font-size: 1rem;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 0.5rem;
    }
    .form-submit:hover { background: #4a6a5a; }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.7);
      padding: 3rem 2rem 2rem;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 2.2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 1.5rem;
    }
    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      margin-top: 0.8rem;
      max-width: 320px;
    }
    .footer-logo-text {
      font-family: Georgia, serif;
      font-size: 1.2rem;
      color: var(--white);
    }
    .footer-col h4 {
      color: var(--white);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--white); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2.5rem;
        min-height: auto;
      }
      .hero-visual { order: -1; }
      .hero-card { max-width: 280px; }
      .why-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      section { padding: 3.5rem 1.5rem; }
    }

    /* ── PHOTO GALLERY ── */
    #gallery { background: var(--cream); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
    }
    .gallery-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.03); }
    .gallery-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(44,44,44,0.6));
      color: white;
      padding: 1.5rem 1.2rem 1rem;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: 1fr; }
    }

  
    /* ── LANDING PAGE ADDITIONS ── */
    .breadcrumb {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1.2rem 4rem 0;
      font-size: 0.85rem;
      color: var(--text-mid);
    }
    .breadcrumb a { color: var(--sage); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }

    .lp-hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2.5rem 4rem 3.5rem;
      text-align: center;
    }
    .lp-hero .hero-eyebrow { justify-content: center; display: flex; }
    .lp-hero h1 {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(2.1rem, 3.6vw, 3rem);
      font-weight: normal;
      line-height: 1.2;
      color: var(--charcoal);
      margin-bottom: 1.2rem;
    }
    .lp-hero h1 em { font-style: italic; color: var(--sage); }
    .lp-hero-body {
      font-size: 1.1rem;
      color: var(--text-mid);
      max-width: 640px;
      margin: 0 auto 2rem;
    }
    .lp-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .lp-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 1rem 4rem 3rem;
    }
    .lp-content h2 {
      font-family: Georgia, serif;
      font-weight: normal;
      font-size: 1.7rem;
      color: var(--charcoal);
      margin: 2rem 0 1rem;
    }
    .lp-content p { color: var(--text-mid); margin-bottom: 1.1rem; }
    .lp-content ul { margin: 0 0 1.1rem 1.3rem; color: var(--text-mid); }
    .lp-content li { margin-bottom: 0.5rem; }

    .lp-photo {
      max-width: 900px;
      margin: 0 auto 3rem;
      padding: 0 4rem;
    }
    .lp-photo img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      display: block;
      box-shadow: 0 8px 40px rgba(90,125,107,0.15);
    }

    .lp-faq {
      max-width: 800px;
      margin: 0 auto;
      padding: 1rem 4rem 3.5rem;
    }
    .lp-faq h2 {
      font-family: Georgia, serif;
      font-weight: normal;
      font-size: 1.7rem;
      color: var(--charcoal);
      margin-bottom: 1.5rem;
    }
    .lp-faq-item { margin-bottom: 1.5rem; }
    .lp-faq-item h3 {
      font-size: 1.05rem;
      color: var(--sage);
      margin-bottom: 0.4rem;
    }
    .lp-faq-item p { color: var(--text-mid); }

    .lp-cta-banner {
      background: var(--sage);
      padding: 3rem 2rem;
      text-align: center;
      color: var(--white);
    }
    .lp-cta-banner h2 {
      font-family: Georgia, serif;
      font-weight: normal;
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
    }
    .lp-cta-banner p { margin-bottom: 1.5rem; opacity: 0.9; }
    .lp-cta-banner .btn-primary { background: var(--white); color: var(--sage); }
    .lp-cta-banner .btn-primary:hover { background: var(--cream); }

    .service-areas-inline { color: var(--sage); font-weight: 500; }

    @media (max-width: 640px) {
      .lp-hero, .lp-content, .lp-faq { padding-left: 1.5rem; padding-right: 1.5rem; }
      .breadcrumb { padding-left: 1.5rem; padding-right: 1.5rem; }
      .lp-photo { padding: 0 1.5rem; }
    }
