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

    :root {
      --color-bg: #FAFAF7;
      --color-bg-secondary: #F5F0E8;
      --color-bg-card: #FFFFFF;
      --color-text-primary: #1A2E28;
      --color-text-secondary: #4A5A54;
      --color-text-muted: #7A8A84;
      --color-border: rgba(30, 50, 40, 0.12);
      --color-border-medium: rgba(30, 50, 40, 0.2);
      --color-green: #2E7D6B;
      --color-green-dark: #1d6558;
      --color-green-light: #EAF5F0;
      --color-green-accent: #52C4A0;
      --color-cream: #FFF8ED;
      --color-gold: #D29A4A;
      --color-dark: #1A2E28;
      --shadow-soft: 0 18px 50px rgba(26, 46, 40, 0.10);
      --shadow-card: 0 10px 30px rgba(26, 46, 40, 0.08);
      --font-serif: 'Lora', Georgia, serif;
      --font-sans: 'DM Sans', system-ui, sans-serif;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-xl: 28px;
      --radius-pill: 99px;
      --container: 1180px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-sans);
      color: var(--color-text-primary);
      background: var(--color-bg);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; }
    .container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

    .section { padding: 5rem 0; }
    .section-soft { background: var(--color-bg-secondary); }
    .section-dark { background: var(--color-dark); color: #fff; }
    .section-eyebrow {
      font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--color-green); margin-bottom: 0.7rem; font-weight: 700;
    }
    .section-dark .section-eyebrow { color: var(--color-green-accent); }
    .section-title {
      font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 600;
      color: var(--color-text-primary); margin-bottom: 1rem; line-height: 1.18; letter-spacing: -0.03em;
    }
    .section-dark .section-title { color: #fff; }
    .section-intro {
      max-width: 700px; font-size: 1rem; color: var(--color-text-secondary);
    }
    .section-dark .section-intro { color: rgba(255,255,255,0.72); }

    /* NAV */
    .nav {
      position: sticky; top: 0; z-index: 100;
      border-bottom: 0.5px solid var(--color-border);
      background: rgba(250, 250, 247, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .nav-inner {
      width: min(var(--container), calc(100% - 40px)); margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
      padding: 0.95rem 0;
    }
    .nav-logo {
      font-family: var(--font-serif); font-size: 1.12rem; font-weight: 600;
      letter-spacing: -0.01em; color: var(--color-text-primary); text-decoration: none;
      white-space: nowrap;
    }
    .nav-logo span { color: var(--color-green); }
    .nav-links { display: flex; gap: 1.4rem; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 13.5px; color: var(--color-text-secondary); text-decoration: none;
      font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--color-text-primary); }
    .nav-cta, .btn-primary, .btn-outline, .btn-light, .btn-small {
      border-radius: var(--radius-pill); cursor: pointer;
      font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.01em;
      transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
      text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
      gap: 8px;
    }
    .nav-cta {
      font-size: 13px; background: var(--color-green); color: #fff; border: none;
      padding: 9px 18px;
    }
    .nav-cta:hover, .btn-primary:hover { background: var(--color-green-dark); transform: translateY(-1px); }
    .nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav-mobile-btn span {
      display: block; width: 24px; height: 2px; background: var(--color-text-primary);
      margin: 5px 0; transition: all 0.3s;
    }

    /* HERO */
    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 10%, rgba(82, 196, 160, 0.18), transparent 30%),
        linear-gradient(135deg, var(--color-bg-secondary), #fff);
    }
    .hero-inner {
      min-height: 660px;
      display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 3rem; align-items: center;
      padding: 4.5rem 0;
    }
    .hero-copy { position: relative; z-index: 2; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; letter-spacing: 0.11em; text-transform: uppercase;
      color: var(--color-green); font-weight: 800; margin-bottom: 1.25rem;
      border: 1px solid rgba(46,125,107,0.24); background: rgba(255,255,255,0.65);
      padding: 7px 13px; border-radius: var(--radius-pill);
    }
    .hero-tag::before {
      content: ''; width: 8px; height: 8px; background: var(--color-green-accent);
      border-radius: 999px; box-shadow: 0 0 0 5px rgba(82,196,160,0.14);
    }
    .hero-title {
      font-family: var(--font-serif); font-size: clamp(2.45rem, 5vw, 4.75rem); line-height: 1.02;
      font-weight: 600; color: var(--color-dark); margin-bottom: 1.2rem; letter-spacing: -0.055em;
    }
    .hero-title em { font-style: italic; color: var(--color-green); }
    .hero-sub {
      font-size: 1.08rem; line-height: 1.8; color: var(--color-text-secondary);
      max-width: 550px; margin-bottom: 1.6rem;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.7rem; }
    .btn-primary {
      background: var(--color-green); color: #fff; border: 1px solid var(--color-green);
      padding: 13px 23px; font-size: 14px; box-shadow: 0 10px 20px rgba(46,125,107,0.15);
    }
    .btn-outline {
      background: #fff; color: var(--color-green); border: 1px solid rgba(46,125,107,0.32);
      padding: 13px 23px; font-size: 14px;
    }
    .btn-outline:hover { background: var(--color-green-light); border-color: var(--color-green); transform: translateY(-1px); }
    .hero-note {
      display: flex; align-items: center; gap: 10px; font-size: 13px;
      color: var(--color-text-muted); max-width: 560px;
    }
    .hero-note span {
      width: 28px; height: 28px; border-radius: 50%; background: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-card); color: var(--color-green); flex-shrink: 0;
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
    }
    .photo-grid {
      display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; height: 520px;
    }
    .photo-card {
      border-radius: var(--radius-xl); overflow: hidden; position: relative; background: var(--color-green-light);
      box-shadow: var(--shadow-soft); border: 1px solid rgba(255,255,255,0.7);
    }
    .photo-card img {
      width: 100%; height: 100%; object-fit: cover;
      background: linear-gradient(135deg, #e8efe9, #c5ddd2);
    }
    .photo-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.35));
      pointer-events: none;
    }
    .photo-main { grid-row: span 2; }
    .photo-stack { display: grid; gap: 16px; }
    .photo-caption {
      position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
      color: #fff; font-size: 13px; font-weight: 700;
      text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    }
    .availability-card {
      position: absolute; left: -22px; bottom: 32px; z-index: 4;
      background: #fff; border-radius: 20px; padding: 18px; box-shadow: var(--shadow-soft);
      width: min(300px, 80%); border: 1px solid var(--color-border);
    }
    .availability-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
    .availability-card p { color: var(--color-text-muted); font-size: 12.5px; line-height: 1.55; }
    .availability-pulse {
      display: inline-flex; align-items: center; gap: 8px; color: var(--color-green);
      font-size: 12px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em;
    }
    .availability-pulse::before {
      content: ''; width: 9px; height: 9px; background: var(--color-green-accent);
      border-radius: 50%; animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(82, 196, 160, 0.45); }
      70% { box-shadow: 0 0 0 8px rgba(82, 196, 160, 0); }
      100% { box-shadow: 0 0 0 0 rgba(82, 196, 160, 0); }
    }

    /* TRUST RIBBON */
    .trust-ribbon {
      background: #fff; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
    }
    .trust-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .trust-item {
      padding: 1.45rem 1.4rem; border-right: 1px solid var(--color-border);
      display: flex; gap: 12px; align-items: flex-start;
    }
    .trust-item:last-child { border-right: none; }
    .trust-dot {
      width: 34px; height: 34px; background: var(--color-green-light);
      border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      color: var(--color-green); font-weight: 800;
    }
    .trust-label { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
    .trust-desc { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.45; }

    /* STORY / WHY */
    .split {
      display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center;
    }
    .story-card {
      background: #fff; border-radius: var(--radius-xl); padding: 1.2rem;
      box-shadow: var(--shadow-card); border: 1px solid var(--color-border);
    }
    .story-card img {
      width: 100%; height: 410px; object-fit: cover; border-radius: 20px;
      background: linear-gradient(135deg, #e8efe9, #c5ddd2);
    }
    .story-callout {
      margin-top: 16px; padding: 18px; background: var(--color-green-light); border-radius: 18px;
      color: var(--color-text-secondary); font-size: 14px;
    }
    .feature-list { display: grid; gap: 14px; margin-top: 1.7rem; }
    .feature-row {
      display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: flex-start;
      padding: 15px; background: #fff; border: 1px solid var(--color-border); border-radius: 18px;
    }
    .feature-icon {
      width: 42px; height: 42px; border-radius: 14px; background: var(--color-green-light);
      color: var(--color-green); display: flex; align-items: center; justify-content: center; font-weight: 900;
    }
    .feature-row h3 { font-size: 15px; margin-bottom: 3px; }
    .feature-row p { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.55; }

    /* DAILY LIFE */
    .life-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 2rem;
    }
    .life-card {
      background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--shadow-card);
    }
    .life-card img {
      width: 100%; height: 175px; object-fit: cover;
      background: linear-gradient(135deg, #e8efe9, #c5ddd2);
    }
    .life-card-body { padding: 18px; }
    .life-card time {
      display: inline-block; color: var(--color-green); font-size: 11px; text-transform: uppercase;
      letter-spacing: 0.12em; font-weight: 800; margin-bottom: 6px;
    }
    .life-card h3 { font-size: 16px; margin-bottom: 5px; }
    .life-card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.55; }

    /* CARE FIT TABS */
    .tabs-wrap {
      display: grid; grid-template-columns: 340px 1fr; gap: 2rem; align-items: start; margin-top: 2rem;
    }
    .tab-buttons { display: grid; gap: 10px; }
    .tab-btn {
      text-align: left; border: 1px solid var(--color-border); background: rgba(255,255,255,0.8);
      border-radius: 16px; padding: 16px; font-family: var(--font-sans); cursor: pointer;
      transition: 0.2s; color: var(--color-text-secondary);
    }
    .tab-btn strong { display: block; color: var(--color-text-primary); margin-bottom: 2px; }
    .tab-btn span { font-size: 12.5px; color: var(--color-text-muted); }
    .tab-btn.active, .tab-btn:hover {
      border-color: var(--color-green); box-shadow: var(--shadow-card); background: #fff;
      transform: translateY(-1px);
    }
    .tab-panel {
      display: none; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-xl);
      padding: 28px; box-shadow: var(--shadow-card);
    }
    .tab-panel.active { display: block; }
    .tab-panel h3 { font-family: var(--font-serif); font-size: 1.65rem; margin-bottom: 0.6rem; }
    .tab-panel p { color: var(--color-text-secondary); margin-bottom: 1.2rem; }
    .check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .check-item {
      display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--color-text-secondary);
      background: var(--color-bg); border-radius: 12px; padding: 12px;
    }
    .check-item::before {
      content: '✓'; color: var(--color-green); font-weight: 900; flex-shrink: 0;
    }

    /* ADMISSIONS */
    .steps {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 2rem;
    }
    .step-card {
      background: #fff; color: var(--color-text-primary); border-radius: var(--radius-lg);
      padding: 22px; border: 1px solid rgba(255,255,255,0.12);
    }
    .step-num {
      width: 40px; height: 40px; border-radius: 14px; background: var(--color-green-accent);
      color: var(--color-dark); display: flex; align-items: center; justify-content: center;
      font-weight: 900; margin-bottom: 1rem;
    }
    .step-card h3 { font-size: 16px; margin-bottom: 6px; }
    .step-card p { color: var(--color-text-muted); font-size: 13px; line-height: 1.55; }

    /* ANNOUNCEMENTS */
    .announce-grid {
      display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 18px; margin-top: 2rem;
    }
    .announcement {
      border-radius: var(--radius-xl); padding: 28px; background: #fff;
      border: 1px solid var(--color-border); box-shadow: var(--shadow-card);
    }
    .announcement.featured {
      background: linear-gradient(135deg, var(--color-green), var(--color-green-dark)); color: #fff;
      position: relative; overflow: hidden;
    }
    .announcement.featured::after {
      content: ''; position: absolute; width: 220px; height: 220px; right: -80px; top: -80px;
      background: rgba(255,255,255,0.08); border-radius: 50%;
    }
    .announcement h3 { font-family: var(--font-serif); font-size: 1.55rem; margin-bottom: 8px; position: relative; z-index: 1; }
    .announcement p { color: var(--color-text-muted); font-size: 14px; position: relative; z-index: 1; }
    .announcement.featured p { color: rgba(255,255,255,0.78); }
    .announcement-date {
      font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 900;
      color: var(--color-green); margin-bottom: 8px; position: relative; z-index: 1;
    }
    .announcement.featured .announcement-date { color: var(--color-green-accent); }
    .btn-light {
      background: #fff; color: var(--color-green-dark); padding: 11px 18px; font-size: 13px;
      margin-top: 1.2rem; position: relative; z-index: 1;
    }

    /* MAP + CONTACT */
    .location-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2rem; align-items: stretch;
    }
    .map-card, .contact-card {
      border-radius: var(--radius-xl); overflow: hidden; background: #fff; border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
    }
    .locations-map-section {
      margin: 4rem auto;
    }

    .section-kicker {
      color: #7a5f3f;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .map-card {
      border-radius: 28px;
      overflow: hidden;
      background: #fffaf2;
      border: 1px solid rgba(122, 95, 63, 0.16);
      box-shadow: 0 18px 45px rgba(49, 38, 25, 0.12);
    }

    .map-card--two-locations {
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
      min-height: 420px;
    }

    .map-card__content {
      padding: 2rem;
      background:
        radial-gradient(circle at top left, rgba(216, 181, 128, 0.28), transparent 38%),
        linear-gradient(135deg, #fffaf2 0%, #f7efe2 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 2rem;
    }

    .map-card__content h2 {
      margin: 0 0 0.75rem;
      color: #2f3a32;
      font-size: clamp(1.5rem, 2.2vw, 2.15rem);
      line-height: 1.12;
    }

    .map-card__content p {
      margin: 0;
      color: #5f645e;
      line-height: 1.65;
      max-width: 34rem;
    }

    .map-location-list {
      display: grid;
      gap: 0.8rem;
    }

    .map-location-pill {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      padding: 0.9rem 1rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(122, 95, 63, 0.13);
      color: #344037;
      font-size: 0.95rem;
      line-height: 1.4;
    }

    .map-pin-dot {
      width: 13px;
      height: 13px;
      border-radius: 999px;
      flex: 0 0 13px;
      margin-top: 0.2rem;
      box-shadow: 0 0 0 5px rgba(122, 95, 63, 0.12);
    }

    .map-pin-dot--one {
      background: #7a5f3f;
    }

    .map-pin-dot--two {
      background: #466b58;
    }

    .map-frame {
      width: 100%;
      min-height: 420px;
      height: 100%;
      background: #e7e0d4;
      z-index: 1;
    }


    .custom-map-marker-wrap {
      background: transparent;
      border: 0;
    }

    .custom-map-marker {
      width: 38px;
      height: 38px;
      border-radius: 999px 999px 999px 0;
      transform: rotate(-45deg);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
      border: 3px solid #fff;
      position: relative;
      z-index: 500;
    }

    .custom-map-marker span {
      transform: rotate(45deg);
      color: #fff;
      font-weight: 800;
      font-size: 0.85rem;
    }

    .custom-map-marker--one {
      background: #7a5f3f;
    }

    .custom-map-marker--two {
      background: #466b58;
    }

    .leaflet-popup-content-wrapper {
      border-radius: 16px;
    }

    .leaflet-popup-content {
      font-family: inherit;
      color: #344037;
      line-height: 1.45;
    }

    .leaflet-control-attribution {
      font-size: 10px;
    }

    @media (max-width: 820px) {
      .map-card--two-locations {
        grid-template-columns: 1fr;
      }

      .map-frame {
        min-height: 360px;
      }

      .map-card__content {
        padding: 1.5rem;
      }
    }
    .map-frame { width: 100%; height: 100%; min-height: 470px; border: 0; display: block; }
    .contact-card { padding: 28px; }
    .contact-meta { color: var(--color-text-secondary); margin-bottom: 1.2rem; font-size: 14px; }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--color-text-secondary); margin-bottom: 10px;
    }
    .contact-detail strong { color: var(--color-text-primary); }
    .contact-detail span:first-child { color: var(--color-green); font-weight: 900; width: 20px; }
    .contact-detail a {
      color: inherit;
      text-decoration: none;
    }
    .contact-detail a:hover {
      color: var(--color-green-dark);
      text-decoration: underline;
    }
    .contact-detail--locations {
      align-items: flex-start;
      margin-bottom: 14px;
    }
    .contact-detail--locations .contact-detail-icon {
      line-height: 1.5;
    }
    .contact-location-list {
      display: grid;
      gap: 8px;
      margin-top: 8px;
    }
    .contact-location-list a {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      padding: 9px 10px;
      border: 1px solid var(--color-border);
      border-radius: 13px;
      background: var(--color-bg);
      color: var(--color-text-secondary);
      line-height: 1.35;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }
    .contact-location-list a:hover {
      background: #fff;
      border-color: rgba(46,125,107,0.32);
      transform: translateY(-1px);
      text-decoration: none;
    }
    .contact-location-list .map-pin-dot {
      width: 11px;
      height: 11px;
      flex-basis: 11px;
      margin-top: 4px;
      box-shadow: 0 0 0 4px rgba(122, 95, 63, 0.10);
    }
    .form-group { display: flex; flex-direction: column; gap: 10px; margin-top: 1.2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .form-label {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: var(--color-text-secondary);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 11px 13px; border: 1px solid var(--color-border-medium);
      border-radius: 12px; font-size: 13.5px; font-family: var(--font-sans);
      background: #fff; color: var(--color-text-primary); outline: none; transition: 0.2s;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--color-green);
      box-shadow: 0 0 0 4px rgba(46,125,107,0.08);
    }
    .form-textarea { min-height: 94px; resize: vertical; }
    .form-submit {
      width: 100%; background: var(--color-green); color: #fff; border: none;
      padding: 13px; border-radius: 12px; font-size: 14px; font-weight: 800;
      cursor: pointer; font-family: var(--font-sans); transition: 0.2s;
    }
    .form-submit:hover { background: var(--color-green-dark); transform: translateY(-1px); }
    .form-submit:disabled {
      cursor: wait;
      opacity: 0.72;
      transform: none;
    }
    .privacy-callout {
      background: var(--color-green-light);
      border: 1px solid rgba(46,125,107,0.18);
      border-radius: 14px;
      color: var(--color-text-secondary);
      font-size: 12.5px;
      line-height: 1.6;
      padding: 12px 13px;
    }
    .form-status {
      color: var(--color-green-dark);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.5;
      min-height: 1.5em;
    }
    .form-status--success { color: var(--color-green-dark); }
    .form-status--error { color: #9b2c2c; }
    .form-note { font-size: 11.5px; color: var(--color-text-muted); line-height: 1.55; margin-top: 2px; }
    .honeypot,
    .hp-field {
      position: absolute;
      left: -10000px;
      height: 1px;
      overflow: hidden;
      width: 1px;
    }

    /* FAQ */
    .faq-grid {
      display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start;
    }
    .faq-list { display: grid; gap: 10px; }
    details {
      background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 17px 18px;
      box-shadow: 0 4px 18px rgba(26,46,40,0.04);
    }
    summary { cursor: pointer; font-weight: 800; list-style: none; }
    summary::-webkit-details-marker { display: none; }
    details p { margin-top: 10px; color: var(--color-text-muted); font-size: 13.5px; line-height: 1.6; }

    /* FOOTER */
    .footer {
      background: var(--color-dark); color: rgba(255,255,255,0.78); padding: 2rem 0;
    }
    .footer-inner {
      display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
      font-size: 13px;
    }
    .footer-logo { font-family: var(--font-serif); font-size: 16px; color: #fff; }
    .footer a { color: rgba(255,255,255,0.82); text-decoration: none; margin-left: 16px; }
    .sticky-mobile-cta { display: none; }

    /* IMAGE PLACEHOLDER FALLBACK */
    img[src^="images/"] {
      background:
        linear-gradient(135deg, rgba(46,125,107,.2), rgba(210,154,74,.16)),
        repeating-linear-gradient(45deg, #eef4ef 0 12px, #e5eee8 12px 24px);
    }

    @media (max-width: 980px) {
      .nav-links, .nav-cta { display: none; }
      .nav-mobile-btn { display: block; }
      .nav-links.open {
        display: grid; position: absolute; left: 20px; right: 20px; top: 64px;
        background: #fff; padding: 18px; border-radius: 18px; box-shadow: var(--shadow-soft);
        border: 1px solid var(--color-border); gap: 12px;
      }
      .hero-inner, .split, .tabs-wrap, .location-grid, .faq-grid, .announce-grid {
        grid-template-columns: 1fr;
      }
      .hero-inner { min-height: auto; padding: 3.5rem 0; }
      .hero-visual { min-height: auto; }
      .photo-grid { height: auto; grid-template-columns: 1fr; }
      .photo-main, .photo-stack .photo-card { height: 300px; }
      .photo-stack { grid-template-columns: 1fr 1fr; }
      .availability-card { position: static; width: 100%; margin-top: 14px; }
      .trust-grid, .life-grid, .steps { grid-template-columns: 1fr 1fr; }
      .check-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .container, .nav-inner { width: min(100% - 28px, var(--container)); }
      .section { padding: 3.4rem 0; }
      .hero-title { font-size: 2.35rem; }
      .photo-stack, .trust-grid, .life-grid, .steps, .form-row { grid-template-columns: 1fr; }
      .trust-item { border-right: none; border-bottom: 1px solid var(--color-border); }
      .trust-item:last-child { border-bottom: none; }
      .map-frame { min-height: 320px; }
      .sticky-mobile-cta {
        display: flex; position: fixed; bottom: 12px; left: 12px; right: 12px; z-index: 200;
        gap: 8px; background: rgba(255,255,255,0.95); border: 1px solid var(--color-border);
        border-radius: 18px; padding: 8px; box-shadow: var(--shadow-soft);
      }
      .sticky-mobile-cta a {
        flex: 1; text-align: center; text-decoration: none; border-radius: 12px; padding: 11px 8px;
        font-size: 13px; font-weight: 800;
      }
      .sticky-mobile-cta a:first-child { background: var(--color-green); color: #fff; }
      .sticky-mobile-cta a:last-child { background: var(--color-green-light); color: var(--color-green-dark); }
    }


/* ─────────────────────────────────────────────
   MULTI-PAGE EXTENSIONS
───────────────────────────────────────────── */
.nav-links a.active {
  color: var(--color-green);
  font-weight: 800;
}

.page-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(82, 196, 160, 0.13), transparent 30%),
    linear-gradient(135deg, var(--color-bg-secondary), #fff);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--color-border);
}

.page-hero .container {
  max-width: 980px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.page-sub {
  max-width: 760px;
  color: var(--color-text-secondary);
  font-size: 1.06rem;
  line-height: 1.8;
}

.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.content-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.content-card h2,
.content-card h3 {
  font-family: var(--font-serif);
  margin-bottom: .6rem;
}

.content-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.simple-list {
  display: grid;
  gap: 10px;
  margin-top: 1rem;
}

.simple-list li {
  list-style: none;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--color-text-secondary);
  font-size: 14px;
}

.simple-list li::before {
  content: "✓";
  color: var(--color-green);
  font-weight: 900;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2rem;
}

.preview-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.preview-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.preview-card p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.photo-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.photo-strip .stack {
  display: grid;
  gap: 18px;
}

.photo-strip .stack img {
  height: 201px;
}

.inline-note {
  background: var(--color-green-light);
  border: 1px solid rgba(46,125,107,.18);
  border-radius: var(--radius-lg);
  padding: 18px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.referral-info-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .preview-grid,
  .photo-strip,
  .referral-info-grid {
    grid-template-columns: 1fr;
  }
  .photo-strip img,
  .photo-strip .stack img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 3.5rem 0 3rem;
  }
}


/* ─────────────────────────────────────────────
   TWO-LOCATION MAP REFINEMENTS
   Keeps the new map from nesting inside an extra card
   and makes the layout work beside the contact form.
───────────────────────────────────────────── */
.map-shell {
  min-width: 0;
  display: flex;
}

.location-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.map-shell .locations-map-section {
  display: flex;
  margin: 0;
  height: 100%;
  width: 100%;
}

.location-grid .map-card--two-locations {
  display: flex;
  flex-direction: column;
  grid-template-columns: 1fr;
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  width: 100%;
}

.location-grid .map-card__content {
  gap: 1rem;
  justify-content: flex-start;
  padding: clamp(1.35rem, 2.5vw, 1.8rem);
}

.location-grid .map-frame {
  flex: 1 1 auto;
  height: clamp(300px, 31vw, 360px);
  min-height: 300px;
  isolation: isolate;
  overflow: hidden;
}

.location-grid .contact-card {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
}

.location-grid .form-group {
  flex: 1 1 auto;
}

.location-grid .leaflet-container,
.location-grid .leaflet-map-pane,
.location-grid .leaflet-tile-pane {
  background: #e7e0d4;
}

.location-grid .leaflet-tile {
  backface-visibility: hidden;
  border: 0;
  outline: 1px solid transparent;
  transform: translateZ(0) scale(1.001);
}

@media (max-width: 980px) {
  .location-contact-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .location-grid .map-card--two-locations {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .location-grid .map-card--two-locations {
    grid-template-columns: 1fr;
  }

  .location-grid .map-frame {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .location-grid .map-frame {
    min-height: 320px;
  }
}
