/* ============================================================
   MONALE* — Building credibility for brands
   Editorial layout language after frostcollective.com
   Huge type · short copy · negative space · work does the talking
   ============================================================ */

@font-face {
  font-family: 'Cerebri Sans';
  src: url('../fonts/CerebriSans-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cerebri Sans';
  src: url('../fonts/CerebriSans-Book.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cerebri Sans';
  src: url('../fonts/CerebriSans-Regular.ttf') format('truetype');
  font-weight: 450; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cerebri Sans';
  src: url('../fonts/CerebriSans-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cerebri Sans';
  src: url('../fonts/CerebriSans-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cerebri Sans';
  src: url('../fonts/CerebriSans-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Season Serif';
  src: url('../fonts/SeasonSerif-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400;1,6..72,500&display=swap');

/* ---------- Tokens ---------- */
:root {
  --black: #181818;
  --white: #fffff2;
  --grey: #67675f;
  --grey-light: #d9d9cf;
  --grey-bg: #f2f2e8;
  --accent: #f04325;
  --red: #f04325;
  --periwinkle: #a8b7de;
  --green: #003310;
  --pink: #f9a0f0;
  --orange: #ed8701;
  --cobalt: #1c49a6;
  --oxblood: #330f0f;
  --sage: #c3dca3;

  --sans: 'Cerebri Sans', Helvetica, Arial, sans-serif;
  --serif: 'Newsreader', 'Times New Roman', Times, serif;

  --pad: 40px;
  --pad-sm: 24px;
  --gap: 24px;
  --section-gap: 180px;
  --section-gap-sm: 120px;

  --maxw: 1640px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --h-display: clamp(4rem, 12vw, 13rem);
  --h-big: clamp(2.8rem, 8.4vw, 7.8rem);
  --h-section: clamp(1.6rem, 2.6vw, 2.5rem);
  --t-body: 0.875rem;
  --t-small: 0.875rem;
  --t-tiny: 0.8125rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overscroll-behavior-y: none; }
body {
  font-family: var(--sans);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--white); }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); padding-inline: var(--pad); max-width: var(--maxw); margin-inline: auto; }
.section { padding-block: var(--section-gap-sm); }
.section-lg { padding-block: var(--section-gap); }
.spacer { height: var(--section-gap-sm); }

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.eyebrow { font-size: var(--t-tiny); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.35rem); line-height: 1.45; font-weight: 400; }
.body { font-size: var(--t-body); line-height: 1.5; color: var(--black); }
.muted { color: var(--grey); }
.accent { color: var(--accent); }
.star { color: var(--accent); font-style: normal; display: inline-block; }

.display { font-size: var(--h-display); font-weight: 700; line-height: 0.92; letter-spacing: -0.04em; }
.big { font-size: var(--h-big); font-weight: 700; line-height: 0.96; letter-spacing: -0.035em; }
.section-title { font-size: var(--h-section); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }

/* ---------- Season Serif heading system ---------- */
h1, h2, h3, h4, h5, h6,
.service-row .name,
.about-block .about-body {
  font-family: 'Season Serif', 'Times New Roman', Times, serif;
  font-weight: 300 !important;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: none !important;
}
.hero-headline { line-height: 0.86; letter-spacing: -0.045em; }

/* ---------- Link with arrow ---------- */
.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-body); font-weight: 500; position: relative; }
.arrow-link svg { width: 20px; height: 21px; flex-shrink: 0; transition: transform 0.4s var(--ease); }
.arrow-link:hover svg { transform: translateX(6px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0; z-index: 100;
  height: 100svh; padding: 0;
  mix-blend-mode: difference; color: var(--white); pointer-events: none;
  transform: none !important;
}
.site-header > * { pointer-events: auto; }
.site-header .brand-mark {
  position: absolute;
  top: 24px;
  left: var(--pad);
}
.brand-mark { display: inline-flex; align-items: center; }
.brand-mark img { height: 20px; width: auto; filter: brightness(0) invert(1); }
.footer-brand img { filter: none !important; }
.header-nav { position: static; }
.header-nav a, .header-link {
  position: absolute;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--white);
}
.header-nav .nav-about { top: 24px; right: var(--pad); }
.header-nav .nav-work { bottom: 24px; left: var(--pad); }
.header-nav .nav-services { right: var(--pad); bottom: 24px; }
.header-nav a::after, .header-link::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.header-nav a:hover::after, .header-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header-right { display: none; }
.menu-toggle { font-size: 16px; font-weight: 500; letter-spacing: -0.03em; text-transform: none; color: var(--white); }

/* ---------- Menu overlay ---------- */
.menu-overlay { position: fixed; inset: 0; z-index: 200; background: var(--black); color: var(--white); display: flex; flex-direction: column; padding: 80px var(--pad) 40px; transform: translateY(-100%); transition: transform 0.7s var(--ease); overflow-y: auto; }
.menu-overlay.open { transform: translateY(0); }
.menu-overlay-head { display: flex; justify-content: space-between; align-items: center; }
.menu-overlay .brand-mark { color: var(--white); }
.menu-close { display: inline-flex; align-items: center; gap: 10px; font-size: var(--t-body); font-weight: 500; color: var(--white); }
.menu-close .x { position: relative; width: 22px; height: 22px; }
.menu-close .x span { position: absolute; left: 0; top: 50%; width: 100%; height: 1.5px; background: currentColor; }
.menu-close .x span:nth-child(1) { transform: rotate(45deg); }
.menu-close .x span:nth-child(2) { transform: rotate(-45deg); }
.menu-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; flex: 1; align-content: center; padding-block: 60px; }
.menu-primary { display: flex; flex-direction: column; gap: 6px; }
.menu-primary a { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.03em; color: var(--white); transition: color 0.3s, padding-left 0.4s var(--ease); width: fit-content; }
.menu-primary a:hover { color: var(--accent); padding-left: 18px; }
.menu-primary a .num { font-size: var(--t-tiny); font-weight: 500; vertical-align: super; color: var(--grey); margin-right: 10px; }
.menu-secondary { display: flex; flex-direction: column; gap: 40px; align-self: center; }
.menu-secondary h6 { font-size: var(--t-tiny); text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); font-weight: 500; margin-bottom: 14px; }
.menu-secondary ul { display: flex; flex-direction: column; gap: 10px; }
.menu-secondary a, .menu-secondary span { font-size: 1.05rem; color: var(--white); }
.menu-secondary a:hover { color: var(--accent); }
.menu-overlay-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; color: var(--grey); font-size: var(--t-small); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; }

/* ---------- Announcement marquee (thin top bar) ---------- */
.announce { display: none; }
.announce .track { display: inline-flex; align-items: center; gap: 14px; padding-inline: 14px; animation: marquee 40s linear infinite; }
.announce .track span:not(.dot) { display: inline-flex; align-items: center; white-space: nowrap; padding-inline: 18px; }
.announce .dot { color: var(--accent); font-size: 0.8em; flex-shrink: 0; }

/* ---------- Hero (pinned backdrop — page lifts over it) ---------- */
.hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(112px, 16vh, 180px) var(--pad);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(24,24,24,0.34) 0%, rgba(24,24,24,0.54) 100%);
  pointer-events: none;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.hero-spacer { height: 100vh; height: 100svh; }
.page-lift { position: relative; z-index: 2; background: var(--white); border-top: 1px solid var(--black); border-radius: 0; box-shadow: none; }
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}
.hero-headline {
  max-width: 14ch;
  font-family: 'Season Serif', 'Times New Roman', Times, serif;
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  font-weight: 300 !important;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.hero-copy {
  max-width: 76ch;
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,242,0.82);
}
.hero-headline .star { color: var(--accent); }
.hero-scroll { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); font-size: var(--t-tiny); color: var(--grey); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.hero-scroll .line { width: 1px; height: 36px; background: var(--grey); animation: scrollline 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollline { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Big statement block ---------- */
.statement { padding-block: 60px 30px; }
.statement .grid-12 { align-items: start; }
.statement .lead-col { grid-column: 1 / 8; max-width: none; white-space: nowrap; font-family: var(--sans); font-size: 42px; font-weight: 700 !important; line-height: 1.08; letter-spacing: -0.03em; }
.statement .text-col { grid-column: 8 / 13; display: flex; flex-direction: column; gap: 22px; padding-top: 0.15em; padding-left: clamp(28px, 3vw, 56px); }
.statement .text-col p { font-size: var(--t-body); line-height: 1.55; max-width: 38ch; color: var(--grey); }
.ongoing-support-statement .lead-col { max-width: 17ch; white-space: normal; }

/* ---------- Logo marquee (single row, continuous) ---------- */
.logo-marquee { overflow: hidden; white-space: nowrap; padding-block: 36px; border-block: 1px solid var(--grey-light); }
.logo-marquee .track { display: inline-flex; align-items: center; gap: clamp(48px, 7vw, 110px); padding-right: clamp(48px, 7vw, 110px); animation: marquee 32s linear infinite; }
.logo-marquee .track:hover { animation-play-state: paused; }
.logo-marquee img { height: 30px; width: auto; opacity: 0.5; filter: grayscale(1); transition: opacity 0.3s, filter 0.3s; white-space: nowrap; }
.logo-marquee img:hover { opacity: 1; filter: grayscale(0); }
.logo-marquee img[src*="Jurlique"] { height: 48px; }
.logo-marquee img[src*="salaam"] { height: 44px; }
.logo-marquee img[src*="matw"] { height: 42px; }
.logo-marquee img[src*="Nutrien"] { height: 32px; }
.logo-marquee img[src*="HL-logo"] { height: 36px; }
.logo-marquee img[src*="connor"] { height: 22px; }

/* ---------- Section heading row ---------- */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 64px; }
.section-head h3 { font-size: var(--h-section); font-weight: 600; }
#work .section-head h3 { font-family: var(--sans); font-size: clamp(2.8rem, 5.4vw, 5.8rem); font-weight: 600 !important; line-height: 0.95; letter-spacing: -0.04em; }
.section-head .index { font-size: var(--t-tiny); color: var(--grey); font-weight: 500; letter-spacing: 0.04em; }

/* ---------- Work / case study grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 110px 40px; }
.work-card { display: flex; flex-direction: column; gap: 20px; }
.work-card .media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--grey-bg); }
.work-card .media img, .work-card .media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.work-card:hover .media img, .work-card:hover .media video { transform: scale(1.04); }
.work-card .media--al-maghrib { background: #f3ede4; }
.work-card .media--al-maghrib img { object-fit: contain; }
.work-card:hover .media--al-maghrib img { transform: none; }
.work-card .title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.work-card h4 { font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.03em; }
.work-card .tags { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 2px; }
.work-card .tags span { font-size: var(--t-tiny); color: var(--grey); letter-spacing: 0.02em; }
.work-card .tags span + span::before { content: '·'; position: absolute; }
.work-card .arrow-corner { flex-shrink: 0; width: 20px; height: 21px; transition: transform 0.4s var(--ease); }
.work-card:hover .arrow-corner { transform: translate(4px, -4px); }
.work-grid.three { grid-template-columns: repeat(3, 1fr); gap: 80px 32px; }

/* ---------- Work grid — big full-width editorial cards ---------- */
.work-grid.big { grid-template-columns: 1fr; gap: 100px; }
.work-grid.big .work-card .media { aspect-ratio: 16 / 10; }
.work-grid.big .work-card h4 { font-size: clamp(2.4rem, 4vw, 4.2rem); }
.work-grid.big .work-card .title-row { padding-right: 0; }
.work-grid.big .work-card .tags { margin-top: 6px; }
.work-grid.big .work-card .tags span { font-size: var(--t-small); }

/* ---------- Highlights (alternating image / text) ---------- */
.highlights { display: flex; flex-direction: column; gap: 110px; }
.highlight { display: grid; grid-template-columns: 9fr 3fr; gap: 40px; align-items: stretch; }
.highlight.flip { grid-template-columns: 3fr 9fr; }
.highlight.flip .h-media { order: 2; }
.highlight .h-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--grey-bg); }
.highlight .h-media img, .highlight .h-media video { width: 100%; height: 100%; object-fit: cover; }
.highlight .h-data { display: flex; flex-direction: column; justify-content: flex-end; gap: 18px; }
.highlight .h-data .h-eyebrow { font-size: var(--t-tiny); text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); font-weight: 500; }
.highlight .h-data h5 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.025em; }
.highlight .h-data p { font-size: var(--t-small); line-height: 1.55; color: var(--grey); }

/* ---------- Pull quote (editorial, replaces testimonials grid) ---------- */
.pullquote { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); padding-inline: var(--pad); max-width: var(--maxw); margin-inline: auto; align-items: end; }
.pullquote .q-text { grid-column: 2 / 11; font-family: var(--sans); font-style: italic; font-weight: 400; font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: 1.22; letter-spacing: -0.03em; color: var(--black); }
.pullquote .q-text .star { color: var(--accent); }
.pullquote .q-attr { grid-column: 2 / 6; margin-top: 32px; font-size: var(--t-small); color: var(--grey); }
.pullquote .q-attr strong { color: var(--black); font-weight: 600; }

/* ---------- Services — bold dark block, giant type, still minimal ---------- */
.services-dark { background: var(--black); color: var(--white); }
.services-dark .section-head .index { color: rgba(255, 255, 255, 0.45); }
.services-list { border-top: 1px solid rgba(255, 255, 255, 0.2); }
.service-row { display: grid; grid-template-columns: 0.5fr 6fr 0.5fr; gap: 24px; align-items: center; padding: 36px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); cursor: pointer; transition: padding-left 0.45s var(--ease); }
.service-row:hover { padding-left: 22px; }
.service-row .num { font-size: var(--t-tiny); color: rgba(255, 255, 255, 0.45); font-weight: 500; }
.service-row .name { font-size: clamp(2.4rem, 7vw, 7rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.04em; text-transform: uppercase; transition: color 0.3s; }
.service-row:hover .name { color: var(--accent); }
.service-row .row-arrow { width: clamp(22px, 2.4vw, 36px); height: auto; justify-self: end; opacity: 0; transform: translateX(-14px); transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.service-row:hover .row-arrow { opacity: 1; transform: translateX(0); }
.service-row .type { display: none; }
.service-row .desc { display: none; }

/* ---------- About block ---------- */
.about-block .grid-12 { align-items: start; }
.about-block .about-label { grid-column: 1 / 3; }
.about-block .about-body { grid-column: 3 / 10; font-size: clamp(2.2rem, 4.2vw, 4.4rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.035em; }
.about-block .about-link { grid-column: 10 / 13; align-self: end; }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; white-space: nowrap; padding-block: clamp(22px, 3vw, 44px); border-top: 1px solid var(--black); border-bottom: 1px solid var(--black); }
.ticker .track { display: inline-flex; animation: marquee 28s linear infinite; }
.ticker .track:hover { animation-play-state: paused; }
.ticker .item { font-size: clamp(2.6rem, 9vw, 8rem); font-weight: 700; line-height: 1; letter-spacing: -0.035em; padding-right: 0.4em; display: inline-flex; align-items: center; }
.ticker .item .star { color: var(--accent); padding: 0 0.25em; }
.ticker .dot { width: 0.16em; height: 0.16em; border-radius: 50%; background: var(--accent); align-self: center; margin: 0 0.4em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.site-footer { padding: 80px var(--pad) 32px; display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); border-top: 1px solid var(--black); }
.site-footer .f-cta { grid-column: 1 / 6; }
.site-footer .f-cta h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 700; line-height: 0.94; letter-spacing: -0.035em; }
.site-footer .f-contacts { grid-column: 6 / 9; display: flex; flex-direction: column; gap: 14px; }
.site-footer .f-contacts a { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-body); }
.site-footer .f-contacts a svg { width: 18px; height: 19px; transition: transform 0.4s var(--ease); }
.site-footer .f-contacts a:hover svg { transform: translateX(5px); }
.site-footer .f-nav { grid-column: 9 / 13; display: flex; flex-direction: column; gap: 10px; text-align: right; }
.site-footer .f-nav a { font-size: var(--t-small); }
.site-footer .f-nav a:hover { color: var(--accent); }
.footer-bottom { grid-column: 1 / 13; display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--grey-light); font-size: var(--t-tiny); color: var(--grey); }
.footer-bottom .socials { display: flex; gap: 20px; }
.footer-bottom .socials a:hover { color: var(--black); }

/* ---------- Contact ---------- */
.contact-form { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.contact-form .form-intro { padding-left: clamp(20px, 6vw, 96px); }
.contact-form .form-intro { grid-column: 1 / 6; }
.contact-form .form-intro h2 { font-size: clamp(3rem, 6vw, 5.6rem); font-weight: 700; line-height: 0.94; letter-spacing: -0.04em; margin-bottom: 28px; }
.contact-form .form-intro p { font-size: var(--t-body); line-height: 1.5; color: var(--grey); max-width: 36ch; }
.contact-form form { grid-column: 6 / 13; display: flex; flex-direction: column; gap: 0; }
.field { border-bottom: 1px solid var(--grey-light); padding: 18px 0; display: flex; flex-direction: column; gap: 6px; transition: border-color 0.3s; }
.field:focus-within { border-color: var(--black); }
.field.error { border-color: var(--accent); }
.field label { font-size: var(--t-tiny); color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }
.field input, .field textarea, .field select { border: none; outline: none; background: none; font-family: var(--sans); font-size: 1.15rem; color: var(--black); padding: 4px 0; resize: vertical; }
.field textarea { min-height: 90px; }
.form-submit { margin-top: 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--black); color: var(--white); padding: 18px 32px; font-size: var(--t-body); font-weight: 500; border-radius: 999px; width: fit-content; transition: background 0.3s, gap 0.3s; }
.form-submit:hover { background: var(--accent); gap: 16px; }
.form-submit svg { width: 18px; height: 19px; }
.form-note { margin-top: 16px; font-size: var(--t-tiny); color: var(--grey); }
.form-success { display: none; padding: 24px 0; font-size: 1.1rem; }
.form-success.show { display: block; }

/* ---------- Case study / service page ---------- */
.page-hero { padding-top: 150px; padding-bottom: 30px; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 { font-size: var(--h-big); font-weight: 700; line-height: 0.96; letter-spacing: -0.035em; max-width: 18ch; }
.page-hero .page-cta { margin-top: 32px; }
.feature-media { width: 100%; aspect-ratio: 21 / 9; overflow: hidden; background: var(--grey-bg); margin-bottom: var(--section-gap-sm); }
.feature-media img, .feature-media video { width: 100%; height: 100%; object-fit: cover; }
.ums-strategic-shift { padding-bottom: 32px; }
.ums-strategic-shift .feature-media { margin-bottom: 0; }
.ums-identity-section { padding-top: 32px; }
.testimonial-attribution { margin-top: 24px; font-size: var(--t-small); color: var(--grey); font-weight: 500; }

/* ---------- Numbered process rows (Our approach) ---------- */
.process-list { border-top: 1px solid var(--black); }
.process-row { display: grid; grid-template-columns: minmax(140px, 0.55fr) 1.45fr; gap: clamp(32px, 5vw, 80px); padding-block: 36px; border-bottom: 1px solid var(--grey-light); }
.process-row .col-label { position: static; }
.process-row p { font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.5; max-width: 58ch; }

/* ---------- Numbered benefit rows (Why it helps) ---------- */
.benefit-list { border-top: 1px solid var(--black); }
.benefit-row { display: grid; grid-template-columns: 56px minmax(220px, 0.8fr) 1.4fr; gap: 12px clamp(24px, 4vw, 64px); align-items: baseline; padding-block: 30px; border-bottom: 1px solid var(--grey-light); }
.benefit-row .num { font-size: var(--t-tiny); font-weight: 500; color: var(--grey); }
.benefit-row h4 { font-size: clamp(1.25rem, 1.9vw, 1.8rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.benefit-row p { font-size: var(--t-body); line-height: 1.5; color: var(--grey); }

/* ---------- Growth plan pathways ---------- */
.growth-plan-types { padding-top: 30px; }
.growth-plan-types .section-head h3 { font-family: var(--sans); font-weight: 600 !important; }
.growth-plan-approach .section-head h3 { font-family: var(--sans); font-weight: 700 !important; }
.related-work-section .section-head h3 { font-family: var(--sans); font-weight: 700 !important; }
.growth-plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--black); border-left: 1px solid var(--black); }
.growth-plan-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}
.growth-plan-card-wide { grid-column: 1 / -1; min-height: 380px; }
.growth-plan-card-num { font-size: var(--t-tiny); color: var(--grey); transition: color 0.45s var(--ease); }
.growth-plan-card h4 { margin-top: 48px; max-width: 10ch; font-size: clamp(2.8rem, 5.5vw, 5.8rem); font-weight: 700; line-height: 0.9; letter-spacing: -0.045em; }
.growth-plan-card-copy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: auto; padding-top: 72px; }
.growth-plan-card-copy p { max-width: 31ch; font-size: var(--t-small); line-height: 1.5; color: var(--grey); transition: color 0.45s var(--ease); }
.growth-plan-card-copy strong { display: block; margin-bottom: 8px; color: var(--black); font-size: var(--t-tiny); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.45s var(--ease); }
.growth-plan-card-link { display: flex; justify-content: space-between; align-items: center; margin-top: 38px; padding-top: 18px; border-top: 1px solid currentColor; font-size: var(--t-small); font-weight: 500; }
.growth-plan-card-link span { font-size: 1.35rem; transition: transform 0.4s var(--ease); }
.growth-plan-card:hover { background: var(--black); color: var(--white); }
.growth-plan-card:hover .growth-plan-card-num,
.growth-plan-card:hover .growth-plan-card-copy p { color: rgba(255,255,255,0.62); }
.growth-plan-card:hover .growth-plan-card-copy strong { color: var(--white); }
.growth-plan-card:hover .growth-plan-card-link span { transform: translate(5px, -5px); }

/* ---------- Growth plan detail drafts ---------- */
.plan-detail-hero { padding-top: 170px; padding-bottom: clamp(72px, 10vw, 140px); }
.plan-detail-kicker { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 72px; font-size: var(--t-tiny); color: var(--grey); letter-spacing: 0.05em; text-transform: uppercase; }
.plan-detail-hero h1 { max-width: 11ch; font-size: clamp(4.8rem, 11vw, 11.5rem); font-weight: 700; line-height: 0.84; letter-spacing: -0.055em; }
.plan-detail-intro { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(40px, 8vw, 130px); align-items: start; padding-block: var(--section-gap-sm); border-top: 1px solid var(--black); }
.plan-detail-intro h2 { max-width: 12ch; font-size: var(--h-big); font-weight: 700; line-height: 0.96; letter-spacing: -0.035em; }
.plan-detail-intro-copy { display: flex; flex-direction: column; gap: 42px; }
.plan-detail-intro-copy p { max-width: 58ch; font-size: clamp(1.1rem, 1.7vw, 1.4rem); line-height: 1.55; }
.plan-detail-audience { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding-top: 24px; border-top: 1px solid var(--grey-light); }
.plan-detail-audience span { font-size: var(--t-tiny); color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; }
.plan-feature { background: var(--black); color: var(--white); }
.plan-feature-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(40px, 8vw, 120px); }
.plan-feature-label { font-size: var(--t-tiny); color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.plan-feature-copy h2 { max-width: 15ch; font-size: var(--h-big); font-weight: 700; line-height: 0.96; letter-spacing: -0.035em; }
.plan-feature-copy p { max-width: 55ch; margin-top: 26px; font-size: var(--t-body); line-height: 1.55; color: rgba(255,255,255,0.62); }
.plan-feature-placeholder { margin-top: 72px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.24); border-bottom: 1px solid rgba(255,255,255,0.24); font-size: var(--t-small); color: rgba(255,255,255,0.62); }
.plan-testimonial { background: var(--grey-bg); }
.plan-testimonial blockquote { max-width: 26ch; font-family: var(--sans); font-size: clamp(2rem, 4.4vw, 4.4rem); font-style: italic; line-height: 1.16; letter-spacing: -0.03em; }
.plan-testimonial cite { display: block; margin-top: 32px; font-family: var(--sans); font-size: var(--t-small); font-style: normal; color: var(--grey); }
.plan-next { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.plan-next h2 { max-width: 12ch; font-size: var(--h-big); font-weight: 700; line-height: 0.96; letter-spacing: -0.035em; }

/* ---------- Impact Strategy detail ---------- */
.impact-strategy-hero { padding-bottom: clamp(80px, 10vw, 150px); }
.impact-strategy-hero h1 { max-width: 13ch; font-size: clamp(4rem, 9vw, 10rem); }
.impact-hero-copy { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 8vw, 130px); align-items: start; margin-top: clamp(64px, 9vw, 130px); padding-top: 30px; border-top: 1px solid var(--black); }
.impact-hero-lead { max-width: 28ch; font-family: 'Season Serif', 'Times New Roman', Times, serif; font-size: clamp(2rem, 3.5vw, 3.8rem); line-height: 1.02; letter-spacing: -0.03em; }
.impact-hero-copy > div { display: flex; flex-direction: column; align-items: flex-start; gap: 36px; }
.impact-hero-copy > div p { max-width: 58ch; font-size: clamp(1.08rem, 1.55vw, 1.35rem); line-height: 1.58; color: var(--grey); }
.impact-approach { border-top: 1px solid var(--black); }
.impact-approach .section-head h2,
.impact-use-cases .section-head h2 { font-family: var(--sans); font-size: clamp(2.8rem, 5.4vw, 5.8rem); font-weight: 600 !important; line-height: 0.95; letter-spacing: -0.04em; }
.impact-approach-list,
.impact-use-case-list { border-top: 1px solid var(--black); }
.impact-approach-row { display: grid; grid-template-columns: 70px 0.7fr 1.3fr; gap: clamp(24px, 5vw, 80px); align-items: baseline; padding-block: 38px; border-bottom: 1px solid var(--grey-light); }
.impact-approach-row .num,
.impact-use-case-row .num { font-size: var(--t-tiny); color: var(--grey); }
.impact-approach-row h3 { font-size: clamp(2.5rem, 4.8vw, 4.8rem); line-height: 0.94; }
.impact-approach-row p { max-width: 60ch; font-size: var(--t-body); line-height: 1.58; color: var(--grey); }
.draft-inline { color: var(--black); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 4px; }
.impact-research .plan-feature-copy > p { max-width: 62ch; }
.impact-research .draft-inline { color: var(--white); }
.research-partner-card { display: grid; grid-template-columns: minmax(180px, 0.7fr) 1.3fr; gap: clamp(28px, 5vw, 72px); margin-top: 72px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.24); }
.research-partner-portrait { display: grid; place-items: end start; min-height: 340px; padding: 18px; background: var(--periwinkle); color: var(--black); }
.research-partner-portrait span { font-size: var(--t-tiny); letter-spacing: 0.05em; text-transform: uppercase; }
.research-partner-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.research-partner-copy .draft-label { padding: 7px 10px; border: 1px solid rgba(255,255,255,0.36); font-size: var(--t-tiny); letter-spacing: 0.05em; text-transform: uppercase; }
.research-partner-copy h3 { max-width: 12ch; font-size: clamp(2.5rem, 4.5vw, 4.8rem); line-height: 0.94; }
.research-partner-copy p { margin-top: 0; }
.impact-use-case-row { display: grid; grid-template-columns: 70px 1fr 1.15fr; gap: clamp(24px, 5vw, 80px); align-items: baseline; padding-block: 32px; border-bottom: 1px solid var(--grey-light); }
.impact-use-case-row h3 { max-width: 21ch; font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 0.98; }
.impact-use-case-row p { max-width: 52ch; font-size: var(--t-body); line-height: 1.55; color: var(--grey); }
.impact-final-cta { background: var(--sage); }
.impact-final-cta .plan-next h2 { max-width: 13ch; }

/* ---------- About page ---------- */
.about-page-hero { padding-top: 170px; padding-bottom: clamp(90px, 13vw, 190px); }
.about-page-hero .eyebrow { margin-bottom: 54px; }
.about-page-hero h1 { max-width: 10ch; font-size: clamp(5rem, 13vw, 13.5rem); line-height: 0.82; letter-spacing: -0.055em; }
.about-page-opening { padding-top: 170px; }
.about-page-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(48px, 10vw, 150px); align-items: start; padding-block: var(--section-gap-sm); border-top: 1px solid var(--black); }
.about-page-intro h2 { max-width: 13ch; font-size: var(--h-big); line-height: 0.92; letter-spacing: -0.04em; }
.about-page-intro h1 { max-width: 13ch; font-size: var(--h-big); line-height: 0.92; letter-spacing: -0.04em; }
.about-page-intro-copy { display: flex; flex-direction: column; gap: 26px; padding-top: 0.6em; }
.about-page-intro-copy p { max-width: 48ch; font-size: clamp(1.05rem, 1.45vw, 1.3rem); line-height: 1.58; color: var(--grey); }
.about-hero-image { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: var(--grey-bg); }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-audience-copy { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(48px, 10vw, 150px); align-items: end; }
.about-audience-copy h3 { max-width: 15ch; font-size: var(--h-big); line-height: 0.92; letter-spacing: -0.04em; }
.about-audience-copy p { max-width: 48ch; font-size: clamp(1.05rem, 1.45vw, 1.3rem); line-height: 1.58; color: var(--grey); }
.about-principles { border-top: 1px solid var(--black); }
.about-principle { display: grid; grid-template-columns: 70px 0.75fr 1.25fr; gap: clamp(24px, 5vw, 80px); align-items: baseline; padding-block: 34px; border-bottom: 1px solid var(--grey-light); }
.about-principle .num { font-size: var(--t-tiny); color: var(--grey); }
.about-principle h3 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 0.95; }
.about-principle p { max-width: 52ch; font-size: var(--t-body); line-height: 1.55; color: var(--grey); }
.team-section { background: var(--black); color: var(--white); }
.team-section .section-head { border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 28px; }
.team-section .section-head .index { color: rgba(255,255,255,0.48); }
#team .section-head h2,
.about-audience-section .section-head h2,
.about-principles-section .section-head h2 { font-family: var(--sans); font-size: clamp(2.8rem, 5.4vw, 5.8rem); font-weight: 600 !important; line-height: 0.95; letter-spacing: -0.04em; }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(54px, 7vw, 100px) clamp(20px, 2.5vw, 38px); }
.team-card { display: flex; flex-direction: column; gap: 22px; }
.team-portrait { position: relative; display: grid; place-items: center; aspect-ratio: 4 / 5; overflow: hidden; background: var(--periwinkle); color: var(--black); }
.team-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.team-card-mariam .team-portrait img { object-position: center 42%; }
.team-card-zoe .team-portrait img { object-position: 45% center; }
.team-card-tasnia .team-portrait img { object-position: center; }
.team-card-larissa .team-portrait img { object-position: center 42%; }
.team-card:nth-child(2) .team-portrait { background: var(--red); }
.team-card:nth-child(3) .team-portrait { background: var(--sage); }
.team-card:nth-child(4) .team-portrait { background: var(--pink); }
.team-card:nth-child(5) .team-portrait { background: var(--orange); }
.team-card:nth-child(6) .team-portrait { background: var(--cobalt); color: var(--white); }
.team-card:nth-child(7) .team-portrait { background: var(--oxblood); color: var(--white); }
.team-card:nth-child(8) .team-portrait { background: var(--green); color: var(--white); }
.team-initials { font-family: 'Season Serif', 'Times New Roman', Times, serif; font-size: clamp(5rem, 10vw, 10rem); font-weight: 300; line-height: 1; letter-spacing: -0.06em; }
.team-placeholder-label { position: absolute; left: 18px; bottom: 16px; font-size: var(--t-tiny); letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.65; }
.team-info { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; border-top: 1px solid rgba(255,255,255,0.22); padding-top: 18px; }
.team-info h3 { max-width: 13ch; font-size: clamp(2rem, 3.2vw, 3.2rem); line-height: 0.95; }
.team-info p { max-width: 18ch; font-size: var(--t-small); line-height: 1.35; color: rgba(255,255,255,0.58); text-align: right; }
.team-profile { border-top: 1px solid rgba(255,255,255,0.22); }
.team-profile summary { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; padding-top: 18px; cursor: pointer; list-style: none; }
.team-profile summary::-webkit-details-marker { display: none; }
.team-profile summary:focus-visible { outline: 2px solid var(--orange); outline-offset: 5px; }
.team-profile-heading { display: flex; flex-direction: column; gap: 8px; }
.team-profile-name { max-width: 13ch; font-family: 'Season Serif', 'Times New Roman', Times, serif; font-size: clamp(2rem, 3.2vw, 3.2rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.035em; }
.team-profile-role { font-size: var(--t-small); line-height: 1.35; color: rgba(255,255,255,0.58); }
.team-profile-action { display: flex; align-items: center; gap: 10px; padding-top: 5px; font-size: var(--t-tiny); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.team-profile-icon { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(255,255,255,0.42); border-radius: 50%; font-size: 1rem; line-height: 1; transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease); }
.team-profile summary:hover .team-profile-icon { background: var(--white); color: var(--black); }
.team-profile[open] .team-profile-icon { transform: rotate(45deg); }
.team-profile[open] .team-profile-label { font-size: 0; }
.team-profile[open] .team-profile-label::after { content: 'Close'; font-size: var(--t-tiny); }
.team-bio-copy { padding: 28px 0 4px; }
.team-bio-copy p { font-size: var(--t-small); line-height: 1.62; color: rgba(255,255,255,0.7); }

/* ---------- Category badge on work-card media ---------- */
.work-card .media .badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--white); color: var(--black); font-size: var(--t-tiny); font-weight: 500; letter-spacing: 0.03em; padding: 7px 14px; border-radius: 999px; }
.prose { max-width: 60ch; }
.prose p { font-size: 1.15rem; line-height: 1.6; margin-bottom: 1.2em; color: var(--black); }
.prose h2 { font-size: var(--h-big); font-weight: 700; line-height: 0.98; letter-spacing: -0.035em; margin-bottom: 0.5em; }
.prose ul { display: flex; flex-direction: column; gap: 12px; margin: 1em 0; }
.prose ul li { font-size: 1.1rem; line-height: 1.5; padding-left: 24px; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 12px; height: 1.5px; background: var(--accent); }
.two-col { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.two-col .col-label { font-size: var(--t-tiny); text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); font-weight: 500; position: sticky; top: 110px; }
.two-col blockquote.serif { max-width: 34ch; font-family: var(--sans); }
.two-col p { max-width: 62ch; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.pillars.two { grid-template-columns: repeat(2, 1fr); }
.pillar { display: flex; flex-direction: column; gap: 14px; padding-top: 22px; border-top: 1px solid var(--black); }
.pillar h4 { font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.pillar p { font-size: var(--t-small); line-height: 1.55; color: var(--grey); }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.expertise-grid .col h5 { font-size: var(--t-tiny); text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); font-weight: 500; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--grey-light); }
.expertise-grid .col ul { display: flex; flex-direction: column; gap: 10px; }
.expertise-grid .col li { font-size: var(--t-small); }
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--grey-light); }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-item .q { display: flex; justify-content: space-between; gap: 24px; padding: 26px 0; font-size: 1.3rem; font-weight: 600; cursor: pointer; }
.faq-item .q .toggle { width: 20px; height: 20px; position: relative; flex-shrink: 0; margin-top: 6px; }
.faq-item .q .toggle span { position: absolute; left: 0; top: 50%; width: 100%; height: 1.5px; background: var(--black); }
.faq-item .q .toggle span:last-child { transform: rotate(90deg); transition: transform 0.4s var(--ease); }
.faq-item.open .q .toggle span:last-child { transform: rotate(0); }
.faq-item .a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item .a p { padding-bottom: 26px; font-size: 1.05rem; line-height: 1.55; color: var(--grey); max-width: 60ch; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery .g-full { grid-column: 1 / -1; }
.gallery img { width: 100%; }
.bless-press-section { padding-top: clamp(80px, 10vw, 150px); }
.bless-press-section .eyebrow { margin-bottom: 30px; }
.bless-press-clippings { display: flex; flex-direction: column; gap: 24px; }
.bless-press-clipping,
.bless-press-quote { overflow: hidden; background: #fff; }
.bless-press-clipping img,
.bless-press-quote img { width: 100%; height: auto; }
.bless-press-quote { width: min(72%, 1080px); margin-left: auto; }
.bless-press-caption { margin-top: 18px; font-size: var(--t-tiny); color: var(--grey); }
.arise-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.arise-gallery .g-full, .arise-portrait-wrap { grid-column: 1 / -1; }
.arise-gallery > img { width: 100%; height: 100%; object-fit: cover; }
.arise-portrait-wrap { display: flex; justify-content: center; padding: clamp(28px, 6vw, 92px); background: var(--black); }
.arise-portrait-wrap img { width: min(100%, 760px); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-small); color: var(--grey); margin-bottom: 40px; }
.back-link svg { width: 16px; transform: rotate(180deg); }

/* ---------- Testimonials (kept for sub-pages) ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.testimonial { display: flex; flex-direction: column; gap: 24px; padding-top: 28px; border-top: 1px solid var(--black); }
.testimonial .case { font-size: var(--t-tiny); text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey); }
.testimonial blockquote { font-family: var(--sans); font-style: italic; font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.35; font-weight: 400; color: var(--black); }
.testimonial .person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial .person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial .person .who { font-size: var(--t-small); }
.testimonial .person .who strong { display: block; font-weight: 600; }
.testimonial .person .who span { color: var(--grey); }

/* ---------- One Billion case study ---------- */
.one-billion-concept { color: var(--white); }
.one-billion-concept-blue { background: #3267f5; }
.one-billion-concept-yellow { background: #fff94f; color: var(--black); }
.one-billion-concept .eyebrow { color: currentColor; opacity: 0.72; }
.one-billion-concept-head { display: grid; grid-template-columns: minmax(120px, 2fr) minmax(0, 8fr); gap: 24px; align-items: start; margin-bottom: 72px; }
.one-billion-concept-head h2 { max-width: 12ch; font-size: clamp(3.2rem, 7vw, 7.5rem); line-height: 0.9; letter-spacing: -0.045em; }
.one-billion-concept-head p { max-width: 62ch; margin-top: 28px; line-height: 1.6; color: currentColor; opacity: 0.78; }
.one-billion-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.one-billion-gallery figure { overflow: hidden; background: rgba(255,255,255,0.12); }
.one-billion-gallery figure.wide { grid-column: 1 / -1; }
.one-billion-gallery img { width: 100%; height: 100%; object-fit: cover; }
.one-billion-gallery figure:not(.wide) { aspect-ratio: 16 / 9; }
.one-billion-final { background: var(--grey-bg); }

/* Keep paragraph and long-form list copy consistent across the site. */
body p:not(.impact-hero-lead),
body .prose li,
body .expertise-grid .col li { font-size: 14px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 1.15s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ---------- Custom cursor ---------- */
.cursor-dot { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--white); border-radius: 50%; pointer-events: none; z-index: 999; transform: translate(-50%, -50%); mix-blend-mode: difference; opacity: 0; transition: opacity 0.3s, width 0.3s, height 0.3s; }
.cursor-dot.active { opacity: 1; }
.cursor-dot.grow { width: 64px; height: 64px; background: var(--white); }
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --pad: 28px; --section-gap: 120px; --section-gap-sm: 80px; --gap: 20px; }
  .work-grid, .work-grid.three { grid-template-columns: repeat(2, 1fr); gap: 70px 28px; }
  .testimonials { grid-template-columns: 1fr; gap: 36px; }
  .pillars, .pillars.two { grid-template-columns: 1fr; gap: 32px; }
  .process-row { grid-template-columns: 1fr; gap: 14px; }
  .benefit-row { grid-template-columns: 40px 1fr; }
  .benefit-row p { grid-column: 2; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .menu-grid { grid-template-columns: 1fr; gap: 40px; align-content: start; }
  .highlight, .highlight.flip { grid-template-columns: 1fr; gap: 24px; }
  .highlight.flip .h-media { order: 0; }
  .highlights { gap: 70px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col .col-label { position: static; }
  .statement .lead-col, .statement .text-col { grid-column: 1 / -1; }
  .statement .lead-col { max-width: none; }
  .statement .text-col { padding-top: 28px; padding-left: 0; }
  .about-block .about-label, .about-block .about-body, .about-block .about-link { grid-column: 1 / -1; }
  .about-block .about-link { margin-top: 16px; }
  .site-footer .f-cta, .site-footer .f-contacts, .site-footer .f-nav { grid-column: 1 / -1; text-align: left; }
  .contact-form .form-intro, .contact-form form { grid-column: 1 / -1; }
  .contact-form .form-intro { padding-left: 0; }
  .pullquote .q-text, .pullquote .q-attr { grid-column: 1 / -1; }
  .header-nav { display: block; }
  .growth-plan-card-copy { grid-template-columns: 1fr; }
  .plan-detail-intro, .plan-feature-grid { grid-template-columns: 1fr; }
  .impact-hero-copy { grid-template-columns: 1fr; }
  .impact-approach-row,
  .impact-use-case-row { grid-template-columns: 50px 1fr; }
  .impact-approach-row p,
  .impact-use-case-row p { grid-column: 2; }
  .about-page-intro { grid-template-columns: 1fr; }
  .about-audience-copy { grid-template-columns: 1fr; align-items: start; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .one-billion-concept-head { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --pad: 20px; --section-gap: 90px; --section-gap-sm: 60px; }
  .work-grid, .work-grid.three { grid-template-columns: 1fr; gap: 56px; }
  .gallery { grid-template-columns: 1fr; }
  .bless-press-quote { width: 100%; }
  .arise-gallery { grid-template-columns: 1fr; }
  .arise-gallery .g-full, .arise-portrait-wrap { grid-column: auto; }
  .service-row { grid-template-columns: 0.4fr 1fr 0.4fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .growth-plan-grid { grid-template-columns: 1fr; }
  .growth-plan-card-wide { grid-column: auto; }
  .growth-plan-card { min-height: 430px; }
  .plan-detail-kicker, .plan-next { flex-direction: column; align-items: flex-start; }
  .plan-detail-audience { grid-template-columns: 1fr; }
  .research-partner-card { grid-template-columns: 1fr; }
  .research-partner-portrait { min-height: 260px; }
  .about-principle { grid-template-columns: 44px 1fr; }
  .about-principle p { grid-column: 2; }
  .team-grid { grid-template-columns: 1fr; }
  .statement .lead-col { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker .track, .announce .track, .logo-marquee .track { animation: none; }
}
/* ============================================================
   Minimal brand imagery refresh
   ============================================================ */

.signal-story-media img,
.proof-image img { width: 100%; height: 100%; object-fit: cover; }

/* Supporting motion images: no frames, labels, or colour panels. */
.signal-story {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--pad) var(--section-gap-sm);
}
.signal-story-media {
  height: min(72vh, 820px);
  overflow: hidden;
}
.proof-section { background: var(--grey-bg); }
.proof-image {
  width: min(calc(100% - (var(--pad) * 2)), var(--maxw));
  height: min(66vh, 720px);
  margin: clamp(64px, 8vw, 120px) auto 0;
  overflow: hidden;
}

/* Preserve the case-study layout from the current live site. */
#work { background: var(--white); }
.work-grid.big { grid-template-columns: 1fr; gap: 100px; }
.work-grid.big .work-card {
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--black);
}
.work-grid.big .work-card .media {
  aspect-ratio: 16 / 10;
  background: var(--grey-bg);
}
.work-grid.big .work-card .title-row { padding: 0; }
.work-grid.big .work-card .tags { margin-top: 6px; padding: 0; }
.work-grid.big .work-card .tags span { color: var(--grey); opacity: 1; }

@media (max-width: 760px) {
  .signal-story { padding-bottom: var(--section-gap-sm); }
  .signal-story-media { height: 58svh; min-height: 380px; }
  .proof-image { height: 54svh; min-height: 380px; }
}

/* ============================================================
   Homepage — Visible Strategy
   Dark editorial storytelling, adapted for Monale
   ============================================================ */
.home-visible-strategy { background: var(--black); }
.home-visible-strategy .hero {
  background: var(--black);
  animation: none;
}
.home-visible-strategy .hero::after {
  display: none;
}
.home-visible-strategy .hero-inner {
  z-index: 2;
  max-width: 1180px;
}
.hero-specks-3d {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .88;
  filter: drop-shadow(0 0 6px rgba(255,255,242,.12));
}
.hero-specks-3d canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.home-visible-strategy .vs-kicker {
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,242,.72);
}
.home-visible-strategy .hero-headline {
  max-width: 13ch;
  font-size: clamp(4.2rem, 8.6vw, 9.2rem);
  line-height: .84;
  text-wrap: balance;
  color: var(--white);
  animation: none;
}
.hero-typewriter.typing::after {
  content: '';
  display: inline-block;
  width: .045em;
  height: .72em;
  margin-left: .08em;
  background: currentColor;
  animation: hero-typewriter-caret .7s steps(1, end) infinite;
  transform: translateY(.04em);
}
@keyframes hero-typewriter-caret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}
.home-visible-strategy .hero-copy {
  max-width: 50ch;
  margin-top: 42px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,242,.88);
}
.home-visible-strategy .vs-kicker,
.home-visible-strategy .hero-copy {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .home-visible-strategy .hero,
  .home-visible-strategy .hero-headline,
  .home-visible-strategy .vs-kicker,
  .home-visible-strategy .hero-copy { animation: none; }
  .hero-specks-3d { opacity: .72; }
}
.home-visible-strategy .page-lift {
  background: var(--black);
  color: var(--white);
  border-color: rgba(255,255,242,.26);
}
.vs-manifesto,
.vs-framework,
.vs-plans,
.vs-growth-case,
.vs-expertise,
.vs-work,
.vs-contact {
  padding: clamp(110px, 14vw, 220px) var(--pad);
}
.vs-manifesto {
  display: flex;
  flex-direction: column;
  gap: .08em;
  min-height: 95svh;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,242,.22);
}
.vs-manifesto-line {
  max-width: 16ch;
  font-family: 'Season Serif', 'Times New Roman', serif;
  font-size: clamp(3.6rem, 8vw, 8.6rem);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.05em;
}
.vs-manifesto-line:nth-child(2) { margin-left: 14vw; color: rgba(255,255,242,.58); }
.vs-manifesto-line:nth-child(3) { margin-left: auto; color: var(--periwinkle); }
.vs-section-intro {
  display: grid;
  grid-template-columns: minmax(120px, 2fr) minmax(0, 8fr);
  gap: var(--gap);
  align-items: start;
  margin-bottom: clamp(70px, 9vw, 140px);
}
.vs-label {
  padding-top: .55em;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,242,.52);
}
.vs-section-intro h2 {
  max-width: 10ch;
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: .82;
  letter-spacing: -.06em;
}
.vs-section-intro p {
  max-width: 58ch;
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,242,.68);
}
.vs-text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 36px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
}
.vs-framework { border-bottom: 1px solid rgba(255,255,242,.22); }
.vs-framework-list { border-top: 1px solid rgba(255,255,242,.35); }
.vs-framework-row {
  display: grid;
  grid-template-columns: .55fr 2fr 2.2fr;
  gap: var(--gap);
  align-items: start;
  padding: clamp(32px, 4vw, 58px) 0;
  border-bottom: 1px solid rgba(255,255,242,.22);
}
.vs-framework-row > span { color: rgba(255,255,242,.48); }
.vs-framework-row h3 { font-size: clamp(3rem, 7vw, 7rem); line-height: .82; }
.vs-framework-row p { max-width: 48ch; font-size: 16px; line-height: 1.55; color: rgba(255,255,242,.68); }
.vs-plans { background: var(--white); color: var(--black); }
.vs-plans .vs-label { color: var(--grey); }
.vs-plans .vs-section-intro p { color: var(--grey); }
.vs-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.vs-plan-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 24px;
  background: #e9e9df;
  transition: transform .45s var(--ease), background .45s var(--ease);
}
.vs-plan-card:nth-child(2) { background: var(--periwinkle); }
.vs-plan-card:nth-child(3) { background: var(--sage); }
.vs-plan-card:nth-child(4) { background: #ebe5da; }
.vs-plan-card:nth-child(5) { background: var(--pink); grid-column: span 2; }
.vs-plan-card:hover { transform: translateY(-8px); }
.vs-plan-card > span { font-size: 12px; color: rgba(24,24,24,.58); }
.vs-plan-card h3 { max-width: 9ch; margin-top: 64px; font-size: clamp(2.5rem, 4.5vw, 5rem); line-height: .88; }
.vs-plan-card p { max-width: 34ch; margin-top: auto; padding-top: 46px; font-size: 14px; line-height: 1.45; }
.vs-growth-case {
  padding-top: 0;
  background: var(--white);
  color: var(--black);
}
.vs-growth-case-link {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  min-height: 72svh;
  overflow: hidden;
  border-radius: 28px;
  background: var(--periwinkle);
}
.vs-growth-case-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 74px);
}
.vs-growth-case-copy .vs-label { color: rgba(24,24,24,.58); }
.vs-growth-case-copy h2 {
  max-width: 8ch;
  margin-top: clamp(64px, 10vw, 150px);
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: .84;
  letter-spacing: -.06em;
}
.vs-growth-case-copy p {
  max-width: 46ch;
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.55;
}
.vs-growth-case-copy .vs-text-link { margin-top: auto; padding-top: 48px; }
.vs-growth-case-media { min-height: 560px; }
.vs-growth-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs-expertise { border-bottom: 1px solid rgba(255,255,242,.22); }
.vs-expertise-list { border-top: 1px solid rgba(255,255,242,.35); }
.vs-expertise-item {
  display: grid;
  grid-template-columns: .5fr 6fr;
  gap: var(--gap);
  align-items: baseline;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255,255,242,.22);
  font-family: 'Season Serif', 'Times New Roman', serif;
  font-size: clamp(2.6rem, 6vw, 6.7rem);
  line-height: .9;
  letter-spacing: -.045em;
}
.vs-expertise-item span { font-family: var(--sans); font-size: 12px; color: rgba(255,255,242,.46); }
.vs-work { background: var(--black); }
.home-visible-strategy #work { background: var(--black); color: var(--white); }
.home-visible-strategy #work .work-grid.big { gap: clamp(72px, 8vw, 120px) 24px; }
.home-visible-strategy #work .work-card { color: var(--white); }
.home-visible-strategy #work .work-card h4 { color: var(--white); }
.home-visible-strategy #work .work-card .tags span { color: rgba(255,255,242,.55); }
.home-visible-strategy .proof-section {
  padding: clamp(110px, 14vw, 220px) 0;
  background: var(--periwinkle);
  border: 0;
}
.home-visible-strategy .pullquote .q-text,
.home-visible-strategy .pullquote .q-attr,
.home-visible-strategy .pullquote .q-attr strong { color: var(--black); }
.vs-contact { background: var(--white); color: var(--black); }
.vs-contact .contact-form { padding: 0; }
.home-visible-strategy .site-footer { background: var(--white); color: var(--black); }

@media (max-width: 900px) {
  .vs-section-intro { grid-template-columns: 1fr; }
  .vs-framework-row { grid-template-columns: 48px 1fr; }
  .vs-framework-row p { grid-column: 2; }
  .vs-plan-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .vs-plan-card:nth-child(5) { grid-column: auto; }
  .vs-growth-case-link { grid-template-columns: 1fr; }
  .vs-growth-case-media { min-height: 52svh; order: -1; }
}
@media (max-width: 650px) {
  .home-visible-strategy .hero-headline { font-size: clamp(3.8rem, 17vw, 6rem); }
  .home-visible-strategy .hero-copy { font-size: 14px; max-width: 32ch; }
  .vs-manifesto,
  .vs-framework,
  .vs-plans,
  .vs-growth-case,
  .vs-expertise,
  .vs-work,
  .vs-contact { padding: 96px 20px; }
  .vs-manifesto-line:nth-child(2),
  .vs-manifesto-line:nth-child(3) { margin-left: 0; }
  .vs-section-intro h2 { font-size: clamp(3.5rem, 18vw, 6rem); }
  .vs-framework-row { grid-template-columns: 34px 1fr; }
  .vs-framework-row h3 { font-size: clamp(3rem, 16vw, 5rem); }
  .vs-plan-grid { grid-template-columns: 1fr; }
  .vs-plan-card { min-height: 310px; }
  .vs-plan-card:nth-child(5) { grid-column: auto; }
  .vs-expertise-item { grid-template-columns: 32px 1fr; font-size: clamp(2.45rem, 13vw, 4.2rem); }
}

@media (max-width: 480px) {
  .signal-story,
  .proof-image { width: calc(100% - 40px); padding-inline: 0; }
  .service-row .name { font-size: clamp(2rem, 11vw, 3.2rem); }
  .one-billion-gallery { grid-template-columns: 1fr; }
  .one-billion-gallery figure.wide { grid-column: auto; }
  .one-billion-gallery figure,
  .one-billion-gallery figure:not(.wide) { aspect-ratio: auto; }
}

/* ============================================================
   Constant-inspired editorial direction
   Centred proposition · high-contrast work · thin rules
   ============================================================ */
.logo-marquee {
  padding-block: 28px;
  background: var(--white);
}

#work {
  background: var(--white);
  color: var(--black);
}
#work .section-head {
  align-items: flex-end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--black);
}
#work .section-head h3 {
  max-width: 10ch;
  font-family: var(--sans);
  font-size: clamp(3.8rem, 10vw, 10rem);
  font-weight: 400 !important;
  line-height: 0.82;
  letter-spacing: -0.06em;
}
#work .section-head .index,
#work .work-card .tags span { color: var(--grey); }

.work-grid.big {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(72px, 9vw, 140px) 24px;
}
.work-grid.big .work-card { color: var(--black); }
.work-grid.big .work-card .media { aspect-ratio: 4 / 3; }
.work-grid.big .work-card h4 {
  max-width: 19ch;
  font-family: var(--sans);
  font-size: clamp(1.75rem, 3vw, 3.4rem);
  font-weight: 400 !important;
  line-height: 1;
  letter-spacing: -0.04em;
}

.services-dark {
  background: var(--white);
  color: var(--black);
}
.services-dark .section-head {
  align-items: flex-end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--black);
}
.services-dark .section-head h3 {
  font-family: var(--sans);
  font-size: clamp(3.8rem, 10vw, 10rem);
  font-weight: 400 !important;
  line-height: 0.82;
  letter-spacing: -0.06em;
}
.services-dark .section-head .index { color: var(--grey); }
.services-list { border-top: 0; }
.service-row {
  padding: 28px 0;
  border-bottom-color: var(--black);
}
.service-row .num { color: var(--grey); }
.service-row .name {
  font-family: var(--sans);
  font-size: clamp(2.25rem, 5.5vw, 5.5rem);
  font-weight: 400 !important;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.proof-section {
  background: var(--white);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.pullquote .q-text {
  font-family: 'Season Serif', 'Times New Roman', Times, serif;
  font-style: normal;
  font-weight: 300;
}
.about-block {
  border-top: 1px solid var(--black);
}

@media (max-width: 760px) {
  .hero { padding-inline: 24px; }
  .hero-headline { font-size: clamp(3rem, 14vw, 5.2rem); }
  .hero-copy { max-width: 52ch; margin-top: 28px; }
  #work .section-head,
  .services-dark .section-head { align-items: flex-start; }
  .work-grid.big { grid-template-columns: 1fr; gap: 72px; }
  .work-grid.big .work-card .media { aspect-ratio: 4 / 3; }
}
