/* ==========================================================================
   AITCOH Contractor Success Program : Recruitment Landing Page v2 ("lux")
   Aging In The Comfort Of Home®

   Luxurious rebuild of the contractor-facing landing page from the owner's
   draft direction: oversized Montserrat display type, frosted glass panels,
   floating rate cards, soft radial washes, generous rounding. Palette is the
   muted RECRUITMENT CAMPAIGN system, not the bright corporate palette.
   Gold is never body-text color on light backgrounds; large display use only.
   No em dashes anywhere in this project, including comments.
   Link order: fonts.css then lux.css. v1 styles (landing.css) remain for the
   archived page and article.html; this file is self-contained for index.html.
   ========================================================================== */

:root {
  --blue:       #355B86;
  --blue-2:     #4F78A8;
  --powder:     #DCE7F2;
  --fog:        #EEF4F8;
  --gold:       #D8BE69;
  --gold-2:     #E6D7A2;
  --gold-deep:  #A8812D;
  --cream:      #F3EEDB;
  --white:      #FAFAF8;
  --ivory:      #F6F4EF;
  --mist:       #E8ECEF;
  --ink:        #2F3338;
  --muted:      #66727E;
  --heading:    #274B70;
  --line:       rgba(53, 91, 134, 0.14);
  --line-faint: rgba(53, 91, 134, 0.08);
  --glass:      rgba(255, 255, 255, 0.68);
  --shadow:      0 24px 80px rgba(40, 61, 82, 0.12);
  --shadow-soft: 0 12px 40px rgba(40, 61, 82, 0.08);
  --radius:    28px;
  --radius-sm: 18px;
  --max: 1180px;
  --font-display: 'Montserrat', 'Avenir Next', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Source Sans Pro', 'Avenir Next', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(216, 190, 105, 0.11), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(79, 120, 168, 0.12), transparent 32%),
    linear-gradient(180deg, #FBFBF8 0%, #F6F8F9 48%, #F9F7F1 100%);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, .eyebrow, .stat strong, .step-num, .rate, .mini-label, .process-num {
  font-family: var(--font-display);
}
em.brand, .brand { font-style: italic; }
sup { font-size: 0.6em; }

:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 2px; border-radius: 6px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 72px 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.74rem; font-weight: 800; color: var(--blue);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--gold); }

h2 {
  font-size: clamp(2.1rem, 3.9vw, 3.7rem);
  line-height: 1.04; letter-spacing: -0.04em;
  margin: 0.45rem 0 1.1rem; color: var(--heading);
}
.lede { font-size: 1.18rem; color: var(--muted); max-width: 720px; margin: 0; }

.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

/* NAV ---------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50; padding: 14px 0;
  background: rgba(250, 250, 248, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-faint);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(40, 61, 82, 0.07); }
.nav { display: flex; align-items: center; gap: 28px; position: relative; }
.brand-link { display: flex; align-items: center; min-width: 0; text-decoration: none; }
.brand-link img { width: 250px; max-width: 44vw; height: auto; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 24px; font-size: 0.92rem; color: #50606F; }
.nav-links a { text-decoration: none; font-weight: 650; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px;
  background: var(--blue); color: #fff !important; font-weight: 800;
  font-family: var(--font-display); font-size: 0.85rem;
  box-shadow: 0 10px 26px rgba(53, 91, 134, 0.18);
}
.menu {
  display: none; margin-left: auto; cursor: pointer;
  width: 46px; height: 44px; align-items: center; justify-content: center;
  border: 1px solid var(--line-faint); border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 1.45rem; line-height: 1; color: var(--blue);
}

/* HERO --------------------------------------------------------------------- */
.hero { padding: 58px 0 72px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 10% auto auto -100px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(220, 231, 242, 0.52); filter: blur(16px); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.03fr 0.97fr; gap: 58px; align-items: center; }
.hero h1 {
  font-size: clamp(3.1rem, 6.2vw, 6.1rem);
  line-height: 0.93; letter-spacing: -0.055em;
  margin: 0.65rem 0 1.4rem; color: #24496F;
}
.hero h1 em { display: block; font-style: normal; color: var(--gold-deep); font-weight: 700; }
.hero-copy { font-size: 1.2rem; color: #586775; max-width: 690px; margin: 0 0 24px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 6px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.7); border: 1px solid rgba(53, 91, 134, 0.12);
  font-size: 0.87rem; color: #496175; font-weight: 650;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 22px; border-radius: 999px; text-decoration: none;
  font-weight: 800; font-family: var(--font-display); font-size: 0.92rem;
  border: 1px solid transparent; transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 34px rgba(53, 91, 134, 0.2); }
.btn-primary:hover { transform: translateY(-2px); background: #2F5279; }
.btn-ghost { background: rgba(255, 255, 255, 0.72); border-color: rgba(53, 91, 134, 0.15); color: var(--blue); }
.btn-ghost:hover { transform: translateY(-2px); background: #fff; }

.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: 42px; overflow: hidden;
  min-height: 610px; background: #E9EEF2;
  box-shadow: var(--shadow); border: 10px solid rgba(255, 255, 255, 0.7);
}
.hero-frame img {
  width: 100%; height: 100%; min-height: 610px;
  object-fit: cover; object-position: 50% 28%;
  filter: saturate(0.9) contrast(0.99);
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 50%, rgba(24, 46, 68, 0.16));
}
.hero-card {
  position: absolute; left: -38px; bottom: 36px; z-index: 3;
  width: min(390px, 82%); padding: 22px 24px; border-radius: 24px;
}
.mini-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); font-weight: 800; }
.hero-rate { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; font-weight: 800; color: #254F78; margin: 8px 0 6px; }
.hero-card p { margin: 0; color: #617180; font-size: 0.9rem; }
.float-badge {
  position: absolute; right: -20px; top: 42px; z-index: 4;
  padding: 13px 16px; border-radius: 18px;
  background: rgba(246, 244, 239, 0.85); border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  color: #47617B; font-size: 0.87rem; font-weight: 750;
}
.float-badge strong { display: block; color: var(--gold-deep); font-size: 1.05rem; font-family: var(--font-display); }

/* METRICS ------------------------------------------------------------------ */
.metrics { margin-top: 40px; }
.metric-wrap { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 26px; overflow: hidden; }
.stat { padding: 24px 22px; background: rgba(255, 255, 255, 0.72); border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: #2D547B; font-size: 1.5rem; line-height: 1.05; margin-bottom: 6px; }
.stat span { color: #6A7884; font-size: 0.88rem; }
.metrics-note { margin: 12px 4px 0; font-size: 0.8rem; color: #7A8791; }

/* VALUE -------------------------------------------------------------------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.value-card {
  padding: 26px; border-radius: 24px;
  background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(53, 91, 134, 0.1);
  box-shadow: var(--shadow-soft); transition: transform 0.2s ease, background 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); background: #fff; }
.icon {
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--fog), #fff);
  border: 1px solid rgba(53, 91, 134, 0.1); color: var(--blue); margin-bottom: 18px;
}
.icon svg { width: 24px; height: 24px; }
.value-card h3 { margin: 0 0 8px; color: #2B5278; font-size: 1.1rem; }
.value-card p { margin: 0; color: #697784; font-size: 0.95rem; }

/* GROWTH ------------------------------------------------------------------- */
.growth-shell {
  margin-top: 42px; padding: 32px; border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 244, 248, 0.72));
  border: 1px solid rgba(53, 91, 134, 0.11); box-shadow: var(--shadow-soft);
}
.growth-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; }
.growth-card { padding: 26px; border-radius: 24px; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(53, 91, 134, 0.1); }
.growth-card.featured {
  background: linear-gradient(145deg, rgba(216, 190, 105, 0.16), rgba(255, 255, 255, 0.9));
  border-color: rgba(216, 190, 105, 0.32);
}
.step-num { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; color: #7890A6; }
.growth-card h3 { font-size: 1.35rem; margin: 8px 0 10px; color: #2B5278; }
.rate { font-size: 1.8rem; color: var(--gold-deep); font-weight: 800; line-height: 1; margin: 10px 0; }
.growth-card p { margin: 0; color: #6A7884; font-size: 0.93rem; }
.growth-arrow { display: grid; place-items: center; color: #8AA0B6; font-size: 1.65rem; }
.criteria { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; }
.criteria span { padding: 7px 10px; border-radius: 999px; background: rgba(53, 91, 134, 0.06); color: #5D7184; font-size: 0.82rem; font-weight: 650; }

/* MEANING ------------------------------------------------------------------ */
.meaning { overflow: hidden; }
.meaning-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
.photo-panel { border-radius: 36px; overflow: hidden; position: relative; min-height: 510px; box-shadow: var(--shadow); }
.photo-panel img {
  width: 100%; height: 100%; min-height: 510px;
  object-fit: cover; object-position: 62% 30%;
  filter: saturate(0.85) brightness(1.03);
}
.photo-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(35, 67, 96, 0.30)); }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.project-chip {
  padding: 15px 16px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(53, 91, 134, 0.1);
  font-weight: 700; color: #4E6579;
}

/* PERSONAS ----------------------------------------------------------------- */
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 38px; }
.person {
  background: rgba(255, 255, 255, 0.74); border: 1px solid rgba(53, 91, 134, 0.1);
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-soft);
}
.person img { width: 100%; height: auto; aspect-ratio: 1.18 / 1; object-fit: cover; filter: saturate(0.85); }
.person-body { padding: 18px 18px 20px; }
.person h3 { margin: 0 0 5px; color: #2B5278; font-size: 1rem; }
.person p { margin: 0; color: #73808B; font-size: 0.88rem; }

/* PROCESS ------------------------------------------------------------------ */
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 40px; position: relative; }
.process-grid::before {
  content: ""; position: absolute; left: 7%; right: 7%; top: 25px; height: 1px; z-index: -1;
  background: linear-gradient(90deg, transparent, var(--powder), var(--gold-2), var(--powder), transparent);
}
.process-step { text-align: center; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 13px;
  background: rgba(255, 255, 255, 0.88); border: 1px solid rgba(53, 91, 134, 0.14);
  color: var(--blue); font-weight: 800; box-shadow: var(--shadow-soft);
}
.process-step h3 { font-size: 0.96rem; margin: 0 0 6px; color: #355C82; }
.process-step p { font-size: 0.82rem; color: #7A8791; margin: 0; }

/* EXPECTATIONS ------------------------------------------------------------- */
.proof-shell { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch; margin-top: 38px; }
.quote-card, .proof-list {
  padding: 30px; border-radius: 28px;
  background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(53, 91, 134, 0.1);
  box-shadow: var(--shadow-soft);
}
.quote-card .kicker {
  font-family: var(--font-display); color: var(--gold-deep);
  font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
}
.quote-card blockquote { font-size: 1.5rem; line-height: 1.3; margin: 14px 0 0; color: #325A80; font-weight: 650; }
.quote-card small { display: block; margin-top: 14px; color: #77838C; }
.proof-list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.proof-list li { display: flex; align-items: flex-start; gap: 11px; color: #5D6D7A; }
.check {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(53, 91, 134, 0.08); color: var(--blue);
  font-size: 0.78rem; font-weight: 900;
}

/* FAQ ---------------------------------------------------------------------- */
.faq { display: grid; gap: 10px; margin-top: 36px; max-width: 900px; }
.faq details {
  border-radius: 18px; background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 91, 134, 0.1); padding: 0 18px;
  box-shadow: 0 8px 24px rgba(40, 61, 82, 0.045);
}
.faq summary { list-style: none; cursor: pointer; padding: 18px 28px 18px 0; font-weight: 800; color: #355B80; position: relative; font-family: var(--font-display); font-size: 0.98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 15px; font-size: 1.35rem; color: var(--gold-deep); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 18px; color: #687784; }

/* APPLY -------------------------------------------------------------------- */
.apply-section { padding: 105px 0 96px; }
.apply-shell {
  position: relative; border-radius: 40px; padding: 38px;
  background: linear-gradient(145deg, rgba(53, 91, 134, 0.97), rgba(45, 79, 116, 0.92));
  box-shadow: 0 32px 90px rgba(37, 70, 101, 0.24); overflow: hidden; color: #fff;
}
.apply-shell::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  right: -120px; top: -170px; background: rgba(216, 190, 105, 0.22); filter: blur(4px);
}
.apply-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 34px; position: relative; z-index: 1; }
.apply-copy { padding: 18px 12px 18px 8px; }
.apply-copy .eyebrow { color: #F1E7C4; }
.apply-copy .eyebrow::before { background: #F1D985; }
.apply-copy h2 { color: #fff; margin-top: 0.5rem; }
.apply-copy > p { color: rgba(255, 255, 255, 0.74); }
.apply-points { display: grid; gap: 11px; margin-top: 26px; }
.apply-point { display: flex; gap: 10px; align-items: flex-start; color: rgba(255, 255, 255, 0.88); }
.apply-photo { margin: 30px 0 0; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.25); }
.apply-photo img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: 50% 30%; }
.apply-photo figcaption { padding: 10px 14px; font-size: 0.78rem; color: rgba(255, 255, 255, 0.72); }

.form-card { background: rgba(255, 255, 255, 0.96); color: var(--ink); border-radius: 30px; padding: 28px; box-shadow: 0 22px 60px rgba(20, 42, 65, 0.18); }
.form-card h3 { margin: 0; color: #2D557C; font-size: 1.35rem; }
.form-card .sub { margin: 6px 0 22px; color: #7A8791; font-size: 0.9rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 0.8rem; font-weight: 800; color: #5A6C7D; }
input, select, textarea {
  width: 100%; border: 1px solid #D9E1E7; border-radius: 13px;
  background: #FBFCFC; padding: 12px 13px; outline: none; color: #30404D;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: #7C9AB7; box-shadow: 0 0 0 4px rgba(79, 120, 168, 0.08); background: #fff;
}
textarea { min-height: 92px; resize: vertical; }
.submit-row { display: flex; align-items: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.submit-row button { border: 0; }
.form-note { font-size: 0.74rem; color: #87939D; margin: 12px 0 0; }
.form-success {
  display: none; margin-top: 16px; padding: 14px; border-radius: 14px;
  background: #EEF6F0; color: #376B49; border: 1px solid #D4E7D9; font-size: 0.9rem;
}

/* DISCLOSURE + FOOTER ------------------------------------------------------ */
.disclaimer { background: var(--mist); padding: 30px 0; }
.disclaimer p { font-size: 0.85rem; color: #5D6A75; max-width: 90ch; margin: 0 auto 10px; text-align: center; }
.disclaimer p:last-child { margin-bottom: 0; }

footer { padding: 44px 0; border-top: 1px solid var(--line-faint); background: rgba(250, 250, 248, 0.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; }
.footer-grid h3 { font-size: 0.95rem; margin: 0 0 12px; color: var(--heading); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; font-size: 0.9rem; color: #6A7884; }
.footer-grid li { margin-bottom: 7px; }
.footer-grid a { color: #55708A; text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }
.footer-logo img { width: 240px; max-width: 60vw; margin-bottom: 14px; }
.footer-legal {
  margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line-faint);
  display: flex; flex-wrap: wrap; gap: 8px 30px; justify-content: space-between;
  font-size: 0.82rem; color: #78838B;
}
.footer-legal p { margin: 0; }

/* RESPONSIVE --------------------------------------------------------------- */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .menu { display: flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    padding: 12px; gap: 2px; flex-direction: column; align-items: stretch;
    background: rgba(250, 250, 248, 0.97); border: 1px solid var(--line);
    border-radius: 18px; box-shadow: var(--shadow); z-index: 60;
  }
  .nav.open .nav-links a { padding: 13px 12px; border-radius: 10px; }
  .nav.open .nav-links a:not(.nav-cta):hover { background: var(--fog); }
  .nav.open .nav-cta { margin-top: 8px; }
  .hero-grid, .meaning-grid, .apply-grid, .proof-shell { grid-template-columns: 1fr; }
  .hero-frame { min-height: 540px; }
  .hero-frame img { min-height: 540px; }
  .hero-card { left: 18px; }
  .metric-wrap, .value-grid, .people-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-track { grid-template-columns: 1fr; }
  .growth-arrow { transform: rotate(90deg); }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .process-grid::before { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(100% - 26px, var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 34px; }
  .brand-link img { width: 210px; max-width: 66vw; }
  .hero h1 { font-size: clamp(2.9rem, 15vw, 4.9rem); }
  .hero-grid { gap: 34px; }
  .hero-frame { min-height: 480px; border-radius: 28px; }
  .hero-frame img { min-height: 480px; }
  .float-badge { right: 8px; top: 12px; }
  .hero-card { bottom: 18px; }
  .metric-wrap, .value-grid, .people-grid, .project-grid, .form-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .apply-shell { padding: 22px; border-radius: 28px; }
  .form-card { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}
/* Touch and small-screen refinements */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 48px 0; }
  .apply-section { padding: 72px 0 64px; }
  .hero { padding-bottom: 56px; }
  .hero-actions .btn, .submit-row .btn { width: 100%; }
  .growth-shell { padding: 20px; border-radius: 26px; }
  .quote-card, .proof-list { padding: 22px; }
  .quote-card blockquote { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (pointer: coarse) {
  .faq summary { padding-top: 20px; padding-bottom: 20px; }
  .project-chip { padding: 17px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
