/* ============================================================
   Blue Ash Behavior — Editorial design system (v3)
   Restraint · scale · whitespace · hairlines · photography
   Brand teal #5bafa6 · deep teal-ink · warm ivory paper
   Type: Fraunces (display) · Inter (text)
   ============================================================ */

:root {
  --paper:      #f6f1e8;   /* warm ivory canvas */
  --paper-2:    #efe7d8;   /* slightly deeper panel */
  --ink:        #15302b;   /* deep teal-charcoal — text & dark sections */
  --ink-2:      #2c423c;
  --forest:     #102723;   /* darkest — footer / immersive sections */
  --teal:       #2c7d71;   /* primary accent */
  --teal-bright:#5bafa6;   /* logo teal — used sparingly */
  --clay:       #bf6f4c;   /* warm accent, used very sparingly */
  --muted:      #5f6f68;   /* secondary text */
  --muted-2:    #8a948d;
  --line:       rgba(21,48,43,.14);   /* hairline on paper */
  --line-soft:  rgba(21,48,43,.08);
  --line-dark:  rgba(255,255,255,.16); /* hairline on dark */
  --white:      #fffdf8;

  --maxw: 1280px;
  --gutter: clamp(22px, 5vw, 64px);
  --ease: cubic-bezier(.22,.7,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
::selection { background: var(--teal-bright); color: var(--forest); }

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: "Fraunces", Georgia, serif; color: var(--ink); font-weight: 400; line-height: 1.04; letter-spacing: -.015em; }
.display {
  font-size: clamp(3rem, 7.2vw, 6.2rem);
  font-weight: 380;
  line-height: .98;
  letter-spacing: -.025em;
}
.h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); font-weight: 390; letter-spacing: -.02em; line-height: 1.02; }
.h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); font-weight: 420; }
em, .italic { font-style: italic; }
.serif { font-family: "Fraunces", serif; }

p { max-width: 64ch; }
.lede { font-size: clamp(1.12rem, 1.5vw, 1.32rem); line-height: 1.6; color: var(--ink-2); font-weight: 400; }
.muted { color: var(--muted); }

a { color: var(--teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--clay); }

/* eyebrow / label */
.label {
  display: inline-flex; align-items: center; gap: .8rem;
  font: 600 .72rem/1 "Inter", sans-serif;
  letter-spacing: .22em; text-transform: uppercase; color: var(--teal);
}
.label::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .6; }
.label.plain::before { display: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(72px, 11vw, 150px) 0; position: relative; }
.section.sm { padding: clamp(54px, 7vw, 92px) 0; }
.rule { height: 1px; background: var(--line); border: 0; }
.center { text-align: center; }
.maxw-prose { max-width: 56ch; }
.mt-s{margin-top:.6rem}.mt-m{margin-top:1.2rem}.mt-l{margin-top:2rem}.mt-xl{margin-top:3rem}

/* section heading block */
.head { max-width: 760px; }
.head .h2 { margin-top: 1.2rem; }
.head .lede { margin-top: 1.4rem; color: var(--muted); }
.head.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  font: 500 1rem/1 "Inter", sans-serif; letter-spacing: .01em;
  padding: 1.05rem 1.7rem; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: all .3s var(--ease); white-space: nowrap;
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn svg { width: 17px; height: 17px; }
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--teal); color: var(--white); }
.btn-out { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-out:hover { border-color: var(--ink); color: var(--ink); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--paper); color: var(--ink); }
.btn-ondark { background: transparent; color: var(--white); border-color: var(--line-dark); }
.btn-ondark:hover { background: rgba(255,255,255,.1); color: var(--white); }
/* text link with arrow */
.tlink { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 3px; }
.tlink svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.tlink:hover { color: var(--teal); border-color: var(--teal); }
.tlink:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  position: fixed; background: rgba(246,241,232,.86);
  backdrop-filter: saturate(150%) blur(16px); -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom-color: var(--line);
}
.site-header.solid.up { transform: translateY(-100%); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo .brand-bird { height: 40px; width: auto; }
.logo .wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.logo .wordmark b { font: 600 1.12rem/1 "Inter", sans-serif; color: var(--ink); letter-spacing: .005em; }
.logo .wordmark b em { font-style: normal; color: var(--teal); }
.logo .wordmark span { font: 600 .54rem/1 "Inter"; letter-spacing: .36em; text-transform: uppercase; color: var(--teal); margin-top: 5px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { color: var(--ink-2); font: 500 .94rem/1 "Inter"; padding: .55rem .9rem; border-radius: 8px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: rgba(21,48,43,.05); }
.nav-links a.active { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font: 500 .92rem/1 "Inter"; color: var(--ink); }
.nav-phone svg { width: 15px; height: 15px; color: var(--teal); }
.nav-toggle { display: none; width: 46px; height: 46px; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* dark header variant (over dark hero / pages) handled by .on-dark */
.site-header.on-dark:not(.solid) .nav-links a { color: rgba(255,253,248,.82); }
.site-header.on-dark:not(.solid) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-header.on-dark:not(.solid) .nav-links a.active { color: var(--teal-bright); }
.site-header.on-dark:not(.solid) .logo .wordmark b { color: #fff; }
.site-header.on-dark:not(.solid) .logo .wordmark b em { color: var(--teal-bright); }
.site-header.on-dark:not(.solid) .nav-phone { color: #fff; }
.site-header.on-dark:not(.solid) .nav-toggle span { background: #fff; }

/* home: keep top-of-page links readable over the split hero (desktop only) */
@media (min-width: 1001px){
  body.home .site-header:not(.solid){ background: linear-gradient(180deg, rgba(16,39,35,.52), rgba(16,39,35,0)); }
  body.home .site-header:not(.solid) .brand-bird { filter: brightness(0) invert(1); }
  body.home .site-header:not(.solid) .nav-links a { color: rgba(255,253,248,.9); }
  body.home .site-header:not(.solid) .nav-links a:hover { color:#fff; background: rgba(255,255,255,.1); }
  body.home .site-header:not(.solid) .nav-links a.active { color: var(--teal-bright); }
  body.home .site-header:not(.solid) .logo .wordmark b { color:#fff; }
  body.home .site-header:not(.solid) .logo .wordmark b em { color: var(--teal-bright); }
  body.home .site-header:not(.solid) .nav-phone { color:#fff; }
  body.home .site-header:not(.solid) .nav-phone svg { color: var(--teal-bright); }
}

/* ---------- Hero (editorial, image bleeds right) ---------- */
.hero { position: relative; min-height: min(92vh, 920px); display: grid; grid-template-columns: 1.04fr .96fr; align-items: stretch; }
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px var(--gutter) 90px max(var(--gutter), calc((100vw - var(--maxw))/2 + var(--gutter)));
}
.hero-copy .display { margin: 1.6rem 0 0; }
.hero-copy .lede { margin-top: 1.8rem; max-width: 46ch; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.6rem; align-items: center; }
.hero-media { position: relative; overflow: hidden; background: var(--paper-2); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .vcaption {
  position: absolute; left: 30px; bottom: 30px; right: 30px; color: #fff; z-index: 2;
}
.hero-media::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(16,39,35,.55), transparent 42%); z-index: 1; }
.hero-media .vcaption p { font-family: "Fraunces", serif; font-style: italic; font-size: 1.15rem; line-height: 1.4; max-width: 34ch; }

/* inline trust line */
.trustline { display: flex; align-items: center; gap: 18px 26px; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.trustline .t-label { font: 600 .68rem/1 "Inter"; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }
.trustline .payers { display: flex; gap: 20px; flex-wrap: wrap; }
.trustline .payers span { font: 500 .9rem/1 "Inter"; color: var(--muted); }

/* ---------- Editorial number list (values / promises) ---------- */
.cols-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
.numbered { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.numbered .item { padding: 40px 30px 44px 0; border-bottom: 1px solid transparent; }
.numbered .item + .item { border-left: 1px solid var(--line); padding-left: 30px; }
.numbered .n { font-family: "Fraunces", serif; font-size: 1.05rem; color: var(--teal); font-weight: 500; }
.numbered .item h3 { font-size: 1.5rem; margin: 16px 0 12px; font-weight: 420; }
.numbered .item p { color: var(--muted); font-size: .98rem; max-width: 30ch; }
.numbered.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px){
  .numbered.cols-3 { grid-template-columns: 1fr; }
  .numbered.cols-3 .item { border-left: 0 !important; padding-left: 0 !important; border-bottom: 1px solid var(--line); }
}

/* ---------- Editorial cards (services) ---------- */
.ed-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.ed-card { padding: clamp(28px, 4vw, 48px); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); position: relative; transition: background .3s var(--ease); }
.ed-card:hover { background: rgba(255,253,248,.6); }
.ed-card .n { font-family: "Fraunces", serif; color: var(--teal); font-size: 1rem; }
.ed-card h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; margin: 18px 0 14px; letter-spacing: -.01em; }
.ed-card p { color: var(--muted); max-width: 42ch; }
.ed-card .tag { display:inline-block; font: 600 .64rem/1 "Inter"; letter-spacing:.14em; text-transform:uppercase; color: var(--clay); margin-left: 10px; vertical-align: middle; }
.ed-card .tlink { margin-top: 22px; }

/* ---------- Feature row (image + text alternating) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.feature-row.flip .f-media { order: 2; }
.f-media { position: relative; }
.f-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; aspect-ratio: 5/4; }
.f-media.tall img { aspect-ratio: 4/5; }
.f-body .h2 { margin: 1.1rem 0 0; }
.f-body .check { list-style: none; margin-top: 1.8rem; display: grid; gap: 1rem; }
.f-body .check li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; color: var(--ink-2); }
.f-body .check svg { width: 20px; height: 20px; color: var(--teal); margin-top: 3px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stats .stat { padding: 34px 20px 0 0; }
.stats .stat + .stat { border-left: 1px solid var(--line); padding-left: 26px; }
.stats .stat b { display: block; font-family: "Fraunces", serif; font-weight: 420; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.stats .stat span { display: block; margin-top: 12px; font-size: .9rem; color: var(--muted); max-width: 22ch; }

/* ---------- Process ---------- */
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 90px 1fr; gap: clamp(20px, 4vw, 60px); padding: clamp(28px, 4vw, 44px) 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.step .sn { font-family: "Fraunces", serif; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--teal); font-weight: 380; line-height: 1; }
.step h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); font-weight: 410; }
.step p { color: var(--muted); margin-top: 10px; max-width: 56ch; }
.step:hover h3 { color: var(--teal); transition: color .3s; }

/* ---------- Team roster (no childish avatars) ---------- */
.roster { border-top: 1px solid var(--line); }
.person { display: grid; grid-template-columns: 56px 1.1fr 1.5fr; gap: clamp(18px, 3vw, 48px); padding: clamp(26px, 3.4vw, 40px) 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: padding-left .3s var(--ease); }
.person:hover { padding-left: 10px; }
.person .p-n { font-family: "Fraunces", serif; color: var(--muted-2); font-size: 1rem; }
.person .p-name { font-family: "Fraunces", serif; font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 400; color: var(--ink); letter-spacing: -.01em; }
.person .p-role { font: 600 .68rem/1.3 "Inter"; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-top: 8px; }
.person .p-role span { display:block; color: var(--muted-2); letter-spacing:.1em; margin-top:5px; }
.person .p-bio { color: var(--muted); font-size: .98rem; }

/* ---------- Immersive / photo band ---------- */
.band { position: relative; overflow: hidden; color: var(--white); }
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(16,39,35,.9) 0%, rgba(16,39,35,.66) 48%, rgba(16,39,35,.32) 100%); }
.band .wrap { position: relative; z-index: 2; }
.band h2, .band .h2, .band h3 { color: #fff; }
.band .lede { color: rgba(255,253,248,.86); }
.band .label { color: var(--teal-bright); }
.band.center::after { background: linear-gradient(rgba(16,39,35,.82), rgba(13,33,29,.9)); }

/* full-bleed cinematic image strip */
.edgeshot { width: 100%; overflow: hidden; }
.edgeshot img { width: 100%; height: clamp(340px, 56vh, 660px); object-fit: cover; display: block; }

/* dark flat section */
.dark { background: var(--forest); color: rgba(255,253,248,.84); }
.dark h2,.dark .h2,.dark h3 { color: #fff; }
.dark .lede { color: rgba(255,253,248,.82); }
.dark .label { color: var(--teal-bright); }
.dark .rule { background: var(--line-dark); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: clamp(140px, 16vw, 210px) 0 clamp(48px, 7vw, 90px); border-bottom: 1px solid var(--line); position: relative; }
.page-hero .crumbs { font: 500 .8rem/1 "Inter"; color: var(--muted-2); margin-bottom: 1.4rem; letter-spacing: .02em; }
.page-hero .crumbs a { color: var(--muted-2); } .page-hero .crumbs a:hover { color: var(--teal); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 380; letter-spacing: -.025em; line-height: 1; max-width: 18ch; }
.page-hero .lede { margin-top: 1.6rem; max-width: 52ch; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.info-list { border-top: 1px solid var(--line); }
.info-row { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.info-row .k { font: 600 .7rem/1.4 "Inter"; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.info-row .v { color: var(--ink); font-size: 1.02rem; } .info-row .v a { color: var(--ink); } .info-row .v a:hover { color: var(--teal); }
.map-wrap { margin-top: 28px; border-radius: 2px; overflow: hidden; border: 1px solid var(--line); }
form .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
form .field { margin-bottom: 22px; }
form label { display: block; font: 600 .72rem/1 "Inter"; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
form input, form select, form textarea {
  width: 100%; padding: .9rem 0; border: 0; border-bottom: 1px solid var(--line); background: transparent;
  font: 400 1.05rem/1.4 "Inter"; color: var(--ink); transition: border-color .25s;
}
form input::placeholder, form textarea::placeholder { color: var(--muted-2); }
form input:focus, form select:focus, form textarea:focus { outline: 0; border-color: var(--teal); }
form textarea { min-height: 110px; resize: vertical; }
.form-note { margin-top: 14px; font-size: .9rem; color: var(--teal); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; padding: 26px 0; display: flex; justify-content: space-between; gap: 24px; align-items: baseline; font-family: "Fraunces", serif; font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 410; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { flex: none; font-size: 1.4rem; color: var(--teal); transition: transform .3s var(--ease); line-height: 1; font-family: "Inter"; }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item .ans { padding: 0 0 28px; color: var(--muted); max-width: 64ch; }

/* ---------- Jobs ---------- */
.jobs { border-top: 1px solid var(--line); }
.job { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.job h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 410; }
.job .jmeta { display: flex; gap: 18px; margin-top: 8px; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: rgba(255,253,248,.7); padding: clamp(70px, 9vw, 120px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .logo .wordmark b { color: #fff; }
.footer-brand .logo .wordmark b em { color: var(--teal-bright); }
.footer-brand p { margin-top: 22px; max-width: 34ch; color: rgba(255,253,248,.6); font-size: .96rem; }
.site-footer h4 { font: 600 .7rem/1 "Inter", sans-serif; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,253,248,.5); margin-bottom: 20px; }
.site-footer ul { list-style: none; display: grid; gap: 12px; }
.site-footer a { color: rgba(255,253,248,.72); font-size: .96rem; }
.site-footer a:hover { color: var(--teal-bright); }
.footer-contact li { color: rgba(255,253,248,.72); font-size: .96rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-size: .82rem; color: rgba(255,253,248,.45); }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; background: var(--paper); z-index: 99; padding: 100px var(--gutter) 40px; display: none; flex-direction: column; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: "Fraunces", serif; font-weight: 400; font-size: clamp(1.8rem, 7vw, 2.6rem); color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu a span { color: var(--teal); font-size: 1.2rem; }
.mobile-menu .btn { margin-top: 30px; justify-content: center; }
body.menu-open { overflow: hidden; }

/* ---------- Reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1{transition-delay:.07s}.reveal.d2{transition-delay:.14s}.reveal.d3{transition-delay:.21s}.reveal.d4{transition-delay:.28s}
@media (prefers-reduced-motion: reduce){ html.js .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }

/* ---------- Responsive ---------- */
@media (max-width: 1000px){
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 130px var(--gutter) 56px; }
  /* predictable image height on tablet/phone — frame the subject's face, not a giant crop */
  .hero-media { min-height: 0; aspect-ratio: 5 / 4; max-height: 64vh; }
  .hero-media img { object-position: center 22%; }
  .numbered { grid-template-columns: 1fr 1fr; }
  .numbered .item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .numbered .item:nth-child(even) { border-left: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:nth-child(odd){ border-left: 0; padding-left: 0; }
  .stats .stat:nth-child(even){ border-left: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .cols-head { grid-template-columns: 1fr; gap: 16px; }
  .ed-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.flip .f-media { order: 0; }
  .person { grid-template-columns: 1fr; gap: 6px; }
  .person .p-n { display: none; }
  .step { grid-template-columns: 56px 1fr; }
  form .frow { grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  body { font-size: 16px; }
  .numbered { grid-template-columns: 1fr; }
  .numbered .item { border-left: 0 !important; padding-left: 0 !important; border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr; }
  .stats .stat { border-left: 0 !important; padding-left: 0 !important; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   v4 — real photos, no decorative numbers, team with headshots
   ============================================================ */

/* small-caps eyebrow labels replace the old serif numerals */
.numbered .n { display: block; font: 600 .68rem/1 "Inter", sans-serif; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.numbered .item h3 { font-size: 1.4rem; margin: 0 0 12px; font-weight: 420; }
.ed-card .n { display: block; font: 600 .66rem/1 "Inter", sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }

/* process steps — no numerals, clean two-column hairline list */
.steps .step { grid-template-columns: minmax(0, 1fr) 1.7fr; gap: clamp(16px, 4vw, 60px); align-items: baseline; }
.steps .step h3 { font-size: clamp(1.4rem, 2vw, 1.95rem); font-weight: 410; }
@media (max-width: 760px){ .steps .step { grid-template-columns: 1fr; gap: 8px; } }

/* team — real founder headshots */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3vw, 46px); align-items: start; }
/* clean hairline frame (Option A) */
.member .photo { aspect-ratio: 4 / 5; background: #f3efe7; border: 1px solid rgba(21,48,43,.2); border-radius: 4px; overflow: hidden; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.member:hover .photo img { transform: scale(1.04); }
.member .m-name { font-family: "Fraunces", serif; font-size: clamp(1.3rem, 1.8vw, 1.6rem); font-weight: 420; color: var(--ink); margin-top: 22px; }
.member .m-role { font: 600 .68rem/1.5 "Inter", sans-serif; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-top: 9px; }
.member .m-role span { display: block; color: var(--muted-2); letter-spacing: .07em; margin-top: 4px; }
.member .m-bio { color: var(--muted); font-size: .95rem; margin-top: 14px; max-width: 42ch; }
@media (max-width: 860px){ .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .team { grid-template-columns: 1fr 1fr; } }

/* signature / Attachment-Informed callout */
.signature { font-family: "Fraunces", serif; font-style: italic; }

/* ============================================================
   v7 — clickable team members + bio modal
   ============================================================ */
.member { display: block; width: 100%; text-align: left; background: transparent; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.member .m-name, .member .m-role { display: block; }
.member .photo { transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.member:hover .photo { transform: translateY(-4px); box-shadow: 0 18px 36px -24px rgba(20,48,44,.4); }
.member:focus-visible { outline: 2px solid var(--teal); outline-offset: 6px; border-radius: 10px; }
.member .m-readbio { display: inline-flex; align-items: center; gap: .4rem; margin-top: 12px; font: 500 .8rem/1 "Inter", sans-serif; color: var(--teal); }
.member .m-readbio svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.member:hover .m-readbio { color: var(--clay); }
.member:hover .m-readbio svg { transform: translateX(3px); }

/* ---------- Beliefs: mission / vision / values (no numbers) ---------- */
.beliefs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-top: 10px; }
.belief .bk { display: block; font: 600 .72rem/1 "Inter", sans-serif; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.belief p { font-family: "Fraunces", serif; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.4; color: var(--ink); font-weight: 380; max-width: 34ch; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2.6vw, 42px); margin-top: clamp(42px, 5vw, 72px); }
.value .vrule { display: block; width: 26px; height: 2px; background: var(--teal); margin-bottom: 16px; }
.value h3 { font-family: "Fraunces", serif; font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 420; color: var(--ink); margin-bottom: 9px; }
.value p { font-size: .95rem; line-height: 1.55; color: var(--muted); max-width: 30ch; }
@media (max-width: 860px){ .beliefs { grid-template-columns: 1fr; gap: 26px; } .values { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px){ .values { grid-template-columns: 1fr; } }

.bio-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 22px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.bio-modal.open { opacity: 1; visibility: visible; }
.bio-scrim { position: absolute; inset: 0; background: rgba(16,39,35,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.bio-dialog { position: relative; z-index: 1; width: min(860px, 100%); max-height: 88vh; overflow: auto; background: var(--paper); border-radius: 14px; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: .82fr 1.18fr; transform: translateY(16px) scale(.985); transition: transform .35s var(--ease); }
.bio-modal.open .bio-dialog { transform: none; }
.bio-photo { background: #ebe7de; min-height: 100%; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-body { padding: clamp(28px, 4vw, 46px); }
.bio-role { font: 500 .72rem/1.4 "Inter", sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.bio-name { font-family: "Fraunces", serif; font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--ink); margin: 10px 0 4px; line-height: 1.05; }
.bio-creds { color: var(--muted-2); font-size: .85rem; letter-spacing: .03em; }
.bio-text { margin-top: 22px; }
.bio-text p { color: var(--ink-2); margin-bottom: 1rem; max-width: none; }
.bio-text p:last-child { margin-bottom: 0; }
.bio-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,253,248,.86); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.bio-close:hover { background: #fff; }
body.modal-open { overflow: hidden; }
@media (max-width: 720px){
  .bio-dialog { grid-template-columns: 1fr; max-height: 90vh; }
  .bio-photo { aspect-ratio: 1 / 1; min-height: 0; }
}

/* ============================================================
   v8 — program spotlight, sticky contact dock, careers form
   ============================================================ */

/* mobile modal: align to top + scroll the whole overlay (fixes cut-off top) */
@media (max-width: 720px){
  .bio-modal { align-items: start; overflow-y: auto; }
  .bio-dialog { grid-template-columns: 1fr; max-height: none; }
  .bio-photo { aspect-ratio: 3 / 2; min-height: 0; }
}

/* clickable program card affordance */
.ed-card.clickable { cursor: pointer; transition: background .3s var(--ease), transform .3s var(--ease); }
.ed-card.clickable:hover { background: rgba(255,253,248,.7); }
.ed-card .ed-open { display: inline-flex; align-items: center; gap: .45rem; margin-top: 20px; font: 500 .82rem/1 "Inter", sans-serif; color: var(--teal); }
.ed-card .ed-open svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.ed-card.clickable:hover .ed-open svg { transform: translateX(4px); }

/* program spotlight modal (reuses .bio-modal shell) */
.bio-dialog.prog { grid-template-columns: 1fr; }
.prog-inner { padding: clamp(28px, 4vw, 48px); }
.prog-eyebrow { font: 500 .72rem/1.4 "Inter", sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.prog-eyebrow.soon { color: var(--clay); }
.prog-name { font-family: "Fraunces", serif; font-weight: 400; font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--ink); margin: 10px 0 16px; line-height: 1.04; }
.prog-body p { color: var(--ink-2); margin-bottom: 1rem; max-width: 62ch; }
.prog-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.prog-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.prog-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); display: block; }
.prog-gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.prog-soon { margin-top: 26px; border: 1px dashed var(--line); border-radius: 12px; padding: 44px 24px; text-align: center; background: var(--paper-2); }
.prog-soon i, .prog-soon .ic { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--teal); margin-bottom: 14px; }
.prog-soon .ic svg { width: 24px; height: 24px; }
.prog-soon b { display: block; font-family: "Fraunces", serif; font-weight: 400; font-size: 1.3rem; color: var(--ink); }
.prog-soon span { color: var(--muted); font-size: .95rem; }
@media (max-width: 560px){ .prog-gallery { grid-template-columns: 1fr; } .prog-gallery img:first-child { aspect-ratio: 4/3; } }

/* sticky contact dock — on every page */
.dock { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: 10px; }
.dock a { box-shadow: 0 16px 34px -16px rgba(20,48,44,.5); }
.dock-call { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--teal); display: grid; place-items: center; transition: color .2s, transform .2s var(--ease); }
.dock-call svg { width: 22px; height: 22px; }
.dock-call:hover { color: var(--clay); transform: translateY(-2px); }
.dock-btn { display: inline-flex; align-items: center; gap: .5rem; background: var(--ink); color: #fff; padding: .9rem 1.35rem; border-radius: 100px; font: 500 .95rem/1 "Inter", sans-serif; transition: background .25s, transform .2s var(--ease); }
.dock-btn:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.dock-btn svg { width: 16px; height: 16px; }
body.modal-open .dock { opacity: 0; pointer-events: none; transition: opacity .2s; }
@media (max-width: 560px){ .dock { right: 14px; bottom: 14px; gap: 8px; } .dock-btn { padding: .82rem 1.05rem; font-size: .88rem; } .dock-call { width: 50px; height: 50px; } }

/* file input for careers */
.field input[type="file"] { padding: .7rem 0; font-size: .92rem; color: var(--muted); }
.field input[type="file"]::file-selector-button { font: 500 .85rem/1 "Inter", sans-serif; padding: .55rem .9rem; margin-right: 12px; border-radius: 100px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; }
.field input[type="file"]::file-selector-button:hover { border-color: var(--ink); }
.field .hint { font-size: .78rem; color: var(--muted-2); margin-top: 6px; }

/* ============================================================
   v10 — more clickable services, multidisciplinary, tidy wraps
   ============================================================ */
.ed-card.span2 { grid-column: 1 / -1; }
.ed-card.span2 h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

/* roles shown in the multidisciplinary spotlight */
.prog-roles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.prog-roles span { font: 500 .82rem/1 "Inter", sans-serif; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); padding: .62rem 1.05rem; border-radius: 100px; }

/* balanced headline wrapping so a single word never drops to its own line */
.display, .h2, .page-hero h1, .bio-name, .prog-name { text-wrap: balance; }


/* ---------- Fellowship (Careers) ---------- */
.fellowship-top { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.fellowship-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12px; box-shadow: 0 26px 54px -28px rgba(20,48,44,.5); }
.fellow-elig { font: 400 .98rem/1.5 "Inter", sans-serif; color: var(--muted-2); margin-top: .7rem; }
.fellow-credit { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-top: 1.8rem; }
.fellow-credit .fc-rule { width: 3px; align-self: stretch; background: var(--teal); border-radius: 2px; flex: none; }
.fellow-credit p { font-family: "Fraunces", serif; font-size: 1.02rem; line-height: 1.5; color: var(--ink); max-width: none; }
.fellow-credit b { font-weight: 500; }
.fellow-stat { display: flex; align-items: baseline; gap: 14px; margin-top: clamp(36px, 4vw, 56px); }
.fellow-stat .fs-num { font-family: "Fraunces", serif; font-size: clamp(2.6rem, 5vw, 3.4rem); line-height: 1; color: var(--teal); }
.fellow-stat .fs-label { font: 400 1.02rem/1.4 "Inter", sans-serif; color: var(--ink-2); }
#fellowship .values { margin-top: clamp(30px, 3.5vw, 46px); }
.fellow-paid { background: rgba(44,125,113,.08); border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin-top: clamp(30px, 3.5vw, 46px); }
.fellow-paid b { display: block; font: 500 1.05rem/1.5 "Inter", sans-serif; color: var(--teal); }
.fellow-paid span { display: block; font: 400 .96rem/1.5 "Inter", sans-serif; color: var(--muted); margin-top: 4px; }
.fellow-quote { margin-top: clamp(34px, 4vw, 54px); border-left: 3px solid var(--teal); padding-left: 22px; max-width: 64ch; }
.fellow-quote p { font-family: "Fraunces", serif; font-style: italic; font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.45; color: var(--ink); max-width: none; }
.fellow-quote cite { display: block; font: 600 .78rem/1.4 "Inter", sans-serif; font-style: normal; letter-spacing: .05em; color: var(--teal); margin-top: 14px; }
.fellow-cta { margin-top: clamp(30px, 3.5vw, 46px); display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px; }
.fellow-cta .muted { font-size: .92rem; margin: 0; }
@media (max-width: 860px){ .fellowship-top { grid-template-columns: 1fr; } }

/* ---------- Footer social ---------- */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1px solid var(--line-dark); border-radius: 50%; color: #fff; transition: color .2s, border-color .2s; }
.footer-social a:hover { color: var(--teal-bright); border-color: var(--teal-bright); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- About: team group photo ---------- */
.team-group { max-width: 820px; margin: clamp(6px,1.5vw,16px) auto clamp(38px,4.5vw,58px); }
.team-group img { width: 100%; border-radius: 14px; box-shadow: 0 26px 56px -30px rgba(20,48,44,.5); }