/* ============================================================
   Eleven Ten — MAIN SITE theme (editorial paper + ink blue)
   Every page matches the homepage: warm paper, ink text, Fraunces
   headings, ink-blue accents. Loaded after styles.css, only by
   index.html, so the concept variants keep their own themes.
   ============================================================ */

:root {
  /* Editorial paper base — matches the homepage.
     The legacy --navy* names are kept as the *surface* scale and --cream as
     the *text* colour so every existing rule re-themes without rewriting. */
  --navy:    #efece4;   /* page background (paper) */
  --navy-2:  #e7e2d7;   /* panels */
  --navy-3:  #ded7c8;   /* lifted (cards/hover) */
  --paper:   #efece4;
  --ink:     #26221c;
  --cream:   #26221c;   /* now the text ink */
  --pink:    #2f5488;   /* ink-blue accent */
  --red:     #c5463b;
  --muted:   rgba(38,34,28,0.58);
  --hairline: rgba(38,34,28,0.14);
  --hairline-2: rgba(38,34,28,0.07);
  --hairline-dark: rgba(38,34,28,0.14);

  /* headings in the editorial serif, body/labels stay Bricolage */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

html, body { background: var(--navy); color: var(--cream); }

/* one font by default — script only on explicitly highlighted words */
.script { color: var(--pink); }
.label.rule::before { display: none; }            /* drop the decorative dash line, all pages */
.label { color: var(--muted); }

/* ---- Buttons on navy --------------------------------------- */
.btn { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn:hover { background: var(--pink); border-color: var(--pink); color: var(--navy); }
.btn.ghost { background: transparent; color: var(--cream); border-color: rgba(38,34,28,0.4); }
.btn.ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn.on-dark { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn.on-dark:hover { background: var(--pink); border-color: var(--pink); color: var(--navy); }

/* ---- Nav: transparent over hero, navy on scroll, light always - */
.nav { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent; box-shadow: none; color: var(--cream); }
.nav.scrolled { background: rgba(17,32,51,0.86); -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px); border-bottom-color: var(--hairline); box-shadow: none; }
.nav-logo .mark { filter: brightness(0) invert(1); }
.nav-logo .tag { color: rgba(38,34,28,0.6); border-left-color: rgba(38,34,28,0.25); }
.nav-link { color: var(--cream); }
.nav-link:hover, .nav-link[data-active="true"] { color: var(--pink); }
.nav-link[data-active="true"]::before { background: var(--pink); }
.nav-cta { background: var(--pink); color: var(--navy); }
.nav-cta:hover { background: var(--cream); }
.nav-burger { border-color: rgba(38,34,28,0.35); }
.nav-burger span { background: var(--cream); }

/* ---- Sections ---------------------------------------------- */
.section.panel { background: var(--navy-2); }
.section.dark { background: var(--navy-2); }
.section-head .label { color: var(--muted); }
.lede { color: rgba(38,34,28,0.86); }

/* ---- Video banner (no text) -------------------------------- */
.hero-video { position: relative; background: var(--navy-2); overflow: hidden; min-height: 100vh; }
.hero-video .vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; z-index: 0; }
.hero-video .hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(22,41,61,0.55) 0%, rgba(22,41,61,0.12) 30%, rgba(22,41,61,0.30) 68%, rgba(22,41,61,0.92) 100%),
    radial-gradient(120% 90% at 85% 10%, rgba(197,70,59,0.18) 0%, rgba(197,70,59,0) 55%);
}
.hero-video.banner-only .hero-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(38,34,28,0.8);
}
.hero-video .hero-cue .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--pink); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .3; } }

/* ---- Home: lead statement ---------------------------------- */
.lead-statement { padding-top: 110px; padding-bottom: 90px; }
.big-statement {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(30px, 5vw, 76px); line-height: 1.06; letter-spacing: -0.025em;
  max-width: 1100px; text-wrap: balance;
}
.statement-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; }
.center-cta { display: flex; justify-content: center; padding-top: 56px; }

/* ---- Eco cards on navy ------------------------------------- */
.eco-card { background: rgba(38,34,28,0.04); border-color: var(--hairline); color: var(--cream); }
.eco-card:hover { background: var(--pink); color: var(--navy); border-color: var(--pink); transform: translateY(-4px); }
.eco-card .ico { color: var(--pink); }
.eco-card:hover .ico { color: var(--navy); }
.eco-card .d { opacity: .82; }

/* ---- Stats ------------------------------------------------- */
.stats { border-top-color: var(--hairline); }
.stat { border-right-color: var(--hairline); }
.stat .v { color: var(--pink); }

/* ---- Page head --------------------------------------------- */
.page-head { border-bottom-color: var(--hairline); }
.page-head h1 { color: var(--cream); }
.page-head h1 .script, .page-head h1 .accent { color: var(--pink); }
.page-head-sub { font-size: clamp(16px,1.6vw,20px); line-height: 1.5; color: rgba(38,34,28,0.78); max-width: 620px; margin-top: 22px; }
.case-back { color: var(--muted); }
.case-back:hover { color: var(--pink); }

/* ---- About: narrative -------------------------------------- */
.narrative { display: grid; grid-template-columns: 1fr 1.7fr; gap: 40px; }
.narrative .sec-title { grid-column: 1; align-self: start; color: var(--cream); }
.narrative .narrative-body, .narrative .belief-grid, .narrative .vision-statement, .narrative .vision-sub { grid-column: 2; }
.narrative.vision { grid-template-columns: 1fr 1.7fr; }
.lead-para { font-family: var(--display); font-weight: 500; font-size: clamp(22px,2.6vw,34px); line-height: 1.22; letter-spacing: -0.02em; margin-bottom: 22px; text-wrap: balance; }
.narrative-body p { font-size: 16.5px; line-height: 1.7; color: rgba(38,34,28,0.85); }
.narrative-body p + p { margin-top: 16px; }
.belief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.belief .bn { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--pink); margin-bottom: 14px; }
.belief .bt { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 8px; }
.belief .bd { font-size: 14.5px; line-height: 1.6; color: rgba(38,34,28,0.72); }
.vision-statement { font-family: var(--display); font-weight: 500; font-size: clamp(24px,3.2vw,44px); line-height: 1.18; letter-spacing: -0.02em; text-wrap: balance; }
.vision-sub { font-size: 16.5px; line-height: 1.7; color: rgba(38,34,28,0.78); margin-top: 22px; max-width: 640px; }

/* ---- Collaboration list / audience ------------------------- */
.collab-list { border-top-color: var(--hairline); }
.collab-row { border-bottom-color: var(--hairline); color: var(--cream); }
.collab-row:hover { background: var(--navy-3); }
.collab-row .num { color: var(--pink); }
.collab-row .ico { color: var(--cream); opacity: .5; }
.collab-row:hover .ico { opacity: 1; color: var(--pink); }
.how-section .how-step { border-top-color: var(--hairline); }
.how-section .label { color: rgba(38,34,28,0.55); }
.how-d { color: rgba(38,34,28,0.8); }

.aud-intro { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.aud-offer { border-left: 1px solid var(--hairline); padding-left: 32px; }
.aud-offer .label { margin-bottom: 18px; }
.aud-offer ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.aud-offer li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: rgba(38,34,28,0.9); }
.aud-offer .li-ico { width: 16px; height: 16px; color: var(--pink); flex: none; }

/* ---- Work cards (navy) ------------------------------------- */
.work-img.photo { background: var(--navy-3); }
.work-img.photo .img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.work-card:hover .work-img.photo .img { transform: scale(1.05); }
.work-img.photo .ph { background: linear-gradient(180deg, rgba(22,41,61,0) 40%, rgba(17,32,51,0.85) 100%); color: var(--cream); z-index: 1; }
.work-meta .ttl { color: var(--cream); }
.work-meta .cat { color: var(--muted); }
.work-filter { border-bottom-color: var(--hairline); }
.work-filter button { border-color: rgba(38,34,28,0.2); color: var(--cream); }
.work-filter button:hover { border-color: var(--cream); }
.work-filter button[data-active="true"] { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.work-filter .count { color: var(--muted); }

/* ---- Team -------------------------------------------------- */
.section.team { background: var(--navy-2); }
.team-photo.photo { background-size: cover; background-position: center top; }
.team-photo.photo::after { display: none; }

/* ---- Media band ------------------------------------------- */
.media-band { position: relative; height: 440px; background-size: cover; background-position: center; background-color: var(--navy-3); }
.media-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,41,61,0.25) 0%, rgba(22,41,61,0.65) 100%); }

/* ---- Projects: connect band -------------------------------- */
.connect-band { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; background: var(--navy-2); }

/* ---- Case study page --------------------------------------- */
.case-top { border-bottom-color: var(--hairline); }
.case-top h1, .case-body .case-lead { color: var(--cream); }
.case-top .case-meta { border-top-color: var(--hairline); }
.case-top .case-meta .k { color: var(--muted); }
.case-hero-img { background-color: var(--navy-3); }
.case-body .case-text p { color: rgba(38,34,28,0.85); }
.audience-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); }
.audience-link:hover { color: var(--cream); }
.audience-link .arr { width: 22px; height: 1px; background: currentColor; position: relative; }
.audience-link .arr::after { content: ""; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

/* ---- CTA band (accent) + sub lead -------------------------- */
.cta-band { background: var(--navy-2); }
.cta-band .script { color: var(--pink); }
.cta-sub-lead { font-size: clamp(15px,1.5vw,18px); line-height: 1.55; color: rgba(38,34,28,0.78); max-width: 560px; }

/* ---- Footer ------------------------------------------------ */
.foot { background: var(--navy-2); }
/* credit blends into the footer background on the main site */
.foot-credit, .foot-credit a, .foot-credit .heart { color: var(--navy-2); }

/* ---- Contact: offices + inquiry form ----------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: 56px; padding: 72px var(--pad); }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.office .label { margin-bottom: 8px; }
.office .addr { font-size: 15.5px; line-height: 1.55; color: rgba(38,34,28,0.85); }
.office .addr a:hover { color: var(--pink); }
.office .socials { display: flex; gap: 10px; flex-wrap: wrap; }
.office .socials a { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--hairline); }
.office .socials a:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.contact-form-wrap { background: var(--navy-2); border: 1px solid var(--hairline); border-radius: 8px; padding: 40px 38px; }
.inquiry { display: flex; flex-direction: column; gap: 22px; }
.inquiry .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.inquiry .field { position: relative; }
.inquiry label { display: block; font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.inquiry input, .inquiry textarea, .inquiry select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(38,34,28,0.28);
  color: var(--cream); font-size: 16px; padding: 11px 0; outline: none; border-radius: 0;
}
.inquiry select option { color: #16293d; }
.inquiry input::placeholder, .inquiry textarea::placeholder { color: rgba(38,34,28,0.4); }
.inquiry input:focus, .inquiry textarea:focus, .inquiry select:focus { border-bottom-color: var(--pink); }
.inquiry textarea { min-height: 120px; resize: none; font-family: inherit; line-height: 1.5; }
.inquiry .char { position: absolute; right: 0; bottom: -18px; font-family: var(--label); font-size: 10px; letter-spacing: .1em; color: var(--muted); }
.inquiry .submit {
  align-self: flex-start; margin-top: 10px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--label); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 18px 34px; border-radius: 999px; background: var(--pink); color: var(--navy); transition: background .2s, opacity .2s;
}
.inquiry .submit:hover { background: var(--cream); }
.inquiry .submit:disabled { opacity: .4; pointer-events: none; }
.inquiry .submit .arr { width: 24px; height: 1px; background: currentColor; position: relative; }
.inquiry .submit .arr::after { content: ""; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
.inquiry-done { padding: 24px 4px; }
.inquiry-done .display { color: var(--cream); margin-bottom: 14px; }
.inquiry-done p { font-size: 16px; line-height: 1.6; color: rgba(38,34,28,0.82); max-width: 440px; margin-bottom: 28px; }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 900px) {
  .narrative, .narrative.vision { grid-template-columns: 1fr; gap: 18px; }
  .narrative .sec-title, .narrative .narrative-body, .narrative .belief-grid, .narrative .vision-statement, .narrative .vision-sub { grid-column: 1; }
  .aud-intro { grid-template-columns: 1fr; gap: 28px; }
  .aud-offer { border-left: 0; padding-left: 0; border-top: 1px solid var(--hairline); padding-top: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; padding: 48px var(--pad); }
}
@media (max-width: 760px) {
  .belief-grid { grid-template-columns: 1fr; }
  .lead-statement { padding-top: 64px; padding-bottom: 56px; }
  .inquiry .row2 { grid-template-columns: 1fr; }
  .connect-band { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 28px var(--pad); }
  .media-band { height: 260px; }
}

/* ---- Insights (navy) --------------------------------------- */
.insight-feature { border-color: var(--hairline); background: var(--navy-2); }
.insight-feature .img { background-color: var(--navy-3); }
.insight-feature .cat { color: var(--pink); }
.insight-feature .t { color: var(--cream); }
.insight-feature .ex { color: rgba(38,34,28,0.82); }
.insight-feature .meta { color: var(--muted); }
.metric-band { border-top-color: var(--hairline); border-bottom-color: var(--hairline); }
.metric { border-right-color: var(--hairline); }
.metric .v { color: var(--pink); }
.metric .l { color: var(--muted); }
.insight-grid .insight-card { border-top-color: rgba(38,34,28,0.35); }
.insight-card:hover { border-top-color: var(--pink); }
.insight-card .cat { color: var(--pink); }
.insight-card .t { color: var(--cream); }
.insight-card .ex { color: rgba(38,34,28,0.78); }
.insight-card .meta { color: var(--muted); }

/* ---- Insights: clickable cards + feature ------------------- */
.insight-feature { text-decoration: none; color: inherit; transition: border-color .25s, transform .25s; }
a.insight-feature:hover { border-color: rgba(38,34,28,0.4); transform: translateY(-3px); }
a.insight-card { text-decoration: none; color: inherit; transition: border-color .25s, transform .25s; }
a.insight-card:hover { border-top-color: var(--pink); transform: translateY(-3px); }
.insight-feature .read-cue { display: inline-flex; align-items: center; gap: 8px; margin-left: 14px; color: var(--pink); }
.insight-feature .read-cue .arr { width: 18px; height: 1px; background: currentColor; position: relative; }
.insight-feature .read-cue .arr::after { content: ""; position: absolute; right: -1px; top: -3px; width: 6px; height: 6px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

/* ---- Single article page ----------------------------------- */
.article-top { padding: calc(var(--nav-h) + 56px) var(--pad) 36px; max-width: 880px; margin: 0 auto; text-align: center; }
.article-top .case-back { display: block; margin-bottom: 26px; }
.article-tags { display: flex; justify-content: center; align-items: center; gap: 10px; font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.article-tags .cat { color: var(--pink); }
.article-tags .dot { opacity: .5; }
.article-top h1 { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 5vw, 68px); line-height: 1.02; letter-spacing: -0.03em; color: var(--cream); text-wrap: balance; }
.article-lead { font-size: clamp(18px,2vw,23px); line-height: 1.45; color: rgba(38,34,28,0.82); margin-top: 22px; text-wrap: balance; }
.article-hero { height: clamp(280px, 50vh, 560px); margin: 8px var(--pad) 0; background-size: cover; background-position: center; background-color: var(--navy-3); border-radius: 6px; }
.article-body { max-width: 720px; margin: 0 auto; padding: 64px var(--pad) 72px; }
.article-body p { font-size: 18px; line-height: 1.8; color: rgba(38,34,28,0.9); }
.article-body p + p { margin-top: 22px; }
.article-sign { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--hairline); font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px) { .article-hero { height: 240px; } .article-body { padding: 44px var(--pad) 56px; } .article-body p { font-size: 16.5px; } }

/* ---- Article tag chips (under the title) -------------------- */
.article-taglist { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 26px; }
.tag-chip {
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream); padding: 8px 15px; border-radius: 999px; border: 1px solid var(--hairline);
  background: rgba(38,34,28,0.04);
}

/* ---- Clickable tags / filter ------------------------------- */
a.tag-chip { text-decoration: none; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
a.tag-chip:hover { background: var(--pink); border-color: var(--pink); color: var(--navy); }
.article-tags a.cat { color: var(--pink); transition: color .2s; }
.article-tags a.cat:hover { color: var(--cream); }
.inline-clear { color: var(--pink); border-bottom: 1px solid rgba(47,84,136,0.4); }
.inline-clear:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* ============================================================
   Deck final-copy pass — new sections
   ============================================================ */

/* page-head back link spans full width */
.page-head .case-back { grid-column: 1 / -1; margin-bottom: 8px; }

/* ---- Home: hero copy --------------------------------------- */
.hero-copy { text-align: center; padding-top: 96px; padding-bottom: 80px; }
.hero-tagline { font-size: clamp(52px, 10vw, 150px); line-height: 0.98; }
.hero-copy-sub { font-size: clamp(17px, 1.9vw, 24px); line-height: 1.5; color: rgba(38,34,28,0.82); max-width: 640px; margin: 26px auto 0; text-wrap: balance; }

/* ---- Home: category + diagram (text left, diagram right) ---- */
.category-body { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
.category-text h2 { margin: 16px 0 24px; }
.category-text .lede { max-width: 520px; }
.connect-diagram { width: 100%; height: auto; display: block; }
.cd-wide { max-width: 100%; }
.cd-square { display: none; max-width: 460px; margin: 0 auto; }
@media (max-width: 760px) { .cd-wide { display: none; } .cd-square { display: block; } }
.connect-diagram .cd-lines line { stroke: rgba(47,84,136,0.4); stroke-width: 1.4; }
.connect-diagram .cd-node circle { fill: var(--pink); }
.connect-diagram .cd-node text { fill: var(--cream); font-family: var(--label); font-size: 22px; font-weight: 600; letter-spacing: .04em; }
.connect-diagram .cd-core circle { fill: none; stroke: var(--pink); stroke-width: 1.6; }
.connect-diagram .cd-core text { fill: var(--cream); font-family: var(--display); font-weight: 600; font-size: 34px; letter-spacing: -0.02em; }

/* ---- Signals heading left-shift (desktop only) ------------- */
.signals-shift { margin-left: 14%; }
@media (max-width: 760px) { .signals-shift { margin-left: 0; } }

/* ---- Home: participation (4-up) ---------------------------- */
.eco-grid.participation { grid-template-columns: repeat(4, 1fr); }
.eco-grid.participation .eco-card { grid-column: auto; min-height: 240px; }

/* ---- About ------------------------------------------------- */
.belief-grid.three { grid-template-columns: repeat(3, 1fr); }
.starting-line { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--pink); margin-top: 26px; }
.team .team-intro { font-size: clamp(16px,1.7vw,20px); line-height: 1.6; color: rgba(38,34,28,0.82); max-width: 760px; margin: 28px 0 8px; }
.founders { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.founder-card { width: 260px; }
.founder-photo { width: 100%; aspect-ratio: 4/5; border-radius: 4px; background-size: cover; background-position: center top; background-color: var(--navy-3); margin-bottom: 16px; }
.founder-card .name { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.founder-card .role { font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pink); margin-top: 5px; }

/* ---- Collaboration audience: offerings + CTA --------------- */
.aud-intro { display: block; padding-bottom: 24px; }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 6px; overflow: hidden; }
.offer { background: var(--navy); padding: 32px 30px; transition: background .25s; }
.offer:hover { background: var(--navy-2); }
.offer .on { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--pink); margin-bottom: 16px; }
.offer .ot { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 8px; }
.offer .od { font-size: 14.5px; line-height: 1.55; color: rgba(38,34,28,0.75); }
.aud-cta { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; background: var(--navy-2); }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 1000px) {
  .category-body { grid-template-columns: 1fr; gap: 32px; }
  .eco-grid.participation { grid-template-columns: repeat(2, 1fr); }
  .belief-grid.three { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .eco-grid.participation { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 60px; padding-bottom: 56px; }
  .founders { gap: 20px; }
  .founder-card { width: 100%; max-width: 300px; }
  .aud-cta { flex-direction: column; align-items: flex-start; }
}

/* ---- About team: text left, photos right ------------------- */
.team-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.team-text .team-intro { margin: 24px 0 0; max-width: none; }
.team-layout .founders { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 0; }
.team-layout .founder-card { width: auto; }
@media (max-width: 900px) {
  .team-layout { grid-template-columns: 1fr; gap: 40px; }
}
/* keep the two founders side-by-side on mobile so faces stay modestly sized */
@media (max-width: 760px) {
  .team-layout .founders { gap: 16px; }
}

/* ============================================================
   CAREER — open roles + 3 filters (Department / Type / Location)
   ============================================================ */
.career-sec { padding-top: 8px; }
.career-filters {
  display: flex; flex-wrap: wrap; gap: 18px 24px; align-items: flex-end;
  padding: 24px 0 26px; border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}
.cf-field { display: flex; flex-direction: column; gap: 9px; flex: 1 1 210px; min-width: 180px; }
.cf-field label {
  font-family: var(--label); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(38,34,28,.6);
}
.cf-field select {
  appearance: none; -webkit-appearance: none;
  background-color: rgba(38,34,28,.045); color: var(--cream);
  border: 1px solid var(--hairline-dark); border-radius: 3px;
  padding: 13px 40px 13px 15px; font-size: 15px; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23ece7da' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M1 1.5L6 6.5L11 1.5'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center;
  transition: border-color .2s, background-color .2s;
}
.cf-field select:hover, .cf-field select:focus { border-color: var(--pink); outline: none; }
.cf-field select option { color: #16150f; }
.cf-count {
  margin-left: auto; display: flex; align-items: center; gap: 16px; padding-bottom: 12px;
  font-family: var(--label); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(38,34,28,.6);
}
.cf-clear { background: none; border: 0; color: var(--pink); font: inherit; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.cf-clear:hover { color: var(--cream); }

.job-list { list-style: none; margin: 0; padding: 0; }
.job-row {
  display: grid; grid-template-columns: 1.7fr 1fr auto; gap: 28px; align-items: center;
  padding: 28px 6px; border-bottom: 1px solid var(--hairline-dark); cursor: pointer;
  transition: background .2s;
}
.job-row:hover { background: rgba(38,34,28,.035); }
.job-title { font-family: var(--label); font-weight: 600; font-size: clamp(19px,2.1vw,25px); letter-spacing: -.01em; color: var(--cream); margin-bottom: 7px; }
.job-blurb { font-size: 15px; line-height: 1.6; color: rgba(38,34,28,.7); max-width: 48ch; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-tag {
  font-family: var(--label); font-size: 10.5px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(38,34,28,.82);
  border: 1px solid var(--hairline-dark); border-radius: 100px; padding: 6px 12px;
}
.job-cta .btn { padding: 12px 18px; font-size: 12px; white-space: nowrap; }
.job-empty { padding: 64px 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.career-open {
  margin-top: 56px; padding: clamp(28px,4vw,44px); border: 1px solid var(--hairline-dark);
  border-radius: 5px; background: rgba(38,34,28,.03);
}
.career-open .label { margin-bottom: 10px; }
.career-open .lede { margin-bottom: 24px; max-width: 640px; }

@media (max-width: 760px) {
  .cf-field { flex: 1 1 100%; }
  .cf-count { margin-left: 0; }
  .job-row { grid-template-columns: 1fr; gap: 16px; align-items: start; padding: 24px 4px; }
  .job-cta { margin-top: 2px; }
}

/* ============================================================
   EDITORIAL ALIGNMENT — bring every page in line with the homepage
   (loaded last; overrides the legacy navy rules above)
   ============================================================ */

/* ---- Headings: editorial serif, lighter weight -------------- */
/* Fraunces reads heavy at 600, so dial the display weights back. */
.display,
.page-head h1,
.article-top h1,
.big-statement,
.lead-para,
.vision-statement,
.belief .bt,
.offer .ot,
.founder-card .name,
.job-title,
.inquiry-done .display { font-family: var(--display); font-weight: 380; letter-spacing: -0.02em; }
.display { line-height: 1.0; }
.page-head h1 { line-height: 0.94; }

/* Title scale: match the homepage "Let's build something that lasts" (.t1).
   Interior page titles ("Start a Conversation", "A growing portfolio", …)
   and the "The best is still ahead" CTA all follow this one size. */
.page-head h1,
.article-top h1,
.cta-band .h-mega,
.cta-band .display { font-size: clamp(44px, 7.4vw, 108px); }
.cta-band .script { font-size: clamp(44px, 7.4vw, 108px); }

/* Highlight words: serif italic in ink blue (matches the homepage `.it`) */
.script,
.page-head h1 .script,
.page-head h1 .accent,
.cta-band .script {
  font-family: var(--display); font-style: italic; font-weight: 380;
  color: var(--pink); letter-spacing: -0.02em; padding-bottom: 0; line-height: inherit;
}

::selection { background: var(--pink); color: var(--paper); }

/* ---- Nav: editorial paper on every page --------------------- */
.nav { color: var(--ink); }
.nav.scrolled {
  background: rgba(239,236,228,0.90);
  -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--hairline);
}
.nav-logo .mark { filter: none; }
.nav-logo .tag { color: var(--muted); border-left-color: var(--hairline); }
.nav-link { color: var(--ink); font-weight: 500; }
.nav-link:hover, .nav-link[data-active="true"] { color: var(--pink); }
.nav-link[data-active="true"]::before { background: var(--pink); }
.nav-cta { background: transparent; color: var(--ink); border: 1px solid var(--hairline); font-weight: 500; }
.nav-cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav-burger { border-color: var(--hairline); }
.nav-burger span { background: var(--ink); }

/* ---- Mobile menu: paper overlay ----------------------------- */
.mobile-menu { background: var(--paper); color: var(--ink); }
.mm-cta { background: var(--ink); color: var(--paper); }

/* ---- Footer stays dark (as on the homepage) ----------------- */
/* Re-establish the light token set inside the footer subtree. */
.foot {
  background: #112033; color: #ece7da;
  --cream: #ece7da; --ink: #ece7da; --pink: #d2b29d;
  --muted: rgba(236,231,218,0.55);
  --hairline: rgba(236,231,218,0.14);
  --hairline-dark: rgba(236,231,218,0.14);
}
.foot-credit, .foot-credit a, .foot-credit .heart { color: #112033; }

/* ---- Text sitting on photos/video must stay light ----------- */
.hero-video.banner-only .hero-cue { color: rgba(236,231,218,0.8); }
.work-img.photo .ph { color: #ece7da; }

/* ---- Form + filter controls on paper ------------------------ */
.inquiry select option { color: #26221c; }
.cf-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%2326221c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M1 1.5L6 6.5L11 1.5'/></svg>");
}
.cf-field select option { color: #26221c; }
.mm-list a { color: rgba(38,34,28,0.88); }
.mm-list a[data-active="true"] .label { color: var(--pink); }

/* ---- Insight cards: image-led thumbnails -------------------- */
.insight-card { border-top: 0; padding-top: 0; }
.insight-card .thumb {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: 3px; margin-bottom: 22px; background: var(--navy-3);
}
.insight-card .thumb .im {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s cubic-bezier(.19,1,.22,1);
}
/* blue gradient overlay — matches the Insights feature image.
   To revert: delete this .thumb::after rule (or `git revert` the commit). */
.insight-card .thumb::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(26,46,68,0.10) 40%, rgba(26,46,68,0.60) 100%);
}
a.insight-card:hover .thumb .im { transform: scale(1.05); }
a.insight-card:hover { transform: none; }              /* image zooms instead of the whole card lifting */
.insight-card .t { transition: color .25s; }
a.insight-card:hover .t { color: var(--pink); }
