  :root {
    --sky:        #94cbac;
    --sky-light:  #b8dece;
    --sky-pale:   #eaf6f1;
    --mint:       #94cbac;
    --mint-light: #b8dece;
    --mint-pale:  #eaf6f1;
    --sage:       #059077;
    --sage-deep:  #057c8e;
    --white:      #ffffff;
    --off-white:  #f2f8f5;
    --text:       #0a4e74;
    --text-mid:   #475661;
    --text-muted: #7a8e99;
    --border:     #c5ddd4;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  img { background-color: #367a8d; color: transparent; font-size: 0; }
  img.logo-img, img.mobile-nav-logo, img.footer-logo-img-large, img.about-badge-img, img.accred-badges { background-color: transparent; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  a { text-decoration: none; color: inherit; }
  em { font-style: normal; }
  blockquote em { font-style: italic; }
  .wrap { max-width: 1360px; margin: 0 auto; padding: 0 32px; }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    cursor: pointer;
    border: none;
    transition: all 0.22s ease;
    border-radius: 9999px;
  }
  button.btn { appearance: none; -webkit-appearance: none; outline: none; }
  .btn-sage    { background: #91c083; color: var(--white); }
  .btn-sage:hover { background: #7aad6a; transform: translateY(-2px); }
  .btn-mint    { background: #91c083; color: var(--white); }
  .btn-mint:hover { background: var(--text); transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--sage-deep); border: 1.5px solid var(--sage-deep); }
  .btn-outline:hover { background: var(--sage-deep); color: var(--white); }
  .btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
  .btn-outline-white:hover { background: rgba(255,255,255,0.15); }


  /* ══════════════════════════════════
     TOP UTILITY BAR
  ══════════════════════════════════ */
  .utility-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  .utility-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .utility-left a { color: var(--text-muted); transition: color 0.2s; }
  .utility-left a:hover { color: var(--sage-deep); }
  .utility-loc {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .utility-loc svg { width: 13px; height: 13px; stroke: var(--sage-deep); fill: none; stroke-width: 2; }
  .utility-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .util-pill {
    background: var(--sky-light);
    color: var(--text-mid);
    padding: 4px 14px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .util-pill:hover { background: var(--sky); }
  .util-pill.accent { background: var(--sage-deep); color: var(--white); }
  .util-pill.accent:hover { background: var(--text); }
  .util-pill.book-pill { background: #ff0013; color: var(--white); }
  .util-pill.book-pill:hover { background: #cc0010; }
  .util-pill.book-pill-teal { background: var(--sage-deep) !important; }
  .util-pill.book-pill-teal:hover { background: #046070 !important; }


  /* ══════════════════════════════════
     HEADER / NAV
  ══════════════════════════════════ */
  .header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s;
  }
  .header.scrolled { box-shadow: 0 4px 24px rgba(5,124,142,0.08); }
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }

  /* Logo */
  .logo { display: flex; align-items: center; gap: 10px; }
  .logo-img {
    height: 68px;
    width: auto;
    display: block;
  }

  /* Nav links */
  .nav-links { display: flex; list-style: none; gap: 0; align-items: center; }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    display: block;
    padding: 6px 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.18s;
    letter-spacing: 0.1px;
  }
  .nav-links > li > a:hover { color: var(--sage-deep); }
  .nav-links > li > a.has-drop::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0.5;
  }

  /* Dropdown */
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--sage-deep);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    min-width: 240px;
    border-radius: 0 0 14px 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: all 0.18s ease;
    z-index: 100;
    padding: 8px 0;
  }
  .has-mega.mega-open .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav-dropdown a {
    display: block;
    padding: 12px 22px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-mid);
    transition: all 0.14s;
    border-radius: 0;
  }
  .nav-dropdown a:last-child { border-radius: 0 0 11px 11px; }
  .nav-dropdown a:hover { background: var(--sky-pale); color: var(--sage-deep); padding-left: 28px; }

  .nav-apply {
    background: #9cbd87 !important;
    color: var(--white) !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    padding: 9px 22px !important;
    border-radius: 9999px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-apply:hover { background: #86a873 !important; transform: translateY(-1px); }

  /* Vernon badge in nav */
  .nav-vernon {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    padding: 6px 14px;
    background: var(--mint-pale);
    border-radius: 9999px;
    margin-right: 6px;
  }
  .nav-vernon svg { width: 12px; height: 12px; stroke: var(--sage-deep); fill: none; stroke-width: 2; }


  /* ══════════════════════════════════
     HERO
  ══════════════════════════════════ */
  .hero {
    position: relative;
    background: var(--off-white);
    padding: 0;
  }

  /* Video container — full width, rounded bottom corners only */
  .hero-video-wrap {
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    min-height: 560px;
    max-height: 800px;
    height: calc(90vh - 30px);
    display: flex;
    align-items: center;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 0 20px 20px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  /* Gradient overlay — light at top, darker at bottom so text reads */
  .hero-overlay {
    position: absolute;
    inset: 0;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.42) 0%,
      rgba(10,78,116,0.46) 35%,
      rgba(10,78,116,0.80) 72%,
      rgba(10,78,116,0.92) 100%
    );
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 60px;
  }

  /* 2/3 text + 1/3 form grid */
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: end;
  }

  .hero-content {}

  .hero-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 9999px;
    margin-bottom: 28px;
  }
  .hero-location svg { width: 12px; height: 12px; stroke: var(--sky); fill: none; stroke-width: 2.5; }

  .hero-headline {
    font-family: 'Poppins', sans-serif;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero-headline-lead {
    display: block;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 400;
    white-space: nowrap;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
    letter-spacing: 0;
  }
  .hero-headline em {
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 3.1vw, 42px);
    color: var(--white);
    display: block;
  }

  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
  }
  .hero-sub strong { color: rgba(255,255,255,0.95); font-weight: 500; }
  .hero-sub-lead {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

  .hero-chips-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  /* Activity chips */
  .hero-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 7px 14px;
    border-radius: 9999px;
    transition: background 0.2s, border-color 0.2s;
  }
  .hero-chip:hover { background: rgba(148,203,172,0.22); border-color: rgba(148,203,172,0.4); }
  .hero-chip svg { width: 13px; height: 13px; stroke: var(--sky-light); fill: none; stroke-width: 2; }
  .hero-chips-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    align-self: center;
    margin-right: 4px;
  }

  /* Form card — 1/3 column */
  .hero-stats-card {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.18);
    align-self: end;
  }

  /* Mobile-only Get Info section — hidden on desktop/tablet, shown ≤768px */
  .mobile-info-section {
    display: none;
    background: var(--off-white);
    padding: 40px 0 56px;
  }
  .hero-stats-card-mobile {
    box-shadow: none;
    border: 1px solid var(--border);
  }

  /* Stats grid — clean, airy */
  .stats-row-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .stat-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { padding-top: 0; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
  .stat-item:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--border); }
  .stat-item:nth-child(even) { padding-left: 20px; }

  .stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: var(--sage-deep);
    line-height: 1;
    margin-bottom: 5px;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
  }

  .stat-item--solo {
    border-bottom: none !important;
    border-right: none !important;
    padding: 0 0 4px !important;
  }
  .stat-item--solo .stat-num { font-size: 42px; }
  .stat-item--solo .stat-label { font-size: 12px; }

  /* Form card heading (image removed) */
  .hero-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ff0013;
    margin-bottom: 6px;
  }
  .hero-form-sub {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .card-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
  }

  /* Form portion */
  .hero-form-mini h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
  }
  .hero-form-mini p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
  }
  .mini-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }
  .mini-row .mini-input { margin-bottom: 0; }
  .mini-field-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 14px 0 8px;
  }
  .mini-gender-group {
    display: flex;
    gap: 3px;
    padding: 3px;
    background: var(--sky-pale);
    border: 1px solid var(--border);
    border-radius: 9999px;
    margin-bottom: 14px;
  }
  .mini-gender-pill {
    flex: 1;
    min-width: 0;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    padding: 8px 6px;
    border: none;
    border-radius: 9999px;
    background: transparent;
    color: var(--text-mid);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: all 0.18s;
  }
  .mini-gender-pill:hover { color: var(--sage-deep); }
  .mini-gender-pill.selected {
    background: var(--sage-deep);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(5,124,142,0.35);
  }
  .mini-input,
  .mini-select {
    width: 100%;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    border: 1px solid var(--border);
    background: var(--sky-pale);
    color: var(--text);
    border-radius: 8px;
    outline: none;
    margin-bottom: 10px;
    -webkit-appearance: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .mini-input:focus,
  .mini-select:focus { border-color: var(--sage-deep); background: var(--white); }
  .mini-input::placeholder { color: #8abfc0; }
  .mini-submit-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 9999px;
    background: #ff0013;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s, transform 0.15s;
  }
  .mini-submit-btn:hover { background: #cc0010; transform: translateY(-1px); }
  .mini-consent {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.6;
    text-align: center;
  }


  /* ══════════════════════════════════
     QUICK FACTS RIBBON (below hero)
  ══════════════════════════════════ */
  .facts-ribbon {
    background: var(--white);
    padding: 32px 0;
  }
  .facts-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .fact-cell {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: background 0.2s, box-shadow 0.2s;
  }
  .fact-cell:hover { background: var(--sky-pale); box-shadow: 0 4px 20px rgba(5,124,142,0.07); }
  .fact-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--sky-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .fact-icon-wrap svg { width: 22px; height: 22px; stroke: var(--sage-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .fact-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
  }
  .fact-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
  }


  /* ══════════════════════════════════
     ACCREDITATIONS BAR
  ══════════════════════════════════ */
  .accred-bar {
    background: #4a5660;
    padding: 28px 0 24px;
    text-align: center;
  }
  .accred-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
  }
  .accred-badges {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .accred-badges--mobile { display: none; }
  .accred-badges--desktop { display: block; max-width: 900px; }


  /* ══════════════════════════════════
     FOOTER
  ══════════════════════════════════ */
  .footer {
    background: #212121;
    color: var(--white);
    padding: 80px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand {}

  /* Footer contacts */
  .footer-contacts { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
  .footer-contacts a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
  }
  .footer-contacts a:hover { color: var(--sky-light); }
  .footer-contacts svg { width: 14px; height: 14px; stroke: var(--sky); fill: none; stroke-width: 2; flex-shrink: 0; }

  .footer-ctas { display: flex; flex-direction: column; gap: 10px; }
  .footer-cta-btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: all 0.2s;
  }
  .footer-cta-primary { background: #81ae50; color: var(--white); }
  .footer-cta-primary:hover { background: #6a9440; }
  .footer-cta-orange { background: #ff0013; color: var(--white); }
  .footer-cta-orange:hover { background: #cc0010; }
  .footer-cta-secondary { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.12); }
  .footer-cta-secondary:hover { background: rgba(255,255,255,0.14); color: var(--white); }

  /* Link columns */
  .footer-col {}
  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.58);
    transition: color 0.18s;
  }
  .footer-col ul li a:hover { color: var(--sky-light); }

  /* Footer accreditations row */
  .footer-accred {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 52px;
  }
  .footer-accred-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .footer-accred-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
  }
  .footer-accred-items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-accred-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
  }
  .footer-accred-item svg {
    width: 13px;
    height: 13px;
    stroke: var(--mint);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
  }

  /* Vernon quote + pills strip — logo left, quote+pills right */
  .footer-vernon {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    padding: 52px 0 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-vernon-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .footer-logo-img-large {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    opacity: 0.95;
  }
  .footer-vernon-content {}
  .vernon-quote {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(18px, 2.2vw, 26px);
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    max-width: 820px;
    margin-bottom: 24px;
  }
  .vernon-quote cite {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.35);
    margin-top: 12px;
  }
  .vernon-quote cite a { color: rgba(255,255,255,0.45); text-decoration: underline; text-underline-offset: 3px; }
  .vernon-quote cite a:hover { color: var(--sky-light); }
  .vernon-quote--acknowledgement {
    font-size: clamp(14px, 1.35vw, 17px);
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .vernon-activities {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .vernon-tag {
    background: rgba(148,203,172,0.1);
    border: 1px solid rgba(148,203,172,0.18);
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 9999px;
  }

  /* Footer white logo */
  .footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 24px;
    opacity: 0.9;
  }

  /* Footer bottom */
  .footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 60px;
  }
  .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }
  .footer-bottom-links {
    display: flex;
    gap: 24px;
  }
  .footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    transition: color 0.18s;
  }
  .footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }


  /* ── Scroll behaviour ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }
  .hero-location      { animation-delay: 0.1s; }
  .hero-headline      { animation-delay: 0.22s; }
  .hero-sub           { animation-delay: 0.34s; }
  .hero-btns          { animation-delay: 0.44s; }
  .hero-chips         { animation-delay: 0.54s; }

  .hero-stats-card {
    opacity: 0;
    animation: fadeUp 0.7s ease 0.3s forwards;
  }

  /* ══════════════════════════════════
     MEGA MENUS
  ══════════════════════════════════ */
  .has-mega { position: static; }

  .mega-menu {
    position: fixed;
    top: auto;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: none;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 800;
    overflow: hidden;
  }
  .has-mega.mega-open .mega-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .mega-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 48px;
  }

  /* Half-width mega menu — for Listings dropdown, anchors right */
  .mega-menu--half {
    left: auto !important;
    right: 20px;
    width: 540px;
  }
  .mega-inner--half {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px 28px;
    max-width: none;
  }

  .mega-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }

  .mega-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.15s;
    margin-bottom: 2px;
  }
  .mega-link:hover { background: var(--sky-pale); }
  .mega-link-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    transition: color 0.15s;
  }
  .mega-link:hover .mega-link-title { color: var(--sage-deep); }
  .mega-link-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.45;
  }

  /* Feature panel — Program */
  .mega-feature {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
  }
  .mega-feature-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
  }
  .mega-feature-body {
    padding: 16px 18px 18px;
    background: var(--off-white);
  }
  .mega-feature-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .mega-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .mega-feature-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--sage-deep);
    transition: color 0.15s;
  }
  .mega-feature-link:hover { color: var(--text); }

  /* Feature panel — Admissions intake card */
  .mega-intake-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mega-intake-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .mega-intake-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }
  .mega-intake-date {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
  }
  .mega-intake-status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 9999px;
  }
  .mega-intake-status.open { background: var(--mint-light); color: var(--sage-deep); }
  .mega-intake-status.soon { background: var(--sky-light); color: var(--text-mid); }
  .mega-apply-btn {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 12px;
    background: var(--sage-deep);
    color: var(--white);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: background 0.2s;
  }
  .mega-apply-btn:hover { background: var(--text); }


  /* ══════════════════════════════════
     ABOUT SECTION
  ══════════════════════════════════ */
  .about-section {
    padding: 100px 0;
    background: var(--white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* ── Image column ── */
  .about-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-img-main-wrap {
    position: relative;
    border-radius: 18px;
    overflow: visible;
  }

  .about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 18px;
    display: block;
  }

  .about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 16px;
  }
  .about-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* Stats strip below image */
  .about-img-stats {
    display: flex;
    align-items: center;
    background: var(--sky-pale);
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 8px;
  }
  .about-stat {
    flex: 1;
    text-align: center;
  }
  .about-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--sage-deep);
    line-height: 1.1;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  .about-stat-label {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
  }
  .about-stat-est {
    font-size: 15px;
    font-weight: 500;
    color: var(--sage-deep);
  }
  .about-stat-div {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
  }

  /* ── Content column ── */
  .about-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 16px;
  }

  .about-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
  }
  .about-heading strong { font-weight: 700; }
  .about-heading em {
    font-style: normal;
    font-weight: 300;
    color: var(--text-muted);
  }

  .about-body {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .about-body strong { color: var(--sage-deep); font-weight: 600; }

  .about-checklist {
    list-style: none;
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }
  .about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: 8px;
    transition: background 0.15s;
  }
  .about-checklist li:hover {
    background: var(--sky-pale);
  }
  .about-checklist li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-color: var(--sage-deep);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .about-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }


  /* ══════════════════════════════════
     CAMPUS VIDEO SECTION
  ══════════════════════════════════ */
  .video-section {
    background: var(--off-white);
    padding: 80px 0 90px;
  }
  .video-section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .eyebrow-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
  }
  .video-section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
  }
  .video-section-title strong { font-weight: 700; }
  .video-section-title em {
    font-style: normal;
    font-weight: 300;
    color: var(--text-muted);
  }

  .video-embed-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.12);
  }
  .video-thumb-link {
    display: block;
    position: relative;
    cursor: pointer;
    width: 100%;
    border: none;
    padding: 0;
    background: none;
    font: inherit;
  }
  .campus-video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
  }
  .video-thumb-img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  /* Dark overlay on hover */
  .video-thumb-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,78,116,0.25);
    transition: background 0.25s;
  }
  .video-thumb-link:hover::after { background: rgba(10,78,116,0.4); }

  .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.2s;
  }
  .video-thumb-link:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--white);
  }
  .video-play-btn svg {
    width: 26px;
    height: 26px;
    fill: var(--sage-deep);
    stroke: none;
    margin-left: 4px; /* optical center for play triangle */
  }

  /* ══════════════════════════════════
     LIFE IN VERNON SECTION
  ══════════════════════════════════ */
  .vernon-section {
    background: var(--off-white);
    padding: 90px 0 100px;
  }
  .vernon-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
  }
  .vernon-section-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .vernon-section-title strong { font-weight: 700; }
  .vernon-section-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
  }

  .vernon-carousel-wrap {
    position: relative;
  }

  .vernon-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: none;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vernon-grid::-webkit-scrollbar { display: none; }

  .vernon-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }

  .vernon-carousel-btn {
    position: static;
    width: 54px;
    height: 54px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: background 0.15s, transform 0.15s;
  }
  .vernon-carousel-btn:hover { background: var(--sky-pale); transform: scale(1.06); }
  .vernon-carousel-btn svg { width: 22px; height: 22px; stroke: var(--sage-deep); fill: none; stroke-width: 2.3; }
  @media (max-width: 900px) {
    .vernon-carousel-btn { width: 44px; height: 44px; }
    .vernon-carousel-btn svg { width: 18px; height: 18px; }
  }

  .vernon-cta-wrap {
    text-align: center;
    margin-top: 32px;
  }
  .vernon-cta-eyebrow {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 20px;
  }

  .vernon-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }
  .vernon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(5,124,142,0.12);
  }

  .vernon-card-img-wrap {
    position: relative;
    overflow: hidden;
  }
  .vernon-card-img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .vernon-card:hover .vernon-card-img { transform: scale(1.04); }

  .vernon-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,78,116,0.65) 0%, transparent 55%);
  }
  .vernon-card-label {
    position: absolute;
    bottom: 14px;
    left: 18px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.2px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  }

  .vernon-card-body {
    padding: 20px 22px 22px;
    flex: 1;
  }
  .vernon-card-body p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
  }

  /* ══════════════════════════════════
     CTA CALLOUT
  ══════════════════════════════════ */
  .cta-callout-wrap {
    background: var(--off-white);
    padding: 60px 0;
  }
  .cta-callout {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-color: #0a4e74;
  }
  .cta-callout-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: right top;
    display: block;
  }
  /* Left-edge blend — fades the photo into the card background colour */
  .cta-callout::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, #0a4e74 0%, #0a4e74 30%, rgba(10,78,116,0) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .cta-callout-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(10,78,116,0.75) 0%,
      rgba(10,78,116,0.40) 50%,
      rgba(10,78,116,0.05) 100%
    );
    z-index: 1;
  }
  .cta-callout-inner {
    position: relative;
    z-index: 2;
    padding: 64px 72px;
    max-width: 640px;
  }

  /* Fade-in animations */
  @keyframes ctaFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .cta-callout.in-view .cta-eyebrow  { animation: ctaFadeUp 0.6s ease 0.0s both; }
  .cta-callout.in-view .cta-heading  { animation: ctaFadeUp 0.6s ease 0.12s both; }
  .cta-callout.in-view .cta-sub      { animation: ctaFadeUp 0.6s ease 0.24s both; }
  .cta-callout.in-view .cta-btns     { animation: ctaFadeUp 0.6s ease 0.36s both; }

  /* Start hidden until in view */
  .cta-eyebrow,
  .cta-heading,
  .cta-sub,
  .cta-btns { opacity: 0; }

  .cta-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mint-light);
    margin-bottom: 16px;
  }
  .cta-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .cta-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .cta-btn-primary {
    display: inline-block;
    background: #ff0013;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 9999px;
    transition: background 0.2s, transform 0.15s;
  }
  .cta-btn-primary:hover { background: #cc0010; transform: translateY(-2px); }
  .cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 9999px;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
  }
  .cta-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }


/* ══════════════════════════════════
   BLOG SECTION
══════════════════════════════════ */
.blog-section {
  background: var(--white);
  padding: 90px 0 100px;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.blog-title {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-top: 10px;
}
.blog-title strong { font-weight: 700; }
.blog-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--border);
}
.blog-all-link:hover { color: #ff0013; border-color: #ff0013; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(5,124,142,0.10);
}

.blog-card-img-wrap {
  overflow: hidden;
}
.blog-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-card-meta {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}
.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}
.blog-card-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.3px;
  transition: color 0.15s;
  margin-top: 4px;
}
.blog-card:hover .blog-card-cta { color: #ff0013; }

/* ══════════════════════════════════
   BLOG POST BODY (individual posts)
══════════════════════════════════ */
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.post-author { font-weight: 600; color: var(--sage-deep); }
.post-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
.post-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
}
.post-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
}
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-body li { margin-bottom: 10px; }
.post-body strong { font-weight: 700; color: var(--text); }
.post-body a { color: var(--sage-deep); text-decoration: underline; }
.post-body a:hover { color: #ff0013; }

/* ══════════════════════════════════
   STUDENT LOGIN MODAL
══════════════════════════════════ */
.login-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,78,116,0.45);
  backdrop-filter: blur(3px);
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 80px 28px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.login-modal-backdrop.open { opacity: 1; pointer-events: all; }

.login-modal {
  background: var(--white);
  border-radius: 20px;
  width: 380px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: translateY(-10px) scale(0.98);
  transition: transform 0.22s ease;
}
.login-modal-backdrop.open .login-modal { transform: translateY(0) scale(1); }

.login-modal-hero {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.login-modal-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.login-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,78,116,0.75) 0%, rgba(10,78,116,0.2) 100%);
}
.login-modal-hero-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.login-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.18);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.login-modal-close:hover { background: rgba(255,255,255,0.35); }
.login-modal-close svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; }

.login-modal-body { padding: 24px 24px 28px; }
.login-modal-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; text-align: center; }

.login-portal-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  text-decoration: none;
  transition: all 0.18s;
  margin-bottom: 10px;
}
.login-portal-btn:last-child { margin-bottom: 0; }
.login-portal-btn:hover { border-color: var(--sage-deep); background: var(--mint-pale); transform: translateX(3px); }
.login-portal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.login-portal-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-bg-classter { background: linear-gradient(135deg, var(--sky) 0%, var(--mint) 100%); }
.icon-bg-classter svg { stroke: var(--sage-deep); }
.icon-bg-moodle { background: linear-gradient(135deg, var(--mint) 0%, var(--sage) 100%); }
.icon-bg-moodle svg { stroke: var(--sage-deep); }
.login-portal-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.login-portal-desc { font-size: 11.5px; color: var(--text-muted); }
.login-portal-arrow { margin-left: auto; }
.login-portal-arrow svg { width: 16px; height: 16px; stroke: var(--text-muted); fill: none; stroke-width: 2; }

.util-login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  padding: 0;
}
.util-login-btn:hover { color: var(--sage-deep); }
.util-login-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ══════════════════════════════════
   PAGE LOADER
══════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-logo {
  height: 48px;
  width: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: loaderFadeUp 0.5s ease 0.1s forwards;
}
@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.loader-bar-wrap {
  width: 160px;
  height: 2px;
  background: var(--border);
  border-radius: 9999px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp 0.5s ease 0.2s forwards;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sage-deep), var(--mint));
  border-radius: 9999px;
  animation: loaderProgress 0.7s ease 0.25s forwards;
}
@keyframes loaderProgress {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ══════════════════════════════════
   PAGE HERO (global — used by all inner pages + blog)
══════════════════════════════════ */
.page-hero { position: relative; height: 480px; overflow: hidden; margin: 15px; border-radius: 20px; }
.page-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,78,116,0.08) 0%, rgba(10,78,116,0.72) 100%);
  border-radius: 20px;
}
.page-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 52px 64px; z-index: 2; }
.page-hero-eyebrow {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--mint-light); margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 14px;
}
.page-hero-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.8); max-width: 600px; line-height: 1.7; }

/* ══════════════════════════════════
   BREADCRUMB (global)
══════════════════════════════════ */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumb-inner a:hover { color: var(--sage-deep); }
.breadcrumb-sep { color: var(--border); }

/* ══════════════════════════════════
   PAGE BODY (global)
══════════════════════════════════ */
.page-body { background: var(--white); padding: 64px 0 80px; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.page-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }

/* ══════════════════════════════════
   MOBILE NAV TOGGLE (hamburger)
   Hidden on desktop, shown via media query below
══════════════════════════════════ */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
/* Mobile panel header — only visible inside the slide-out panel on mobile */
.mobile-nav-header { display: none; }
.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-toggle.active { opacity: 0; pointer-events: none; }

/* Lock body scroll when mobile menu is open */
body.mobile-nav-locked { overflow: hidden; }


/* ══════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════ */
@media (max-width: 1024px) {
  .mega-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .mega-feature { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { right: 16px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats-card { max-width: 440px; }

  .facts-inner { grid-template-columns: 1fr 1fr; }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .vernon-card { flex: 0 0 280px; }
}


/* ══════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════ */
@media (max-width: 768px) {

  .wrap { padding: 0 20px; }

  /* ── Utility bar ── */
  .utility-bar { padding: 16px 0; }
  .utility-inner { flex-direction: column; align-items: center; gap: 12px; }
  .utility-left { justify-content: center; gap: 12px; flex-wrap: wrap; width: 100%; }
  .utility-loc { display: none; }
  .utility-right { justify-content: center; gap: 10px; flex-wrap: wrap; width: 100%; }
  .util-pill { font-size: 10px; padding: 6px 12px; }
  .util-login-btn { font-size: 10px; }

  /* ── Header / mobile nav ── */
  .nav-wrap { height: 64px; }
  .logo-img { height: 56px; }
  .mobile-nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 32px;
    overflow-y: auto;
    box-shadow: -16px 0 60px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 150;
  }
  .nav-links.open { right: 0; }

  /* In-panel header bar — logo + close button, sticky at top of the scrollable panel */
  .mobile-nav-header {
    position: sticky;
    top: 0;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px !important;
    background: var(--white);
    border-bottom: 1px solid var(--border) !important;
    z-index: 5;
  }
  .mobile-nav-logo { height: 32px; width: auto; display: block; }
  .mobile-nav-close {
    width: 36px;
    height: 36px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
  }
  .mobile-nav-close:hover { background: var(--sky-pale); }
  .mobile-nav-close svg { width: 16px; height: 16px; stroke: var(--text); fill: none; stroke-width: 2; }

  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    padding: 16px 28px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links > li > a.has-drop::after { float: right; margin-top: 6px; }

  .nav-apply {
    margin: 20px 28px 0 !important;
    display: block !important;
    text-align: center;
  }

  /* Mega menu + dropdown become simple inline accordions on mobile */
  .mega-menu, .nav-dropdown {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-height: 0;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: none !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--off-white);
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .has-mega.mega-open .mega-menu,
  .has-mega.mega-open .nav-dropdown {
    max-height: 1200px;
  }
  .mega-inner {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 28px 20px;
    max-width: none;
  }
  .mega-col-title { margin-top: 12px; }
  .mega-link { padding: 10px 8px; }
  .mega-link-desc { display: none; }
  .nav-dropdown a { padding: 12px 28px; }

  /* Mobile nav backdrop */
  .mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,78,116,0.4);
    z-index: 140;
  }
  .mobile-nav-backdrop.open { display: block; }

  /* ── Hero ── */
  .hero-video-wrap { min-height: 620px; height: calc(100vh - 30px); align-items: flex-start; }
  .hero-inner { padding: 90px 0 40px; }
  .hero-grid { gap: 24px; grid-template-columns: 1fr; }
  .hero-headline-lead { font-size: 18px; }
  .hero-headline em { font-size: clamp(28px, 8vw, 40px); }
  .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .hero-chips { gap: 6px; }
  .hero-chip { font-size: 10px; padding: 5px 10px; }
  .mini-row { grid-template-columns: 1fr; gap: 10px; }

  /* Form card lives in the video on desktop/tablet — on mobile it moves to its own section below */
  .hero-stats-card-desktop { display: none; }
  .mobile-info-section { display: block; padding: 32px 0 48px; }
  .hero-stats-card-mobile { max-width: none; padding: 24px; }

  /* ── Page hero (global) ── */
  .page-hero { height: 320px; margin: 10px; }
  .page-hero-content { padding: 24px 20px; }
  .page-hero-title { font-size: clamp(22px, 6vw, 32px); }
  .page-hero-sub { font-size: 14px; }

  /* ── Page body (global) ── */
  .page-body { padding: 40px 0 60px; }
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; order: 2; }

  /* ── Blog ── */
  .blog-section { padding: 48px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* ── Facts ribbon ── */
  .facts-inner { grid-template-columns: 1fr; }

  /* ── About section ── */
  .about-section { padding: 56px 0; }
  .about-heading { font-size: clamp(26px, 7vw, 36px); }
  .about-checklist li { font-size: 12.5px; }
  .about-btns { flex-direction: column; }
  .about-btns .btn { text-align: center; }
  .about-img-stats { flex-wrap: wrap; gap: 12px; }

  /* ── Video section ── */
  .video-section { padding: 56px 0; }
  .video-section-title { font-size: clamp(22px, 6vw, 30px); }

  /* ── Vernon carousel ── */
  .vernon-section { padding: 56px 0; }
  .vernon-card { flex: 0 0 260px; }
  .vernon-section-title { font-size: clamp(22px, 6vw, 30px); }

  /* ── Blog ── */
  .blog-section { padding: 56px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* ── CTA callout ── */
  .cta-callout { min-height: auto; }
  .cta-callout-inner { padding: 40px 28px; max-width: 100%; }
  .cta-heading { font-size: clamp(26px, 8vw, 38px); }
  .cta-btns { flex-direction: column; }
  .cta-btn-primary, .cta-btn-secondary { text-align: center; }

  /* ── Accreditations bar ── */
  .accred-badges--desktop { display: none; }
  .accred-badges--mobile { display: block; }

  /* ── Footer ── */
  .footer-vernon { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .footer-logo-img-large { max-width: 140px; }
  .vernon-quote { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-ctas { flex-direction: column; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-headline em { font-size: 26px; }
  .about-heading strong, .about-heading em { display: block; }
  .vernon-card { flex: 0 0 88vw; }
}

/* ══════════════════════════════════
   LISTINGS PAGES (housing + jobs)
══════════════════════════════════ */
.listings-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  padding: 16px 0 64px;
}
.listings-intro { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.listings-intro-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}
.listings-intro-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 12px;
}
.listings-intro-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.listings-intro-card p:last-child { margin-bottom: 0; }
.listings-intake-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.listings-intake-pill {
  background: var(--sage-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 9999px;
}
.listings-notice-card {
  background: #f2f8f5;
  border: 1px solid #c5ddd4;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.listings-notice-icon {
  width: 20px;
  height: 20px;
  stroke: #ff0013;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.listings-notice-card p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}
.listings-notice-card a { color: var(--sage-deep); text-decoration: underline; }
.listings-switch-link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-deep);
  text-decoration: none;
  padding: 14px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s;
  margin-top: 4px;
}
.listings-switch-link:hover { border-color: var(--sage-deep); background: var(--sky-pale); }

.listings-form-wrap { min-width: 0; }
.listings-form-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.listings-form-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ff0013;
  margin-bottom: 8px;
}
.listings-form-header p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.listings-wufoo-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .listings-layout { grid-template-columns: 1fr; }
  .listings-intro { position: static; }
}
@media (max-width: 768px) {
  .listings-wufoo-wrap { padding: 16px; border-radius: 12px; }
}

/* ══════════════════════════════════
   BROWSE LISTINGS PAGES
══════════════════════════════════ */
.browse-listings-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.browse-listings-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.browse-listings-sub { font-size: 14px; color: var(--text-muted); }
.browse-listings-post-btn {
  background: var(--sage-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.browse-listings-post-btn:hover { background: var(--text); }

/* Empty state */
.browse-empty-state {
  text-align: center;
  padding: 80px 32px;
  background: var(--off-white);
  border: 1px dashed var(--border);
  border-radius: 20px;
  margin-bottom: 32px;
}
.browse-empty-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.browse-empty-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--sage-deep);
  fill: none;
  stroke-width: 1.5;
}
.browse-empty-state h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.browse-empty-state p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 28px;
}
.browse-empty-cta {
  display: inline-block;
  background: #ff0013;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.15s;
}
.browse-empty-cta:hover { background: #cc0010; }

/* Future listing cards — ready for the Lovable plugin to inject into */
.browse-listing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.2s;
}
.browse-listing-card:hover { box-shadow: 0 8px 32px rgba(5,124,142,0.1); }
.browse-listing-card-body { flex: 1; min-width: 0; }
.browse-listing-card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.browse-listing-card-meta { font-size: 12.5px; color: var(--text-muted); margin-bottom: 10px; }
.browse-listing-card-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }
.browse-listing-card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  background: var(--mint-light);
  color: var(--sage-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

.browse-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 32px;
}
.browse-notice svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}
.browse-notice p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.browse-notice a { color: var(--sage-deep); text-decoration: underline; }

@media (max-width: 768px) {
  .browse-listings-header { flex-direction: column; }
  .browse-listings-post-btn { width: 100%; text-align: center; }
  .browse-empty-state { padding: 48px 20px; }
}

/* ══════════════════════════════════
   LISTING FORMS (.lf-*)
══════════════════════════════════ */
.lf { display: flex; flex-direction: column; gap: 0; }
.lf-section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 28px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.lf-section-label:first-child { margin-top: 0; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lf-label { font-size: 12.5px; font-weight: 600; color: var(--text); }
.lf-req { color: #ff0013; }
.lf-input, .lf-select, .lf-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.lf-input::placeholder, .lf-textarea::placeholder { color: #8abfc0; }
.lf-input:focus, .lf-select:focus, .lf-textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5,124,142,0.1);
}
.lf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b8884' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.lf-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.lf-pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.lf-pill {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  background: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.lf-pill:hover { border-color: var(--sage-deep); }
.lf-pill.active { background: var(--sage-deep); border-color: var(--sage-deep); color: var(--white); }
.lf-submit {
  margin-top: 12px;
  width: 100%;
  padding: 15px;
  background: var(--sage-deep);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.lf-submit:hover { background: var(--text); transform: translateY(-1px); }
.lf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.lf-consent {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  text-align: center;
}
.lf-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #eaf6f1;
  border: 1.5px solid #94cbac;
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 8px;
}
.lf-success svg {
  width: 28px;
  height: 28px;
  stroke: var(--sage-deep);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}
.lf-success strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.lf-success p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin: 0; }

@media (max-width: 768px) {
  .lf-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   BROWSE LISTINGS — additional styles
══════════════════════════════════ */
.browse-rates-strip {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
}
.browse-rates-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.browse-rates-label { font-size: 12px; font-weight: 700; color: var(--text-mid); }
.browse-rate-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
}
.browse-rates-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-deep);
  text-decoration: none;
  margin-left: auto;
}
.browse-rates-link:hover { text-decoration: underline; }

/* Housing listing PDF button */
.browse-listing-pdf-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--sage-deep);
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.browse-listing-pdf-btn:hover { background: var(--sky-pale); border-color: var(--sage-deep); }
.browse-listing-pdf-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage-deep);
  fill: none;
  stroke-width: 1.8;
}

/* Job listing card extras */
.browse-job-card { align-items: flex-start; gap: 20px; }
.browse-job-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  padding: 4px;
}
.browse-job-apply-btn {
  display: inline-block;
  background: #ff0013;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.15s;
}
.browse-job-apply-btn:hover { background: #cc0010; }

@media (max-width: 768px) {
  .browse-listing-card { flex-direction: column; }
  .browse-listing-pdf-btn { flex-direction: row; width: 100%; justify-content: center; }
  .browse-job-card { flex-direction: column; }
  .browse-rates-inner { flex-direction: column; align-items: flex-start; }
  .browse-rates-link { margin-left: 0; }
}

/* ══════════════════════════════════
   HOUSING LISTING DETAIL PAGE (.hl-*)
══════════════════════════════════ */
.hl-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  padding: 48px 0 80px;
}
.hl-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.hl-price {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 1;
}
.hl-per { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.hl-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-start; padding-top: 6px; }
.hl-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 12px;
  border-radius: 9999px;
}
.hl-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hl-meta svg { width: 14px; height: 14px; stroke: var(--sage-deep); fill: none; stroke-width: 2; flex-shrink: 0; }
.hl-desc {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.hl-desc p { margin-bottom: 14px; }
.hl-desc strong { color: var(--text); }
.hl-section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.hl-photos-wrap { margin-bottom: 32px; }
.hl-photo {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}
.hl-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hl-photo-grid .hl-photo { aspect-ratio: 4/3; object-fit: cover; }
.hl-promo-img { width: 100%; display: block; border-radius: 16px; margin-bottom: 24px; }
.hl-amenities { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.hl-amenity {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
}
.hl-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  background: #fff8e6;
  border: 1px solid #ffe8a0;
  border-radius: 12px;
  font-size: 12.5px;
  color: #8a6400;
  line-height: 1.6;
}
.hl-disclaimer svg { width: 16px; height: 16px; stroke: #b07d00; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
.hl-disclaimer p { margin: 0; }

/* Sidebar */
.hl-sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 96px; }
.hl-contact {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}
.hl-contact-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.hl-contact-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.hl-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sage-deep);
  text-decoration: none;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  transition: color 0.15s;
}
.hl-contact-link:hover { color: #ff0013; }
.hl-contact-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.hl-contact-note { font-size: 11.5px; color: var(--text-muted); margin: 10px 0 0; line-height: 1.5; }
.hl-back-link, .hl-post-link {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.hl-back-link { background: var(--off-white); border: 1px solid var(--border); color: var(--text-mid); }
.hl-back-link:hover { background: var(--sky-pale); border-color: var(--sage-deep); }
.hl-post-link { background: var(--sage-deep); color: var(--white); margin-top: 4px; }
.hl-post-link:hover { background: #057c8e; }

@media (max-width: 768px) {
  .hl-layout { grid-template-columns: 1fr; padding: 32px 0 56px; }
  .hl-sidebar { position: static; }
  .hl-price { font-size: 32px; }
}

/* Housing pages — teal overlay */
.page-hero--housing .page-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(3,125,142,0.45) 0%,
    rgba(3,125,142,0.72) 100%
  );
}

/* Job logo placeholder */
.browse-job-logo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
}
.browse-job-logo--placeholder svg {
  width: 30px;
  height: 30px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1.5;
}

/* ══════════════════════════════════
   ADMISSIONS COUNTDOWN SECTION
══════════════════════════════════ */
.admissions-countdown-section {
  background: var(--off-white);
  padding: 80px 0 88px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.admissions-countdown-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.admissions-countdown-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}
.admissions-countdown-title--stmt {
  font-size: clamp(22px, 2.8vw, 36px);
  max-width: none;
  margin: 0 auto 4px;
}
.admissions-countdown-title--stmt em {
  font-style: normal;
  color: var(--sage-deep);
}
.admissions-countdown-future {
  display: inline-block;
  color: #9cbd87;
  margin-top: 4px;
}
.admissions-countdown-lead {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 500;
  margin: 0;
}
.admissions-countdown-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.admissions-countdown-sub--wide {
  max-width: 960px;
  line-height: 1.75;
  font-size: 15.5px;
}
.admissions-countdown-sub--wide a {
  color: var(--sage-deep);
  font-weight: 600;
  text-decoration: underline;
}
.admissions-countdown-sub--strong {
  font-weight: 700;
  color: var(--text-mid);
}

/* Clock */
.admissions-countdown-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.admissions-countdown-title a:hover { color: var(--sage-deep); }

/* Clock */
.admissions-clock {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 12px 0 0;
}
.admissions-clock-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 28px 18px;
  min-width: 100px;
  box-shadow: 0 4px 24px rgba(5,124,142,0.07);
}
.admissions-clock-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}
.admissions-clock-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.admissions-clock-sep {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--border);
  padding: 0 10px;
  margin-bottom: 20px;
}
.admissions-clock-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 4px 0 10px;
}

@media (max-width: 768px) {
  .admissions-countdown-section { padding: 56px 0 64px; }
  .admissions-clock-unit { padding: 16px 18px 12px; min-width: 70px; }
  .admissions-clock-sep { font-size: 28px; padding: 0 5px; }
  .admissions-clock-num { font-size: 32px; }
}
@media (max-width: 400px) {
  .admissions-clock-unit { padding: 12px 12px 10px; min-width: 56px; }
  .admissions-clock-num { font-size: 26px; }
  .admissions-clock-sep { font-size: 22px; }
}

/* Admissions countdown — boxed homepage variant */
.admissions-countdown-boxed {
  background: transparent;
  border-top: none;
  padding: 48px 0 56px;
}
.admissions-countdown-boxed .admissions-countdown-inner {
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 48px 16px 52px;
}
@media (max-width: 768px) {
  .admissions-countdown-boxed { padding: 32px 0 40px; }
  .admissions-countdown-boxed .admissions-countdown-inner { padding: 32px 12px 36px; }
  .admissions-countdown-title--stmt { font-size: clamp(20px, 5.5vw, 28px); }
}

/* ══════════════════════════════════
   ADMISSIONS PROMO CARDS
══════════════════════════════════ */
.promo-cards-section {
  background: var(--white);
  padding: 8px 0 64px;
}
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.promo-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.promo-card-header {
  background: var(--sage-deep);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  padding: 22px 24px;
}
.promo-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.promo-card-body p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
.promo-card-body p strong { color: var(--text); }
.promo-card-body a { color: var(--sage-deep); font-weight: 600; text-decoration: none; }
.promo-card-body a:hover { text-decoration: underline; }
.promo-card-dates {
  font-weight: 700;
  color: var(--text) !important;
}
.promo-card-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 6px;
  background: var(--sage-deep);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 9999px;
  text-decoration: none !important;
  transition: background 0.15s;
}
.promo-card-btn:hover { background: var(--text) !important; text-decoration: none !important; }

@media (max-width: 1024px) {
  .promo-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .promo-cards-section { padding: 8px 0 48px; }
  .promo-cards-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ══════════════════════════════════
   SHARED CHECKLIST (invite / request-info / book-a-tour)
══════════════════════════════════ */
.invite-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.invite-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}
.invite-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.invite-check-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--sage-deep);
  fill: none;
  stroke-width: 3;
}
.invite-checklist li strong { color: var(--text); }
.invite-checklist li a { color: var(--sage-deep); font-weight: 600; text-decoration: none; }
.invite-checklist li a:hover { text-decoration: underline; }
