/* ── Homepage-only styles ─────────────────────────────────────────────────
   Moved out of an inline <style> in index.php on 2026-08-31.
   The NAV rules that were duplicated here have been removed: the nav is
   now defined only in style.css, so the two copies can no longer drift.
   Loaded AFTER style.css, so genuine homepage overrides still win. */

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

    :root {
      --green:       #2a6041;
      --green-dark:  #1b4530;
      --green-light: #3d7a57;
      --green-pale:  #eef4f0;
      --green-mid:   #c8ddd0;
      --gold:        #c9a84c;
      --gold-light:  #f0e0a8;
      --cream:       #faf8f4;
      --white:       #ffffff;
      --charcoal:    #222222;
      --mid:         #555555;
      --light:       #888888;
      --border:      #dde8e2;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Lato', sans-serif; color: var(--charcoal); background: var(--cream); }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 0 40px;
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }

    /* ── HERO ── */
    /* min-height was 88vh, which forced the hero to 88% of the screen whatever
       the content needed - and the green panel stretched to fill it, which is
       where the tall band of empty green came from. Content now sets the
       height, with align-items:center so the green hugs the portrait and its
       caption instead of running the full column. //2026-09-02 */
    .hero {
      display: grid;
      grid-template-columns: 65% 35%;
      align-items: center;
      background: var(--white);
      overflow: hidden;
    }
    .hero-text {
      display: flex; flex-direction: column; justify-content: center;
      padding: 60px 40px 60px 48px;
      min-width: 0;
    }
    .hero-eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--green);
      margin-bottom: 20px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3vw, 2.8rem);
      font-weight: 600; line-height: 1.2;
      color: var(--charcoal); margin-bottom: 24px;
    }
    .hero h1 em { font-style: italic; color: var(--green); }
    .hero-sub {
      font-size: 16px; font-weight: 300; line-height: 1.75;
      color: var(--mid); max-width: 100%; margin-bottom: 20px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--green); color: white;
      padding: 14px 28px; border-radius: 6px;
      font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.2s; display: inline-block;
    }
    .btn-primary:hover { background: var(--green-dark); }
    .btn-secondary {
      background: transparent; color: var(--green);
      padding: 14px 28px; border-radius: 6px;
      border: 1.5px solid var(--green);
      font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; text-decoration: none;
      transition: all 0.2s; display: inline-block;
    }
    .btn-secondary:hover { background: var(--green-pale); }
    .hero-credentials {
      margin-top: 24px; display: flex; align-items: center; gap: 16px;
      /* 12px not 32px: the last 20px needed to lift the whole credentials
         strip above the fold on a 1366x768 laptop. //2026-09-01 */
      padding-top: 12px;
    }
    .credential-badges { display: flex; gap: 4px; align-items: center; }
    .badge {
      background: var(--green-pale); border: 1px solid var(--green-mid);
      color: var(--green-dark); font-size: 11px; font-weight: 700;
      letter-spacing: 0.1em; padding: 5px 10px; border-radius: 4px;
    }
    .hero-image {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      padding: 32px 40px;
      gap: 20px;
    }
    .hero-image img {
      width: 280px; height: 320px;
      object-fit: cover; object-position: center top;
      border-radius: 12px;
      border: 4px solid rgba(255,255,255,0.2);
      box-shadow: 0 12px 48px rgba(0,0,0,0.3);
      display: block;
    }
    .hero-image-caption {
      color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 300;
      font-family: 'Playfair Display', serif; font-style: italic;
      text-align: center;
    }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-text { padding: 48px 24px 40px; }
      .hero-image { height: auto; padding: 40px 24px; }
      .hero-image img { width: 200px; height: 240px; }
    }

    /* ── TRUST STRIP ── */
    .trust-strip {
      background: var(--green-dark);
      padding: 20px 80px;
      display: flex; align-items: center; justify-content: center;
      gap: 48px; flex-wrap: wrap;
    }
    .trust-item {
      color: rgba(255,255,255,0.85);
      font-size: 13px; font-weight: 300; letter-spacing: 0.03em;
      display: flex; align-items: center; gap: 10px;
    }
    .trust-item strong { color: white; font-weight: 700; }
    .trust-dot { color: var(--gold); font-size: 18px; }

    @media (max-width: 768px) {
      .trust-strip { padding: 20px 24px; gap: 20px; flex-direction: column; }
    }

    /* ── SECTION WRAPPER ── */
    .section { padding: 96px 80px; }
    .section-alt { background: var(--white); }
    .section-green { background: var(--green-pale); }
    .section-dark { background: var(--green-dark); }
    @media (max-width: 768px) { .section { padding: 64px 24px; } }

    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--green);
      margin-bottom: 14px; display: block;
    }
    .section-label-white { color: var(--gold-light); }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 600; line-height: 1.25;
      color: var(--charcoal); margin-bottom: 20px;
    }
    .section-title-white { color: white; }
    .section-body {
      font-size: 16px; font-weight: 300; line-height: 1.8;
      color: var(--mid); max-width: 600px;
    }
    .section-body-white { color: rgba(255,255,255,0.8); }

    /* ── WHO WE SERVE ── */
    .who-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto;
    }
    @media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; gap: 40px; } }

    .who-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
    .who-point {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px; background: white;
      border-radius: 10px; border-left: 3px solid var(--green);
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .who-point-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
    .who-point-text h4 { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
    .who-point-text p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; }

    .regional-img-wrap {
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #2a6041, #4a9068);
      position: relative;
    }
    .regional-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .regional-img-caption {
      position: absolute; bottom: 16px; right: 16px;
      background: rgba(27,69,48,0.85); color: white;
      font-size: 11px; padding: 6px 12px; border-radius: 4px;
      font-style: italic; font-family: 'Playfair Display', serif;
    }

    /* ── SERVICES ── */
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; max-width: 1100px; margin: 48px auto 0;
    }
    @media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

    .service-card {
      background: white; border-radius: 12px;
      padding: 32px 28px;
      border: 1px solid var(--border);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .service-card:hover { box-shadow: 0 8px 32px rgba(42,96,65,0.12); transform: translateY(-3px); }
    .service-icon { font-size: 28px; margin-bottom: 16px; }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 10px;
    }
    .service-card p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7; }

    /* ── ABOUT STRIP ── */
    .about-grid {
      display: grid; grid-template-columns: 340px 1fr;
      gap: 72px; align-items: center; max-width: 1100px; margin: 0 auto;
    }
    @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

    .about-photo {
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 8px 48px rgba(0,0,0,0.15);
      aspect-ratio: 3/4;
    }
    .about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

    .about-text .section-body { max-width: 100%; margin-bottom: 24px; }
    .about-values { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
    .about-value {
      display: flex; align-items: center; gap: 12px;
      font-size: 14px; color: var(--charcoal); font-weight: 400;
    }
    .about-value::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0;
    }

    /* ── TESTIMONIALS ── */
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; max-width: 1100px; margin: 48px auto 0;
    }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

    .testimonial-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px; padding: 32px 28px;
    }
    .testimonial-quote {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem; color: var(--gold); line-height: 1;
      margin-bottom: 12px;
    }
    .testimonial-text {
      font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.85);
      line-height: 1.75; font-style: italic; margin-bottom: 20px;
    }
    .testimonial-author { font-size: 12px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase; }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--gold);
      padding: 64px 80px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 600; color: var(--green-dark);
    }
    .cta-band p { font-size: 15px; color: rgba(27,69,48,0.75); margin-top: 6px; font-weight: 300; }
    .btn-dark {
      background: var(--green-dark); color: white;
      padding: 16px 32px; border-radius: 6px;
      font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; text-decoration: none;
      white-space: nowrap; transition: background 0.2s; display: inline-block;
    }
    .btn-dark:hover { background: var(--charcoal); }
    @media (max-width: 768px) { .cta-band { padding: 48px 24px; } }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
    .hero-text > * { animation: fadeUp 0.7s ease both; }
    .hero-eyebrow { animation-delay: 0.1s; }
    .hero h1 { animation-delay: 0.2s; }
    .hero-sub { animation-delay: 0.32s; }
    .hero-btns { animation-delay: 0.44s; }
    .hero-credentials { animation-delay: 0.56s; }
