/* ============================================================
   MADDY K EVENTS — Maison
   Quiet luxury. Warm white, ink, hairlines. Monochrome frame —
   the photography carries all colour. No ornament.
   ============================================================ */

:root {
  --bg: #faf9f5;
  --panel: #f2f0e9;
  --ink: #181713;
  --sub: #5e5a52;
  --line: #e6e2d8;
  --black: #111110;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", "Didot", Georgia, serif;
  --font-body: "Jost", "Futura", "Avenir Next", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --nav-h: 88px;
  --pad: clamp(72px, 9vw, 128px);
  /* legacy aliases — older markup resolves into the new quiet palette */
  --noir: var(--black);
  --noir-2: var(--panel);
  --charcoal: var(--panel);
  --charcoal-2: var(--panel);
  --ivory: var(--ink);
  --ivory-dim: rgba(255, 255, 255, 0.75);
  --mist: #8a867c;
  --line-soft: var(--line);
  --champagne: var(--ink);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bg); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* retired ornaments — kept as no-ops so older markup stays harmless */
.preloader, .cursor-glow, .scroll-progress, .hero-watermark, .rot-badge,
.sticky-cta, .exit-modal, .footer-wordmark, .aw-laurel, .scroll-cue { display: none !important; }
.grain::after { content: none; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1200;
  transition: transform 0.45s var(--ease), background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.hidden { transform: translateY(-101%); }
.site-header.scrolled {
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
/* over dark heroes the header text is light until scroll */
.site-header:not(.scrolled) { color: var(--white); }
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.82); }
.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links a.active { color: var(--white); }
.site-header:not(.scrolled) .lang-toggle { border-color: rgba(255,255,255,0.35); }
.site-header:not(.scrolled) .lang-toggle button { color: rgba(255,255,255,0.7); }
.site-header:not(.scrolled) .lang-toggle button.on { background: var(--white); color: var(--ink); }
.site-header:not(.scrolled) .burger span { background: var(--white); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h);
  padding: 14px clamp(20px, 4vw, 56px);
  transition: padding 0.45s var(--ease);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 58px;
  height: auto;
  transform-origin: left center;
  transition: transform 0.55s var(--ease);
}
/* interior pages: logo rendered larger without affecting the bar */
.site-header:not(.scrolled) .brand img { transform: scale(1.55); }
/* home: only the logo travels — down and centred over the film — then docks */
body.home .site-header:not(.scrolled) .brand img {
  transform-origin: center center;
  transform: translate(calc(50vw - 50% - clamp(20px, 4vw, 56px)), calc(24svh - 43px)) scale(3.5);
}
@media (max-width: 700px) {
  body.home .site-header:not(.scrolled) .brand img {
    transform: translate(calc(50vw - 50% - 20px), calc(22svh - 43px)) scale(2.3);
  }
}
.site-header.scrolled .brand img { transform: none; }
.site-footer .brand img { width: 96px; height: 96px; }
.brand .brand-word {
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
}
.brand .brand-word span { display: none; }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.nav-links a {
  position: relative;
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sub);
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid var(--line);
  padding: 3px;
  font-size: 10.5px; letter-spacing: 0.12em;
}
.lang-toggle button { padding: 4px 12px; color: var(--sub); transition: all 0.25s; }
.lang-toggle button.on { background: var(--ink); color: var(--bg); }

.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.burger span { width: 24px; height: 1px; background: var(--ink); transition: all 0.35s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 1100;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 500;
  color: var(--ink);
  padding: 7px 0;
  transform: translateY(16px); opacity: 0;
  transition: all 0.4s var(--ease);
}
.mobile-menu.open a { transform: none; opacity: 1; }
.mobile-menu a:hover { font-style: italic; }
.mobile-menu .mm-meta { margin-top: 26px; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--sub); }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* ---------- layout ---------- */
.wrap { width: min(1240px, calc(100% - clamp(40px, 8vw, 96px))); margin: 0 auto; }
.wrap-wide { width: min(1400px, calc(100% - 40px)); margin: 0 auto; }

section { position: relative; }
.section-pad { padding: var(--pad) 0; }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--ink); }
.eyebrow .num { color: var(--ink); letter-spacing: 0.14em; }

h1, h2, .display, .display-xl, .display-lg, .display-md, .display-sm {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.004em;
}
h3 {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.display-xl { font-size: clamp(40px, 5.4vw, 82px); }
.display-lg { font-size: clamp(32px, 4vw, 58px); }
.display-md { font-size: clamp(26px, 3vw, 40px); }
.display-sm { font-size: clamp(21px, 2.2vw, 27px); }
.italic { font-style: italic; }
.thin-caps { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sub); }

.lead { font-size: clamp(16px, 1.35vw, 19px); font-weight: 400; color: var(--sub); line-height: 1.85; }
.body-dim { color: var(--sub); }
.small { font-size: 13.5px; }

.divider { height: 1px; width: 100%; background: var(--line); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 34px;
  border: 1px solid var(--ink);
  font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: transparent; color: var(--ink); }

/* buttons that sit on dark surfaces */
.hero .btn, .page-hero .btn, .cta-band .btn, .site-footer .btn {
  border-color: var(--white); color: var(--white);
}
.hero .btn:hover, .page-hero .btn:hover, .cta-band .btn:hover, .site-footer .btn:hover { background: var(--white); color: var(--ink); }
.hero .btn-solid, .page-hero .btn-solid, .cta-band .btn-solid { background: var(--white); color: var(--ink); }
.hero .btn-solid:hover, .page-hero .btn-solid:hover, .cta-band .btn-solid:hover { background: transparent; color: var(--white); }

.link-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  transition: opacity 0.3s, gap 0.3s var(--ease);
}
.link-line:hover { opacity: 0.55; gap: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.9);
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,16,0.34), rgba(17,17,16,0.06) 38%, rgba(17,17,16,0.78) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(52px, 8vh, 96px); }
.hero-kicker {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}
.hero-kicker::before { content: none; }
.hero h1 { max-width: 18ch; text-shadow: 0 2px 28px rgba(0,0,0,0.4); }
.page-hero h1 { text-shadow: none; }
.hero h1 .line { display: block; overflow: hidden; }
.hero .word { display: inline-block; transform: translateY(110%); animation: wordUp 0.9s var(--ease) forwards; }
@keyframes wordUp { to { transform: translateY(0); } }
.hero-foot { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: clamp(18px, 3vw, 36px); }
.hero-tags { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.hero-tags b { font-weight: 300; padding: 0 8px; }

/* ---------- reveals (subtle) ---------- */
.rv, .rv-l, .rv-r, .rv-scale { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.rv.inview, .rv-l.inview, .rv-r.inview, .rv-scale.inview { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(14px); transition: all 0.6s var(--ease); }
[data-stagger].inview > * { opacity: 1; transform: none; }
.split-words .w { display: inline-block; opacity: 0; transform: translateY(0.35em); transition: all 0.55s var(--ease); }
.split-words.inview .w { opacity: 1; transform: none; }

.plx-frame { overflow: hidden; position: relative; }
.plx-frame img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }

.img-hover { overflow: hidden; position: relative; }
.img-hover img { transition: transform 0.9s var(--ease); }
.img-hover:hover img { transform: scale(1.03); }
.img-hover::after { content: none; }

/* ---------- ticker (quiet, single) ---------- */
.ticker {
  overflow: hidden; display: flex; user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: flex; align-items: center; flex-shrink: 0;
  gap: clamp(48px, 7vw, 110px);
  padding-right: clamp(48px, 7vw, 110px);
  animation: marquee var(--speed, 48s) linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker[data-dir="rtl"] .ticker-track { animation-direction: reverse; }
@keyframes marquee { to { transform: translateX(-100%); } }

.ticker-word { display: none; }

.logo-cloud-item {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: var(--sub);
  text-transform: uppercase;
  transition: color 0.3s;
}
.logo-cloud-item:hover { color: var(--ink); }
.logo-cloud-item span { display: none; }

/* ---------- reels row ---------- */
.reel-card {
  position: relative;
  width: clamp(180px, 19vw, 250px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--panel);
}
.reel-card video, .reel-card img { width: 100%; height: 100%; object-fit: cover; }
.reel-card .reel-tag { display: none; }
.reel-card .play-ind {
  position: absolute; right: 12px; bottom: 12px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(17,17,16,0.55);
  color: var(--white);
  font-size: 9px;
}

/* ---------- stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-cell {
  padding: clamp(34px, 4vw, 56px) 20px;
  text-align: center;
}
.stat-cell + .stat-cell { border-left: 1px solid var(--line); }
.stat-cell .n { font-family: var(--font-display); font-size: clamp(38px, 4vw, 60px); line-height: 1; }
.stat-cell .n em { font-style: normal; }
.stat-cell .l { margin-top: 12px; font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sub); }
@media (max-width: 760px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(3) { border-left: none; }
  .stat-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- services — calm alternating rows ---------- */
.stack-zone { display: grid; gap: clamp(56px, 7vw, 96px); }
.stack-card {
  position: static;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  min-height: 0;
}
.stack-card:nth-child(even) .sc-media { order: 2; }
.stack-card .sc-media { position: relative; overflow: hidden; }
.stack-card .sc-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.9s var(--ease); }
.stack-card:hover .sc-media img { transform: scale(1.03); }
.stack-card .sc-media::after { content: none; }
.stack-card .sc-body { position: relative; padding: 0; }
.stack-card .sc-num {
  position: static;
  display: block;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--sub);
  -webkit-text-stroke: 0;
  margin-bottom: 16px;
}
.stack-card h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 2.8vw, 40px); margin-bottom: 14px; }
.stack-card .sc-desc { color: var(--sub); max-width: 48ch; margin-bottom: 22px; }
.stack-card .sc-list { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-bottom: 28px; }
.stack-card .sc-list li {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sub);
  padding: 0; border: none; border-radius: 0;
}
.stack-card .sc-list li::before { content: "— "; }
@media (max-width: 860px) {
  .stack-card { grid-template-columns: 1fr; gap: 22px; }
  .stack-card:nth-child(even) .sc-media { order: 0; }
}

/* ---------- horizontal gallery ---------- */
.hscroll-shell { position: relative; }
.hscroll {
  display: flex; gap: clamp(14px, 1.6vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4vw 8px;
  scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll-item {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 420px);
  scroll-snap-align: center;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
}
.hscroll-item.wide { width: clamp(380px, 46vw, 640px); aspect-ratio: 4 / 3; }
.hscroll-item img, .hscroll-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.hscroll-item:hover img { transform: scale(1.03); }
.hscroll-item .cap {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  display: flex; justify-content: space-between; gap: 10px;
}
.hscroll-nav { display: flex; gap: 10px; justify-content: flex-end; padding: 14px 4vw 0; }
.hscroll-nav button {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  transition: all 0.3s;
}
.hscroll-nav button:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* dark sections keep their gallery nav visible */
.on-dark .hscroll-nav button { border-color: rgba(255,255,255,0.3); color: var(--white); }
.on-dark .hscroll-nav button:hover { background: var(--white); color: var(--ink); }

/* ---------- bento → uniform quiet grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: clamp(10px, 1.2vw, 16px);
}
.bento-cell { position: relative; overflow: hidden; background: var(--panel); }
.bento-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.bento-cell:hover img { transform: scale(1.03); }
.bento-cell::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 62%, rgba(17,17,16,0.55));
}
.bento-cell .bc-label {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.bento-cell .bc-label b { display: block; font-family: var(--font-body); font-size: 13.5px; font-weight: 400; letter-spacing: 0.08em; text-transform: none; color: var(--white); margin-top: 3px; }
.bento-text { display: flex; flex-direction: column; justify-content: center; padding: 28px; background: var(--panel); }
.bento-text::before { content: none; }
.b-6 { grid-column: span 6; grid-row: span 3; }
.b-4 { grid-column: span 4; grid-row: span 2; }
.b-8 { grid-column: span 8; grid-row: span 2; }
.b-3 { grid-column: span 3; grid-row: span 2; }
.b-5 { grid-column: span 5; grid-row: span 2; }
.b-4t { grid-column: span 4; grid-row: span 3; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .b-6, .b-4, .b-8, .b-3, .b-5, .b-4t { grid-column: span 6; grid-row: span 2; }
  .b-3 { grid-column: span 3; }
}

/* ---------- galleries ---------- */
.masonry { columns: 3 300px; column-gap: clamp(12px, 1.4vw, 18px); }
.masonry figure {
  break-inside: avoid;
  margin-bottom: clamp(12px, 1.4vw, 18px);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.masonry figure img { width: 100%; transition: transform 0.8s var(--ease), opacity 0.4s; }
.masonry figure:hover img { transform: scale(1.02); opacity: 0.94; }
.masonry figure figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 14px 12px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(17,17,16,0.6));
  opacity: 0; transition: opacity 0.4s;
}
.masonry figure:hover figcaption { opacity: 1; }

/* uniform selected-work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}
.work-grid figure { position: relative; overflow: hidden; cursor: zoom-in; margin: 0; }
.work-grid figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.8s var(--ease); }
.work-grid figure:hover img { transform: scale(1.03); }
.work-grid figure figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 14px 12px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(17,17,16,0.6));
  opacity: 0; transition: opacity 0.4s;
}
.work-grid figure:hover figcaption { opacity: 1; }
@media (max-width: 760px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }

.filter-row { display: flex; flex-wrap: wrap; gap: 4px 26px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
.filter-row button {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 12px 2px;
  color: var(--sub);
  border: none; border-radius: 0;
  position: relative;
  transition: color 0.3s;
}
.filter-row button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--ink); transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.filter-row button:hover { color: var(--ink); }
.filter-row button.on { color: var(--ink); background: none; }
.filter-row button.on::after { transform: scaleX(1); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(17, 17, 16, 0.95);
  z-index: 2500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; }
.lightbox .lb-btn {
  position: absolute;
  width: 48px; height: 48px;
  color: var(--white);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
  background: none;
}
.lightbox .lb-btn:hover { background: var(--white); color: var(--ink); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.6);
}

/* ---------- testimonials ---------- */
.testi-stage { position: relative; min-height: 260px; }
.testi-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(12px);
  transition: all 0.7s var(--ease);
  pointer-events: none;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.testi-slide.on { opacity: 1; transform: none; pointer-events: auto; }
.testi-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 34px);
  font-style: italic;
  line-height: 1.45;
  max-width: 30ch;
}
.testi-slide blockquote::before { content: "“"; }
.testi-slide blockquote::after { content: "”"; }
.testi-slide cite {
  margin-top: 22px;
  font-style: normal;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sub);
}
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
.testi-dots button { width: 24px; height: 1px; background: var(--line); transition: all 0.3s; }
.testi-dots button.on { background: var(--ink); width: 40px; }

/* on dark surfaces */
.on-dark .testi-slide cite { color: rgba(255,255,255,0.6); }
.on-dark .testi-dots button { background: rgba(255,255,255,0.25); }
.on-dark .testi-dots button.on { background: var(--white); }

/* ---------- timeline ---------- */
.timeline { position: relative; padding-left: clamp(24px, 4vw, 48px); }
.timeline::before { content: ""; position: absolute; left: 3px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 clamp(38px, 4.5vw, 60px) clamp(20px, 2.6vw, 38px); }
.tl-item::before {
  content: ""; position: absolute;
  left: calc(-1 * clamp(24px, 4vw, 48px)); top: 10px;
  width: 7px; height: 7px;
  background: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.tl-item .tl-year { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 38px); line-height: 1; }
.tl-item h3 { font-size: clamp(15.5px, 1.4vw, 17.5px); margin: 8px 0 6px; }
.tl-item p { color: var(--sub); max-width: 60ch; }

/* ---------- zigzag ---------- */
.zig { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 5.5vw, 84px); align-items: center; }
.zig + .zig { margin-top: clamp(60px, 8vw, 110px); }
.zig .zig-media { overflow: hidden; }
.zig .zig-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.zig.rev .zig-media { order: 2; }
@media (max-width: 860px) {
  .zig { grid-template-columns: 1fr; }
  .zig.rev .zig-media { order: 0; }
}

/* ---------- accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 2px;
  text-align: left;
}
.acc-head .q { font-family: var(--font-body); font-size: clamp(15.5px, 1.4vw, 18px); font-weight: 400; letter-spacing: 0.02em; }
.acc-head .ic {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 300;
  color: var(--sub);
  border: none;
  transition: transform 0.35s var(--ease);
}
.acc-item.open .ic { transform: rotate(45deg); background: none; color: var(--ink); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.acc-body p { padding: 0 2px 26px; color: var(--sub); max-width: 70ch; }

/* ---------- tabs ---------- */
.tabs-head { display: flex; flex-wrap: wrap; gap: 4px 30px; border-bottom: 1px solid var(--line); margin-bottom: 42px; }
.tabs-head button {
  padding: 13px 2px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sub);
  position: relative;
  transition: color 0.3s;
}
.tabs-head button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--ink);
  transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.tabs-head button.on { color: var(--ink); }
.tabs-head button.on::after { transform: scaleX(1); }
.tab-panel { display: none; animation: fadeUp 0.5s var(--ease); }
.tab-panel.on { display: grid; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } }

/* ---------- press ---------- */
.press-list { border-top: 1px solid var(--line); }
.press-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: clamp(14px, 2.6vw, 40px);
  align-items: center;
  padding: clamp(22px, 2.8vw, 36px) 2px;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.3s;
}
.press-row:hover { opacity: 0.6; background: none; padding-left: 2px; }
.press-row .p-year { font-family: var(--font-display); font-size: 21px; color: var(--sub); }
.press-row h3 { font-size: clamp(16px, 1.5vw, 19px); }
.press-row .p-src { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sub); margin-top: 4px; }
.press-row .p-arr { font-size: 18px; color: var(--sub); transition: transform 0.3s; }
.press-row:hover .p-arr { transform: translate(3px, -3px); color: var(--ink); }
@media (max-width: 700px) { .press-row { grid-template-columns: 1fr auto; } .press-row .p-year { display: none; } }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: clamp(28px, 4vw, 52px) clamp(18px, 2.4vw, 32px); }
.post-card { border: none; border-radius: 0; background: none; display: flex; flex-direction: column; cursor: pointer; transition: none; }
.post-card:hover { transform: none; }
.post-card .pc-media { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.post-card:hover .pc-media img { transform: scale(1.03); }
.post-card .pc-body { padding: 20px 0 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .pc-meta { display: flex; gap: 12px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sub); }
.post-card h3 { font-size: clamp(16.5px, 1.5vw, 19px); line-height: 1.4; }
.post-card p { color: var(--sub); font-size: 14.5px; flex: 1; }
.post-card .link-line { align-self: flex-start; }

/* article overlay */
.article-modal {
  position: fixed; inset: 0;
  z-index: 2600;
  background: rgba(17,17,16,0.55);
  display: none;
  overflow-y: auto;
  padding: clamp(14px, 3.5vw, 52px);
}
.article-modal.open { display: block; }
.article-shell { max-width: 820px; margin: 0 auto; background: var(--bg); animation: fadeUp 0.45s var(--ease); }
.article-shell .am-hero { aspect-ratio: 21/9; }
.article-shell .am-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-shell .am-body { padding: clamp(26px, 4.5vw, 60px); }
.article-shell .am-body h2 { font-size: clamp(26px, 3.4vw, 42px); margin-bottom: 8px; }
.article-shell .am-body h4 { font-family: var(--font-display); font-size: 22px; margin: 30px 0 8px; font-weight: 500; font-style: italic; }
.article-shell .am-body p { color: var(--sub); margin-bottom: 16px; }
.article-close { position: sticky; top: 0; display: flex; justify-content: flex-end; padding: 12px; z-index: 3; }
.article-close button { width: 42px; height: 42px; background: var(--ink); color: var(--bg); font-size: 16px; }

/* ---------- forms ---------- */
.field { position: relative; margin-bottom: 30px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 2px;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.3s;
  border-radius: 0;
}
.field textarea { min-height: 110px; resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--bg); color: var(--ink); }
.field label {
  position: absolute; left: 2px; top: 12px;
  font-size: 14.5px; color: var(--sub);
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field.filled label {
  top: -12px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-success { display: none; text-align: center; padding: 52px 20px; }
.form-success.on { display: block; animation: fadeUp 0.6s var(--ease); }

/* ---------- contact cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; border: 1px solid var(--line); }
.c-card { border: none; border-radius: 0; padding: 28px 26px; background: none; transition: none; }
.c-card + .c-card { border-top: 1px solid var(--line); }
.c-card:hover { transform: none; background: var(--panel); }
.c-card .cc-ic { display: none; }
.c-card h4 { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sub); margin-bottom: 8px; font-weight: 400; font-family: var(--font-body); }
.c-card p, .c-card a { font-family: var(--font-body); font-size: 15.5px; font-weight: 400; }
.c-card a:hover { font-style: italic; }

.map-frame { overflow: hidden; border: 1px solid var(--line); filter: grayscale(1) contrast(0.95); height: clamp(280px, 36vw, 420px); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- CTA band — flat black ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border: none; border-radius: 0;
  padding: clamp(64px, 9vw, 120px) clamp(24px, 6vw, 90px);
  text-align: center;
  background: var(--black);
  color: var(--white);
}
.cta-band .cta-bg { display: none; }
.cta-band .thin-caps { color: rgba(255,255,255,0.6); }

/* full-bleed cta variant */
.cta-section { background: var(--black); color: var(--white); }
.cta-section .thin-caps { color: rgba(255,255,255,0.6); }

/* ---------- scroll top ---------- */
.to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  z-index: 900;
  opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: clamp(56px, 7vw, 96px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(28px, 4.5vw, 64px);
  margin-bottom: clamp(44px, 6vw, 76px);
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand-word { color: var(--white); }
.site-footer h5 { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; font-weight: 400; }
.site-footer .f-links li { margin-bottom: 10px; }
.site-footer .f-links a { color: rgba(255,255,255,0.75); font-size: 14.5px; transition: color 0.25s; }
.site-footer .f-links a:hover { color: var(--white); padding-left: 0; }
.f-brand p { color: rgba(255,255,255,0.5); max-width: 34ch; margin-top: 16px; font-size: 14.5px; }
.f-social { display: flex; gap: 10px; margin-top: 22px; }
.f-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: all 0.3s;
}
.f-social a svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.f-social a:hover { background: var(--white); color: var(--ink); border-color: var(--white); transform: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  font-size: 11.5px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.site-footer .link-line { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ---------- page hero (interior) ---------- */
.page-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding-top: calc(var(--nav-h) + clamp(84px, 10vw, 150px));
  padding-bottom: clamp(52px, 7vw, 88px);
}
.page-hero .ph-bg { display: none; }
.page-hero .lead { color: rgba(255,255,255,0.72); }
.breadcrumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs .sep { color: rgba(255,255,255,0.4); }

/* ---------- misc ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5.5vw, 90px); }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.tilt { transform: none !important; }

.chip-row { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.chip {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0; border: none; border-radius: 0;
  color: var(--sub);
}
.chip::before { content: "— "; }
.chip:hover { color: var(--ink); }
a.chip { border-bottom: 1px solid transparent; }
a.chip:hover { border-bottom-color: var(--ink); }

.award-card {
  border: none; border-radius: 0;
  border-top: 1px solid var(--ink);
  padding: clamp(24px, 3vw, 38px) 0 0;
  background: none;
  transition: none;
}
.award-card:hover { transform: none; }
.award-card .aw-year { font-size: 10.5px; letter-spacing: 0.3em; color: var(--sub); text-transform: uppercase; }
.award-card h3 { font-size: clamp(15.5px, 1.4vw, 18px); margin: 12px 0 8px; }
.award-card p { color: var(--sub); font-size: 13.5px; }

.video-feature { position: relative; overflow: hidden; border: none; border-radius: 0; aspect-ratio: 16 / 9; background: var(--panel); }
.video-feature video { width: 100%; height: 100%; object-fit: cover; }

#confetti-canvas { display: none; }

/* dark band sections (page sections that stay black) */
.band-dark { background: var(--black); color: var(--white); }
.band-dark .eyebrow { color: rgba(255,255,255,0.55); }
.band-dark .eyebrow::before { background: var(--white); }
.band-dark .lead, .band-dark .body-dim { color: rgba(255,255,255,0.65); }
.band-dark .thin-caps { color: rgba(255,255,255,0.55); }
.band-dark .small { color: rgba(255,255,255,0.5); }
.band-dark .logo-cloud-item { color: rgba(255,255,255,0.55); }
.band-dark .logo-cloud-item:hover { color: var(--white); }

.band-dark .stats-row, .band-dark .stat-cell + .stat-cell { border-color: rgba(255,255,255,0.16); }
.band-dark .stat-cell .n { color: var(--white); }
.band-dark .stat-cell .l { color: rgba(255,255,255,0.5); }
.band-dark .award-card { border-top-color: rgba(255,255,255,0.85); }
.band-dark .award-card .aw-year { color: rgba(255,255,255,0.5); }
.band-dark .award-card h3 { color: var(--white); }
.band-dark .award-card p { color: rgba(255,255,255,0.55); }
.band-dark .link-line { color: var(--white); border-color: rgba(255,255,255,0.45); }
.band-dark .btn { border-color: var(--white); color: var(--white); }
.band-dark .btn:hover { background: var(--white); color: var(--ink); }
.band-dark .btn-solid { background: var(--white); color: var(--ink); }
.band-dark .btn-solid:hover { background: transparent; color: var(--white); }
.band-dark .divider { background: rgba(255,255,255,0.14); }
.band-dark .testi-slide cite { color: rgba(255,255,255,0.55); }
.band-dark .testi-dots button { background: rgba(255,255,255,0.25); }
.band-dark .testi-dots button.on { background: var(--white); }
.band-dark .chip { color: rgba(255,255,255,0.6); }
.band-dark .chip:hover { color: var(--white); }
.band-dark .small { color: rgba(255,255,255,0.45); }
.band-dark .stack-card .sc-desc, .band-dark .stack-card .sc-list li { color: rgba(255,255,255,0.6); }

/* panel band (subtle warm gray) */
.band-panel { background: var(--panel); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .rv, .rv-l, .rv-r, .rv-scale, [data-stagger] > *, .split-words .w { opacity: 1 !important; transform: none !important; }
}

/* uniform portrait strip */
.portrait-strip img { width: clamp(220px, 22vw, 300px); height: clamp(300px, 30vw, 400px); object-fit: cover; flex-shrink: 0; }

/* static captions under grid figures */
.caption-grid figure { cursor: default; }
.caption-grid figure figcaption {
  position: static; opacity: 1; background: none;
  padding: 12px 0 0;
  color: var(--sub);
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
}

/* home hero statement */
.hero h1.hero-statement { max-width: 820px; margin-top: 14px; font-size: clamp(27px, 3.9vw, 50px); line-height: 1.14; text-shadow: 0 2px 28px rgba(0,0,0,0.45); }
.hero .hero-kicker { margin-bottom: 0; }
.hero-foot { margin-top: 30px; }
@media (max-width: 600px) { .hero h1.hero-statement { font-size: clamp(24px, 6.6vw, 32px); max-width: 24ch; } }

/* as seen in */
.press-marks {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(20px, 3.4vw, 52px) clamp(26px, 4.5vw, 64px);
}
.press-mark {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.9vw, 24px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sub);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .hero-foot { gap: 10px; width: 100%; }
  .hero-foot .btn { padding: 13px 20px; font-size: 10px; letter-spacing: 0.16em; }
}

/* masthead lockups — typeset, monochrome, uniform baseline */
.press-marks { align-items: center; }
.lockup { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; color: var(--ink); opacity: 0.82; }
.lockup-np { font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 1.8vw, 23px); letter-spacing: 0.12em; }
.lockup-gn { font-family: var(--font-body); font-weight: 500; font-size: clamp(15px, 1.6vw, 20px); letter-spacing: 0.02em; }
.lockup-gn b { font-weight: 500; letter-spacing: 0.14em; }
.lockup-cn { font-family: var(--font-body); font-weight: 500; font-style: italic; font-size: clamp(15px, 1.6vw, 20px); letter-spacing: 0.01em; }
.lockup-wb { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(19px, 2vw, 26px); text-transform: lowercase; letter-spacing: 0.02em; }
.lockup-li { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(19px, 2vw, 26px); letter-spacing: 0.04em; }
.lockup-gr { font-family: var(--font-body); font-weight: 400; font-size: clamp(14px, 1.5vw, 18px); letter-spacing: 0.3em; text-transform: uppercase; }
.lockup-cea { gap: 2px; }
.lockup-cea .t, .lockup-cea .b { font-family: var(--font-body); font-weight: 500; font-size: clamp(8px, 0.8vw, 10px); letter-spacing: 0.42em; text-transform: uppercase; }
.lockup-cea .m { font-family: var(--font-display); font-weight: 500; font-size: clamp(15px, 1.6vw, 21px); letter-spacing: 0.3em; text-transform: uppercase; }
.lockup-goss { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: 0.16em; }

/* print tearsheets */
.tearsheet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.tearsheet-grid figure { margin: 0; cursor: zoom-in; }
.tearsheet-grid figure .ts-frame {
  background: #fff; border: 1px solid var(--line);
  aspect-ratio: 3 / 4; display: flex; align-items: center; justify-content: center;
  padding: 10px; overflow: hidden;
}
.tearsheet-grid figure img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform 0.6s var(--ease); }
.tearsheet-grid figure:hover img { transform: scale(1.02); }
.tearsheet-grid figcaption { padding: 10px 2px 0; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sub); }
@media (max-width: 860px) { .tearsheet-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- real logo marks ---------- */
.logo-mark {
  height: clamp(24px, 2.4vw, 34px);
  width: auto; max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.35s var(--ease);
  flex-shrink: 0;
}
.logo-mark:hover { opacity: 1; }
.band-dark .logo-mark, .cta-band .logo-mark, .site-footer .logo-mark { filter: invert(1); opacity: 0.7; }
.logo-mark.tall { height: clamp(34px, 3.6vw, 50px); max-width: 120px; }
.press-marks .logo-mark { height: clamp(22px, 2.2vw, 32px); max-width: 150px; opacity: 0.6; }
.ticker-track .logo-mark { margin: 0; }

/* ---------- partnership rows ---------- */
.partner-rows { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 64px); max-width: 980px; }
@media (max-width: 820px) { .partner-rows { grid-template-columns: 1fr; } }
.partner-row { border-top: 1px solid var(--ink); padding-top: 22px; }
.partner-row .pr-logo { height: 74px; display: flex; align-items: flex-end; margin-bottom: 16px; }
.partner-row .pr-logo img { max-height: 100%; width: auto; max-width: 175px; object-fit: contain; object-position: left bottom; opacity: 0.85; }
.partner-row h3 { font-size: clamp(15px, 1.4vw, 17.5px); margin-bottom: 6px; }
.partner-row p { color: var(--sub); font-size: 13.5px; line-height: 1.65; }

/* ---------- case study cards ---------- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.5vw, 34px); max-width: 1000px; }
@media (max-width: 860px) { .case-grid { grid-template-columns: 1fr; } }
.case-card { display: flex; flex-direction: column; }
.case-card .cc-img { overflow: hidden; aspect-ratio: 4 / 3; }
.case-card .cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.case-card:hover .cc-img img { transform: scale(1.03); }
.case-card .cc-logo { height: 42px; margin: 22px 0 12px; display: flex; align-items: center; }
.case-card .cc-logo img { height: 100%; width: auto; max-width: 150px; object-fit: contain; opacity: 0.8; }
.case-card h3 { font-size: clamp(16px, 1.5vw, 19px); margin-bottom: 8px; }
.case-card p { color: var(--sub); font-size: 14px; line-height: 1.7; }
.case-card .cc-tags { margin-top: 14px; font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sub); }

/* ---------- static logo grid (non-ticker) ---------- */
.logo-grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(22px, 3.4vw, 52px) clamp(28px, 4.4vw, 64px);
}
