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

    :root {
      --forest:    #1a2e1a;
      --bark:      #3d2b1f;
      --moss:      #4a7c3f;
      --sage:      #7aab6e;
      --straw:     #d4a853;
      --cream:     #f5f0e8;
      --white:     #ffffff;
      --text:      #2c2c2c;
      --light:     #f9f6f0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(26,46,26,0.97);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .nav-brand {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
    .nav-logo {
      width: 42px; height: 42px;
      background: var(--straw);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    .nav-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--cream);
      line-height: 1.2;
    }
    .nav-name span { display: block; font-size: 0.7rem; color: var(--sage); font-family: 'Source Sans 3', sans-serif; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      color: var(--cream); text-decoration: none;
      font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--straw); border-bottom-color: var(--straw); }
    .nav-cta {
      background: var(--straw); color: var(--forest) !important;
      padding: 8px 20px; border-radius: 4px;
      border-bottom: none !important;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: #e6b85c !important; }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s; }

    /* ── PAGES ── */

    /* ── HOME ── */
    .hero {
      position: relative;
      min-height: calc(100vh - 72px);
      display: grid;
      grid-template-columns: 1fr 380px;
      grid-template-rows: minmax(560px, 1fr) auto;
      background: var(--forest);
      overflow: hidden;
    }
    .hero-left {
      grid-column: 1; grid-row: 1;
      display: flex; flex-direction: column; justify-content: center;
      position: relative; z-index: 2;
      padding: 60px 20px 40px 5%;
    }
    .hero-right {
      grid-column: 2; grid-row: 1;
      display: flex; align-items: center; justify-content: center;
      padding: 40px 40px 40px 0;
      position: relative; z-index: 2;
    }
    .hero-card-stack { position: relative; width: 100%; height: 520px; }
    .hero-card-stack .card-top {
      position: absolute; top: 0; left: 20px; right: 0; height: 270px;
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
      border: 3px solid rgba(212,168,83,0.3); z-index: 1;
    }
    .hero-card-stack .card-bottom {
      position: absolute; bottom: 0; left: 0; right: 20px; height: 290px;
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 16px 50px rgba(0,0,0,0.6);
      border: 3px solid rgba(212,168,83,0.6); z-index: 2;
    }
    .hero-card-stack img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-card-arrow {
      position: absolute; top: calc(270px - 20px); left: 50%;
      transform: translateX(-50%); z-index: 4;
      width: 40px; height: 40px; background: var(--straw); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; box-shadow: 0 4px 16px rgba(0,0,0,0.4);
      color: var(--forest); font-weight: 900;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 70% 50%, rgba(74,124,63,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(61,43,31,0.6) 0%, transparent 50%),
        linear-gradient(135deg, #0d1a0d 0%, #1a2e1a 40%, #2a3d2a 100%);
    }
    .hero-texture {
      position: absolute; inset: 0; opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-rings {
      position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
      width: 600px; height: 600px; opacity: 0.06;
    }
    .hero-rings circle { fill: none; stroke: var(--straw); }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 700px;
      padding: 80px 5%;
      animation: fadeUp 0.8s ease both;
    }
    @keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,168,83,0.15);
      border: 1px solid rgba(212,168,83,0.4);
      color: var(--straw);
      font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
      padding: 6px 14px; border-radius: 20px;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      color: var(--cream);
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .hero h1 em { color: var(--straw); font-style: normal; }
    .hero p {
      font-size: 1.15rem; color: rgba(245,240,232,0.75);
      line-height: 1.7; max-width: 520px;
      margin-bottom: 40px; font-weight: 300;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--straw); color: var(--forest);
      padding: 14px 32px; border-radius: 4px;
      font-weight: 700; font-size: 0.95rem; text-decoration: none;
      letter-spacing: 0.5px;
      transition: background 0.2s, transform 0.2s;
      display: inline-block; cursor: pointer; border: none;
    }
    .btn-primary:hover { background: #e6b85c; transform: translateY(-2px); }
    .btn-outline {
      border: 2px solid rgba(245,240,232,0.4); color: var(--cream);
      padding: 14px 32px; border-radius: 4px;
      font-weight: 600; font-size: 0.95rem; text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
      display: inline-block; cursor: pointer; background: transparent;
    }
    .btn-outline:hover { border-color: var(--cream); background: rgba(255,255,255,0.05); }

    .hero-stats {
      grid-column: 1 / -1;
      grid-row: 2;
      position: relative; z-index: 2;
      display: flex; gap: 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      background: rgba(0,0,0,0.2);
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .stat {
      flex: 1; padding: 28px 32px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat:last-child { border-right: none; }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--straw); font-weight: 900; }
    .stat-label { font-size: 0.8rem; color: rgba(245,240,232,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

    /* features strip */
    .features {
      background: var(--light);
      padding: 80px 5%;
    }
    .features-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 32px; max-width: 1100px; margin: 0 auto;
    }
    .feature-card {
      background: var(--white);
      padding: 36px 28px;
      border-radius: 8px;
      border-bottom: 4px solid transparent;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .feature-card:hover { border-bottom-color: var(--moss); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
    .feature-icon { font-size: 2.4rem; margin-bottom: 16px; }
    .feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 10px; color: var(--forest); }
    .feature-card p { font-size: 0.95rem; color: #666; line-height: 1.6; font-weight: 300; }

    /* why us */
    .why {
      padding: 100px 5%;
      background: var(--white);
    }
    .why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .why-visual {
      position: relative;
      height: 420px;
    }
    .why-block {
      position: absolute;
      border-radius: 8px;
    }
    .why-block-1 { inset: 0 60px 60px 0; background: var(--forest); }
    .why-block-2 { inset: 60px 0 0 60px; background: var(--moss); opacity: 0.3; }
    .why-block-inner {
      position: absolute; inset: 20px 80px 80px 20px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      z-index: 2;
    }
    .why-block-inner .big-icon { font-size: 6rem; margin-bottom: 12px; }
    .why-block-inner p { color: var(--cream); font-size: 1.1rem; font-weight: 300; text-align: center; }
    .why-text .section-label { color: var(--moss); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
    .why-text h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--forest); line-height: 1.2; margin-bottom: 20px; }
    .why-text p { font-size: 1rem; color: #555; line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #444; }
    .check-list li::before { content: "✓"; color: var(--moss); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

    /* ── SERVICES ── */
    .services-hero {
      background: var(--forest);
      padding: 80px 5% 60px;
      text-align: center;
    }
    .services-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--cream); margin-bottom: 16px; }
    .services-hero p { color: rgba(245,240,232,0.65); font-size: 1.1rem; max-width: 520px; margin: 0 auto; font-weight: 300; }
    .page-label { color: var(--straw); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }

    .services-grid {
      padding: 80px 5%;
      background: var(--light);
    }
    .services-grid-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
    }
    .service-card {
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
    .service-card-top {
      background: var(--forest);
      padding: 32px 28px 24px;
      position: relative; overflow: hidden;
    }
    .service-card-top::after {
      content: '';
      position: absolute; bottom: -1px; left: 0; right: 0;
      height: 4px; background: var(--straw);
    }
    .service-card-icon { font-size: 2.8rem; margin-bottom: 12px; }
    .service-card-top h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); }
    .service-card-body { padding: 24px 28px 32px; }
    .service-card-body p { color: #555; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
    .service-card-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .service-card-body ul li { font-size: 0.9rem; color: #444; display: flex; align-items: center; gap: 8px; }
    .service-card-body ul li::before { content: "→"; color: var(--moss); font-weight: 700; }

    .services-cta {
      background: var(--bark);
      padding: 80px 5%;
      text-align: center;
    }
    .services-cta h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--cream); margin-bottom: 16px; }
    .services-cta p { color: rgba(245,240,232,0.65); font-size: 1rem; max-width: 480px; margin: 0 auto 32px; font-weight: 300; }

    /* ── ABOUT ── */
    .about-hero {
      background: var(--forest);
      padding: 80px 5% 60px;
      text-align: center;
    }
    .about-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--cream); margin-bottom: 16px; }
    .about-hero p { color: rgba(245,240,232,0.65); font-size: 1.1rem; max-width: 520px; margin: 0 auto; font-weight: 300; }

    .about-story {
      padding: 100px 5%;
      background: var(--white);
    }
    .about-story-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .about-story h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--forest); margin-bottom: 24px; line-height: 1.2; }
    .about-story p { font-size: 1rem; color: #555; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
    .about-values { background: var(--light); padding: 28px; border-radius: 8px; border-left: 4px solid var(--moss); }
    .about-values h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--forest); margin-bottom: 16px; }
    .value-item { display: flex; gap: 12px; margin-bottom: 16px; }
    .value-item:last-child { margin-bottom: 0; }
    .value-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--straw); flex-shrink: 0; margin-top: 6px; }
    .value-item p { font-size: 0.95rem; color: #555; line-height: 1.6; font-weight: 300; }
    .value-item strong { color: var(--forest); font-weight: 600; }

    .about-team {
      padding: 80px 5%;
      background: var(--forest);
      text-align: center;
    }
    .about-team h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--cream); margin-bottom: 12px; }
    .about-team > p { color: rgba(245,240,232,0.65); font-size: 1rem; max-width: 500px; margin: 0 auto 48px; font-weight: 300; }
    .team-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 40px 32px;
      max-width: 380px;
      margin: 0 auto;
    }
    .team-avatar {
      width: 90px; height: 90px;
      background: var(--straw);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.4rem;
      margin: 0 auto 20px;
    }
    .team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); margin-bottom: 4px; }
    .team-card .role { color: var(--sage); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
    .team-card p { color: rgba(245,240,232,0.65); font-size: 0.95rem; line-height: 1.7; font-weight: 300; }

    .service-area {
      padding: 80px 5%;
      background: var(--light);
      text-align: center;
    }
    .service-area h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--forest); margin-bottom: 12px; }
    .service-area p { color: #555; font-size: 1rem; max-width: 500px; margin: 0 auto 40px; font-weight: 300; }
    .area-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
    .area-tag {
      background: var(--white); border: 2px solid var(--moss);
      color: var(--forest); font-weight: 600; font-size: 0.9rem;
      padding: 8px 20px; border-radius: 24px;
    }

    /* ── CONTACT ── */
    .contact-hero {
      background: var(--forest);
      padding: 80px 5% 60px;
      text-align: center;
    }
    .contact-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--cream); margin-bottom: 16px; }
    .contact-hero p { color: rgba(245,240,232,0.65); font-size: 1.1rem; max-width: 520px; margin: 0 auto; font-weight: 300; }

    .contact-body {
      padding: 80px 5%;
      background: var(--light);
    }
    .contact-body-inner {
      max-width: 1000px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px;
    }
    .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--forest); margin-bottom: 24px; }
    .contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
    .contact-item-icon {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--forest); color: var(--straw);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .contact-item h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: #888; margin-bottom: 4px; }
    .contact-item p, .contact-item a { font-size: 1rem; color: var(--forest); font-weight: 600; text-decoration: none; }
    .contact-item a:hover { color: var(--moss); }
    .hours-block { background: var(--forest); border-radius: 8px; padding: 24px; margin-top: 8px; }
    .hours-block h3 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1rem; margin-bottom: 14px; }
    .hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
    .hours-row:last-child { border-bottom: none; }
    .hours-row span:first-child { color: rgba(245,240,232,0.6); }
    .hours-row span:last-child { color: var(--straw); font-weight: 600; }

    /* form */
    .contact-form-wrap {
      background: var(--white);
      border-radius: 8px;
      padding: 40px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    }
    .contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--forest); margin-bottom: 8px; }
    .contact-form-wrap > p { font-size: 0.9rem; color: #888; margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #555; margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 12px 14px;
      border: 2px solid #e8e8e8; border-radius: 4px;
      font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; color: var(--text);
      background: var(--light);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--moss); background: var(--white); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit { width: 100%; padding: 16px; background: var(--forest); color: var(--cream); border: none; border-radius: 4px; font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
    .form-submit:hover { background: var(--moss); }
    .form-success { display: none; text-align: center; padding: 40px 20px; }
    .form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
    .form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--forest); margin-bottom: 8px; }
    .form-success p { color: #666; font-size: 0.95rem; }

    /* ── FOOTER ── */
    footer {
      background: #0d1a0d;
      padding: 48px 5% 28px;
    }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--cream); margin-bottom: 8px; }
    .footer-brand p { font-size: 0.9rem; color: rgba(245,240,232,0.45); line-height: 1.7; max-width: 280px; font-weight: 300; }
    .footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--straw); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { color: rgba(245,240,232,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--cream); }
    .footer-col ul li { color: rgba(245,240,232,0.5); font-size: 0.9rem; }
    .footer-bottom { max-width: 1100px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { color: rgba(245,240,232,0.3); font-size: 0.82rem; }

    /* ── SECTION HEADER ── */
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header .section-label { color: var(--moss); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
    .section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--forest); line-height: 1.2; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto; /* text | cards | stats */
      }
      .hero-left  { grid-column: 1; grid-row: 1; }
      .hero-right {
        grid-column: 1; grid-row: 2;
        display: flex;
        padding: 0 5% 40px;
        justify-content: center;
      }
      .hero-card-stack {
        height: 320px;
        max-width: 420px;
        width: 100%;
      }
      .hero-card-stack .card-top  { height: 160px; }
      .hero-card-stack .card-bottom { height: 175px; }
      .hero-card-arrow { top: calc(160px - 20px); }
      .hero-stats { grid-column: 1; grid-row: 3; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(26,46,26,0.98); padding: 24px; gap: 20px; }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .hero-stats { flex-direction: column; }
      .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .why-inner, .about-story-inner, .contact-body-inner { grid-template-columns: 1fr; gap: 40px; }
      .why-visual { height: 280px; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .hero h1 { font-size: 2.4rem; }
      .review-cols-3 { grid-template-columns: 1fr !important; }
      .review-cols-2 { grid-template-columns: 1fr !important; }
    }

    /* ── GALLERY ── */
    .gallery {
      padding: 80px 5%;
      background: var(--forest);
    }
    .gallery .section-header .section-label { color: var(--straw); }
    .gallery .section-header h2 { color: var(--cream); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .gallery-item {
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(0,0,0,0.6); }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: 1fr; }
    }

    /* ── FAQ ── */
    .faq-section { padding: 80px 5%; background: var(--white); }
    .faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 20px 24px; cursor: pointer;
      font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--forest);
      background: var(--white); transition: background 0.2s;
      user-select: none;
    }
    .faq-question:hover { background: var(--light); }
    .faq-chevron { color: var(--moss); font-size: 0.85rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
    .faq-question.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      display: none; padding: 0 24px 20px;
      font-size: 0.95rem; color: #555; line-height: 1.7; font-weight: 300;
      border-top: 1px solid #f0ede8;
    }
    .faq-answer.open { display: block; }
    .faq-cta { text-align: center; margin-top: 48px; }
    .faq-cta p { color: #666; margin-bottom: 20px; font-size: 1rem; }

    /* ── Before & After ── */
    .before-after-section { padding: 80px 24px; background: var(--light); }
    .before-after-section .section-header { text-align: center; margin-bottom: 50px; }
    .before-after-section .section-label { display: inline-block; background: var(--moss); color: var(--white); font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 12px; }
    .before-after-section h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--forest); }
    .before-after-section p { color: #555; font-size: 1rem; margin-top: 10px; }
    .ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
    @media (max-width: 700px) { .ba-grid { grid-template-columns: 1fr; gap: 24px; } }
    .ba-pair { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
    .ba-images { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 0; height: 280px; }
    .ba-img-wrap { position: relative; overflow: hidden; width: 100%; height: 100%; margin: 0; padding: 0; }
    .ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
    .ba-img-wrap:hover img { transform: scale(1.04); }
    .ba-label { position: absolute; bottom: 10px; left: 10px; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; z-index: 1; }
    .ba-label.before { background: rgba(61,43,31,0.85); color: var(--cream); }
    .ba-label.after { background: rgba(74,124,63,0.90); color: var(--white); }
    .ba-divider { width: 2px; background: var(--forest); height: 100%; }
    .ba-caption { padding: 14px 16px; font-size: 0.85rem; color: #666; text-align: center; border-top: 1px solid #eee; }

    /* ── EXTRACTED UTILITY CLASSES ── */

    /* Hero overlay image wrapper */
    .hero-overlay-wrap {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      z-index: 1; pointer-events: none;
    }
    .hero-overlay-img {
      width: 55%; height: 100%;
      object-fit: contain; opacity: 0.15;
      filter: brightness(1.6) saturate(0.3);
      position: absolute; top: 0; left: 30%;
    }

    /* Hero contact strip */
    .hero-contact-strip {
      margin-top: 24px;
      display: flex; flex-wrap: wrap;
      gap: 20px; align-items: center;
    }
    .hero-contact-link {
      color: var(--straw); text-decoration: none;
      font-size: 1rem; font-weight: 600;
      display: flex; align-items: center; gap: 8px;
    }
    .hero-owner-label {
      color: rgba(245,240,232,0.7);
      font-size: 0.95rem;
    }

    /* Nav logo image */
    .nav-logo-img { height: 52px; width: auto; border-radius: 4px; }

    /* Reviews section wrapper */
    .reviews-section { padding: 80px 5%; background: var(--white); }
    .reviews-inner  { max-width: 1100px; margin: 0 auto; }

    /* Review card */
    .review-card {
      background: var(--light);
      border-radius: 10px; padding: 28px;
    }
    .review-stars  { color: var(--straw); font-size: 1rem; margin-bottom: 12px; }
    .review-text   { font-size: 0.95rem; color: #444; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .review-avatar {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--forest); color: var(--straw);
      border-radius: 50%; display: flex;
      align-items: center; justify-content: center;
      font-size: 0.8rem; font-weight: 700;
    }
    .review-name   { font-weight: 700; font-size: 0.9rem; color: var(--forest); }
    .review-source { font-size: 0.8rem; color: #888; }

    /* Review CTA panel (dark) */
    .review-cta-panel {
      background: var(--forest);
      border-radius: 12px; padding: 36px;
      text-align: center;
    }
    .review-cta-panel h3 {
      font-family: 'Playfair Display', serif;
      color: var(--cream); font-size: 1.4rem; margin-bottom: 8px;
    }
    .review-cta-panel p  { color: rgba(245,240,232,0.7); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
    .review-cta-emoji    { font-size: 2.5rem; margin-bottom: 8px; }

    /* Google maps panel */
    .maps-panel { background: var(--light); border-radius: 12px; padding: 36px; }
    .maps-panel-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
    .maps-panel-icon {
      width: 56px; height: 56px; flex-shrink: 0;
      background: var(--moss); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
    }
    .maps-panel h3 { font-family: 'Playfair Display', serif; color: var(--forest); font-size: 1.2rem; }
    .maps-panel .maps-sub { font-size: 0.85rem; color: #888; }
    .maps-panel p  { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 20px; }
    .maps-links    { display: flex; flex-direction: column; gap: 10px; }
    .maps-link-green { display: inline-flex; align-items: center; gap: 8px; color: var(--moss); font-weight: 700; text-decoration: none; font-size: 0.95rem; }
    .maps-link-dark  { display: inline-flex; align-items: center; gap: 8px; color: var(--forest); font-weight: 700; text-decoration: none; font-size: 0.95rem; }

    /* About thumbnail */
    .about-thumb { width: 220px; height: auto; border-radius: 8px; }

    /* Review nudge box (about page) */
    .review-nudge {
      margin-top: 20px;
      background: #f5f0e8;
      border: 1px solid var(--straw);
      border-radius: 8px; padding: 20px; text-align: center;
    }
    .review-nudge p       { color: var(--forest); font-size: 1rem; margin-bottom: 6px; font-weight: 700; }
    .review-nudge p + p   { color: #444; font-size: 0.9rem; margin-bottom: 16px; line-height: 1.5; font-weight: 400; }

    /* Form helper text */
    .form-label-hint   { color: var(--moss); font-size: 0.75rem; font-weight: 400; }
    .form-label-sub    { font-size: 0.8rem; color: #888; }
    .form-label-opt    { font-size: 0.8rem; color: #888; font-weight: 400; }
    .form-zip-input    { max-width: 160px; }
    .form-site-conditions { margin-top: 8px; }
    .form-conditions-wrap { margin-top: 8px; }
    .form-check-label  {
      display: block; padding: 6px 0;
      font-size: 0.92rem; text-transform: none;
      letter-spacing: 0; font-weight: 400;
      cursor: pointer; color: var(--text);
    }
    .form-check-label input[type="checkbox"] {
      margin-right: 10px; width: 16px; height: 16px;
      vertical-align: middle; accent-color: var(--moss);
    }
    .form-photo-hint   { font-size: 0.9rem; color: #555; margin-top: 6px; line-height: 1.6; }
    .form-photo-link   { color: var(--moss); font-weight: 600; }

    /* Footer contact links */
    .footer-contact-row { margin-top: 8px; }
    .footer-contact-link {
      color: var(--straw); text-decoration: none; margin-right: 16px;
    }
    .footer-contact-link:last-child { margin-right: 0; }

    /* Dynamically built stump rows (buildStumpRows) */
    .stump-rows-wrap {
      background: var(--light); border: 1px solid #e0dbd2;
      border-radius: 6px; padding: 16px 20px; margin-bottom: 20px;
    }
    .stump-rows-heading {
      font-size: 0.8rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px;
      color: #555; margin-bottom: 14px;
    }
    .stump-row-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px; margin-bottom: 12px; align-items: end;
    }
    .stump-row-label {
      display: block; font-size: 0.78rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px;
      color: #555; margin-bottom: 4px;
    }
    .stump-row-input {
      width: 100%; padding: 10px 12px;
      border: 2px solid #e8e8e8; border-radius: 4px;
      font-family: inherit; font-size: 0.95rem;
      background: white; outline: none;
    }