:root {
      --green: #6E7E3A;
      --green-dk: #55632F;
      --green-lt: #8A9A5A;
      --green-bg: #EEEFDE;
      --green-bg2: #DFE3C6;
      --accent: #C4693D;
      --accent-dk: #A9542E;
      --accent-bg: #F7E7DD;
      --cream: #F6F2E8;
      --white: #FFFFFF;
      --black: #1A1A1A;
      --text: #374151;
      --muted: #4B5563;
      --border: #E5E7EB;
      --radius: 14px;
      --radius-sm: 8px;
      --shadow: 0 2px 16px rgba(0,0,0,0.07);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.72; font-size: 17px; }
    h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; color: var(--black); line-height: 1.25; }
    h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
    h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
    h3 { font-size: 1.2rem; font-weight: 700; }
    p { color: var(--text); }
    a { color: var(--green); text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ── Layout ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 80px 0; }
    .section-sm { padding: 48px 0; }
    .section-cream { background: var(--cream); }
    .section-green { background: var(--green); color: white; }
    .section-green h2, .section-green h3 { color: white; }
    .section-green p { color: rgba(255,255,255,0.88); }
    .text-center { text-align: center; }
    .text-green { color: var(--green); }
    .label { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
    .section-header { margin-bottom: 48px; }
    .section-header p { font-size: 1.1rem; color: var(--muted); max-width: 600px; }
    .section-header.center { text-align: center; }
    .section-header.center p { margin: 12px auto 0; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .gap-16 { gap: 16px; }

    /* ── Buttons ── */
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; text-decoration: none; white-space: nowrap; }
    .btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
    .btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,105,61,0.35); }
    .btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
    .btn-outline:hover { background: var(--green-bg); }
    .btn-white { background: white; color: var(--green); border-color: white; }
    .btn-white:hover { background: var(--green-bg); border-color: var(--green-bg); }
    .btn-lg { padding: 17px 36px; font-size: 1rem; }

    /* ── Cards ── */
    .card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .card-body { padding: 28px; }
    .card-icon { font-size: 2rem; margin-bottom: 14px; }
    .card-img { width: 100%; height: 220px; object-fit: cover; }

    /* ── Forms ── */
    .form-group { margin-bottom: 16px; }
    label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--black); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
    input, select, textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--black); background: white; transition: border-color 0.2s; outline: none; }
    input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(110,126,58,0.12); }
    textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-box { background: white; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
    .success-msg { background: var(--green-bg); color: var(--green); padding: 24px; border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-weight: 600; text-align: center; font-size: 1.05rem; }

    /* ── Navigation ── */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 68px; max-width: 1200px; margin: 0 auto; }
    .nav-logo { cursor: pointer; display: flex; align-items: center; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-link { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text); padding: 7px 12px; border-radius: 6px; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
    .nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-bg); }
    .nav-cta { margin-left: 8px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.2s; }

    /* ── Hero ── */
    .hero { min-height: 100vh; background-image: linear-gradient(135deg, rgba(30,36,15,0.88) 0%, rgba(110,126,58,0.72) 100%), url('images/hero-home.jpg'); background-size: cover; background-position: center 35%; display: flex; align-items: center; padding: 100px 0 60px; }
    .hero-content { color: white; max-width: 580px; }
    .hero-tagline { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
    .hero h1 { color: white; margin-bottom: 20px; }
    .hero h1 span { color: #F0A277; }
    .hero p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 36px; line-height: 1.7; }
    .hero-form { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius); padding: 28px; max-width: 480px; margin-top: 32px; }
    .hero-form h3 { color: white; margin-bottom: 20px; font-size: 1rem; }
    .hero-form input, .hero-form select { background: rgba(255,255,255,0.92); border-color: transparent; }
    .hero-form input::placeholder { color: #9CA3AF; }
    .hero-bottom { display: flex; align-items: center; gap: 32px; margin-top: 28px; }
    .hero-stat { text-align: center; }
    .hero-stat .num { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: white; }
    .hero-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
    .hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

    /* ── Steps ── */
    .step { display: flex; gap: 20px; align-items: flex-start; }
    .step-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: white; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
    .step-body h3 { margin-bottom: 6px; }
    .step-connector { width: 2px; height: 32px; background: var(--green-bg2); margin: 8px 0 8px 22px; }

    /* ── Audience cards ── */
    .audience-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
    .audience-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.3s; }
    .audience-card:hover img { transform: scale(1.04); }
    .audience-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,36,15,0.85) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
    .audience-overlay h3 { color: white; font-size: 1.1rem; margin-bottom: 6px; }
    .audience-overlay p { color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.5; }

    /* ── Trust strip ── */
    .trust-strip { background: var(--green); padding: 32px 0; }
    .trust-items { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
    .trust-item { text-align: center; }
    .trust-item .big { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: white; }
    .trust-item .small { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-top: 4px; }

    /* ── Photo strip ── */
    .photo-strip { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4px; }
    .photo-strip-item { position: relative; overflow: hidden; }
    .photo-strip-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.3s; }
    .photo-strip-item:hover img { transform: scale(1.05); }

    /* ── Blog cards ── */
    .blog-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
    .blog-tag { background: var(--green-bg); color: var(--green); padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

    /* ── Benefits tabs ── */
    .tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
    .tab-btn { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; padding: 10px 22px; border-radius: 50px; border: 2px solid var(--border); background: white; color: var(--muted); cursor: pointer; transition: all 0.2s; }
    .tab-btn:hover { border-color: var(--green); color: var(--green); }
    .tab-btn.active { background: var(--green); color: white; border-color: var(--green); }
    .tab-content { display: none; animation: fadeIn 0.3s; }
    .tab-content.active { display: block; }
    @keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }
    .benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .benefit-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--cream); border-radius: var(--radius-sm); }
    .benefit-icon { font-size: 1.4rem; flex-shrink: 0; }
    .benefit-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
    .benefit-item p { font-size: 0.88rem; color: var(--muted); }
    .research-note { background: var(--green-bg); border-left: 3px solid var(--green); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-top: 24px; font-size: 0.88rem; color: var(--text); }
    .research-note strong { color: var(--green); }

    /* ── Partner type cards ── */
    .partner-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-top: 4px solid var(--green); }
    .partner-card h3 { margin-bottom: 10px; }
    .partner-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
    .partner-card ul { padding-left: 18px; }
    .partner-card ul li { font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }

    /* ── Team page ── */
    .requirement-list { list-style: none; padding: 0; }
    .requirement-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
    .requirement-list li:last-child { border-bottom: none; }
    .check-icon { color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

    /* ── FAQ ── */
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.98rem; }
    .faq-q:hover { color: var(--green); }
    .faq-a { padding-bottom: 18px; font-size: 0.93rem; color: var(--muted); line-height: 1.7; display: none; }
    .faq-item.open .faq-a { display: block; }
    .faq-toggle { font-size: 1.2rem; color: var(--green); flex-shrink: 0; transition: transform 0.2s; }
    .faq-item.open .faq-toggle { transform: rotate(45deg); }

    /* ── About ── */
    .about-hero { background-image: linear-gradient(to right, rgba(30,36,15,0.82), rgba(110,126,58,0.4)), url('images/hero-about.jpg'); background-size: cover; background-position: center; padding: 120px 0 80px; }
    .about-hero h1 { color: white; }
    .about-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 560px; margin-top: 16px; }
    .value-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start; }
    .value-icon { width: 48px; height: 48px; background: var(--green-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }

    /* ── Footer ── */
    .footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
    .footer h4 { color: white; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; cursor: pointer; transition: color 0.15s; }
    .footer-links a:hover { color: white; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
    .social-links { display: flex; gap: 12px; }
    .social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: white; cursor: pointer; transition: background 0.15s; text-decoration: none; }
    .social-btn:hover { background: var(--green); }

    /* ── CTA Banner ── */
    .cta-banner { background: linear-gradient(135deg, var(--green) 0%, var(--green-lt) 100%); padding: 72px 0; text-align: center; }
    .cta-banner h2 { color: white; margin-bottom: 16px; }
    .cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 32px; }
    .cta-form-inline { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
    .cta-form-inline input { flex: 1; min-width: 200px; background: white; border: none; border-radius: 50px; padding: 14px 22px; font-size: 0.95rem; }
    .cta-form-inline input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }

    /* ── Blog hero ── */
    .page-hero { background: var(--cream); padding: 100px 0 60px; }
    .page-hero h1 { margin-bottom: 12px; }
    .page-hero p { font-size: 1.1rem; color: var(--muted); max-width: 560px; }

    /* ── Inline waitlist form (hero inside page) ── */
    .waitlist-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

    /* ── Mobile ── */
    @media (max-width: 900px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .photo-strip { grid-template-columns: 1fr 1fr; }
      .photo-strip-item:last-child { display: none; }
    }
    @media (max-width: 768px) {
      .section { padding: 56px 0; }
      .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .benefit-grid { grid-template-columns: 1fr; }
      .waitlist-split { grid-template-columns: 1fr; gap: 40px; }
      .hero-bottom { gap: 20px; }
      .trust-items { gap: 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .photo-strip { grid-template-columns: 1fr; }
      .photo-strip-item:last-child { display: block; }
      .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: white; flex-direction: column; padding: 16px 24px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-bottom: 1px solid var(--border); gap: 4px; }
      .nav-links.open { display: flex; }
      .nav-links .nav-cta { margin-left: 0; margin-top: 8px; }
      .hamburger { display: flex; }
      .cta-form-inline { flex-direction: column; }
      .cta-form-inline input, .cta-form-inline .btn { width: 100%; }
      .tabs { gap: 6px; }
      .tab-btn { font-size: 0.8rem; padding: 8px 16px; }
    }

    /* ── Page visibility ── */
    .page { display: none; padding-top: 68px; }
    .page.active { display: block; }
    /* ── Testimonials / Reviews ── */
    .tgrid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
    .tcard { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:26px; box-shadow:var(--shadow); display:flex; flex-direction:column; gap:13px; }
    .tcard .stars { color:#F5A623; font-size:1.05rem; letter-spacing:2px; }
    .tcard blockquote { margin:0; font-size:1rem; line-height:1.62; color:var(--text); }
    .tcard .twho { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto; padding-top:12px; border-top:1px solid var(--border); }
    .tcard .tname { font-family:'Montserrat',sans-serif; font-weight:700; font-size:0.96rem; color:var(--text); }
    .tcard .trole { font-size:0.8rem; color:var(--muted); }
    .tsource { font-size:0.66rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; padding:3px 9px; border-radius:20px; white-space:nowrap; }
    .src-google{background:#EAF1FE;color:#1A73E8;} .src-facebook{background:#E7EEFB;color:#1877F2;}
    .src-instagram{background:#FCE9F1;color:#C13584;} .src-yelp{background:#FDEAEA;color:#D32323;}
    .src-direct{background:var(--green-bg);color:var(--green-dk);}

    /* Cookie consent banner */
    .consent-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -2px 18px rgba(0,0,0,0.08); padding: 14px 22px; display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; font-size: 0.9rem; color: var(--text); }
    .consent-btns { display: flex; gap: 8px; }
    .consent-accept { background: var(--accent); color: #fff; border: none; padding: 9px 20px; border-radius: 40px; font-weight: 600; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; }
    .consent-decline { background: transparent; color: var(--muted); border: 1px solid var(--border); padding: 9px 18px; border-radius: 40px; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; }
