/* ── Variables ─────────────────────────── */
  :root {
    --green:     #19352D;
    --green-mid: #29594B;
    --gold:      #CFFF45;
    --light-bg:  #EBF3EE;
    --text-mid:  rgba(0,0,0,.7);
    --border:    #E0E0E0;
    --container: 1200px;
    --gap-h:     clamp(16px, 4vw, 48px);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Satoshi', sans-serif; font-size: 18px; color: var(--text-mid); background: #fff; }

  /* ── Shared container ─────────────────── */
  .fag-wrap {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap-h);
  }

  /* ══════════════════════════════════════
     HERO
  ══════════════════════════════════════ */
  .fag-hero {
      background: var(--green);
      padding: clamp(100px, 14vw, 160px) 0 clamp(64px, 8vw, 100px);
      position: relative;
      overflow: hidden;
    }
    .fag-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }
    /* diagonal wave — blends into page bg #f7faf8 */
    .fag-hero::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; width: 100%; height: clamp(36px, 4vw, 56px);
      background: #f7faf8;
      /* clip-path: polygon(0 100%, 100% 0, 100% 100%); */
    }
    .fag-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 12px; font-weight: 500; letter-spacing: .18em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
    }
    .fag-eyebrow::before {
      content: ''; display: inline-block;
      width: 28px; height: 2px; background: var(--gold); flex-shrink: 0;
    }
    .fag-hero h1 {
      font-size: clamp(36px, 5.5vw, 76px);
      font-weight: 700; color: #fff;
      line-height: 1.06; margin-bottom: 20px;
      text-align: center; /* ADD */
    }
    .fag-hero h1 em { font-style: italic; color: var(--gold); }
    .fag-hero-sub {
      font-size: clamp(15px, 1.6vw, 18px);
      color: rgba(255,255,255,.62);
      max-width: 560px; line-height: 1.75; margin-bottom: 32px;
      text-align: center;  /* ADD */
      margin-left: auto;   /* ADD */
      margin-right: auto;  /* ADD */
  }
  .fag-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,.42);
  }
  .fag-breadcrumb a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .2s; }
  .fag-breadcrumb a:hover { color: var(--gold); }
  .fag-breadcrumb span { color: var(--gold); }

  /* ══════════════════════════════════════
     STATS BAR
  ══════════════════════════════════════ */
  .fag-stats-outer {
    background: #EBF3EE;
    padding: 0 var(--gap-h) clamp(48px, 6vw, 72px);
  }
  .fag-stats-bar {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(25,53,45,.09);
    padding: clamp(24px, 3vw, 40px) clamp(20px, 4vw, 56px);
    display: flex; flex-wrap: wrap;
    justify-content: space-around; align-items: center;
    gap: 20px;
    position: relative; top: -28px;
  }
  .fag-stat { text-align: center; flex: 1 1 110px; }
  .fag-stat-num {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700; color: var(--green); line-height: 1;
  }
  .fag-stat-num sup { font-size: .5em; vertical-align: super; }
  .fag-stat-label {
    font-size: 13px; color: rgba(0,0,0,.45);
    margin-top: 6px; letter-spacing: .02em;
  }
  .fag-stat-divider { width: 1px; background: var(--border); align-self: stretch; min-height: 48px; }

  /* ══════════════════════════════════════
     ABOUT SECTION
  ══════════════════════════════════════ */
  .fag-about {
    background: #EBF3EE;
    padding: 0 var(--gap-h) clamp(60px, 8vw, 110px);
  }

  /* label pill */
  .upper-title-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 500; letter-spacing: .16em;
    text-transform: uppercase; color: #46846A;
    background: #d5ece2; padding: 6px 16px; border-radius: 100px;
    margin-bottom: 18px;
  }
  .upper-title-pill::before {
    content: ''; width: 6px; height: 6px;
    background: var(--green-mid); border-radius: 50%; flex-shrink: 0;
  }

  /* section heading */
  .fag-section-h2 {
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 700; color: var(--green);
    line-height: 1.08; margin-bottom: 28px;
    display: flex; align-items: center; gap: 16px;
  }
  .fag-section-h2::before {
    content: '';
    width: 4px; height: 48px; flex-shrink: 0;
    background: linear-gradient(to bottom, var(--gold), var(--green-mid));
    border-radius: 4px;
  }

  /* body text */
  .fag-text { font-size: clamp(15px, 1.5vw, 17px); color: rgba(0,0,0,.65); line-height: 1.85; }
  .fag-text p { margin-bottom: 18px; }
  .fag-text p:last-child { margin-bottom: 0; }

  /* pull quote */
  .fag-pull {
    padding: clamp(18px, 2.5vw, 28px) clamp(20px, 3vw, 32px) clamp(18px, 2.5vw, 28px) clamp(24px, 3.5vw, 40px);
    background: #fff; border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(25,53,45,.06);
    margin: 32px 0; position: relative;
  }
  .fag-pull::before {
    content: '\201C';
    position: absolute; top: -8px; left: 18px;
    font-size: 72px; line-height: 1;
    color: var(--green-mid); opacity: .2; pointer-events: none;
  }
  .fag-pull p {
    font-size: clamp(16px, 1.7vw, 19px);
    font-style: italic; color: var(--green); line-height: 1.6; margin: 0;
  }

  /* two-col grid — text gets more space (62/38 split) */
  .fag-grid {
    display: grid;
    grid-template-columns: 62fr 38fr;
    gap: clamp(28px, 4vw, 52px);
    margin-top: 40px;
    align-items: start;
  }

  /* feature cards column */
  .fag-col-cards { display: flex; flex-direction: column; gap: 14px; }

  .fag-feat-card {
    background: #fff; border: 1px solid #E6EFE9;
    border-radius: 18px;
    padding: clamp(16px, 2vw, 24px);
    display: flex; gap: 14px; align-items: flex-start;
    transition: box-shadow .25s, transform .25s;
  }
  .fag-feat-card:hover {
    box-shadow: 0 8px 28px rgba(25,53,45,.10);
    transform: translateY(-2px);
  }
  .fag-feat-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--light-bg); border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
  }
  .fag-feat-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--green-mid); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .fag-feat-card h6 { font-size: 14px; font-weight: 600; color: var(--green); margin-bottom: 4px; }
  .fag-feat-card p { font-size: 13px; color: rgba(0,0,0,.55); line-height: 1.6; margin: 0; }

  /* CTA row */
  .fag-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

  .fag-btn-one {
    font-weight: 700; font-size: 16px; line-height: 48px;
    padding: 0 30px; border-radius: 40px;
    color: #000; background: var(--gold);
    text-decoration: none; display: inline-block;
    transition: background .25s, color .25s;
  }
  .fag-btn-one:hover { background: var(--green-mid); color: #fff; }

  .fag-btn-six {
    font-weight: 700; font-size: 16px; line-height: 46px;
    padding: 0 30px; border-radius: 50px;
    color: var(--green-mid); border: 1.5px solid var(--green-mid);
    text-decoration: none; display: inline-block;
    transition: background .25s, border-color .25s, color .25s;
  }
  .fag-btn-six:hover { background: var(--gold); border-color: var(--gold); color: #000; }

  /* ══════════════════════════════════════
     MISSION / VISION / VALUES
  ══════════════════════════════════════ */
  .fag-mvv {
    background: #fff;
    padding: clamp(60px, 7vw, 100px) var(--gap-h);
  }
  .fag-mvv-title { text-align: center; margin-bottom: clamp(32px, 4vw, 52px); }
  .fag-mvv-title h2 {
    font-size: clamp(24px, 3.2vw, 40px); font-weight: 700;
    color: var(--green); margin-bottom: 10px;
  }
  .fag-mvv-title p { font-size: 16px; color: rgba(0,0,0,.5); }

  .fag-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
  }
  .fag-mvv-card {
    background: #EBF3EE; border: 1px solid #d5e8dc;
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px);
    display: flex; flex-direction: column;
    transition: box-shadow .25s, transform .25s, background .25s;
  }
  .fag-mvv-card:hover {
    background: var(--gold); border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(25,53,45,.1);
  }
  .fag-mvv-icon {
    width: 52px; height: 52px; background: #fff;
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px; flex-shrink: 0;
  }
  .fag-mvv-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--green-mid); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .fag-mvv-card h4 { font-size: clamp(17px, 1.8vw, 20px); font-weight: 700; color: var(--green); margin-bottom: 12px; }
  .fag-mvv-card p { font-size: clamp(13px, 1.3vw, 15px); color: rgba(0,0,0,.58); line-height: 1.7; margin: 0; flex: 1; }
  .fag-mvv-card:hover h4,
  .fag-mvv-card:hover p { color: #000; }

  .arrow-btn-pill {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: var(--green-mid); border-radius: 50%;
    margin-top: 20px; align-self: flex-start;
    transition: background .25s;
  }
  .fag-mvv-card:hover .arrow-btn-pill { background: var(--green); }
  .arrow-btn-pill svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  /* ══════════════════════════════════════
     TEAM SECTION
  ══════════════════════════════════════ */
  .fag-team {
    background: #EBF3EE;
    padding: clamp(60px, 7vw, 100px) var(--gap-h);
  }
  .fag-team-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(28px, 3.5vw, 48px);
  }
  .fag-team-header .fag-section-h2 { margin-bottom: 0; }

  /* Team slider */
  .fag-team-slider-wrapper .slick-list { margin: 0 -12px; overflow: hidden; }
  .fag-team-slider-wrapper .slick-track { display: flex; }
  .fag-team-slide-item { padding: 0 12px; outline: none; }

  /* Team card */
  .fag-team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E6EFE9;
    transition: box-shadow .3s, transform .3s;
  }
  .fag-team-card:hover {
    box-shadow: 0 12px 40px rgba(25,53,45,.13);
    transform: translateY(-5px);
  }
  .fag-team-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/4.5;
    background: #d5ece2;
  }
  .fag-team-media img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block;
    transition: transform .45s ease;
  }
  .fag-team-card:hover .fag-team-media img { transform: scale(1.05); }
  .fag-team-media-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(25,53,45,.55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .35s;
    display: flex; align-items: flex-end; justify-content: flex-end;
    padding: 14px;
  }
  .fag-team-card:hover .fag-team-media-overlay { opacity: 1; }
  .fag-team-link-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transform: translateY(8px);
    transition: transform .3s, background .2s;
  }
  .fag-team-card:hover .fag-team-link-btn { transform: translateY(0); }
  .fag-team-link-btn svg { width: 14px; height: 14px; fill: none; stroke: #000; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  /* Card body */
  .fag-team-body {
    padding: clamp(14px, 1.8vw, 20px) clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 22px);
  }
  .fag-team-name {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 700; color: var(--green);
    margin-bottom: 3px;
  }
  .fag-team-role {
    font-size: 12.5px; color: rgba(0,0,0,.45);
    margin-bottom: 6px;
  }
  .fag-team-qual {
    font-size: 11.5px; font-weight: 600; color: var(--green-mid);
    margin-bottom: 10px;
  }
  .fag-team-divider {
    width: 32px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 10px;
  }
  .fag-team-desc {
    font-size: 12.5px; color: rgba(0,0,0,.55);
    line-height: 1.6; margin: 0;
  }

  /* See all button */
  .fag-team-cta { margin-top: clamp(28px, 3vw, 40px); text-align: center; }
  .fag-btn-outline-green {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 600;
    color: var(--green-mid); border: 1.5px solid var(--green-mid);
    padding: 12px 28px; border-radius: 50px;
    text-decoration: none;
    transition: background .25s, border-color .25s, color .25s;
  }
  .fag-btn-outline-green:hover {
    background: var(--gold); border-color: var(--gold); color: #000;
  }
  .fag-btn-outline-green svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  /* ══════════════════════════════════════
     RESPONSIVE BREAKPOINTS
  ══════════════════════════════════════ */

  /* Large tablets / small desktops ≤ 1024px */
  @media (max-width: 1024px) {
    .fag-grid { grid-template-columns: 58fr 42fr; gap: 32px; }
    .fag-mvv-grid { gap: 16px; }
  }

  /* Tablets ≤ 768px */
  @media (max-width: 768px) {
    .fag-hero::after { height: 32px; }
    .fag-stats-bar { top: -16px; }
    .fag-stat-divider { display: none; }
    .fag-stat { flex: 1 1 42%; padding: 8px 0; }

    .fag-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .fag-col-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .fag-mvv-grid { grid-template-columns: repeat(3, 1fr); }
    .fag-section-h2::before { height: 38px; }
    .fag-pull p { font-size: 16px; }
  }

  /* Mobile ≤ 576px */
  @media (max-width: 576px) {
    :root { --gap-h: 16px; }

    .fag-hero-sub { max-width: 100%; }
    .fag-stats-bar { top: -12px; border-radius: 14px; padding: 20px 16px; }
    .fag-stat { flex: 1 1 100%; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
    .fag-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .fag-stat-num { font-size: 36px; }

    .fag-col-cards { grid-template-columns: 1fr; }
    .fag-mvv-grid { grid-template-columns: 1fr; }

    .fag-cta-row { flex-direction: column; }
    .fag-btn-one, .fag-btn-six {
      width: 100%; text-align: center;
      display: block; line-height: 52px;
    }
    .fag-pull { padding: 18px 16px 18px 26px; }
    .fag-section-h2 { font-size: 26px; gap: 12px; }
    .fag-section-h2::before { height: 32px; }
  }

  /* Very small phones ≤ 380px */
  @media (max-width: 380px) {
    .fag-stat { flex: 1 1 100%; }
    .fag-mvv-grid { grid-template-columns: 1fr; }
  }

  /* ══════════════════════════════════════
     CONTACT SECTION
  ══════════════════════════════════════ */
  .cu-section {
    padding: clamp(52px, 8vw, 100px) 0 clamp(60px, 9vw, 110px);
    background: #f4f7f5;
  }

  /* grid: form takes remaining space, info panel fixed at 380px */
  .cu-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
  }

  /* ───── shared card shell ───── */
  .cu-form-card,
  .cu-info-card {
    background: #fff;
    border: 1px solid #e3e9e5;
    border-radius: 16px;
    padding: clamp(28px, 4vw, 44px);
  }

  /* ───── Form ───── */
  .cu-form-title {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: var(--green);
    margin: 0 0 28px;
    line-height: 1.2;
  }
  .cu-field-group { margin-bottom: 20px; }
  .cu-field-group:last-of-type { margin-bottom: 0; }
  .cu-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .cu-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(0,0,0,.42);
    margin-bottom: 7px;
  }
  .cu-input {
    width: 100%;
    height: 48px;
    border: 1px solid #dde4e0;
    border-radius: 8px;
    padding: 0 14px;
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .18s, box-shadow .18s;
  }
  .cu-input::placeholder { color: rgba(0,0,0,.28); }
  .cu-input:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(41,89,75,.09);
  }
  textarea.cu-input {
    height: 148px;
    padding: 13px 14px;
    resize: vertical;
    line-height: 1.65;
  }
  .cu-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    height: 52px;
    margin-top: 24px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .22s;
  }
  .cu-submit:hover { background: var(--green-mid); }
  .cu-submit svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* ───── Info panel ───── */
  .cu-info-card { position: sticky; top: 90px; }

  .cu-info-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eaeeec;
  }
  .cu-info-row {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #eaeeec;
  }
  .cu-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .cu-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
  }
  .cu-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(0,0,0,.38);
    margin: 0 0 5px;
  }
  .cu-info-val {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.55;
    margin: 0;
  }
  .cu-info-val a { color: #1a1a1a; text-decoration: none; }
  .cu-info-val a:hover { color: var(--green-mid); }
  .cu-info-sub {
    font-size: 12px;
    color: rgba(0,0,0,.38);
    margin: 3px 0 0;
  }
  .cu-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--green-mid);
    text-decoration: none;
    margin-top: 6px;
  }
  .cu-maps-link:hover { text-decoration: underline; }
  .cu-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #1a1a1a;
    padding: 3px 0;
  }
  .cu-hours-row:first-child { padding-top: 6px; }
  .cu-closed { color: rgba(0,0,0,.32); }

  /* ───── Alert messages ───── */
  .cu-alert {
    display: flex; align-items: flex-start;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 14px; font-weight: 500; line-height: 1.5;
    margin-bottom: 20px;
  }
  .cu-alert-success {
    background: #e8f5e9; color: #1b5e20;
    border: 1px solid #a5d6a7;
  }
  .cu-alert-danger {
    background: #fdecea; color: #b71c1c;
    border: 1px solid #ef9a9a;
  }
  .cu-alert-danger a { color: inherit; font-weight: 700; }

  /* ───── Select wrapper ───── */
  .cu-select-wrap { position: relative; }
  .cu-select-wrap::after {
    content: '';
    position: absolute;
    right: 15px; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(0,0,0,.38);
    pointer-events: none;
  }
  select.cu-select {
    cursor: pointer;
    padding-right: 38px;
  }
  select.cu-select:invalid { color: rgba(0,0,0,.28); }
  select.cu-select option { color: #1a1a1a; }

  /* ───── Date input ───── */
  input[type="date"].cu-date {
    cursor: pointer;
    color-scheme: light;
  }
  input[type="date"].cu-date::-webkit-calendar-picker-indicator {
    opacity: 0.42;
    cursor: pointer;
    border-radius: 4px;
    padding: 2px;
    transition: opacity .15s;
  }
  input[type="date"].cu-date::-webkit-calendar-picker-indicator:hover {
    opacity: 0.85;
    background-color: var(--light-bg);
  }

  /* ───── Responsive ───── */
  /* tablet: stack vertically */
  @media (max-width: 880px) {
    .cu-grid { grid-template-columns: 1fr; }
    .cu-info-card { position: static; }
  }
  /* phone: email + phone go full width */
  @media (max-width: 520px) {
    .cu-row-2 { grid-template-columns: 1fr; gap: 0; }
    .cu-section { padding: 44px 0 56px; }
  }
