/* =========================================================
   Caring About Lives (CAL) — Design System
   Brand: two people, one heart. Blue + Green figures, Orange heart.
   ========================================================= */

:root {
  /* Brand */
  --navy:   #0F4C81;
  --blue:   #1C75BC;
  --green:  #5FA524;   /* AA-safe text green (brand #6FB52E for large graphics) */
  --green-bright: #6FB52E;
  --orange: #F7941E;
  --orange-deep: #EC6A1E;

  /* Neutrals (cool, clean) */
  --ink:    #16232E;
  --slate:  #4A5A67;
  --cloud:  #F4F8FB;
  --mist:   #E4EEF5;
  --line:   #D8E5EF;
  --paper:  #FFFFFF;

  /* Type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 20px;
  --radius-sm: 14px;

  /* Fluid spacing scale */
  --space-section: clamp(3.25rem, 8vw, 7rem);
  --space-lg: clamp(1.5rem, 4vw, 3rem);

  /* Layered, brand-tinted shadows for depth */
  --shadow-sm: 0 1px 2px rgba(15,76,129,.05), 0 4px 14px rgba(15,76,129,.06);
  --shadow-md: 0 4px 12px rgba(15,76,129,.08), 0 18px 44px rgba(15,76,129,.12);
  --shadow-lg: 0 8px 24px rgba(15,76,129,.10), 0 36px 80px rgba(15,76,129,.18);
  --ring: 0 0 0 1px rgba(15,76,129,.06);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--body);
  font-size: 1.125rem;      /* 18px base for readability */
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Anchored sections shouldn't hide under the sticky header */
[id] { scroll-margin-top: 92px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.08;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.section { padding: var(--space-section) 0; }
.section--tint { background: var(--cloud); }
.section--navy { background: var(--navy); color: #EAF2F9; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green-bright));
}
.section--navy .eyebrow { color: #8FD0FF; }

.h-lead { font-size: clamp(2rem, 5vw, 3.2rem); margin: .6rem 0 1rem; }
.p-lead { font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: var(--slate); max-width: 60ch; }
.section--navy .p-lead { color: #C7DCEC; }

.center { text-align: center; margin-inline: auto; }
.center .p-lead { margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue); --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--orange); --btn-fg: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: #fff;
  position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn--primary:hover::after { left: 130%; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); background: #fff; }
.btn--on-navy { background:#fff; color: var(--navy); }
.btn--on-navy.btn--ghost { background: transparent; color:#fff; border-color: rgba(255,255,255,.4); }
.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--navy), var(--blue) 38%, var(--green-bright) 72%, var(--orange)) 1;
  transition: border-bottom-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0; min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand img { height: 46px; width: auto; }
.brand-name { display: none; }

.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; }
.nav-links a {
  font-family: var(--display); font-weight: 500; color: var(--navy);
  padding: .55rem .85rem; border-radius: 10px; font-size: 1rem;
  transition: background .2s, color .2s;
}
.nav-links a:hover { text-decoration: none; background: var(--cloud); color: var(--blue); }
.nav-links a[aria-current="page"] { color: var(--blue); background: var(--mist); }
.nav-cta { margin-left: .4rem; }

.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  width: 46px; height: 46px; border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2.5px; border-radius: 3px;
  background: var(--navy); position: relative; transition: .25s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; inset: 100% 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: .6rem; gap: .2rem;
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path .3s var(--ease), opacity .25s;
  }
  .nav-links.open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .85rem 1rem; font-size: 1.1rem; }
  .nav-cta { margin: .4rem 0 .2rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; background: var(--cloud); isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(55% 50% at 12% -5%, rgba(28,117,188,.16), transparent 60%),
    radial-gradient(55% 55% at 95% 5%, rgba(111,181,46,.18), transparent 62%),
    radial-gradient(40% 40% at 80% 90%, rgba(247,148,30,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--cloud) 100%);
}
/* subtle dot texture for depth */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image: radial-gradient(rgba(15,76,129,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero-arc { position: absolute; left: 0; right: 0; bottom: -1px; z-index: -1; width: 100%; height: auto; }
.hero-inner {
  display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(5rem, 11vw, 8.5rem);
}
.hero h1 { font-size: clamp(2.3rem, 5.8vw, 4.15rem); font-weight: 800; }
.hero h1 .accent { color: var(--blue); }
.hero h1 .accent-g { color: var(--green); }
.hero .p-lead { margin-top: 1.1rem; }
.hero-cta { margin-top: 1.8rem; }
.hero-trust {
  margin-top: 2.2rem; display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem 1.6rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item b { font-family: var(--display); color: var(--navy); font-size: 1.05rem; }
.trust-item span { font-size: .85rem; color: var(--slate); }

.hero-art { position: relative; }
.hero-card {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid rgba(255,255,255,.9); border-radius: 24px;
  box-shadow: var(--shadow-lg), var(--ring); padding: 1.7rem; position: relative; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: 24px; pointer-events: none;
  background: linear-gradient(135deg, rgba(28,117,188,.4), rgba(111,181,46,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.hero-card .hc-figure { display: grid; place-items: center; padding: 1rem 0 1.4rem; }
.hero-card .hc-figure img { width: min(240px, 70%); }
.hc-quote { font-family: var(--display); font-weight: 600; color: var(--navy);
  font-size: 1.12rem; line-height: 1.35; text-align: center; }
.hc-quote span { color: var(--orange-deep); }
.hc-badge {
  position: absolute; top: 1rem; right: 1rem; background: var(--cloud);
  color: var(--green); font-family: var(--display); font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px;
  border: 1px solid var(--mist);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr; gap: clamp(1.75rem, 5vw, 2.5rem);
    padding-top: clamp(2rem, 6vw, 3rem); padding-bottom: clamp(3.5rem, 14vw, 6rem);
  }
  .hero-copy { order: 1; }        /* headline leads */
  .hero-art  { order: 2; width: 100%; max-width: 440px; margin-inline: auto; }
  .hero-card .hc-figure img { width: min(200px, 55%); }
}
@media (max-width: 460px) {
  .hero-trust { grid-template-columns: 1fr 1fr; }
}

/* ---------- Section header ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.sec-head.center { margin-inline: auto; }

/* ---------- Pathways (SLS / ILS) ---------- */
.pathways { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.pathway {
  position: relative; border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 2.4rem);
  color: #fff; overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pathway:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pathway--sls { background: linear-gradient(150deg, var(--blue), var(--navy)); }
.pathway--ils { background: linear-gradient(150deg, var(--green-bright), #3f7d1c); }
.pathway h3 { color: #fff; font-size: clamp(1.5rem, 4vw, 1.7rem); }
.pathway .tag { font-family: var(--display); font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.pathway p { color: rgba(255,255,255,.92); margin-top: .5rem; }
.pathway ul { list-style: none; margin: 1.1rem 0 1.4rem; display: grid; gap: .5rem; }
.pathway li { position: relative; padding-left: 1.5rem; color: rgba(255,255,255,.95); font-size: .98rem; }
.pathway li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; opacity: .9; }
.pathway .btn { margin-top: auto; align-self: flex-start; }
.pathway .glyph { position: absolute; right: -30px; bottom: -30px; width: 180px; opacity: .16;
  transition: transform .5s var(--ease); }
.pathway:hover .glyph { transform: translate(-8px, -8px) rotate(-6deg); }
@media (max-width: 760px) { .pathways { grid-template-columns: 1fr; } }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.6rem; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s;
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }
.svc .ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--cloud), #fff); border: 1px solid var(--mist);
  color: var(--blue); margin-bottom: 1rem; transition: transform .3s var(--ease);
}
.svc:hover .ico { transform: scale(1.06) rotate(-3deg); }
.svc:nth-child(3n+2) .ico { color: var(--green); }
.svc:nth-child(3n) .ico { color: var(--orange-deep); }
.svc h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.svc p { font-size: .96rem; color: var(--slate); }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Approach / values ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.value {
  padding: 1.5rem; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value .num {
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  display: inline-grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 8px;
  color: var(--green); background: rgba(111,181,46,.12);
}
.value h3 { font-size: 1.14rem; margin: .7rem 0 .35rem; }
.value p { font-size: .94rem; color: var(--slate); }
@media (max-width: 960px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values { grid-template-columns: 1fr; } }

/* Quote / mission band */
.mission-band {
  border-radius: var(--radius); background:
    linear-gradient(135deg, rgba(28,117,188,.06), rgba(111,181,46,.08));
  border: 1px solid var(--mist); padding: clamp(2rem, 5vw, 3.4rem);
  position: relative; overflow: hidden;
}
.mission-band blockquote {
  font-family: var(--display); font-weight: 600; color: var(--navy);
  font-size: clamp(1.35rem, 3.4vw, 2.1rem); line-height: 1.28; max-width: 24ch;
}
.mission-band cite { display: block; margin-top: 1.1rem; font-style: normal;
  color: var(--slate); font-size: .95rem; }
.mission-band .mark { position: absolute; right: -20px; top: -20px; width: 200px; opacity: .1; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; border-radius: var(--radius); padding: clamp(2.2rem, 6vw, 4rem);
  text-align: center; box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.95); max-width: 52ch; margin: .8rem auto 1.7rem; font-size: 1.1rem; }
.cta-band .btn--primary { background: #fff; color: var(--orange-deep); }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media {
  background: linear-gradient(150deg, var(--cloud), #fff); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); display: grid; place-items: center;
  min-height: 260px;
}
.split-list { list-style: none; display: grid; gap: .8rem; margin-top: 1.2rem; }
.split-list li { position: relative; padding-left: 1.9rem; color: var(--slate); }
.split-list li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 12px; height: 12px;
  border-radius: 4px; background: linear-gradient(135deg, var(--blue), var(--green-bright));
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}
/* purely decorative logo panels add bulk on phones — hide them */
@media (max-width: 560px) {
  .split-media { min-height: 0; padding: 1.75rem; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.contact-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.contact-item { display: flex; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.contact-item:first-of-type { border-top: 0; }
.contact-item .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display:grid; place-items:center;
  background: var(--cloud); color: var(--blue); }
.contact-item h3 { font-size: 1.02rem; }
.contact-item a, .contact-item p { color: var(--slate); font-size: 1rem; overflow-wrap: anywhere; }
.contact-item a { color: var(--blue); }
.contact-item > div { min-width: 0; }

.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; padding: .8rem .9rem;
  border: 1px solid var(--line); border-radius: 10px; background: var(--cloud); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(28,117,188,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .85rem; color: var(--slate); margin-top: .4rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--cloud); position: relative; overflow: clip; }
.page-hero::before {
  content:""; position:absolute; inset:0; z-index:0;
  background: radial-gradient(50% 60% at 85% 0%, rgba(111,181,46,.12), transparent 60%),
              radial-gradient(50% 60% at 8% 10%, rgba(28,117,188,.12), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; padding: clamp(2.6rem, 6vw, 4.4rem) 0; }
.crumbs { font-size: .85rem; color: var(--slate); margin-bottom: .8rem; }
.crumbs a { color: var(--blue); }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin: .55rem 0 .9rem; }
.page-hero .eyebrow + h1 { margin-top: .55rem; }
.page-hero .p-lead { margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C7DCEC; padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-grid img.flogo { height: 60px; width: auto; margin-bottom: 1rem; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1rem; }
.site-footer ul { list-style: none; display: grid; gap: .55rem; }
.site-footer a { color: #C7DCEC; }
.site-footer a:hover { color: #fff; }
.footer-about { font-size: .96rem; color: #A9C6DE; max-width: 34ch; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem; color: #8FB2CE;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .2s;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 1.4rem;
  font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.6rem; color: var(--blue); line-height: 1; flex: none;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-item .faq-a { padding: 0 1.4rem 1.3rem; color: var(--slate); }
.faq-item .faq-a p { margin-bottom: .7rem; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }
.faq-item .faq-a a { font-weight: 600; }

/* ---------- Photography ---------- */
/* Turn a .split-media panel into a full-bleed cropped photo */
.split-media--photo {
  padding: 0; background: none; border: 0; min-height: 0;
  overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-md);
}
.split-media--photo img { width: 100%; height: 100%; object-fit: cover; }

/* Photo inside the hero card */
.hc-photo {
  border-radius: 16px; overflow: hidden; aspect-ratio: 5 / 4;
  margin-bottom: 1.2rem; box-shadow: var(--shadow-sm);
}
.hc-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Wide banner photo */
.photo-banner {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 21 / 9;
}
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .photo-banner { aspect-ratio: 3 / 2; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* small utility */
.muted { color: var(--slate); }
.mt-0 { margin-top: 0; }
.flag {
  background:#FFF7E9; border:1px solid #F6D79A; color:#8a5a08;
  padding:.9rem 1.1rem; border-radius:12px; font-size:.92rem;
}
