/* =============================================
   CLIENT CENTRED CARE — Global Stylesheet
   Design tokens derived from brand mark (real logo)
   ============================================= */

:root {
  /* --- Brand cyan family, sampled from the CCC logo mark --- */
  --cyan-50:  #EFFBFF;
  --cyan-100: #DBF4FF;
  --cyan-200: #AFE9FF;
  --cyan-300: #78DEFF;
  --cyan-400: #45D2F9;
  --cyan-500: #22C2EC;   /* true logo cyan — decorative / graphic use */
  --cyan-600: #12A6CE;
  --cyan-700: #0A87AC;   /* accessible interactive tone (~5.7:1 on white) */
  --cyan-800: #0A6D8C;
  --cyan-900: #0E4C60;

  /* --- Neutrals --- */
  --ink:      #101B24;   /* headings */
  --ink-soft: #263441;   /* body text */
  --muted:    #5C6B78;   /* secondary text */
  --bg:       #FFFFFF;
  --bg-tint:  #F5FAFC;
  --bg-deep:  #0D1620;   /* the single dark tone, reused everywhere a dark section is needed */
  --line:     rgba(16,27,36,0.09);
  --line-cyan: rgba(10,135,172,0.20);

  /* --- Shadows, tinted to the brand hue instead of flat black --- */
  --shadow-sm: 0 2px 10px rgba(10,110,140,0.08);
  --shadow-md: 0 10px 32px rgba(10,110,140,0.13);
  --shadow-lg: 0 24px 64px rgba(10,110,140,0.16);
  --shadow-btn: 0 8px 22px rgba(10,135,172,0.32);

  /* --- Shape --- */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* --- Motion --- */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.25s;

  --max-width: 1200px;

  --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Figtree', 'Segoe UI', system-ui, sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 1.03rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 4.4vw + 1rem, 4.2rem); letter-spacing: -0.02em; line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 2.6vw + 1rem, 2.65rem); letter-spacing: -0.015em; line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 1.4vw + 0.8rem, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { color: var(--ink-soft); margin-bottom: 1rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--cyan-800); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--cyan-600); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--cyan-200); color: var(--ink); }

/* === Layout === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.75rem; }
.container--narrow { max-width: 760px; }
.section { padding: 6.5rem 0; }
.section--alt { background: var(--bg-tint); }
.section--dark {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 12% 30%, rgba(34,194,236,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.68); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--cyan-700);
  color: var(--white, #fff);
  border-color: var(--cyan-700);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--cyan-800);
  border-color: var(--cyan-800);
  color: #fff;
  box-shadow: 0 10px 26px rgba(10,135,172,0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan-800);
  border-color: var(--line-cyan);
}
.btn-secondary:hover {
  background: var(--cyan-50);
  border-color: var(--cyan-700);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--cyan-800);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}
.btn-white:hover {
  background: var(--cyan-50);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan-800);
  font-size: 0.96rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* === Section Labels (eyebrows) === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-800);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
  flex-shrink: 0;
}
.section-label--on-dark { color: var(--cyan-300); }
.section-label--on-dark::before { background: var(--cyan-300); }

.section-header { max-width: 620px; margin-bottom: 3.25rem; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p { color: var(--muted); font-size: 1.06rem; margin-top: 0.6rem; }

/* === Cards (used sparingly, only where elevation communicates hierarchy) === */
.card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: box-shadow var(--dur) var(--ease), transform 0.35s var(--ease-spring), border-color var(--dur) var(--ease);
  border: 1px solid var(--line);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--line-cyan);
}

/* === Icon Box (duotone, brand-tinted) === */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(155deg, var(--cyan-50), var(--cyan-100));
  border: 1px solid var(--line-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.icon-box svg { width: 24px; height: 24px; color: var(--cyan-800); stroke-width: 1.75; }
.icon-box--dark {
  background: rgba(34,194,236,0.14);
  border-color: rgba(34,194,236,0.3);
  box-shadow: none;
}
.icon-box--dark svg { color: var(--cyan-300); }

/* === Navigation === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  padding: 0 1.75rem;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.is-scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(10,110,140,0.08);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 1.5rem;
  transition: height var(--dur) var(--ease);
}
.navbar.is-scrolled .nav-inner { height: 68px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { flex-shrink: 0; width: 34px; height: auto; }
.nav-logo:hover { color: var(--ink); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink-soft);
  padding: 0.5rem 0.15rem;
  margin: 0 0.65rem;
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--cyan-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 0.5rem; flex-shrink: 0; padding: 0.65rem 1.5rem; font-size: 0.92rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity var(--dur) var(--ease);
}

/* === HOME HERO (split layout) === */
.hero { padding: 3rem 0 5rem; background: var(--bg); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero-text .section-label { margin-bottom: 1.25rem; }
.hero-text p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin: 1.4rem 0 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-media-frame {
  padding: 10px;
  background: linear-gradient(160deg, var(--cyan-100), var(--bg-tint) 70%);
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow: var(--shadow-lg);
}
.hero-media-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
}
.hero-media-inner img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip {
  position: absolute;
  left: -1.75rem;
  bottom: 2.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  max-width: 230px;
  border: 1px solid var(--line);
}
.hero-chip .icon-box { width: 42px; height: 42px; border-radius: 12px; margin: 0; }
.hero-chip .icon-box svg { width: 20px; height: 20px; }
.hero-chip strong { display: block; font-family: var(--font-display); font-size: 0.88rem; color: var(--ink); }

/* === EDITORIAL PAGE HERO (inner pages) === */
.page-hero {
  background: var(--bg-tint);
  padding: 6.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  opacity: 0.5;
  pointer-events: none;
}
.page-hero-content { max-width: 620px; position: relative; }
.page-hero h1 { margin-bottom: 0.85rem; }
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 540px; }

/* === MISSION / split image-text block (reused: home mission, about story) === */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-block .lead {
  font-size: 1.13rem;
  color: var(--muted);
  line-height: 1.8;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* === WHY CHOOSE — editorial feature rows (not a 4-card grid) === */
.feature-rows { border-top: 1px solid var(--line); }
.feature-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--dur) var(--ease);
}
.feature-row:hover { padding-left: 0.5rem; }
.feature-row .icon-box { margin: 0; }
.feature-row-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-600);
  letter-spacing: 0.05em;
}
.feature-row h3 { margin-bottom: 0.35rem; }
.feature-row p { color: var(--muted); margin: 0; max-width: 520px; }
.feature-row-arrow { color: var(--line-cyan); flex-shrink: 0; display: none; }

/* === SERVICES BENTO (homepage snapshot) === */
.services-bento {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.35rem;
}
.bento-side { display: grid; gap: 1.35rem; }
.bento-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  transition: all var(--dur) var(--ease), transform 0.35s var(--ease-spring);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 190px;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-cyan);
}
.bento-card h3 { color: var(--ink); margin-bottom: 0.4rem; font-size: 1.15rem; transition: color var(--dur) var(--ease); }
.bento-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.bento-featured {
  background: var(--bg-deep);
  color: #fff;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.bento-featured-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.bento-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,22,32,0.55) 0%, rgba(13,22,32,0.35) 45%, rgba(13,22,32,0.92) 100%),
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(34,194,236,0.3) 0%, transparent 65%);
}
.bento-featured > * { position: relative; }
.bento-featured h3 { color: #fff; font-size: 1.5rem; }
.bento-featured p { color: rgba(255,255,255,0.7); font-size: 0.98rem; }
.bento-featured .icon-box { margin-bottom: auto; }

/* === VALUE CHIPS (About core values — avoids awkward 5-into-grid) === */
.values-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.values-row.center { justify-content: center; }
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem 0.9rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  transition: all var(--dur) var(--ease), transform 0.35s var(--ease-spring);
}
.value-chip:hover { border-color: var(--line-cyan); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.value-chip .icon-box { width: 40px; height: 40px; border-radius: 11px; margin: 0; }
.value-chip .icon-box svg { width: 19px; height: 19px; }
.value-chip span { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.98rem; }

/* === HIGHLIGHTS (About) === */
.highlights-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.highlights-tiles { display: grid; gap: 1.1rem; }
.highlight-tile {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease), transform 0.35s var(--ease-spring);
}
.highlight-tile:hover { border-color: var(--line-cyan); transform: translateX(4px); }
.highlight-tile .icon-box { margin: 0; width: 46px; height: 46px; border-radius: 13px; }
.highlight-tile .icon-box svg { width: 21px; height: 21px; }
.highlight-tile p { font-size: 0.92rem; color: var(--muted); margin: 0.2rem 0 0; }
.highlights-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.highlights-image img { width: 100%; height: 100%; object-fit: cover; }

/* === DAY PROGRAM === */
.program-sections { display: grid; gap: 1.25rem; }
.program-section-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}
.program-section-card:hover { border-color: var(--line-cyan); }
.section-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--cyan-200);
  line-height: 1;
  user-select: none;
  min-width: 56px;
}
.program-section-card p { color: var(--muted); }

/* Weekly activities — chip pills, distinct from the boxy cards elsewhere on this page */
.activity-pills { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.activity-pills.center { justify-content: center; }
.activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.3rem 0.65rem 0.65rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  transition: all var(--dur) var(--ease), transform 0.35s var(--ease-spring);
}
.activity-pill:hover { border-color: var(--line-cyan); background: var(--cyan-50); transform: translateY(-2px); }
.activity-pill .icon-dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(155deg, var(--cyan-500), var(--cyan-700));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.activity-pill .icon-dot svg { width: 18px; height: 18px; color: #fff; stroke-width: 2; }
.activity-pill span { font-family: var(--font-display); font-weight: 700; font-size: 0.94rem; color: var(--ink); }

/* Eligibility callout — double-bezel treatment */
.eligibility-callout {
  padding: 8px;
  background: linear-gradient(155deg, var(--cyan-200), var(--cyan-50));
  border-radius: calc(var(--radius-lg) + 6px);
  box-shadow: var(--shadow-md);
}
.eligibility-callout-inner {
  background: var(--bg-deep);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.eligibility-callout-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 10%, rgba(34,194,236,0.22) 0%, transparent 65%);
}
.eligibility-callout-inner > * { position: relative; }
.eligibility-callout-inner h3 { color: #fff; margin-bottom: 0.5rem; }
.eligibility-callout-inner p { color: rgba(255,255,255,0.7); margin: 0; }

.hours-location { display: grid; grid-template-columns: 1fr 1.5fr; gap: 1.75rem; align-items: start; }
.hours-card, .location-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--line);
  height: 100%;
}
.hours-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.hours-item:last-child { border-bottom: none; }
.hours-item span { font-weight: 600; color: var(--ink); font-family: var(--font-display); font-size: 0.94rem; }
.hours-item .time { color: var(--muted); font-size: 0.88rem; font-family: var(--font-body); font-weight: 400; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 1.25rem; }
.map-embed iframe { display: block; width: 100%; height: 280px; border: none; }

/* === SERVICES PAGE === */
.services-list { display: grid; gap: 5.5rem; }
.service-item { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }
.service-item-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.service-item-img img { width: 100%; height: 100%; object-fit: cover; }
.service-item-text h2 { margin-bottom: 1rem; }
.service-item-text p { color: var(--muted); font-size: 1.03rem; }

.service-overview-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-overview-cell { background: var(--bg); padding: 2rem 1.75rem; transition: background var(--dur) var(--ease); }
.service-overview-cell:hover { background: var(--bg-tint); }
.service-overview-cell .icon-box { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 1.1rem; }
.service-overview-cell .icon-box svg { width: 21px; height: 21px; }
.service-overview-cell h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.service-overview-cell p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* === CAREERS === */
.careers-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/2; }
.careers-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.85rem; }
.perk-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.perk-item .icon-box { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; margin: 0; }
.perk-item .icon-box svg { width: 20px; height: 20px; }
.perk-item strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 0.96rem; margin-bottom: 0.15rem; }
.perk-item span { font-size: 0.86rem; color: var(--muted); }

.career-form {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-group label .required { color: var(--cyan-700); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--line-cyan);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  background: var(--bg);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan-600);
  box-shadow: 0 0 0 4px var(--cyan-100);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.file-upload-box {
  border: 2px dashed var(--line-cyan);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  background: var(--bg-tint);
}
.file-upload-box:hover, .file-upload-box.drag-over { border-color: var(--cyan-600); background: var(--cyan-50); }
.file-upload-box svg { color: var(--cyan-700); margin-bottom: 0.75rem; }
.file-upload-box p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.file-upload-box strong { color: var(--cyan-800); cursor: pointer; }
.file-name-display { margin-top: 0.75rem; font-size: 0.88rem; color: var(--cyan-800); font-weight: 600; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 1.5rem; }
.contact-info-card {
  background: var(--bg-deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 100% 0%, rgba(34,194,236,0.22) 0%, transparent 65%);
}
.contact-info-card > * { position: relative; }
.contact-info-card h2 { color: #fff; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item h4 { color: var(--cyan-300); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; font-family: var(--font-display); }
.contact-info-item p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }
.contact-info-item a { color: rgba(255,255,255,0.85); }
.contact-info-item a:hover { color: #fff; }
.contact-social { display: flex; gap: 0.75rem; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(34,194,236,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease);
}
.contact-social a:hover { background: var(--cyan-600); }
.contact-social svg { width: 18px; height: 18px; color: #fff; }

.contact-form {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

/* === FOOTER === */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.8);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 90% 0%, rgba(34,194,236,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.footer > .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 1.1rem; display: flex; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--cyan-700); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }

.footer h4 { color: #fff; font-size: 0.92rem; margin-bottom: 1.25rem; font-weight: 700; font-family: var(--font-display); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--dur) var(--ease); }
.footer-links a:hover { color: var(--cyan-400); }
.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact-item svg { color: var(--cyan-500); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--cyan-400); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid, .split-block, .highlights-inner,
  .careers-intro, .service-item, .service-item.reverse,
  .contact-grid { grid-template-columns: 1fr; direction: ltr; }
  .hero-media { order: -1; width: 100%; max-width: 420px; margin: 0 auto; }
  .services-bento { grid-template-columns: 1fr; }
  .bento-featured { min-height: 280px; }
  .bento-side { grid-template-columns: 1fr 1fr; }
  .hours-location { grid-template-columns: 1fr; }
  .service-overview-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-watermark { width: 240px; opacity: 0.35; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.75rem 1.5rem;
    gap: 0.15rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.mobile-open a { margin: 0; padding: 0.7rem 0; width: 100%; }
  .nav-links.mobile-open .nav-cta-mobile { display: inline-flex; margin-top: 0.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-chip { position: static; margin-top: -2rem; margin-left: 1rem; }
  .bento-side { grid-template-columns: 1fr; }
  .service-overview-row { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .eligibility-callout-inner { grid-template-columns: 1fr; padding: 2rem; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .career-form, .contact-form { padding: 2rem; }
  .page-hero { padding: 5.5rem 0 3.5rem; text-align: left; }
  .page-hero-watermark { display: none; }
}

@media (max-width: 480px) {
  .feature-row { grid-template-columns: auto 1fr; row-gap: 0.5rem; }
}

/* === FORM ERROR STATE === */
.form-error {
  display: none;
  background: #FDF1EC;
  border: 1px solid #F0C4AE;
  color: #9A3B12;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.form-error.show { display: block; }
.form-error a { color: #9A3B12; text-decoration: underline; }

/* === FORM SUCCESS STATE === */
.form-success { display: none; text-align: center; padding: 3rem 1.5rem; }
.form-success.show { display: block; }
.form-success .icon-box { width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 1.25rem; }
.form-success .icon-box svg { width: 30px; height: 30px; }
.form-success h3 { color: var(--ink); margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); }

/* === SKIP LINK (accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--cyan-700);
  color: white;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-display);
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* === Focus visible === */
:focus-visible {
  outline: 2.5px solid var(--cyan-600);
  outline-offset: 3px;
  border-radius: 4px;
}
