/* ============================================================
   JNP MERCHANDISING — Editorial luxury homepage
   ============================================================ */

:root {
  /* palette — blue & white */
  --white:    #FFFFFF;
  --paper:    #F6F6F4;   /* barely-there off-white for subtle layering */
  --ink:      #10131C;   /* near-black, for body text on white */
  --ink-soft: #444a59;
  --blue:     #101FB5;   /* brand blue */
  --blue-deep:#101FB5;   /* alias — same blue sitewide */

  /* legacy aliases kept so existing rules resolve to the blue/white system */
  --cream:    var(--white);
  --cream-2:  var(--paper);
  --cobalt:   var(--blue);

  --hero-accent: var(--blue);

  /* fonts */
  --display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --display-weight: 700;
  --body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* motion */
  --motion: 1;        /* 1 = lively, 0 = off-ish (set by tweak) */

  --maxw: 1480px;
  --gutter: clamp(20px, 5vw, 72px);
  --split-pad-y: clamp(96px, 12vw, 168px);
  --hero-offset: 140px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: var(--display-weight, 700);
}

em { font-style: italic; }

/* editorial accent: italic words go blue on white, white on blue fields */
h1 em, h2 em, h3 em { color: var(--blue); }
.field em, .field h1 em, .field h2 em, .field h3 em { color: inherit; }

a { color: inherit; text-decoration: none; }

/* .relative / .clickable-parent utilities live in theme.css so linked
   cards work on every theme-rendered page, not just custom-experience ones */

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 72%, white);
  outline-offset: 4px;
  border-radius: 8px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  align-items: center;
}

.serif { font-family: var(--display); }
.it { font-style: italic; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--body);
  font-weight: 700;
  padding: 1.05em 1.8em;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
button.btn { font: inherit; }
.btn--solid { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--solid:hover {
  background: color-mix(in srgb, var(--blue) 88%, white);
  border-color: color-mix(in srgb, var(--blue) 88%, white);
}
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--cream:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--onfield { background: transparent; color: inherit; border-color: currentColor; }
.btn--onfield:hover { background: currentColor; }
.btn--onfield:hover span { color: var(--ink); }

.arrow { transition: transform .35s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- eyebrow / kicker ---------- */
.kicker {
  font-family: var(--body);
  font-weight: 700;
  opacity: .72;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.kicker::before {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  display: inline-block;
}

/* ============================================================
   PLACEHOLDER (styled image field)
   ============================================================ */
.ph {
  position: relative;
  overflow: hidden;
  background-color: var(--cream-2);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 13px,
    rgba(28,24,19,0.045) 13px, rgba(28,24,19,0.045) 14px
  );
  border: 1px solid rgba(28,24,19,0.12);
  display: flex;
  align-items: flex-end;
  color: var(--ink);
}
.ph--onfield {
  background-color: rgba(255,255,255,0.07);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 13px,
    rgba(255,255,255,0.10) 13px, rgba(255,255,255,0.10) 14px
  );
  border-color: rgba(255,255,255,0.22);
  color: currentColor;
}
.ph__tag {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  padding: .7em .85em;
  margin: 14px;
  background: rgba(244,238,227,0.82);
  color: var(--ink);
  border: 1px solid rgba(28,24,19,0.18);
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
.ph--onfield .ph__tag {
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.22);
}
.ph__lens {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  border: 1.5px solid rgba(28,24,19,0.28);
  border-radius: 50%;
}
.ph__lens::after {
  content: "";
  position: absolute; inset: 6px;
  border: 1.5px solid rgba(28,24,19,0.20);
  border-radius: 50%;
}
.ph--onfield .ph__lens { border-color: rgba(255,255,255,0.4); }
.ph--onfield .ph__lens::after { border-color: rgba(255,255,255,0.28); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px var(--gutter);
}
.announce__msg { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.announce__msg b { font-weight: 700; }
.dot-sep { opacity: .45; }
.announce__phone { font-weight: 700; white-space: nowrap; }
.announce__phone:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 760;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28,24,19,0.10);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { box-shadow: 0 10px 40px rgba(28,24,19,0.08); }
.nav__inner {
  position: relative;
  z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
}
.logo { display: flex; flex-direction: column; }
.logo__img { height: 38px; width: auto; display: block; filter: invert(1) brightness(0); }
.logo__fallback { display: none; flex-direction: column; }
.logo.img-failed .logo__img { display: none; }
.logo.img-failed .logo__fallback { display: flex; }
.logo__mark { font-family: var(--display); }
.logo__sub {
  font-family: var(--body); font-weight: 700; opacity: .7; margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 26px;
  width: max-content;
  margin-inline: auto;
  list-style: none;
}
.nav__links a { font-weight: 500;
  position: relative; padding: 4px 0;
  display: flex;
  align-items: center;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--cobalt); transition: width .3s;
}
.nav__links a:hover { color: var(--cobalt); }
.nav__links a:hover::after { width: 100%; }
.nav__links a[aria-current="page"] {
  color: var(--cobalt);
}
.nav__links a[aria-current="page"]::after {
  width: 100%;
}
body.page-about .nav__links a[href*="/about/"] {
  color: var(--cobalt);
}
body.page-about .nav__links a[href*="/about/"]::after {
  width: 100%;
}
body.page-community .nav__links a[href*="/community/"] {
  color: var(--cobalt);
}
body.page-community .nav__links a[href*="/community/"]::after {
  width: 100%;
}
body.page-portfolio .nav__links a[href*="/portfolio/"] {
  color: var(--cobalt);
}
body.page-portfolio .nav__links a[href*="/portfolio/"]::after {
  width: 100%;
}
.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__cta .btn { padding: .8em 1.4em; }
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(28,24,19,.14);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(16,19,28,.08);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.nav__burger:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--blue) 32%, rgba(28,24,19,.14));
  box-shadow: 0 16px 34px rgba(16,19,28,.13);
}
.nav__burger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform .24s cubic-bezier(.2,.8,.2,1), opacity .2s ease, background .2s ease;
}
.nav__burger[aria-expanded="true"] { background: var(--ink); border-color: var(--ink); }
.nav__burger[aria-expanded="true"] span { background: var(--white); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mega Menu ---------- */
.has-mega { position: static; }
/* Services mega menu - no underline, has arrow instead */
.nav__links .has-mega > a::after { display: none; }
.has-mega > a {
  gap: 5px;
}
.has-mega > a .arrow-icon {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .6;
  transition: transform .2s, opacity .2s;
  flex-shrink: 0;
}
.has-mega:hover > a .arrow-icon {
  transform: rotate(180deg);
  opacity: 1;
}
.has-mega:hover > a { color: var(--cobalt); }
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: auto;
  left: 50%;
  width: min(var(--content-width, var(--maxw)), calc(100vw - (var(--gutter, 20px) * 2)));
  max-width: calc(100vw - (var(--gutter, 20px) * 2));
  min-width: 0;
  padding: clamp(22px, 2.2vw, 32px);
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(16,19,28,.1);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(16,19,28,.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px) scale(.985);
  transform-origin: top center;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 100;
  margin-top: 0;
}
/* Hover bridge - invisible area to prevent menu from closing */
.mega-menu::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 48px;
  pointer-events: auto;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
/* Keep menu open when hovering over it */
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.mega-col {
  min-width: 0;
  padding: 16px;
  background: color-mix(in srgb, var(--cream) 64%, white);
  border: 1px solid rgba(16,19,28,.07);
  border-radius: 14px;
}
.mega-col h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 0;
  font-size: var(--text-s);
  letter-spacing: .02em;
}
.mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-col ul li a {
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 10px;
  border-radius: 10px;
  font-size: var(--text-s);
  line-height: 1.25;
  transition: color .2s, background .2s, transform .2s;
}
.mega-col ul li a:hover {
  color: var(--blue);
  background: var(--white);
  transform: translateX(3px);
}
.mega-col ul li a::after { display: none; }

/* ---------- Portfolio Scroll Section ---------- */
.portfolio-section {
  display: block;
  padding: clamp(64px, 8vw, 112px) 0 clamp(34px, 4vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(100% - clamp(58px, 5vw, 78px)),
      color-mix(in srgb, var(--blue) 12%, transparent) calc(100% - clamp(58px, 5vw, 78px)),
      color-mix(in srgb, var(--blue) 12%, transparent) calc(100% - clamp(58px, 5vw, 78px) + 2px),
      transparent calc(100% - clamp(58px, 5vw, 78px) + 2px)
    );
}
.portfolio-section > .wrap {
  display: block;
}
.portfolio-section .sec-head {
  max-width: none;
  margin-bottom: clamp(30px, 3.6vw, 48px);
}
.portfolio-section .sec-head h2 {
  font-size: var(--h1);
  line-height: var(--heading-line-height);
}
.portfolio-section .btn {
  font-size: var(--text-m);
  line-height: var(--text-line-height);
}
.portfolio-scroll-outer {
  display: block;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
}
.portfolio-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0 44px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scrollbar-color: var(--blue) color-mix(in srgb, var(--blue) 12%, transparent);
  scrollbar-width: thin;
}
.portfolio-card:first-child {
  margin-left: var(--gutter);
}
.portfolio-card:last-child {
  margin-right: var(--gutter);
}
.portfolio-scroll:active,
.portfolio-scroll.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.portfolio-scroll::-webkit-scrollbar {
  height: 6px;
}
.portfolio-scroll::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  border-radius: 999px;
}
.portfolio-scroll::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 999px;
}
.portfolio-card {
  flex: 0 0 clamp(330px, 27vw, 400px);
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
}
.portfolio-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.05);
}
.portfolio-card-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: .7rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}
.portfolio-card-body {
  padding-top: 16px;
}
.portfolio-card-title {
  font-family: var(--display);
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  font-weight: 600;
  line-height: 1.28;
  text-wrap: var(--heading-text-wrap);
  margin-bottom: 8px;
}
.portfolio-card-link {
  font-size: .76rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.portfolio-card-link .arrow {
  font-size: 1em;
  transition: transform .2s;
}
.portfolio-card:hover .portfolio-card-link {
  gap: 10px;
}
.portfolio-card:hover .portfolio-card-link .arrow {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .mega-menu {
    min-width: 800px;
    padding: 28px 32px;
  }
  .mega-grid {
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .mega-menu {
    min-width: 700px;
    left: 0;
    transform: translateX(-30%);
  }
  .has-mega:hover .mega-menu {
    transform: translateX(-30%) translateY(8px);
  }
}

/* ============================================================
   HERO — full-bleed campaign image
   ============================================================ */
.hero {
  position: relative;
  height: clamp(520px, calc(100svh - var(--hero-offset)), 1000px);
  min-height: 0;
  max-height: 1000px;
  width: 100%;
  overflow: hidden;
  color: var(--white);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background-color: var(--blue-deep);
}
.hero__slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.hero__slide.is-active { opacity: 1; }
.hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}
.phero .hero__bg-img { object-position: center 20%; }
.lb-hero .hero__bg-img { object-position: center center; }
.services-hero .hero__bg-img { object-position: center center; }
/* overlay for text legibility */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16,19,28,0.55) 0%, rgba(16,19,28,0) 42%),
    linear-gradient(to bottom, rgba(16,19,28,0.35) 0%, rgba(16,19,28,0) 30%);
  z-index: 2;
  pointer-events: none;
}

/* small header, lower-left */
.hero__header {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  bottom: clamp(34px, 6vw, 72px);
  max-width: 30ch;
}
.phero .hero__header { max-width: 80ch; }
.hero__eyebrow { font-weight: 700; opacity: .92;
}
.hero__head {
  font-family: var(--display);
  margin-top: 14px;
}
.hero__head em { color: var(--white); }
.hero__cta {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: .6em; font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1.5px solid currentColor;
}
.hero__cta .arrow { transition: transform .35s; }
.hero__cta:hover .arrow { transform: translateX(5px); }

/* tiny corner caption, upper-right */
.hero__caption {
  position: absolute; z-index: 3;
  top: clamp(22px, 4vw, 38px); right: var(--gutter);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  opacity: .82; text-align: right;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--blue);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: scroll-x calc(34s / var(--motion, 1)) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
  white-space: nowrap;
  filter: brightness(0) invert(1);
}
.marquee__item img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.marquee__item--text {
  filter: none;
}

.marquee__word {
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Reel Center-Scale Marquee ---------- */
.reel-carousel {
  background: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
  overflow: hidden;
  position: relative;
}
.reel-carousel__stage {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: center;
  height: 540px;
}
.reel-carousel__item {
  flex: 0 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  transition: height 0.3s ease, width 0.3s ease, box-shadow 0.3s ease;
}
.reel-carousel__item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: clamp(64px, 9vw, 132px) 0; }
.section--tight { padding: clamp(48px, 6vw, 92px) 0; }

.field { color: var(--white); }
.field--cobalt  { background: var(--blue); }
.field--clay    { background: var(--blue); }
.field--emerald { background: var(--white); color: var(--ink); }
.field--ochre   { background: var(--blue); color: var(--white); }
.field--ink     { background: var(--blue-deep); }
.field em       { color: inherit; }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(34px, 4vw, 56px); }
.sec-head h2, .sec-head__h {}
.sec-head p { max-width: 36ch; opacity: .82; }

/* ---------- We Brand the Brands ---------- */
/* ---------- We Brand the Brands (full-bleed split) ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about__text {
  padding-block: var(--split-pad-y);
  padding-inline: var(--gutter);
  padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__text > * { max-width: 36rem; }
.about__text > .brand-state { max-width: min(54rem, 100%); }
.about__media { position: relative; min-height: 560px; }
.about__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
/* ---------- Full-bleed split sections (Pillow / ACA / Giving / Book) ---------- */
.fsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  gap: 0;
}
.fsplit__text {
  padding: var(--split-pad-y) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fsplit__text > * { max-width: 36rem; }
.fsplit__text h2 {}
.fsplit__text .lead { margin-top: 1.3rem; max-width: 38ch; opacity: .92; }
/* base for every .ctas button row — scoped variants only adjust spacing */
.ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.ctas--center { justify-content: center; }

/* centered section header variant for long, sentence-style headings */
.sec-head.sec-head--center {
  justify-content: center;
  text-align: center;
}
.sec-head.sec-head--center h2 {
  font-size: var(--h2);
  max-width: 86ch;
  margin-inline: auto;
}
.sec-head.sec-head--center .kicker { justify-content: center; }
.sec-head.sec-head--center .kicker::before { display: none; }

.fsplit__text .ctas { margin-top: 2rem; display: flex; gap: 14px; flex-wrap: wrap; }
.fsplit__media { position: relative; min-height: 560px; }
.fsplit__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.brand-state {}
.brand-copy { margin-top: 1.4rem; max-width: 40ch; opacity: .9; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 2.6rem; }
.stat__n { font-family: var(--display); }
.stat__l { opacity: .8; margin-top: .5rem; }
.brand-media .ph { aspect-ratio: 4 / 5; }

/* ---------- Process ---------- */
.process { position: relative; overflow: hidden; }
.process-head { max-width: 60rem; margin-bottom: clamp(40px, 5vw, 72px); }
.process-head .kicker { display: inline-flex; }
.process-head p { margin-top: 1.2rem; opacity: .82; max-width: 46ch; }
.home-section-intro {
  align-items: flex-start;
}
.home-section-intro .process-head {
  width: 100%;
  max-width: none;
}
.home-section-intro .process-head h2,
.home-section-intro .process-head p {
  max-width: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 0.8vw, 14px);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0 clamp(24px, 2.6vw, 40px);
  margin: 0;
  box-sizing: border-box;
}
.step {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  isolation: isolate;
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.22);
}
.step__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.step:hover .step__img { transform: scale(1.05); }
.step__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .4s ease;
}
.step:hover .step__overlay {
  background: rgba(255,255,255,0);
}
/* default: small label bar at bottom */
.step__content {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 0 0 12px 12px;
  padding: 10px 14px;
  color: var(--ink);
  transition: inset .4s cubic-bezier(.2,.8,.2,1), padding .4s ease, border-radius .4s ease, background .4s ease;
  overflow: hidden;
}
/* hover: grow from bottom, image still visible above */
.step:hover .step__content {
  inset: auto 0 0 0;
  border-radius: 0 0 12px 12px;
  padding: 18px 18px 20px;
  background: rgba(255,255,255,.95);
}
.step__label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num {
  font-family: var(--display);
  color: var(--blue);
  font-weight: 700;
}
.step h3 {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* only show on hover */
.step__desc {
  margin-top: 10px;
  color: var(--ink);
  opacity: 0;
  max-height: 0;
  transform: translateY(6px);
  transition: opacity .35s ease .1s, transform .35s ease .1s, max-height .35s ease;
  overflow: hidden;
}
.step:hover .step__desc {
  opacity: .85;
  max-height: 120px;
  transform: translateY(0);
}
.step:hover .step-num {}
.step:hover h3 { margin-top: 8px; white-space: normal; }
.process-blob {
  position: absolute;
  top: -120px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--blue) 12%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1040px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Services cards (full-width breakout) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 0.8vw, 14px);
  width: 100%;
  max-width: none;
  padding: 0 clamp(24px, 2.6vw, 40px);
  margin: 0;
  box-sizing: border-box;
}
.service {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.service__media {
  position: absolute;
  inset: 0;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.service:hover .service__media,
.service:focus-within .service__media { transform: scale(1.05); }
.service__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .45s ease;
}
.service__img--hover { opacity: 0; }
.service:hover .service__img--main,
.service:focus-within .service__img--main { opacity: 0; }
.service:hover .service__img--hover,
.service:focus-within .service__img--hover { opacity: 1; }
.service__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .4s ease;
}
.service:hover .service__overlay { background: rgba(255,255,255,0); }
/* default: small label bar at bottom */
.service__content {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 0 0 12px 12px;
  padding: 10px 14px;
  color: var(--ink);
  transition: padding .4s ease, border-radius .4s ease, background .4s ease;
  overflow: hidden;
}
/* hover: grow from bottom */
.service:hover .service__content {
  border-radius: 0 0 12px 12px;
  padding: 18px 18px 20px;
  background: rgba(255,255,255,.95);
}
.service__label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-num {
  font-family: var(--display);
  color: var(--blue);
  font-weight: 700;
}
.service h3 {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* only show on hover */
.service__desc {
  margin-top: 10px;
  color: var(--ink);
  opacity: 0;
  max-height: 0;
  transform: translateY(6px);
  transition: opacity .35s ease .1s, transform .35s ease .1s, max-height .35s ease;
  overflow: hidden;
}
.service:hover .service__desc {
  opacity: .85;
  max-height: 120px;
  transform: translateY(0);
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-top: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease .15s, transform .35s ease .15s;
}
.service:hover .service__more {
  opacity: 1;
  transform: translateY(0);
  color: var(--blue);
}
.service:hover .service-num {}
.service:hover h3 { margin-top: 6px; white-space: normal; }
@media (max-width: 1040px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Studio tour modal ---------- */
.studio-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.studio-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.studio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,19,28,.78);
  backdrop-filter: blur(8px);
}
.studio-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 28px 80px rgba(16,19,28,.35);
  transform: translateY(18px) scale(.98);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.studio-modal.is-open .studio-modal__dialog {
  transform: none;
}
.studio-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.studio-modal__close:hover {
  background: var(--ink);
  color: var(--white);
  transform: scale(1.05);
}
.studio-modal__eyebrow {
  font-weight: 700;
  opacity: .75;
}
.studio-modal__title {
  margin-top: 10px;
  font-family: var(--display);
  max-width: 18ch;
}
.studio-modal__video-wrap {
  margin-top: clamp(18px, 3vw, 28px);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.studio-modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* ---------- Video ---------- */
.video { position: relative; }
.video__frame { aspect-ratio: 16 / 9; border-radius: 6px; position: relative; object-fit: cover; width: 100%; display: block; }
.video--vertical { display: flex; justify-content: center; }
.video__frame--vertical { aspect-ratio: 9 / 16; max-height: 75vh; width: auto; border-radius: 12px; }
.video__play {
  position: absolute; inset: 0; margin: auto;
  width: clamp(80px, 9vw, 124px); height: clamp(80px, 9vw, 124px);
  border-radius: 50%;
  background: var(--cream); color: var(--ink);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transition: transform .35s;
}
.video__play:hover { transform: scale(1.06); }
.video__play::before { content: ""; border-left: 22px solid currentColor; border-top: 14px solid transparent; border-bottom: 14px solid transparent; margin-left: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: .6em;
  align-self: flex-start;
  background: rgba(244,238,227,.12); border: 1px solid rgba(244,238,227,.3);
  color: var(--cream); padding: .55em 1em; border-radius: 999px; font-weight: 700;
}
.live { width: 9px; height: 9px; border-radius: 50%; background: var(--white); animation: pulse calc(1.6s / var(--motion,1)) ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.6); } 50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }

/* ---------- Portfolio ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.4vw, 22px); }
.pcard .ph { aspect-ratio: 1 / 1; border-radius: 5px; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.pcard:hover .ph { transform: scale(1.03); }
.pcard__t { margin-top: 14px; font-family: var(--display); }
.pcard__tag { opacity: .6; margin-top: 5px; }

/* ---------- Split color blocks (Pillow / ACA / Giving / Book) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 5vw, 80px); }
.wrap.split > :not(.split__media) { padding-block: var(--split-pad-y); }
.split--video { grid-template-columns: 1.4fr 1fr; gap: clamp(30px, 4vw, 60px); }
.split--rev .split__media { order: -1; }
.split__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 6px;
}
.split__img { aspect-ratio: 5 / 4; border-radius: 6px; object-fit: cover; width: 100%; display: block; }
.split__media .split__video,
.split__media .split__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.split__video { width: 100%; display: block; border-radius: 6px; background: #000; max-height: 80vh; }
.split__media--vertical { position: relative; aspect-ratio: 9 / 16; max-height: 75vh; width: auto; margin: 0 auto; border-radius: 12px; overflow: hidden; }
.split__media--vertical .split__video { position: static; inset: auto; width: auto; height: auto; max-height: 75vh; aspect-ratio: 9 / 16; object-fit: contain; }

#studio .wrap.split {
  width: auto;
  max-width: var(--maxw);
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 64px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

#studio .wrap.split > :not(.split__media) {
  max-width: 44rem;
  margin-left: 0;
}

#studio .split__media {
  min-height: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: clamp(360px, 44vw, 640px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(16,19,28,.16);
}

#studio .split__media .split__img {
  border-radius: inherit;
}

.video-sound {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(244,238,227,.92);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(16,19,28,.22);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}
.video-sound:hover {
  transform: translateY(-1px);
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(16,19,28,.28);
}
.video-sound:active { transform: translateY(0); }
.video-sound__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.video-sound__icon--on { display: none; }
.video-sound[data-state="unmuted"] .video-sound__icon--off { display: none; }
.video-sound[data-state="unmuted"] .video-sound__icon--on { display: block; }

/* ---------- Giving Back video split (edge-to-edge) ---------- */
.giving-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0 !important;
  gap: 0;
}
.giving-split__video {
  background: #000;
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.giving-split__video .split__video,
.giving-split__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.giving-split__text {
  padding: var(--split-pad-y) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.giving-split__text h2 {}
.giving-split__text .lead { margin-top: 1.3rem; max-width: 38ch; opacity: .92; }
.giving-split__text .ctas { margin-top: 2rem; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 1040px) {
  .giving-split { grid-template-columns: 1fr; }
  .giving-split__video { order: -1; }
  .giving-split__text { padding: var(--split-pad-y) var(--gutter); }
}
.split h2 {}
.split .lead { margin-top: 1.3rem; max-width: 38ch; opacity: .92; }
.split .ctas { margin-top: 2rem; display: flex; gap: 14px; flex-wrap: wrap; }
.tag-pill { font-weight: 700; opacity: .85; }

/* ---------- Testimonial (full-bleed blue carousel) ---------- */
.tst {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  gap: 0;
  --tst-duration: 6s;
}
.tst__media { position: relative; min-height: 620px; }
.tst__mstage { position: absolute; inset: 0; }
.tst__mslide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,0,.2,1);
}
.tst__mslide.is-active { opacity: 1; }
/* pre-JS fallback: first portrait visible; once JS runs, only the active one shows */
.tst__mslide:first-child { opacity: 1; }
.tst__mstage.js-ready .tst__mslide { opacity: 0; }
.tst__mstage.js-ready .tst__mslide.is-active { opacity: 1; }

.tst__panel {
  padding: clamp(56px, 7vw, 110px) clamp(36px, 6vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
/* oversized decorative quote glyph */
.tst__panel::before {
  content: "\201C";
  position: absolute;
  top: clamp(20px, 4vw, 48px);
  right: clamp(28px, 5vw, 72px);
  font-family: var(--display);
  color: rgba(255,255,255,0.14);
  pointer-events: none;
}
.tst__stage { display: grid; margin-top: clamp(22px, 3vw, 34px); }
.tst__slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.tst__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
/* pre-JS fallback: first quote visible; once JS runs, only the active one shows */
.tst__slide:first-child { opacity: 1; transform: none; }
.tst__stage.js-ready .tst__slide { opacity: 0; transform: translateY(16px); pointer-events: none; }
.tst__stage.js-ready .tst__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.tst__q {
  font-family: var(--display);
  font-weight: var(--display-weight, 700);
  max-width: 17ch;
}
.tst__q em { font-style: italic; color: inherit; }
.tst__by { margin-top: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; gap: 5px; }
.tst__by b {}
.tst__by span { opacity: .82; }
.tst__nav { display: flex; align-items: center; gap: 18px; margin-top: clamp(36px, 4.5vw, 60px); }
.tst__arrow {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.25);
  background: transparent; color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.tst__arrow:hover { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-2px); }
.tst__count {
  margin-left: 6px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; opacity: .85;
}
.tst__count b {}

.tst__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  max-width: min(100%, 320px);
}
.tst__bar {
  flex: 1;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(16,19,28,.14);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  transition: transform .25s ease;
}
.tst__bar:hover { transform: scaleY(1.35); }
.tst__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--ink);
  border-radius: inherit;
}
.tst__bar.is-done .tst__bar-fill { width: 100%; animation: none; }
.tst__bar.is-active .tst__bar-fill {
  animation: tstBarFill var(--tst-duration) linear forwards;
}
.tst.is-paused .tst__bar.is-active .tst__bar-fill {
  animation-play-state: paused;
}
@keyframes tstBarFill {
  from { width: 0%; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .tst__bar.is-active .tst__bar-fill { animation: none; width: 100%; }
}

/* ---------- Blog grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.blog-card { display: flex; flex-direction: column; }
.blog-card__img-wrap { display: block; overflow: hidden; border-radius: 8px; }
.blog-card__img {
  width: 100%; display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.blog-card__img-wrap:hover .blog-card__img { transform: scale(1.04); }
.blog-card__body { padding-top: 16px; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { opacity: .55; }
.blog-card__title { margin-top: 8px; font-weight: 700; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--blue); }
.blog-card__excerpt { margin-top: 8px; opacity: .75; flex: 1; }
.blog-card__more { margin-top: 14px; font-weight: 700; color: var(--blue); display: inline-flex; gap: .4em; text-decoration: none; }
.blog-card__more:hover { color: color-mix(in srgb, var(--blue) 88%, white); }
@media (max-width: 1040px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- Store CTA band ---------- */
/* cta-band: every child box (kicker, title, lead/quote, ctas) centers —
   text-align alone doesn't center boxes with a max-width */
.cta-band { text-align: center; }
.cta-band h2 {}
.cta-band > .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-band .cta-cols { width: 100%; }
.cta-band .lead { margin-inline: auto; }
.cta-band .ctas { justify-content: center; }
.cta-band .kicker::before,
.cta-band__kicker::before { display: none; }
.cta-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(36px, 4vw, 60px); }
/* one shared duration/easing for every part of the card so nothing finishes
   out of sync with anything else (was .4s card / .35s text / .28s arrow,
   and box-shadow animated from an implicit "none" which some browsers pop
   instead of fade) */
.cta-col {
  border: 1.5px solid rgba(244,238,227,.4);
  border-radius: 8px;
  padding: 30px 26px;
  text-align: left;
  cursor: pointer;
  will-change: transform;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  transition: background .35s ease, transform .35s ease, border-color .35s ease, box-shadow .35s ease, color .35s ease;
}
.cta-col:hover { background: #fff; transform: translateY(-12px); border-color: #fff; box-shadow: 0 24px 48px rgba(0,0,0,0.2); color: var(--ink); }
.cta-col:hover h3, .cta-col:hover p { color: var(--ink); opacity: 1; }
.cta-col:hover .link { color: var(--blue); }
.cta-col:hover .link span { transform: translateX(4px); }
.cta-col h3 { transition: color .35s ease; }
.cta-col p { margin-top: 8px; opacity: .8; transition: opacity .35s ease, color .35s ease; }
.cta-col .link { margin-top: 16px; display: inline-flex; gap: .5em; font-weight: 700; transition: color .35s ease; }
.cta-col > :not(.clickable-parent) { pointer-events: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.hero__sub {
  max-width: 38ch;
  margin-top: 1rem;
  color: rgba(255,255,255,.92);
}

.section-title {
  margin-top: 14px;
}

.about-mission .split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-mission .split__media--vertical {
  justify-self: center;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.tmember {
  position: relative;
  text-align: left;
  cursor: pointer;
}
.tmember__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  margin-bottom: 18px;
  isolation: isolate;
}
.tmember__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.tmember:hover .tmember__img { transform: scale(1.05); }
.tmember__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: end center;
  padding: clamp(16px, 2vw, 22px);
  background: linear-gradient(to top, rgba(16, 19, 28, .76), rgba(16, 19, 28, .08) 68%, rgba(16, 19, 28, 0));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.tmember__shade span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  font-size: var(--text-s);
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
}
.tmember:hover .tmember__shade,
.tmember:focus-within .tmember__shade,
.tmember.is-interacting .tmember__shade {
  opacity: 1;
  transform: none;
}
.tmember__modal-button {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.tmember__modal-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 72%, white);
  outline-offset: 5px;
}
.tmember__name {}
.tmember__role {
  font-weight: 700;
  color: var(--blue);
  margin-top: 4px;
}
.tmember__bio { margin-top: 12px; opacity: .8; }

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.profile-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.profile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 16, .86);
  backdrop-filter: blur(5px);
}
.profile-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(760px, 82svh);
  overflow: auto;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
  overscroll-behavior: contain;
}
.profile-modal__dialog::after {
  content: "";
  position: sticky;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  height: 68px;
  margin-top: -68px;
  background: linear-gradient(to top, var(--white) 18%, rgba(255,255,255,0));
  pointer-events: none;
}
.profile-modal.is-open .profile-modal__dialog {
  opacity: 1;
  transform: none;
}
.profile-modal__scroll-hint {
  position: sticky;
  bottom: 14px;
  z-index: 4;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto -42px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(16, 19, 28, .22);
  pointer-events: none;
}
.profile-modal__scroll-hint span {
  display: inline-block;
  margin-left: 6px;
  animation: profileHintBounce 1.3s ease-in-out infinite;
}
.profile-modal__close {
  position: sticky;
  top: 14px;
  left: calc(100% - 58px);
  z-index: 3;
  width: 44px;
  height: 44px;
  margin: 14px 14px -58px auto;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
  transition: transform .2s ease, background .2s ease;
}
.profile-modal__close:hover {
  background: var(--blue);
  transform: scale(1.06);
}
.profile-modal__profile {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 52px);
  min-height: min(660px, 76svh);
  padding: clamp(24px, 4vw, 52px) clamp(24px, 4vw, 52px) clamp(72px, 7vw, 92px);
}
.profile-modal__profile[hidden] {
  display: none;
}
.profile-modal__media {
  position: sticky;
  top: clamp(24px, 4vw, 52px);
  align-self: start;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper);
}
.profile-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-modal__body {
  min-width: 0;
  padding-right: clamp(0px, 2vw, 18px);
}
.profile-modal__eyebrow {
  color: var(--blue);
  font-size: var(--text-s);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.profile-modal__title {
  margin-top: 8px;
  font-family: var(--display);
  font-size: var(--h2);
  line-height: var(--heading-line-height);
}
.profile-modal__bio {
  margin-top: clamp(20px, 3vw, 34px);
  max-width: 68ch;
  color: color-mix(in srgb, var(--ink) 84%, white);
}
.profile-modal__bio p + p {
  margin-top: 1em;
}
@keyframes profileHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@media (max-width: 760px) {
  .profile-modal {
    align-items: center;
    padding: 14px;
  }
  .profile-modal__dialog {
    max-height: min(620px, 78svh);
    border-radius: 12px;
  }
  .profile-modal__dialog::after {
    height: 58px;
    margin-top: -58px;
  }
  .profile-modal__scroll-hint {
    bottom: 10px;
    margin-bottom: -38px;
  }
  .profile-modal__close {
    top: 10px;
    width: 42px;
    height: 42px;
    margin: 10px 10px -52px auto;
  }
  .profile-modal__profile {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 22px 22px 76px;
  }
  .profile-modal__media {
    position: relative;
    top: auto;
    width: min(100%, 260px);
    max-height: 34svh;
    margin-inline: auto;
  }
  .profile-modal__body {
    padding-right: 0;
  }
}

/* The Three S's */
.svals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.sval {
  border-top: 2px solid var(--blue);
  padding-top: 22px;
}
.sval__n {
  font-family: var(--display);
  color: var(--blue);
}
.sval__t { margin-top: 14px; }
.sval__d { margin-top: 12px; opacity: .82; }
.sval__link {
  display: inline-flex;
  gap: .5em;
  margin-top: 18px;
  font-weight: 700;
  color: var(--blue);
}
.sval__link:hover span { transform: translateX(4px); }
.sval__link span { transition: transform .3s ease; display: inline-block; }

/* Founder quote */
.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.founder__media { position: relative; aspect-ratio: 1 / 1; }
.founder__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__panel {
  padding: clamp(64px, 9vw, 132px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder__q {
  font-family: var(--display);
  margin-top: 24px;
}
.founder__by { margin-top: 24px; display: flex; flex-direction: column; gap: 2px; }
.founder__by b {}
.founder__by span { opacity: .75; }

.cta-band__kicker {
  justify-content: center;
}

body.page-about .cta-band,
body.page-community .cta-band,
body.page-portfolio .cta-band {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  translate: none !important;
}

body.page-community .cta-band .section-title {
  max-width: min(100%, 18ch);
  margin-inline: auto;
  text-align: center;
}

body.page-community .cta-band .cta-cols {
  width: min(100%, 1040px);
  margin-inline: auto;
}

body.page-community .cta-band .cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.page-community .cta-band .cta-col .link {
  justify-content: center;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .svals { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder__media { aspect-ratio: 1 / 1; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================================
   GIVING BACK PAGE
   ============================================================ */

.community-hero .hero__bg-img {
  object-position: center center;
}

/* Hero "Watch the Story" button */
.video-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.75rem;
  padding: 10px 22px 10px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.video-play:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.video-play__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue, #1652f0);
  flex: 0 0 auto;
}
.video-play__icon svg { margin-left: 2px; }
.video-play__label { padding-right: 4px; }

/* Video modal / lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,10,16,.86);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .28s ease;
}
.video-modal.is-open .video-modal__backdrop {
  opacity: 1;
}
.video-modal__inner {
  position: relative;
  width: min(1100px, 100%);
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
}
.video-modal.is-open .video-modal__inner {
  opacity: 1;
  transform: none;
}
.video-modal__frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  background: #000;
}
.video-modal__video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; }
.video-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  transition: transform .2s ease;
}
.video-modal__close:hover { transform: scale(1.08); }
@media (max-width: 560px) {
  .video-modal__close { top: -10px; right: 4px; }
}
.cm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.cm-card { display: flex; flex-direction: column; }
.cm-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.cm-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.cm-card:hover .cm-card__img { transform: scale(1.05); }
.cm-card__date {
  font-weight: 700;
  opacity: .7;
}
.cm-card__title { margin-top: 10px; }
.cm-card__excerpt { margin-top: 10px; opacity: .82; }
.cm-card__link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-top: 16px;
  font-weight: 700;
}
.cm-card__link .arrow { transition: transform .3s ease; }
.cm-card__link:hover .arrow { transform: translateX(4px); }
.cm-card--appended { animation: cm-card-in .55s cubic-bezier(.2,.8,.2,1) both; }
@keyframes cm-card-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.cm-loader {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 40px 0 8px;
  opacity: 0;
  transition: opacity .3s ease;
}
.cm-loader.is-loading { opacity: 1; }
.cm-loader__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  opacity: .6;
  animation: cm-loader-pulse 1s ease-in-out infinite;
}
.cm-loader__dot:nth-child(2) { animation-delay: .15s; }
.cm-loader__dot:nth-child(3) { animation-delay: .3s; }
@keyframes cm-loader-pulse {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(-6px); opacity: .9; }
}
@media (prefers-reduced-motion: reduce) {
  .cm-card--appended { animation: none; }
  .cm-loader__dot { animation: none; }
}

body.page-community .community-work .cm-card:hover .cm-card__img,
body.page-community .community-work .cm-card:focus-within .cm-card__img,
body.page-community .community-work .cm-card.is-interacting .cm-card__img {
  transform: scale(1.05);
}

body.page-community .community-work .cm-card__title a,
body.page-community .community-work .cm-card__title a:hover,
body.page-community .community-work .cm-card__title a:focus-visible,
body.page-community .community-work .cm-card__link,
body.page-community .community-work .cm-card__link:visited {
  color: currentColor;
}

body.page-community .community-work .cm-card__link:hover,
body.page-community .community-work .cm-card:focus-within .cm-card__link,
body.page-community .community-work .cm-card.is-interacting .cm-card__link {
  color: #fff;
}

body.page-community .community-work .cm-card__link:hover .arrow,
body.page-community .community-work .cm-card:focus-within .cm-card__link .arrow,
body.page-community .community-work .cm-card.is-interacting .cm-card__link .arrow {
  transform: translateX(4px);
}

/* Recognized impact / partners */
.statband {
  text-align: center;
  scroll-margin-top: calc(var(--hero-offset) + 20px);
}
.statband > .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.statband__kicker {
  justify-content: center;
  margin-inline: auto;
}
.statband__kicker::before {
  display: none;
}
.statband__title {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}
.statband__lead {
  max-width: 60ch;
  margin: 18px auto 0;
  opacity: .82;
  text-align: center;
}
.cm-partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  width: min(100%, 960px);
  margin-inline: auto;
  margin-top: clamp(36px, 4vw, 60px);
}
.cm-partner {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--h3);
  line-height: var(--heading-line-height);
  opacity: .85;
  max-width: 13ch;
  text-align: center;
}
.cm-partner span { font-weight: 400; opacity: .7; }

@media (max-width: 900px) {
  .cm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cm-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-hero .hero__bg-img {
  object-position: center center;
}

.portfolio-featured,
.portfolio-featured > .wrap {
  display: block;
}

.pf-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  width: 100%;
  min-width: 0;
}
.pf-feat {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  color: var(--white);
  min-width: 0;
}
.pf-feat__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.pf-feat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--blue) 78%, transparent) 0%, color-mix(in srgb, var(--blue) 10%, transparent) 55%, transparent 100%);
}
.pf-feat:hover .pf-feat__img { transform: scale(1.06); }
.pf-feat__cap { position: absolute; z-index: 2; left: 0; bottom: 0; padding: clamp(18px, 2vw, 28px); }
.pf-feat__tag {
  font-weight: 700;
  opacity: .9;
}
.pf-feat__title { font-family: var(--display); margin-top: 6px; }
.pf-feat__title em { color: var(--white); }

.portfolio-grid-section {
  padding-top: 0;
}

.portfolio-grid-head {
  margin-bottom: clamp(28px, 3vw, 40px);
}

/* Filter chips */
.pf-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.chip-btn {
  font-family: var(--body);
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(28,24,19,.18);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.chip-btn:hover { border-color: var(--blue); color: var(--blue); }
.chip-btn.is-active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pf-count {
  font-weight: 700;
  opacity: .6;
  margin-bottom: clamp(20px, 2.4vw, 32px);
}

/* Project grid */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.pf-card {
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
.pf-card[hidden] { display: none !important; }
.pf-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 10px;
}
.pf-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.pf-card:hover .pf-card__img { transform: scale(1.05); }
.pf-card__date {
  font-weight: 700;
  opacity: .6;
  margin: 0;
  line-height: 1.1;
}
.pf-card__title {
  margin: 6px 0 0;
  /* h3 defaults to var(--h3) size with the ACSS ex-based heading-line-height,
     which reads as very loose leading at card scale — dial both down */
  font-size: var(--h4);
  line-height: 1.25;
}
.pf-card__title a {
  display: inline;
  margin: 0;
  line-height: inherit;
}
/* category badge overlaid on the image, top-right, instead of a text row */
.pf-card__tag {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  opacity: 1;
  margin: 0;
}
.pf-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 52px);
}
.pf-more.is-auto {
  min-height: 2px;
  margin-top: 2px;
}
.pf-more[hidden] {
  display: none !important;
}
.pf-more__btn {
  justify-content: center;
  min-width: min(100%, 280px);
}
.pf-more.is-auto .pf-more__btn {
  display: none;
}

@media (max-width: 900px) {
  .pf-feats { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pf-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--blue-deep); color: var(--white); padding: clamp(64px, 8vw, 110px) 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer__logo { display: block; margin-bottom: 20px; }
.footer__logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.footer__contact a {
  font-weight: 600;
  color: var(--white);
  opacity: 1;
  transition: opacity .2s;
}
.footer__contact a:hover {
  opacity: .8;
}
.footer__brand p { margin-top: 0; max-width: 32ch; opacity: .7; }
.fcol h4 { font-family: var(--body); font-weight: 700; opacity: .55; margin-bottom: 18px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fcol a { opacity: .85; }
.fcol a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
/* dim the text, not the whole bar — the credit badge controls its own
   brightness so it can fully light up on hover */
.footer__bottom { margin-top: clamp(48px, 6vw, 80px); padding-top: 28px; border-top: 1px solid rgba(244,238,227,.16); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__bottom > span,
.footer__bottom a:not(.footer__credit) { opacity: .65; }
.footer__legal { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); flex-wrap: wrap; }
.footer__credit { display: inline-flex; align-items: center; }
.footer__credit img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(.85);
  transition: filter .3s ease;
}
.footer__credit:hover img,
.footer__credit:focus-visible img {
  filter: brightness(1.6) saturate(1.15);
}
.footer__cities {}

.footer__wrap {
  max-width: var(--maxw);
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  margin-inline: auto;
}

.home-mobile-menu {
  --jnp-mobile-menu-offset: 0px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100vw;
  height: calc(100dvh - var(--jnp-mobile-menu-offset));
  min-height: calc(100dvh - var(--jnp-mobile-menu-offset));
  max-height: calc(100dvh - var(--jnp-mobile-menu-offset));
  padding: clamp(52px, 8vh, 76px) var(--gutter) calc(20px + env(safe-area-inset-bottom));
  overflow-x: clip;
  overflow-y: auto;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(246,246,244,.98) 58%, color-mix(in srgb, var(--blue) 8%, var(--white)) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  overscroll-behavior: contain;
  transition: opacity .24s ease, transform .36s cubic-bezier(.16,1,.3,1), visibility .24s ease;
}

.home-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.home-mobile-menu::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #00b5e2, var(--ink));
}

.mobile-menu__shell {
  position: relative;
  width: min(100%, 720px);
  min-height: calc(100dvh - var(--jnp-mobile-menu-offset) - clamp(112px, 18vh, 156px));
  overflow: hidden;
  overflow: clip;
  margin-inline: auto;
}

.mobile-menu__panel {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  align-content: start;
  min-height: inherit;
  transition: transform .34s cubic-bezier(.16,1,.3,1), opacity .22s ease;
}

.mobile-menu__panel--main {
  transform: translateX(0);
}

.home-mobile-menu.is-submenu-open .mobile-menu__panel--main {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-105%);
}

.mobile-menu__panel--services {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  overflow-x: clip;
  overflow-y: auto;
  padding-top: clamp(12px, 2.5vh, 22px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(105%);
}

.home-mobile-menu.is-submenu-open .mobile-menu__panel--services.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu__mast {
  display: grid;
  gap: .18rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .32s cubic-bezier(.16,1,.3,1);
}

.home-mobile-menu.is-open .mobile-menu__mast {
  opacity: 1;
  transform: none;
}

.mobile-menu__eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: var(--text-s, .9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu__line {
  max-width: 31ch;
  margin: -2px 0 0;
  color: var(--ink);
  font-size: var(--h4);
  font-weight: 800;
  line-height: 1.08;
}

.mobile-menu__primary {
  display: grid;
  gap: 0;
}

.mobile-menu__link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;
  min-height: 70px;
  padding: 14px 0;
  color: var(--ink);
  appearance: none;
  text-decoration: none;
  text-align: left;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid rgba(16,19,28,.13);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .24s ease, transform .32s cubic-bezier(.16,1,.3,1), color .2s ease, padding .2s ease;
}

.mobile-menu__link::after {
  content: "\2192";
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transform: scale(.92);
  transition: transform .25s ease, background .25s ease;
}

.mobile-menu__link span {
  grid-column: 1;
  font-size: var(--h3);
  font-weight: 800;
  line-height: var(--heading-line-height);
}

.mobile-menu__link small {
  grid-column: 1;
  display: block;
  margin-top: .2rem;
  color: var(--ink-soft);
  font-size: var(--text-s, .9rem);
  font-weight: 700;
}

.home-mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: none;
}

.home-mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: .04s; }
.home-mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: .08s; }
.home-mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: .12s; }
.home-mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: .16s; }
.home-mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: .2s; }
.home-mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: .24s; }
.home-mobile-menu.is-open .mobile-menu__link:nth-child(7) { transition-delay: .28s; }
.home-mobile-menu.is-open .mobile-menu__link:nth-child(8) { transition-delay: .32s; }

.home-mobile-menu.is-open .mobile-menu__link:hover,
.home-mobile-menu.is-open .mobile-menu__link:focus-visible,
.mobile-menu__link[aria-current="page"] {
  padding-left: 12px;
  color: var(--blue);
}

.mobile-menu__link:hover::after,
.mobile-menu__link:focus-visible::after,
.mobile-menu__link[aria-current="page"]::after {
  background: var(--blue);
  transform: scale(1);
}

.mobile-menu__quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-block: 0;
}

.mobile-menu__quick a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .65rem .55rem;
  color: var(--ink);
  font-size: var(--text-s, .9rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,19,28,.13);
  border-radius: 10px;
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}

.mobile-menu__quick a:hover,
.mobile-menu__quick a:focus-visible {
  color: var(--blue);
  background: var(--white);
  border-color: color-mix(in srgb, var(--blue) 36%, rgba(16,19,28,.13));
  transform: translateY(-1px);
}

.mobile-menu__actions {
  position: sticky;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 22px;
  isolation: isolate;
}

.mobile-menu__actions::before {
  content: "";
  position: absolute;
  inset: -34px -4px -18px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(246,246,244,.99) 0%, rgba(246,246,244,.96) 66%, rgba(246,246,244,0) 100%);
}

.mobile-menu__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: .95rem 1rem;
  color: var(--ink);
  font-size: var(--text-m);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: var(--white);
  border: 1.5px solid rgba(16,19,28,.16);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16,19,28,.08);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.mobile-menu__action--primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.mobile-menu__action:hover,
.mobile-menu__action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(16,19,28,.14);
}

.mobile-menu__back {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: max-content;
  min-height: 44px;
  padding: 4px 0;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-m);
  font-weight: 900;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobile-menu__back::before {
  content: "\2190";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
}

.mobile-menu__mast--sub {
  opacity: 1;
  transform: none;
}

.mobile-services-grid {
  display: grid;
  gap: 10px;
  padding-bottom: calc(90px + env(safe-area-inset-bottom));
}

.mobile-services-group {
  padding: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,19,28,.11);
  border-radius: 14px;
}

.mobile-services-group h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--display);
  font-size: var(--text-s, .9rem);
  font-weight: 900;
}

.mobile-services-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 8px 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-top: 1px solid rgba(16,19,28,.09);
}

.mobile-services-group a::after {
  content: "\2192";
  color: var(--blue);
}

body.home-menu-open {
  overflow: hidden;
}

body.admin-bar .home-mobile-menu {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .home-mobile-menu {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .nav__inner {
    padding-block: 10px;
  }

  .logo__img {
    height: clamp(28px, 8vw, 34px);
  }

  .nav__cta .btn {
    display: none;
  }

  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .home-mobile-menu {
    padding-top: 64px;
  }

  .mobile-menu__link {
    min-height: 64px;
  }

  .mobile-menu__link::after {
    width: 38px;
    height: 38px;
  }
}

/* ============================================================
   INTERACTION POLISH
   ============================================================ */
.btn:active,
.hero__cta:active,
.video-play:active,
.video__play:active,
.chip-btn:active,
.tst__arrow:active,
.video-sound:active,
.studio-modal__close:active,
.video-modal__close:active {
  transform: translateY(1px) scale(.98);
}

.arrow,
.portfolio-card-link .arrow,
.cm-card__link .arrow,
.blog-card__more span,
.sval__link span,
.cta-col .link span {
  display: inline-block;
  transition: transform .28s ease;
}
/* keep the cta-col arrow in step with the rest of that card's .35s hover
   (same selector as above, so this later rule wins the timing) */
.cta-col .link span {
  transition: transform .35s ease;
}

.step,
.service,
.portfolio-card,
.blog-card,
.tmember,
.sval,
.cm-card,
.pf-card,
.pf-feat,
.cta-col {
  -webkit-tap-highlight-color: transparent;
}

.step,
.service {
  cursor: pointer;
}

.step:focus-visible,
.service:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 72%, white);
  outline-offset: 4px;
}

.step.is-interacting,
.step:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.22);
}
.step.is-interacting .step__img,
.step:focus-visible .step__img {
  transform: scale(1.05);
}
.step.is-interacting .step__content,
.step:focus-visible .step__content {
  padding: 18px 18px 20px;
  background: rgba(255,255,255,.95);
}
.step.is-interacting .step__desc,
.step:focus-visible .step__desc {
  opacity: .85;
  max-height: 120px;
  transform: translateY(0);
}
.step.is-interacting h3,
.step:focus-visible h3 {
  margin-top: 8px;
  white-space: normal;
}

.service.is-interacting,
.service:focus-visible {
  box-shadow: 0 28px 60px rgba(0,0,0,.2);
}
.service.is-interacting .service__media,
.service:focus-visible .service__media {
  transform: scale(1.05);
}
.service.is-interacting .service__img--main,
.service:focus-visible .service__img--main {
  opacity: 0;
}
.service.is-interacting .service__img--hover,
.service:focus-visible .service__img--hover {
  opacity: 1;
}
.service.is-interacting .service__content,
.service:focus-visible .service__content {
  padding: 18px 18px 20px;
  background: rgba(255,255,255,.95);
}
.service.is-interacting .service__desc,
.service:focus-visible .service__desc,
.service.is-interacting .service__more,
.service:focus-visible .service__more {
  opacity: .85;
  transform: translateY(0);
}
.service.is-interacting .service__desc,
.service:focus-visible .service__desc {
  max-height: 120px;
}
.service.is-interacting .service__more,
.service:focus-visible .service__more {
  color: var(--blue);
}
.service.is-interacting h3,
.service:focus-visible h3 {
  margin-top: 6px;
  white-space: normal;
}

.portfolio-card:focus-visible,
.portfolio-card.is-interacting,
.blog-card:hover,
.blog-card:focus-within,
.blog-card.is-interacting,
.tmember:hover,
.tmember.is-interacting,
.sval:hover,
.sval:focus-within,
.sval.is-interacting,
.cm-card:hover,
.cm-card:focus-within,
.cm-card.is-interacting,
.pf-card:hover,
.pf-card:focus-within,
.pf-card.is-interacting,
.pf-feat:focus-visible,
.pf-feat.is-interacting {
  transform: translateY(-6px);
}

.portfolio-card:focus-visible,
.blog-card:focus-within,
.sval:focus-within,
.cm-card:focus-within,
.pf-card:focus-within,
.pf-feat:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 72%, white);
  outline-offset: 5px;
  border-radius: 10px;
}

.portfolio-card.is-interacting .portfolio-card-img img,
.portfolio-card:focus-visible .portfolio-card-img img,
.blog-card:focus-within .blog-card__img,
.blog-card.is-interacting .blog-card__img,
.tmember.is-interacting .tmember__img,
.cm-card:focus-within .cm-card__img,
.cm-card.is-interacting .cm-card__img,
.pf-card:focus-within .pf-card__img,
.pf-card.is-interacting .pf-card__img,
.pf-feat:focus-visible .pf-feat__img,
.pf-feat.is-interacting .pf-feat__img {
  transform: scale(1.05);
}

.portfolio-card:focus-visible .portfolio-card-link,
.portfolio-card.is-interacting .portfolio-card-link,
.blog-card:focus-within .blog-card__more,
.blog-card.is-interacting .blog-card__more,
.cm-card:focus-within .cm-card__link,
.cm-card.is-interacting .cm-card__link,
.pf-card:focus-within .pf-card__title a,
.pf-card.is-interacting .pf-card__title a,
.sval:focus-within .sval__link,
.sval.is-interacting .sval__link {
  color: var(--blue);
}

.portfolio-card:focus-visible .portfolio-card-link .arrow,
.portfolio-card.is-interacting .portfolio-card-link .arrow,
.blog-card:focus-within .blog-card__more span,
.blog-card.is-interacting .blog-card__more span,
.cm-card:focus-within .cm-card__link .arrow,
.cm-card.is-interacting .cm-card__link .arrow,
.sval:focus-within .sval__link span,
.sval.is-interacting .sval__link span,
.cta-col:hover .link span,
.cta-col:focus-within .link span,
.cta-col.is-interacting .link span {
  transform: translateX(4px);
}

.sval {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}
.sval:hover,
.sval:focus-within,
.sval.is-interacting {
  border-top-color: color-mix(in srgb, var(--blue) 72%, white);
}

.blog-card,
.tmember,
.cm-card,
.pf-card,
.pf-feat {
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.cta-col:hover,
.cta-col:focus-within,
.cta-col.is-interacting {
  background: #fff;
  transform: translateY(-12px);
  border-color: #fff;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  color: var(--ink);
}
.cta-col:hover h3,
.cta-col:hover p,
.cta-col:focus-within h3,
.cta-col:focus-within p,
.cta-col.is-interacting h3,
.cta-col.is-interacting p {
  color: var(--ink);
  opacity: 1;
}
.cta-col:hover .link,
.cta-col:focus-within .link,
.cta-col.is-interacting .link {
  color: var(--blue);
}

.chip-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 72%, white);
  outline-offset: 3px;
}
.chip-btn[aria-selected="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(16,31,181,.22);
}

.nav__menu {
  flex: 1 1 auto;
}

body.admin-bar .nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* When GSAP drives the page it owns every .reveal; kill the CSS transition
   so the two animation systems never fight over the same inline styles. */
.js-gsap .reveal { transition: none !important; }

/* parallax: let inner media drift without revealing edges */
.about__media, .split__media, .fsplit__media, .blog-card__img-wrap, .hero__video { overflow: hidden; }
.about__img, .split__img, .fsplit__img, .blog-card__img, .hero__bg-img { will-change: transform; }
.hero__slide { will-change: opacity; }

/* Keep interaction transforms above the base reveal transform once GSAP clears. */
.step.is-interacting,
.step:focus-visible {
  transform: translateY(-8px);
}
.service.is-interacting,
.service:focus-visible,
.portfolio-card:hover,
.portfolio-card:focus-visible,
.portfolio-card.is-interacting,
.blog-card:hover,
.blog-card:focus-within,
.blog-card.is-interacting,
.tmember:hover,
.tmember.is-interacting,
.sval:hover,
.sval:focus-within,
.sval.is-interacting,
.cm-card:hover,
.cm-card:focus-within,
.cm-card.is-interacting,
.pf-card:hover,
.pf-card:focus-within,
.pf-card.is-interacting,
.pf-feat:focus-visible,
.pf-feat.is-interacting {
  transform: translateY(-6px);
}
/* .pf-feat deliberately has no hover lift: the full-bleed card moving under
   the cursor caused hover flicker at its edges — the image zoom is the effect */

.cta-col:hover,
.cta-col:focus-within,
.cta-col.is-interacting {
  transform: translateY(-12px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__header > *, .hero__caption { opacity: 1; transform: none; animation: none; }
  .hero__slide:not(.is-active) { opacity: 0 !important; }
  .marquee__track,
  .gf-logo-slider__track { animation: none; }
  .profile-modal__scroll-hint span { animation: none; }
  .video-modal,
  .video-modal__backdrop,
	  .video-modal__inner,
	  .home-mobile-menu,
	  .home-mobile-menu a,
	  .mobile-menu__mast,
	  .mobile-menu__link,
	  .mobile-menu__link::after,
	  .mobile-menu__quick a,
	  .mobile-menu__action,
	  .reel-carousel__item,
  .step,
  .step__img,
  .step__content,
  .step__desc,
  .service,
  .service__media,
  .service__img,
  .service__content,
  .service__desc,
  .service__more,
  .portfolio-card,
  .portfolio-card-img img,
  .blog-card,
  .blog-card__img,
  .tmember,
  .tmember__img,
  .sval,
  .cm-card,
  .cm-card__img,
  .pf-card,
  .pf-card__img,
  .pf-feat,
  .pf-feat__img,
  .cta-col {
    transition: none;
  }
	  .video-modal__inner,
	  .home-mobile-menu,
	  .home-mobile-menu a,
	  .mobile-menu__mast,
	  .mobile-menu__link,
	  .mobile-menu__link::after,
	  .mobile-menu__quick a,
	  .mobile-menu__action,
	  .step,
  .step__img,
  .step__desc,
  .service,
  .service__media,
  .service__desc,
  .service__more,
  .portfolio-card,
  .portfolio-card-img img,
  .blog-card,
  .blog-card__img,
  .tmember,
  .tmember__img,
  .sval,
  .cm-card,
  .cm-card__img,
  .pf-card,
  .pf-card__img,
  .pf-feat,
  .pf-feat__img,
  .cta-col {
    transform: none;
  }
}

/* hero load-in — pure CSS, auto-plays on load (no JS gate, safe in hidden tabs) */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero__header > *, .hero__caption {
  opacity: 0;
  animation: heroIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__caption { animation-delay: .15s; }
.hero__eyebrow { animation-delay: .12s; }
.hero__head { animation-delay: .26s; }
.hero__sub { animation-delay: .42s; }
.hero__cta,
.video-play { animation-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .nav__links { display: none; }
  .mega-menu { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { margin-top: 30px; max-width: 520px; }
  .brand-grid, .split { grid-template-columns: 1fr; }
  #studio .wrap.split {
    grid-template-columns: 1fr;
    padding-right: var(--gutter);
  }
  #studio .wrap.split > :not(.split__media) {
    max-width: none;
    margin-left: 0;
  }
	  #studio .split__media {
	    min-height: clamp(320px, 62vw, 560px);
	    aspect-ratio: 16 / 10;
	  }
  .about { grid-template-columns: 1fr; }
  .about__media { min-height: 70vw; order: -1; }
  .fsplit { grid-template-columns: 1fr; }
  .fsplit__media { min-height: 70vw; order: -1; }
  .tst { grid-template-columns: 1fr; }
  .tst__media { min-height: 64vw; }
  .split--rev .split__media { order: 0; }
  .cards-3 { grid-template-columns: 1fr; max-width: 480px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cta-cols, .mini-row, .stats { grid-template-columns: 1fr; }
  .stats { max-width: 420px; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1480px) {
  .nav__links { display: none; }
  .mega-menu { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 560px) {
  .hero {
    height: clamp(480px, calc(100svh - var(--hero-offset)), 760px);
  }

  .hero__header {
    bottom: clamp(28px, 8vw, 44px);
    max-width: calc(100% - (var(--gutter) * 2));
  }

  .announce__msg .hide-sm { display: none; }
  .cards-4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .nav__cta .btn--ghost { display: none; }
  .portfolio-card {
    flex: 0 0 min(340px, calc(100vw - (var(--gutter) * 2)));
  }
}

/* WordPress homepage overrides */
.announce {}

.announce__phone,
.nav__links a,
.nav__cta .btn {}

.footer__contact a,
.fcol a,
.footer__brand p,
.footer__bottom {}

.fcol h4 {}

.process-head {
  max-width: min(60rem, 100%);
}

.services-grid {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: clamp(24px, 2.6vw, 40px);
  padding-left: clamp(24px, 2.6vw, 40px);
}

.process-grid {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: clamp(24px, 2.6vw, 40px);
  padding-left: clamp(24px, 2.6vw, 40px);
}

.step,
.service {
  min-height: 260px;
}

.sec-head h2,
.sec-head__h,
.process-head h2,
.split h2,
.giving-split__text h2,
.fsplit__text h2,
.cta-band h2 {
  max-width: 100%;
  overflow-wrap: normal;
}

@media (max-width: 560px) {
  .announce__inner {
    justify-content: center;
  }

  .announce__phone,
  .dot-sep {
    display: none;
  }

  .sec-head h2,
  .sec-head__h,
  .process-head h2,
  .split h2,
  .giving-split__text h2,
  .fsplit__text h2,
  .cta-band h2 {}

  .process-head h2 em {
    display: block;
  }

  .process-head,
  .sec-head {
    width: 100%;
  }

  .step,
  .service {
    min-height: calc((100vw - (var(--gutter) * 2)) * 1.25);
  }
}

/* ACSS typography bridge for the custom homepage markup. */
body {
  font-size: var(--text-m);
  line-height: var(--text-line-height);
}

p,
li,
a,
button,
input,
textarea,
select,
.btn,
.nav__links a,
.nav__cta .btn,
.home-mobile-menu a,
.fcol a,
.footer__contact a,
.footer__bottom,
.brand-copy,
.lead,
.service__desc,
.step__desc,
.blog-card__excerpt,
.cta-col p {
  font-size: var(--text-m);
  line-height: var(--text-line-height);
}

h1,
.hero__head {
  font-size: var(--h1);
  line-height: var(--heading-line-height);
  text-wrap: var(--heading-text-wrap);
}

h2,
.studio-modal__title {
  font-size: var(--h2);
  line-height: var(--heading-line-height);
  text-wrap: var(--heading-text-wrap);
}

.brand-state,
.sec-head h2,
.sec-head__h,
.process-head h2,
.split h2,
.giving-split__text h2,
.fsplit__text h2,
.cta-band h2 {
  font-size: var(--h1);
  line-height: var(--heading-line-height);
  text-wrap: var(--heading-text-wrap);
}

h3,
.service h3,
.step h3,
.blog-card__title,
.cta-col h3,
.pcard__t {
  font-size: var(--h3);
  line-height: var(--heading-line-height);
  text-wrap: var(--heading-text-wrap);
}

h4,
.mega-col h4,
.fcol h4 {
  font-size: var(--h4);
  line-height: var(--h4-line-height);
  text-wrap: var(--heading-text-wrap);
}

.kicker,
.hero__eyebrow,
.announce,
.announce__phone,
.service__more,
.blog-card__date,
.blog-card__more,
.tag-pill,
.chip,
.stat__l,
.tst__by span,
.tst__count,
.footer__brand p,
.logo__sub,
.mega-col ul li a {
  font-size: var(--text-s);
  line-height: var(--text-line-height);
}

.stat__n,
.tst__q,
.founder__q {
  font-size: var(--h2);
  line-height: var(--heading-line-height);
}

.sval__n {
  font-size: var(--h3);
  line-height: var(--heading-line-height);
}

.marquee__word {
  font-size: var(--text-xl);
  line-height: var(--heading-line-height);
}

/* ============================================================
   MOBILE RHYTHM — dense, readable, no endless single-column scroll
   ============================================================ */
@media (max-width: 760px) {
  :root {
    --split-pad-y: clamp(44px, 11vw, 72px);
    --hero-offset: 118px;
  }

  .section,
  .portfolio-section {
    padding-top: clamp(44px, 10vw, 68px);
    padding-bottom: clamp(44px, 10vw, 68px);
  }

  .section--tight {
    padding-top: clamp(34px, 8vw, 54px);
    padding-bottom: clamp(34px, 8vw, 54px);
  }

  .phero {
    height: clamp(420px, 70svh, 620px);
  }

  .hero__header {
    max-width: min(34rem, calc(100% - (var(--gutter) * 2)));
  }

  .hero__caption {
    display: none;
  }

  .hero__sub,
  .lead,
  .brand-copy,
  .sec-head p,
  .process-head p,
  .statband__lead {
    max-width: 42ch;
  }

  .brand-state,
  .sec-head h2,
  .sec-head__h,
  .process-head h2,
  .split h2,
  .giving-split__text h2,
  .fsplit__text h2,
  .cta-band h2 {
    font-size: var(--h2);
    line-height: var(--heading-line-height);
  }

  .sec-head,
  .process-head,
  .portfolio-grid-head {
    gap: 14px;
    margin-bottom: clamp(24px, 7vw, 36px);
  }

  .about__text,
  .fsplit__text,
  .giving-split__text,
  .founder__panel,
  .tst__panel,
  .wrap.split > :not(.split__media) {
    padding-top: var(--split-pad-y);
    padding-bottom: var(--split-pad-y);
  }

  .about__media,
  .fsplit__media,
  .split__media,
  .giving-split__video,
  .founder__media,
  .tst__media,
	  #studio .split__media {
	    min-height: clamp(260px, 72vw, 420px) !important;
	    aspect-ratio: 4 / 3;
	  }

  .split__media--vertical {
    width: min(74vw, 320px);
    max-height: min(62svh, 520px);
    aspect-ratio: 9 / 16;
  }

  .split__media--vertical .split__video {
    max-height: min(62svh, 520px);
  }

  .process-grid,
  .services-grid,
  .blog-grid,
  .team-grid,
  .cm-grid,
  .pf-grid,
  .cta-cols,
  .cards-4,
  .svals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(12px, 3.2vw, 18px);
    width: 100%;
    max-width: none !important;
    margin-right: 0;
    margin-left: 0;
  }

  .process-grid > *,
  .services-grid > *,
  .blog-grid > *,
  .team-grid > *,
  .cm-grid > *,
  .pf-grid > *,
  .cta-cols > *,
  .cards-4 > *,
  .svals > * {
    min-width: 0;
  }

  .services-grid,
  .process-grid {
    width: 100%;
    max-width: none !important;
    margin-right: 0;
    margin-left: 0;
    padding-right: clamp(20px, 5vw, 28px);
    padding-left: clamp(20px, 5vw, 28px);
  }

  .step,
  .service {
    min-height: 0 !important;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
  }

  .service:nth-child(3):last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .step__content,
  .service__content {
    padding: 9px 10px;
  }

  .step.is-interacting .step__content,
  .step:focus-visible .step__content,
  .service.is-interacting .service__content,
  .service:focus-visible .service__content {
    padding: 12px;
  }

  .step__label,
  .service__label {
    align-items: flex-start;
    gap: 7px;
  }

  .step h3,
  .service h3 {
    font-size: var(--h4);
    line-height: var(--h4-line-height);
    white-space: normal;
  }

  .step-num,
  .service-num,
  .pf-card__date,
  .cm-card__date,
  .blog-card__date {
    font-size: var(--text-s);
    line-height: var(--text-line-height);
  }

  .step__desc,
  .service__desc,
  .service__more,
  .blog-card__excerpt,
  .tmember__bio,
  .sval__d,
  .cta-col p,
  .cm-card__excerpt {
    font-size: var(--text-s);
    line-height: var(--text-line-height);
  }

  .step.is-interacting .step__desc,
  .step:focus-visible .step__desc,
  .service.is-interacting .service__desc,
  .service:focus-visible .service__desc {
    max-height: 84px;
  }

  .tmember__photo {
    margin-bottom: 12px;
  }

  .tmember__name,
  .sval__t,
  .blog-card__title,
  .cm-card__title,
  .pf-card__title,
  .pf-feat__title,
  .cta-col h3 {
    font-size: var(--h4);
    line-height: var(--h4-line-height);
  }

  .tmember__role,
  .tmember__bio,
  .blog-card__title a,
  .blog-card__excerpt,
  .cm-card__title a,
  .cm-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  .tmember__role {
    -webkit-line-clamp: 2;
  }

  .blog-card__title a,
  .cm-card__title a,
  .pf-card__title a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .pf-card__title a {
    line-height: inherit;
  }

  .tmember__bio,
  .blog-card__excerpt,
  .cm-card__excerpt {
    -webkit-line-clamp: 3;
  }

  .svals .sval:last-child:nth-child(odd),
  .cta-cols .cta-col:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .sval {
    padding-top: 16px;
  }

  .sval__n {
    font-size: var(--h4);
    line-height: var(--h4-line-height);
  }

  .pf-feats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(12px, 3.2vw, 18px);
  }

  .pf-feat:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .pf-feat {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .pf-feat__cap {
    padding: 14px;
  }

  .pf-filter {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 8px;
    margin-bottom: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .chip-btn {
    flex: 0 0 auto;
    padding: 8px 14px;
  }

  .pf-card__media,
  .cm-card__media {
    margin-bottom: 10px;
  }

  .pf-card__title,
  .cm-card__title {
    margin-top: 6px;
  }

  .pf-card__date,
  .pf-card__title,
  .pf-card__title a {
    margin-bottom: 0;
  }

  .pf-card__media {
    margin-bottom: 8px;
  }

  .pf-card__date {
    line-height: 1.08;
  }

  .pf-card__title {
    margin-top: 5px;
  }

  body.page-portfolio .portfolio-grid-section,
  body.page-portfolio .portfolio-grid-section .wrap {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    overflow-x: clip;
  }

  body.page-portfolio .portfolio-grid-head,
  body.page-portfolio .portfolio-grid-head > div,
  body.page-portfolio .portfolio-grid-head h2,
  body.page-portfolio .pf-count,
  body.page-portfolio .pf-grid,
  body.page-portfolio .pf-card,
  body.page-portfolio .pf-card__media {
    max-width: 100%;
    min-width: 0;
  }

  body.page-portfolio .portfolio-grid-head h2 em {
    display: block;
  }

  body.page-portfolio .pf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    contain: inline-size;
  }

  body.page-portfolio .pf-card {
    width: auto;
  }

  .reel-carousel {
    padding: clamp(34px, 8vw, 54px) 0;
  }

  .reel-carousel__stage {
    height: 390px;
    gap: 14px;
  }

  .tst__panel {
    min-height: auto;
  }

  .tst__media {
    min-height: 58vw !important;
  }

  .tst__q,
  .founder__q {
    max-width: 20ch;
    font-size: var(--h3);
  }

  body.page-community .founder__panel,
  body.page-contact .founder__panel {
    width: 100%;
    max-width: none;
    align-items: stretch;
  }

  body.page-community .founder__q,
  body.page-contact .founder__q {
    width: 100%;
    max-width: none;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px;
    max-width: none;
    margin-top: 1.8rem;
  }

  .stat__n {
    font-size: var(--h3);
  }

  .cm-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 3vw, 18px);
    width: 100%;
    max-width: 100%;
  }

  .cm-partner {
    max-width: 13ch;
    font-size: var(--text-l);
    line-height: var(--heading-line-height);
  }

  .cm-partner:first-child {
    grid-column: 1 / -1;
    max-width: 18ch;
  }

  .portfolio-card {
    flex-basis: min(78vw, 320px);
  }

  .footer {
    padding-top: clamp(46px, 10vw, 70px);
  }

  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .section,
  .portfolio-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .process-grid,
  .services-grid,
  .blog-grid,
  .team-grid,
  .cm-grid,
  .pf-grid,
  .cta-cols,
  .cards-4,
  .svals {
    gap: 12px;
  }

  .step__content,
  .service__content {
    padding: 8px;
  }

  .step h3,
  .service h3 {
    font-size: var(--text-l);
    line-height: var(--heading-line-height);
  }
}

/* ============================================================
   BLOG — index + single post
   ============================================================ */

/* category tag on grid cards */
.bl-card__tag {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .02em;
}

/* featured article split card */
.bl-feat {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
}
.bl-feat__media {
  overflow: hidden;
}
/* featured images are 1200x630 OG crops — show them at that ratio */
.bl-feat__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.bl-feat:hover .bl-feat__img { transform: scale(1.04); }
.bl-feat__body { padding: clamp(24px, 3.4vw, 56px); }
.bl-feat__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-weight: 700;
  font-size: var(--text-s);
}
.bl-feat__tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
}
.bl-feat__date { opacity: .7; }
.bl-feat__title {
  font-family: var(--display);
  margin-top: 14px;
}
.bl-feat__excerpt { margin-top: 12px; opacity: .82; }
.bl-feat .cm-card__link { margin-top: 18px; }

/* blog filter reuses .pf-filter/.chip-btn */
.bl-grid { min-height: 200px; }

/* single post hero — solid brand panel (featured images are 1200x630 OG
   crops, too shallow for a full-bleed background) */
/* bottom padding is mostly consumed by the pulled-up .post-figure —
   visible space below the title is (bottom padding − figure overlap),
   so the top padding matches that remainder to look even */
.post-hero {
  position: relative;
  background: var(--blue-deep);
  color: var(--white);
  padding: clamp(44px, 5vw, 56px) 0 clamp(96px, 12vw, 170px);
}
.post-hero__caption {
  position: absolute;
  top: clamp(22px, 4vw, 38px);
  right: var(--gutter);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: var(--text-s);
  opacity: .85;
}
.post-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
  font-size: var(--text-s);
}
.post-hero__tag {
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.post-hero__date,
.post-hero__time { opacity: .85; }
.post-hero__head {
  font-family: var(--display);
  font-size: var(--h1);
  line-height: var(--heading-line-height);
  margin-top: 18px;
  max-width: 26ch;
}
.post-hero__caption,
.post-hero__wrap > * {
  opacity: 0;
  animation: heroIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.post-hero__caption { animation-delay: .15s; }
.post-hero__meta { animation-delay: .12s; }
.post-hero__head { animation-delay: .26s; }

/* portfolio + community singles: center the hero title (and its meta row,
   so the category tag + date don't sit lopsided above a centered heading) */
body.single-portfolio .post-hero__wrap,
body.single-community .post-hero__wrap { text-align: center; }
body.single-portfolio .post-hero__meta,
body.single-community .post-hero__meta { justify-content: center; }
body.single-portfolio .post-hero__head,
body.single-community .post-hero__head { margin-inline: auto; }

/* featured image pulled up over the hero panel */
.post-figure {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: calc(-1 * clamp(56px, 8vw, 120px)) auto 0;
}
.post-figure__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(16, 19, 28, .18);
}

@media (max-width: 640px) {
  .post-hero__caption { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .post-hero__caption,
  .post-hero__wrap > * {
    opacity: 1;
    animation: none;
  }
}

/* single post article — main column + sticky aside */
.post-single__wrap { max-width: 1240px; }
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(36px, 4vw, 72px);
  align-items: start;
}
.post-main { max-width: 800px; }

.post-aside {
  position: sticky;
  top: 148px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-aside__card {
  background: var(--paper);
  border-radius: 12px;
  padding: clamp(22px, 2.4vw, 32px);
}
.post-aside__title {
  font-family: var(--display);
  font-size: var(--h4);
  margin-bottom: 14px;
}

/* table of contents */
.post-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: min(48vh, 420px);
  overflow-y: auto;
}
.post-toc__item + .post-toc__item { margin-top: 2px; }
.post-toc__item--sub { padding-left: 16px; }
.post-toc__link {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  font-size: var(--text-s);
  font-weight: 600;
  line-height: 1.4;
  opacity: .78;
  transition: opacity .25s ease, background .25s ease, border-color .25s ease;
}
.post-toc__link:hover { opacity: 1; background: rgba(16, 19, 28, .05); }
.post-toc__link.is-active {
  opacity: 1;
  border-left-color: var(--blue);
  border-radius: 0 8px 8px 0;
  background: rgba(16, 31, 181, .07);
  color: var(--blue);
}

/* reach-out panel */
.post-reach__copy { font-size: var(--text-s); line-height: var(--text-line-height); opacity: .85; }
.post-reach__btn { margin-top: 18px; width: 100%; justify-content: center; }
.post-reach__phone {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: var(--text-s);
  font-weight: 700;
  color: var(--blue);
}
.post-reach__phone:hover { text-decoration: underline; }

.post-prose {
  font-size: var(--text-m);
  line-height: var(--text-line-height);
}
.post-prose h2,
.post-prose h3 { scroll-margin-top: 110px; }
.post-prose > * + * { margin-top: 1.2em; }
.post-prose h2,
.post-prose h3,
.post-prose h4 {
  font-family: var(--display);
  line-height: 1.2;
  margin-top: 1.8em;
}
.post-prose h2 { font-size: var(--h2); }
.post-prose h3 { font-size: var(--h3); }
.post-prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.post-prose ul,
.post-prose ol { padding-left: 1.4em; }
.post-prose li + li { margin-top: .5em; }
.post-prose img {
  border-radius: 8px;
  height: auto;
  max-width: 100%;
}
.post-prose blockquote {
  border-left: 3px solid var(--blue);
  padding: .4em 0 .4em 1.2em;
  font-style: italic;
  opacity: .9;
}
.post-prose figcaption {
  font-size: var(--text-s);
  opacity: .7;
  margin-top: .6em;
}
.post-pages { margin-top: 2em; font-weight: 700; }
.post-pages a { margin-left: .5em; }

/* filed-under chips */
.post-terms {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(34px, 4vw, 56px);
  padding-top: clamp(20px, 2.4vw, 32px);
  border-top: 1px solid rgba(16, 19, 28, .12);
}
.post-terms__label { font-weight: 700; font-size: var(--text-s); opacity: .7; margin-right: 4px; }
a.post-terms__chip { text-decoration: none; }

/* previous / next navigation */
.post-nav { padding-bottom: clamp(48px, 6vw, 92px); }
.post-nav__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
}
.post-nav__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.6vw, 34px);
  border: 1px solid rgba(16, 19, 28, .12);
  border-radius: 12px;
  transition: border-color .3s ease, transform .3s ease;
}
.post-nav__card--next { text-align: right; align-items: flex-end; }
.post-nav__card--empty { border: 0; padding: 0; }
a.post-nav__card:hover { border-color: var(--blue); transform: translateY(-3px); }
.post-nav__dir { font-weight: 700; font-size: var(--text-s); color: var(--blue); }
.post-nav__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--h4);
  line-height: var(--heading-line-height);
}

/* related articles on cobalt keep card text readable */
.post-related .cm-card__title a,
.post-related .cm-card__link { color: inherit; }

@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-main { max-width: none; }
  .post-aside { position: static; }
  .post-toc { display: none; }
}
@media (max-width: 900px) {
  .bl-feat { grid-template-columns: 1fr; }
  .post-nav__cols { grid-template-columns: 1fr; }
  .post-nav__card--next { text-align: left; align-items: flex-start; }
  .post-nav__card--empty { display: none; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* stat strip */
.services-stats {
  padding-top: clamp(34px, 4.5vw, 70px);
  padding-bottom: clamp(28px, 4vw, 58px);
  background:
    linear-gradient(180deg, var(--white) 0%, color-mix(in srgb, var(--blue) 5%, var(--white)) 100%);
}
.services-stats .wrap {
  width: min(1120px, calc(100% - (var(--gutter) * 2)));
  max-width: min(1120px, calc(100% - (var(--gutter) * 2)));
  padding-right: 0;
  padding-left: 0;
}
.sv-stats {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: none;
  margin-top: 0;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--blue) 16%, transparent);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(16, 31, 181, .08);
}
.sv-stats .stat {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(136px, 14vw, 188px);
  padding: clamp(22px, 3vw, 38px);
}
.sv-stats .stat + .stat::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: color-mix(in srgb, var(--blue) 18%, transparent);
}
.sv-stat__n {
  color: var(--blue);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: .82;
}
.sv-stats .stat__l {
  margin-top: clamp(12px, 1.5vw, 18px);
  color: var(--ink);
  font-size: var(--text-m);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: .82;
}

/* service cards */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.sv-card { display: flex; flex-direction: column; }
.sv-card__media {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.sv-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.sv-card:hover .sv-card__img { transform: scale(1.05); }
.sv-card__copy {
  margin-top: 10px;
  font-size: var(--text-s);
  line-height: var(--text-line-height);
  opacity: .82;
}
.sv-card .cm-card__link { margin-top: auto; padding-top: 16px; }

/* consultation band buttons (on cobalt) */
.sv-consult__lead { max-width: 62ch; margin-top: 16px; }
.sv-btn-invert { background: var(--white); border-color: var(--white); color: var(--blue); }
.sv-btn-invert:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: var(--white); }
.sv-btn-ghost-invert { color: var(--white); border-color: var(--white); }
.sv-btn-ghost-invert:hover { background: var(--white); color: var(--blue); }
.services-consult .ctas { margin-top: 26px; }

/* clients grid */
.sv-clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.sv-client {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}
.sv-client__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* our work cards */
.sv-work-card { display: flex; flex-direction: column; }
.sv-work-card__media {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.sv-work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sv-work-card__tags {
  margin-top: 10px;
  font-size: var(--text-xs);
  line-height: var(--text-line-height);
  opacity: .55;
  overflow-wrap: anywhere;
}

/* final cta quote */
.sv-cta-quote { max-width: 70ch; margin-top: 14px; font-style: italic; }

@media (max-width: 1100px) {
  .sv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .sv-clients { grid-template-columns: repeat(2, 1fr); }
  .services-stats .wrap {
    max-width: min(680px, calc(100% - (var(--gutter) * 2)));
  }
  .services-stats .sv-stats {
    grid-template-columns: 1fr !important;
  }
  .sv-stats .stat {
    min-height: 0;
    padding: clamp(22px, 5vw, 34px);
  }
  .sv-stats .stat + .stat::before {
    top: 0;
    right: clamp(22px, 5vw, 34px);
    bottom: auto;
    left: clamp(22px, 5vw, 34px);
    width: auto;
    height: 1px;
  }
}
@media (max-width: 640px) {
  .sv-grid { grid-template-columns: 1fr; max-width: 440px; }
  .services-stats .sv-stats { text-align: left; }
  .services-stats .sv-stats .stat {
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: end;
  }
  .services-stats .sv-stats .stat__l {
    margin-top: 0;
    padding-bottom: .35em;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* hero — solid brand panel (same treatment as single-post hero) */
.contact-hero {
  position: relative;
  background: var(--blue-deep);
  color: var(--white);
  padding: clamp(48px, 6vw, 72px) 0 clamp(52px, 7vw, 84px);
}
.contact-hero__caption {
  position: absolute;
  top: clamp(22px, 4vw, 38px);
  right: var(--gutter);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: var(--text-s);
  opacity: .85;
}
.contact-hero__kicker { color: var(--white); }
.contact-hero__head {
  font-family: var(--display);
  font-size: var(--h1);
  line-height: var(--heading-line-height);
  margin-top: 14px;
}
.contact-hero__head em { color: var(--white); }
.contact-hero__sub {
  max-width: 62ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, .92);
}
.contact-hero__caption,
.contact-hero__wrap > * {
  opacity: 0;
  animation: heroIn 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.contact-hero__caption { animation-delay: .15s; }
.contact-hero__kicker { animation-delay: .12s; }
.contact-hero__head { animation-delay: .26s; }
.contact-hero__sub { animation-delay: .42s; }

.city-hero .contact-hero__wrap {
  text-align: center;
}
.city-hero .contact-hero__head,
.city-hero .contact-hero__sub {
  margin-inline: auto;
}
.city-hero .contact-hero__kicker {
  justify-content: center;
}
.city-hero .contact-hero__kicker::before {
  display: none;
}

/* layout: form + info cards */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.contact-form__title { font-family: var(--display); }
.contact-form__sub { margin-top: 10px; opacity: .82; }
.contact-form .frm_forms { margin-top: 24px; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--paper);
  border-radius: 12px;
  padding: clamp(22px, 2.4vw, 32px);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(16, 19, 28, .1);
}
.contact-card__label {
  font-size: var(--text-s);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .6;
}
.contact-card__value {
  font-family: var(--display);
  font-size: var(--h4);
  margin-top: 8px;
  color: var(--blue);
}
.contact-card__note {
  margin-top: 8px;
  font-size: var(--text-s);
  line-height: var(--text-line-height);
  opacity: .8;
}

/* Formidable form — align with theme without fighting frm styles */
.contact-form .frm_forms fieldset { border: 0; padding: 0; }
.contact-form .frm_forms .frm_form_field { margin-bottom: 16px; }
.contact-form .frm_forms label.frm_primary_label {
  font-weight: 700;
  font-size: var(--text-s);
}
.contact-form .frm_forms input[type="text"],
.contact-form .frm_forms input[type="email"],
.contact-form .frm_forms input[type="tel"],
.contact-form .frm_forms input[type="number"],
.contact-form .frm_forms input[type="url"],
.contact-form .frm_forms select,
.contact-form .frm_forms textarea {
  font-family: inherit;
  font-size: var(--text-m);
  border-radius: 8px;
  border: 1px solid rgba(16, 19, 28, .18);
  background: var(--white);
  padding: 12px 14px;
}
.contact-form .frm_forms input:focus,
.contact-form .frm_forms select:focus,
.contact-form .frm_forms textarea:focus {
  border-color: var(--blue);
  outline: 2px solid color-mix(in srgb, var(--blue) 24%, white);
}
.contact-form .frm_forms .frm_submit button,
.contact-form .frm_forms button[type="submit"] {
  font-family: inherit;
  font-size: var(--text-m);
  font-weight: 700;
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 13px 30px;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.contact-form .frm_forms .frm_submit button:hover,
.contact-form .frm_forms button[type="submit"]:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-hero__caption { display: none; }
}

/* thank-you page */
.thankyou-screen-page .announce,
.thankyou-screen-page .nav,
.thankyou-screen-page .footer {
  display: none;
}
.thankyou-screen-page .site-main {
  min-height: 100svh;
}
.thankyou-hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
}
.thankyou-hero .contact-hero__wrap {
  max-width: 920px;
}
.thankyou-hero .contact-hero__kicker {
  justify-content: center;
}
.thankyou-hero .contact-hero__kicker::before {
  display: none;
}
.thankyou-hero .contact-hero__head,
.thankyou-hero .contact-hero__sub {
  margin-inline: auto;
}
.thankyou-hero .contact-hero__sub {
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.6;
}
.thankyou-hero .contact-hero__sub a {
  color: var(--white);
}
.thankyou-ctas {
  margin-top: clamp(26px, 3vw, 38px);
  justify-content: center;
  animation: heroIn 1s cubic-bezier(.2,.8,.2,1) .5s forwards;
  opacity: 0;
}
.thankyou-hero .btn--cream:hover,
.thankyou-hero .btn--onfield:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue);
}
.contact-hero__sub a { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   PROMOTIONAL PRODUCTS PAGE (services child)
   ============================================================ */

.pp-hero .hero__bg-img {
  object-fit: cover;
  object-position: center center;
}

/* real-example product tiles */
.pp-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.pp-tile { text-align: center; }
.pp-tile__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--paper);
}
.pp-tile__label {
  margin-top: 10px;
  font-size: var(--text-s);
  font-weight: 700;
}
.pp-examples__ctas,
.pp-gallery__ctas {
  margin-top: clamp(28px, 3.4vw, 44px);
  display: flex;
  justify-content: center;
}
.pp-gallery__ctas .btn {
  max-width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

/* category cards */
.pp-cats {
  columns: 3;
  column-gap: clamp(16px, 2vw, 28px);
}
.pp-cat {
  break-inside: avoid;
  margin-bottom: clamp(16px, 2vw, 28px);
  background: var(--paper);
  border-radius: 12px;
  padding: clamp(20px, 2.2vw, 28px);
}
.pp-cat__title { font-family: var(--display); font-size: var(--h4); }
.pp-cat__list {
  margin-top: 10px;
  padding: 0;
  list-style: none;
  font-size: var(--text-s);
  line-height: var(--text-line-height);
}
.pp-cat__list li {
  padding-left: 1.2em;
  position: relative;
}
.pp-cat__list li + li { margin-top: 4px; }
.pp-cat__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* custom merchandise gallery */
.pp-gallery-section > .wrap {
  display: block;
  width: 100%;
  max-width: var(--maxw);
}

.pp-gallery-section .sec-head {
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.pp-gallery-section .sec-head p {
  max-width: 48ch;
}

.pp-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  width: 100%;
}
.pp-gal {
  position: relative;
  width: 100%;
  grid-column: span 4;
  min-height: clamp(220px, 24vw, 360px);
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 22px 54px rgba(0,0,0,.16);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.pp-gal:nth-child(1),
.pp-gal:nth-child(4),
.pp-gal:nth-child(7) {
  grid-column: span 5;
}
.pp-gal:nth-child(2),
.pp-gal:nth-child(5),
.pp-gal:nth-child(8) {
  grid-column: span 4;
}
.pp-gal:nth-child(3),
.pp-gal:nth-child(6),
.pp-gal:nth-child(9) {
  grid-column: span 3;
}
.pp-gal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}
.pp-gal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(16,19,28,.82) 0%, rgba(16,19,28,.32) 48%, rgba(16,19,28,0) 100%);
  pointer-events: none;
}
.pp-gal:hover,
.pp-gal:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
}
.pp-gal:hover .pp-gal__img,
.pp-gal:focus-within .pp-gal__img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.pp-gal__cap {
  position: absolute;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  left: clamp(14px, 2vw, 22px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--h4);
  line-height: var(--h4-line-height);
}
.pp-gal__cap::after {
  content: "\2192";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 999px;
  font-family: var(--body);
  font-size: var(--text-s);
  transition: transform .3s ease;
}
.pp-gal:hover .pp-gal__cap::after,
.pp-gal:focus-within .pp-gal__cap::after {
  transform: translateX(4px);
}

/* FAQ accordion */
.pp-faq__wrap { max-width: 900px; }
.pp-faq__item {
  border-bottom: 1px solid rgba(16, 19, 28, .12);
}
.pp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-m);
  cursor: pointer;
  list-style: none;
}
.pp-faq__q::-webkit-details-marker { display: none; }
.pp-faq__icon {
  flex: 0 0 auto;
  font-size: var(--text-l);
  color: var(--blue);
  transition: transform .3s ease;
}
.pp-faq__item[open] .pp-faq__icon { transform: rotate(45deg); }
.pp-faq__a {
  padding: 0 0 20px;
  font-size: var(--text-m);
  line-height: var(--text-line-height);
  opacity: .85;
  max-width: 70ch;
}

/* city cards */
.pp-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.pp-city { display: flex; flex-direction: column; }
.pp-city__img {
  width: 100%;
  aspect-ratio: 300 / 158;
  object-fit: cover;
  border-radius: 8px;
}
.pp-city__title {
  margin-top: 10px;
  font-size: var(--text-m);
  font-family: var(--display);
}

/* learn-more banner cards */
.pp-more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(32px, 4vw, 56px);
}
.pp-more-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  padding-right: clamp(16px, 2vw, 26px);
}
.pp-more-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp-more-card__body { padding-block: 18px; }
.pp-more-card__title { font-size: var(--text-m); font-family: var(--display); }
.pp-more-card .cm-card__link { margin-top: 10px; }

@media (max-width: 1100px) {
  .pp-tiles { grid-template-columns: repeat(4, 1fr); }
  .pp-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pp-gal,
  .pp-gal:nth-child(n) {
    grid-column: auto;
    min-height: clamp(220px, 44vw, 340px);
  }
  .pp-cats { columns: 2; }
  .pp-city-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-more { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .pp-tiles { grid-template-columns: repeat(2, 1fr); }
  .pp-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pp-gal,
  .pp-gal:nth-child(n) {
    min-height: clamp(230px, 62vw, 310px);
  }
  .pp-gal__cap {
    font-size: var(--h4);
  }
  .pp-cats { columns: 1; }
  .pp-more-card { grid-template-columns: 1fr; padding-right: 0; }
  .pp-more-card__body { padding: 0 18px 18px; }
  .pp-city-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GIFTING PAGE (services child)
   ============================================================ */
.gf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
a.gf-chip { text-decoration: none; }
.gf-chip--static { cursor: default; opacity: .75; }
.gf-chip--static:hover { border-color: rgba(16, 19, 28, .18); color: inherit; }

.gf-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 60px);
}
.gf-logo {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}
.gf-logos-section {
  max-width: 100vw;
  overflow-x: hidden;
}
.gf-logos-section > .wrap {
  display: block;
  width: 100%;
  max-width: var(--maxw);
  min-width: 0;
  box-sizing: border-box;
}
.gf-logo-slider {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 100%;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  overflow-x: hidden;
  padding-block: clamp(8px, 1.4vw, 18px);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gf-logo-slider__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  width: max-content;
  max-width: none;
  min-width: 0;
  animation: gf-logo-scroll 28s linear infinite;
  will-change: transform;
}
.gf-logo-slider__track--delay {
  animation-duration: 32s;
  animation-delay: -16s;
}
.gf-logo-slider__logo {
  flex: 0 0 clamp(140px, 14vw, 220px);
  display: grid;
  place-items: center;
}
.gf-logo-slider__img {
  max-width: 100%;
  max-height: clamp(44px, 5.2vw, 72px);
}
@keyframes gf-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gf-glamorous__cols {
  columns: 3;
  column-gap: clamp(20px, 2.6vw, 40px);
}
.gf-glamorous__cols p {
  break-inside: avoid;
  margin-bottom: 1em;
  line-height: var(--text-line-height);
}
.gf-glamorous__gallery { margin-top: clamp(28px, 3.4vw, 44px); }

@media (max-width: 900px) {
  .gf-glamorous__cols { columns: 1; }
  .gf-logo { max-height: 48px; }
  .gf-logos-section > .wrap {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: var(--gutter);
  }
  .gf-logo-slider {
    gap: 14px;
    overflow: visible;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .gf-logo-slider__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    animation: none;
    transform: none !important;
  }
  .gf-logo-slider__track .gf-logo-slider__logo:nth-child(n+6) { display: none; }
  .gf-logo-slider__logo {
    min-width: 0;
    width: 100%;
    min-height: 72px;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(16, 19, 28, .08);
    border-radius: 8px;
  }
  .gf-logo-slider__img {
    max-height: 46px;
  }
}

/* ============================================================
   ON-SITE PAGE (services child)
   ============================================================ */
.os-videos-section {
  overflow: hidden;
  background: var(--paper);
}

.os-videos-section > .wrap {
  display: block;
  width: 100%;
  max-width: var(--maxw);
}

.os-videos-section .sec-head {
  align-items: stretch;
  margin-bottom: clamp(24px, 3vw, 42px);
}

.os-videos-section .sec-head p {
  align-self: end;
  max-width: 42ch;
  padding: clamp(16px, 2vw, 24px);
  color: var(--ink);
  font-size: var(--text-m);
  font-weight: 700;
  line-height: 1.35;
  background: var(--white);
  border: 1px solid rgba(16,19,28,.1);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(16,19,28,.08);
  opacity: 1;
}

.os-videos-section .sec-head p b {
  color: var(--blue);
}

.os-videos {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 18vw, 286px);
  grid-template-columns: none;
  gap: clamp(14px, 1.6vw, 22px);
  width: calc(100% + (var(--gutter) * 2));
  max-width: 100vw;
  margin-inline: calc(-1 * var(--gutter));
  padding: 6px var(--gutter) 18px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-padding-inline: var(--gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--blue) 70%, white) transparent;
}

.os-videos::-webkit-scrollbar {
  height: 8px;
}

.os-videos::-webkit-scrollbar-track {
  background: transparent;
}

.os-videos::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--blue) 70%, white);
  border-radius: 999px;
}

.os-video {
  position: relative;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  border: 1px solid rgba(16,19,28,.12);
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 22px 54px rgba(16,19,28,.16);
  transform: translateZ(0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}

.os-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(16,19,28,.22), rgba(16,19,28,0) 42%);
}

.os-video:hover,
.os-video:focus-within {
  border-color: color-mix(in srgb, var(--blue) 44%, rgba(16,19,28,.12));
  box-shadow: 0 30px 70px rgba(16,19,28,.22);
  transform: translateY(-6px);
}

.os-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1100px) {
  .os-videos {
    grid-auto-columns: clamp(210px, 34vw, 280px);
  }
}
@media (max-width: 560px) {
  .os-videos-section .sec-head p {
    padding: 14px;
    font-size: var(--text-s);
  }
  .os-videos {
    grid-auto-columns: min(68vw, 250px);
    width: calc(100% + (var(--gutter) * 2));
    max-width: 100vw;
    margin-inline: calc(-1 * var(--gutter));
  }
}

/* ============================================================
   LOOKBOOK PAGE (services child)
   ============================================================ */
.lb-tabs { margin-bottom: clamp(20px, 2.6vw, 36px); }
.lb-grid {
  columns: 4;
  column-gap: clamp(10px, 1.2vw, 18px);
}
.lb-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: clamp(10px, 1.2vw, 18px);
  break-inside: avoid;
  background: var(--paper);
}
@media (max-width: 1100px) {
  .lb-grid { columns: 3; }
}
@media (max-width: 760px) {
  .lb-grid { columns: 2; }
}

/* ============================================================
   EVENT PLANNERS HUB
   ============================================================ */
.ep-tiles { grid-template-columns: repeat(6, 1fr); }
.ep-insta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.ep-insta-card__handle {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-m);
}
.ep-insta-card__stats {
  display: flex;
  gap: 18px;
  font-size: var(--text-s);
  opacity: .85;
}
.ep-insta-card__btn { margin-top: 4px; }
.ep-insta-grid { margin-top: clamp(24px, 3vw, 40px); }
@media (max-width: 1100px) {
  .ep-tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .ep-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CITY LANDING PAGES (shared templates)
   ============================================================ */

/* why-choose benefit cards */
.cw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.cw-card {
  background: var(--paper);
  border-radius: 12px;
  padding: clamp(20px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
}
.field .cw-card { color: var(--ink); }
.city-why__featured {
  max-width: min(100%, 980px);
  margin: 0 auto clamp(28px, 4vw, 56px);
}
.city-why__featured-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(16, 19, 28, .14);
}
.city-why__featured-caption {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--h4);
  line-height: var(--h4-line-height);
  text-align: center;
}
.cw-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.cw-card__img { width: 100%; height: 100%; object-fit: cover; }
.cw-card__title { font-family: var(--display); font-size: var(--h4); }
.cw-card__copy {
  margin-top: 8px;
  font-size: var(--text-s);
  line-height: var(--text-line-height);
  opacity: .82;
}
.cw-card__tag {
  margin-top: auto;
  padding-top: 12px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
}

/* process steps with vertical videos */
.cstep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.cstep__video { margin-bottom: 14px; }
.cstep__label { display: flex; align-items: center; gap: 10px; }
.cstep__desc {
  margin-top: 8px;
  font-size: var(--text-s);
  line-height: var(--text-line-height);
  opacity: .82;
}

.city-intro__video-wrap {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  overflow: hidden;
}
.city-intro__video-wrap .city-intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.gf-miracle__media {
  position: relative;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
}
.gf-miracle__media .gf-miracle__img {
  object-fit: contain;
}

.city-standout {
  text-align: left;
}
.cta-band.city-standout > .wrap {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}
.city-standout .lead {
  margin-inline: 0;
  max-width: 58ch;
}
.city-standout__media {
  position: relative;
  aspect-ratio: 1200 / 630;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}
.city-standout__media .city-standout__img {
  object-fit: contain;
}

.gf-testimonial__media {
  position: relative;
}
.gf-testimonial__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(16, 19, 28, .34), rgba(16, 19, 28, .08));
  color: var(--white);
  cursor: pointer;
  transition: opacity .25s ease, background .25s ease;
}
.gf-testimonial__play:hover,
.gf-testimonial__play:focus-visible {
  background: linear-gradient(to top, rgba(16, 19, 28, .46), rgba(16, 19, 28, .14));
}
.gf-testimonial__play-icon {
  display: grid;
  place-items: center;
  width: clamp(72px, 7vw, 96px);
  height: clamp(72px, 7vw, 96px);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 18px 44px rgba(16, 19, 28, .28);
  transition: transform .25s ease;
}
.gf-testimonial__play:hover .gf-testimonial__play-icon,
.gf-testimonial__play:focus-visible .gf-testimonial__play-icon {
  transform: scale(1.06);
}
.gf-testimonial__play-text {
  font-weight: 800;
  font-size: var(--text-s);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gf-testimonial__media.is-playing .gf-testimonial__play {
  opacity: 0;
  pointer-events: none;
}

.pl-team .split__media {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  overflow: hidden;
}
.pl-team .split__media .split__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* pillow type cards */
.pl-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.pl-type__media {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--paper);
}
.pl-type__img { width: 100%; height: 100%; object-fit: cover; }
.pl-type__title { font-family: var(--display); font-size: var(--h4); }
.pl-type__copy {
  margin-top: 8px;
  font-size: var(--text-s);
  line-height: var(--text-line-height);
  opacity: .82;
}

/* pillow numbered steps */
.pl-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  counter-reset: none;
}
.pl-step {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(20px, 2.2vw, 28px);
}
.pl-step__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--h3);
  color: var(--blue);
}
.pl-step__title { font-family: var(--display); font-size: var(--h4); margin-top: 8px; }
.pl-step__copy {
  margin-top: 8px;
  font-size: var(--text-s);
  line-height: var(--text-line-height);
  opacity: .82;
}
.pl-ep-link { padding-top: 0; }

@media (max-width: 1100px) {
  .cw-grid, .pl-type-grid, .pl-steps { grid-template-columns: repeat(2, 1fr); }
  .cstep-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cw-grid, .pl-type-grid, .pl-steps, .cstep-grid { grid-template-columns: 1fr; }
  .city-intro .split__media,
  .city-standout .split__media,
  .gf-miracle .split__media,
  .gf-testimonial .split__media,
  .pl-team .split__media {
    width: 100%;
    max-width: calc(100vw - (var(--gutter) * 2));
  }
  .gf-miracle__media {
    min-height: 0 !important;
    aspect-ratio: auto;
    background: transparent;
  }
  .gf-miracle__media .gf-miracle__img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    max-height: min(54svh, 360px);
    aspect-ratio: auto;
    object-fit: contain;
  }
  .city-intro .city-intro__video-wrap {
    width: min(64vw, 250px);
    min-height: 0 !important;
    max-width: calc(100vw - (var(--gutter) * 2));
  }
  .cta-band.city-standout > .wrap {
    grid-template-columns: 1fr;
  }
  .city-standout {
    text-align: center;
  }
  .city-standout .lead {
    margin-inline: auto;
  }
  .city-standout__media {
    min-height: 0 !important;
    aspect-ratio: auto;
    order: -1;
    background: transparent;
  }
  .city-standout__media .city-standout__img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    max-height: min(54svh, 360px);
    aspect-ratio: auto;
    object-fit: contain;
  }
  .pl-ep-link .pp-examples__ctas {
    width: 100%;
    justify-content: stretch;
  }
  .pl-ep-link .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }
  .pl-team .split__media {
    width: min(64vw, 250px);
    min-height: 0 !important;
  }
}

/* ============================================================
   PORTFOLIO SINGLE
   ============================================================ */
/* project photos are frequently portrait — keep natural ratio */
.pf-single-figure { display: flex; justify-content: center; }
.pf-single-figure__img {
  aspect-ratio: auto;
  width: auto;
  max-width: 100%;
  max-height: 680px;
  object-fit: contain;
}
.pf-single-main { max-width: 800px; margin-inline: auto; }

/* portfolio single — project video + gallery */
/* gallery hugs the article so it reads as part of the project */
.single-portfolio .post-single { padding-bottom: clamp(16px, 2vw, 28px); }
.pf-single-gallery { padding-top: 0; }
.pf-single-gallery .sec-head { margin-bottom: clamp(16px, 2vw, 26px); }
.pf-single-video {
  max-width: 720px;
  margin: 0 auto clamp(24px, 3vw, 40px);
}
.pf-single-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  background: var(--ink);
}
.pf-single-gallery__grid { columns: 3; }
@media (max-width: 760px) {
  .pf-single-gallery__grid { columns: 2; }
}

/* portfolio gallery hover + lightbox */
.pf-single-gallery__grid .lb-img {
  cursor: zoom-in;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, filter .35s ease;
}
.pf-single-gallery__grid .lb-img:hover,
.pf-single-gallery__grid .lb-img:focus-visible {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 16px 36px rgba(16, 19, 28, .22);
  filter: brightness(1.04);
}

html.jnp-lightbox-open { overflow: hidden; }
.jnp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.jnp-lightbox.is-open { display: flex; }
.jnp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 19, 28, .93);
  cursor: zoom-out;
}
.jnp-lightbox__frame {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  display: flex;
}
.jnp-lightbox__img {
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  animation: heroIn .4s cubic-bezier(.2,.8,.2,1);
}
.jnp-lightbox__btn {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  background: rgba(16, 19, 28, .5);
  color: var(--white);
  font-size: var(--text-l);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.jnp-lightbox__btn:hover { background: var(--blue); border-color: var(--blue); }
.jnp-lightbox__close { top: 20px; right: 20px; }
.jnp-lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.jnp-lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.jnp-lightbox__count {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-s);
  opacity: .85;
}
@media (prefers-reduced-motion: reduce) {
  .pf-single-gallery__grid .lb-img { transition: none; }
  .pf-single-gallery__grid .lb-img:hover { transform: none; }
  .jnp-lightbox__img { animation: none; }
}

/* ============================================================
   LANDING PAGE TEMPLATE 01 (HappyFiles folder / ACF group)
   ============================================================ */
.lp01-hero__head { max-width: 30ch; }
.lp01-info__wrap { max-width: 900px; }
.lp01-info__text { margin-top: 18px; }
.lp01-card__title {
  font-family: var(--display);
  font-size: var(--h4);
  line-height: var(--heading-line-height);
}
.lp01-card .sv-card__copy { margin-top: 8px; }
.lp01-content__wrap { max-width: 900px; }

/* Yoast FAQ block styled like the theme accordions (markup kept for schema) */
.lp01-faq .schema-faq-section {
  border-bottom: 1px solid rgba(16, 19, 28, .12);
  padding: 18px 0;
}
.lp01-faq .schema-faq-section:first-of-type { border-top: 1px solid rgba(16, 19, 28, .12); }
.lp01-faq .schema-faq-question {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-m);
}
.lp01-faq .schema-faq-answer {
  margin-top: 8px;
  max-width: 70ch;
  opacity: .85;
}

/* lp01 hero form card — overlaps the blue hero like the old Oxygen layout */
.lp01-hero { padding-bottom: clamp(120px, 14vw, 190px); }
.lp01-hero .contact-hero__wrap { text-align: center; }
h1.contact-hero__head.lp01-hero__head {
  text-align: center;
  margin-inline: auto;
}
.lp01-hero .contact-hero__sub { margin-inline: auto; }
.lp01-hero .contact-hero__kicker { justify-content: center; }
.lp01-hero .contact-hero__kicker::before { display: none; }
.lp01-hero .thankyou-ctas { justify-content: center; }
.lp01-form {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: calc(-1 * clamp(80px, 10vw, 130px)) auto 0;
  background: var(--white);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 44px);
  box-shadow: 0 24px 60px rgba(16, 19, 28, .16);
  text-align: center;
}
.lp01-form__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: var(--text-s);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue), #00b5e2, var(--blue));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
  animation: lp01-gradient 6s ease infinite;
}
@keyframes lp01-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lp01-form__title {
  font-family: var(--display);
  font-size: var(--h3);
  margin-top: 8px;
}
.lp01-form__copy { margin-top: 8px; opacity: .82; }
.lp01-form .frm_forms { margin-top: 18px; text-align: left; }
.lp01-form .frm_forms label.frm_primary_label {
  font-weight: 700;
  font-size: var(--text-s);
}
.lp01-form .frm_forms input[type="text"],
.lp01-form .frm_forms input[type="email"],
.lp01-form .frm_forms input[type="tel"] {
  font-family: inherit;
  font-size: var(--text-m);
  border-radius: 8px;
  border: 1px solid rgba(16, 19, 28, .18);
  background: var(--white);
  padding: 12px 14px;
  width: 100%;
}
.lp01-form .frm_forms input:focus {
  border-color: var(--blue);
  outline: 2px solid color-mix(in srgb, var(--blue) 24%, white);
}
.lp01-form .frm_forms .frm_submit { text-align: center; }
.lp01-form .frm_forms .frm_submit button {
  font-family: inherit;
  font-size: var(--text-m);
  font-weight: 700;
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 13px 40px;
  cursor: pointer;
  transition: background .3s ease;
}
.lp01-form .frm_forms .frm_submit button:hover { background: var(--blue-deep); border-color: var(--blue-deep); }

/* city pages with the landing-page contact form card */
.pp-city-hero,
.city-form-hero {
  padding-bottom: clamp(120px, 14vw, 190px);
}
.pp-city-hero .contact-hero__wrap,
.city-form-hero .contact-hero__wrap {
  text-align: center;
}
.pp-city-hero .contact-hero__sub,
.city-form-hero .contact-hero__sub {
  margin-inline: auto;
}
.pp-city-hero .contact-hero__kicker,
.city-form-hero .contact-hero__kicker {
  justify-content: center;
}
.pp-city-hero .contact-hero__kicker::before,
.city-form-hero .contact-hero__kicker::before {
  display: none;
}
.pp-city-hero-form,
.city-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 52px);
}

/* Corporate employee gifting landing page */
.gf-employee-form,
.gf-retirement-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.gf-employee-intro.section,
.gf-employee-types.section,
.gf-employee-ideas.section,
.gf-options.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.gf-employee-intro__media {
  aspect-ratio: 1200 / 630;
  height: auto;
  min-height: 0 !important;
  background: var(--white);
}

.gf-employee-intro__media .gf-employee-intro__img {
  position: static;
  width: 100%;
  height: auto;
  max-height: clamp(320px, 44vw, 620px);
  object-fit: contain;
}

.gf-employee-video__media {
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  height: auto;
  min-height: 0 !important;
  margin-inline: auto;
  overflow: hidden;
}

.gf-employee-video__media .gf-employee-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gf-employee-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(22px, 3vw, 40px);
}

.gf-employee-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 19, 28, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.gf-employee-card:hover,
.gf-employee-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 132, 255, .22);
  box-shadow: 0 24px 56px rgba(16, 19, 28, .13);
}

.gf-employee-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(16, 19, 28, .04);
}

.gf-employee-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease;
}

.gf-employee-card:hover .gf-employee-card__img,
.gf-employee-card:focus-within .gf-employee-card__img {
  transform: scale(1.04);
}

.gf-employee-card__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--h5);
  line-height: var(--heading-line-height);
}

.gf-employee-card__copy {
  margin: 0;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-s);
  line-height: 1.5;
}

.gf-employee-ideas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(22px, 3vw, 40px);
}

.gf-employee-idea {
  min-width: 0;
}

.gf-employee-cta {
  text-align: center;
}

.gf-employee-cta .lead,
.gf-employee-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

.gf-options-grid {
  margin-top: clamp(22px, 3vw, 40px);
}

.gf-retirement-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
  height: auto;
  min-height: 0 !important;
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
}

.gf-retirement-collage__img {
  width: 100%;
  height: 100%;
  min-width: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(16, 19, 28, .12);
}

.gf-retirement-collage__img--1 {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.gf-retirement-collage__img--2,
.gf-retirement-collage__img--3 {
  aspect-ratio: 1 / 1;
}

.gf-retirement-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Custom Swarovski football landing page */
.football-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.football-intro.section,
.football-options.section,
.football-customize.section,
.football-blogs.section,
.football-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.football-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.football-intro__media .football-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.football-option-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.football-option-card .clickable-parent a {
  color: inherit;
  text-decoration: none;
}

.football-customize__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 4 / 5;
}

.football-customize__media .football-customize__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.football-blog-grid {
  margin-top: clamp(22px, 3vw, 40px);
}

.football-faq .schema-faq-answer img {
  display: block;
  width: min(100%, 440px);
  max-height: 520px;
  margin-top: 16px;
  border-radius: 8px;
  object-fit: contain;
}

.football-cta {
  text-align: center;
}

.football-cta .lead,
.football-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Workshop organizer gifting landing page */
.workshop-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.workshop-intro.section,
.workshop-gifts.section,
.workshop-content.section,
.workshop-blogs.section,
.workshop-faq.section,
.workshop-options.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.workshop-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.workshop-intro__media .workshop-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.workshop-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.workshop-impact {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.workshop-impact__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.workshop-impact__title {
  margin-top: 10px;
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.workshop-impact p {
  margin-top: 6px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.workshop-gift-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.workshop-gallery__img {
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(16, 19, 28, .1);
}

.workshop-gallery__img--1,
.workshop-gallery__img--2 {
  aspect-ratio: 1 / 1;
}

.workshop-gallery__img--3,
.workshop-gallery__img--4,
.workshop-gallery__img--5,
.workshop-gallery__img--6 {
  aspect-ratio: 4 / 5;
}

.workshop-blog-grid,
.workshop-options-grid {
  margin-top: clamp(22px, 3vw, 40px);
}

.workshop-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workshop-cta {
  text-align: center;
}

.workshop-cta .lead,
.workshop-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Intern gifting landing page */
.interns-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.interns-intro.section,
.interns-gifts.section,
.interns-content.section,
.interns-more.section,
.interns-blogs.section,
.interns-faq.section,
.interns-options.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.interns-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.interns-intro__media .interns-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.interns-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.interns-fit {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.interns-fit__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.interns-fit__title {
  margin-top: 10px;
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.interns-fit p {
  margin-top: 6px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.interns-gift-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.interns-extra-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.interns-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.interns-gallery__img {
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(16, 19, 28, .1);
}

.interns-gallery__img--1,
.interns-gallery__img--2 {
  aspect-ratio: 1 / 1;
}

.interns-gallery__img--3,
.interns-gallery__img--4,
.interns-gallery__img--5,
.interns-gallery__img--6 {
  aspect-ratio: 4 / 5;
}

.interns-blog-grid,
.interns-options-grid {
  margin-top: clamp(22px, 3vw, 40px);
}

.interns-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.interns-cta {
  text-align: center;
}

.interns-cta .lead,
.interns-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Non-profit event planner gifting landing page */
.nonprofit-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.nonprofit-intro.section,
.nonprofit-video.section,
.nonprofit-gifts.section,
.nonprofit-values.section,
.nonprofit-faq.section,
.nonprofit-options.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.nonprofit-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.nonprofit-intro__media .nonprofit-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nonprofit-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.nonprofit-impact {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.nonprofit-impact__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.nonprofit-impact__title {
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.nonprofit-impact p {
  margin-top: 6px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.nonprofit-video__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, .1);
}

.nonprofit-video__media .nonprofit-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nonprofit-pick-block {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  margin-top: clamp(26px, 3.5vw, 48px);
}

.nonprofit-pick-block h3 {
  margin: 0;
  font-family: var(--display);
  font-size: var(--h4);
  line-height: var(--heading-line-height);
}

.nonprofit-pick-block p {
  margin-top: 12px;
  color: rgba(16, 19, 28, .72);
}

.nonprofit-gift-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.nonprofit-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nonprofit-value h3 {
  color: var(--ink);
}

.nonprofit-options-grid {
  margin-top: clamp(22px, 3vw, 40px);
}

.nonprofit-cta {
  text-align: center;
}

.nonprofit-cta .lead,
.nonprofit-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Customized synagogue merchandise landing page */
.synagogue-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.synagogue-intro.section,
.synagogue-merch.section,
.synagogue-latest.section,
.synagogue-testimonial.section,
.synagogue-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.synagogue-intro__media,
.synagogue-latest__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.synagogue-intro__media .synagogue-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.synagogue-latest__media .synagogue-latest__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.synagogue-logo-panel {
  margin-top: clamp(18px, 2.2vw, 28px);
  padding: 16px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.synagogue-logo-panel p {
  margin: 0 0 12px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.synagogue-logo-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.synagogue-logo-panel__img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.synagogue-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.synagogue-impact {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.synagogue-impact__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.synagogue-impact__title {
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.synagogue-impact p {
  margin-top: 6px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.synagogue-merch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.synagogue-merch-card__media {
  aspect-ratio: 4 / 5;
  background: rgba(16, 19, 28, .04);
}

.synagogue-merch-card__img {
  object-fit: cover;
}

.synagogue-merch-card__link {
  color: var(--blue);
}

.synagogue-latest__title {
  margin-top: clamp(18px, 2.2vw, 28px);
  font-family: var(--display);
  font-size: var(--h4);
  line-height: var(--heading-line-height);
}

.synagogue-latest__title a {
  color: inherit;
  text-decoration: none;
}

.synagogue-latest__date {
  margin-top: 8px;
  color: rgba(16, 19, 28, .62);
  font-weight: 700;
}

.synagogue-testimonial__media {
  width: min(100%, 520px);
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  margin-inline: auto;
}

.synagogue-testimonial__media .synagogue-testimonial__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.synagogue-cta {
  text-align: center;
}

.synagogue-cta .lead,
.synagogue-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Fair Harbor clothing customization landing page */
.fairharbor-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.fairharbor-intro.section,
.fairharbor-merch.section,
.fairharbor-latest.section,
.fairharbor-testimonial.section,
.fairharbor-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.fairharbor-intro__media,
.fairharbor-latest__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.fairharbor-intro__media .fairharbor-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.fairharbor-latest__media .fairharbor-latest__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fairharbor-logo-panel {
  margin-top: clamp(18px, 2.2vw, 28px);
  padding: 16px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.fairharbor-logo-panel p {
  margin: 0 0 12px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fairharbor-logo-panel__img {
  width: min(100%, 480px);
  max-height: 92px;
  object-fit: contain;
}

.fairharbor-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.fairharbor-impact {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.fairharbor-impact__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.fairharbor-impact__title {
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.fairharbor-impact p {
  margin-top: 6px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.fairharbor-merch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fairharbor-merch-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(16, 19, 28, .04);
}

.fairharbor-merch-card__img {
  object-fit: contain;
}

.fairharbor-merch-card__link {
  color: var(--blue);
}

.fairharbor-latest__title {
  margin-top: clamp(18px, 2.2vw, 28px);
  font-family: var(--display);
  font-size: var(--h4);
  line-height: var(--heading-line-height);
}

.fairharbor-latest__title a {
  color: inherit;
  text-decoration: none;
}

.fairharbor-latest__date {
  margin-top: 8px;
  color: rgba(16, 19, 28, .62);
  font-weight: 700;
}

.fairharbor-testimonial__media {
  width: min(100%, 520px);
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  margin-inline: auto;
}

.fairharbor-testimonial__media .fairharbor-testimonial__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fair-harbor .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.fairharbor-cta {
  text-align: center;
}

.fairharbor-cta .lead,
.fairharbor-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Backpacks for events custom landing page */
.backpacks-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.backpacks-intro.section,
.backpacks-types.section,
.backpacks-build.section,
.backpacks-team.section,
.backpacks-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.backpacks-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.backpacks-intro__media .backpacks-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.backpacks-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.backpacks-point {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.backpacks-point__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.backpacks-point p {
  margin-top: 8px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.backpacks-type-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.backpacks-type-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(16, 19, 28, .04);
}

.backpacks-type-card__img {
  object-fit: cover;
}

.backpacks-type-card__link {
  color: var(--blue);
}

.backpacks-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: center;
}

.backpacks-gallery__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(16, 19, 28, .12);
}

.backpacks-gallery__img--1 {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}

.backpacks-team__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 5 / 4;
}

.backpacks-team__media .backpacks-team__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-backpacks-events .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.page-backpacks-events .contact-hero__caption,
.page-backpacks-events .contact-hero__wrap > *,
.page-backpacks-events .thankyou-ctas {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.backpacks-cta {
  text-align: center;
}

.backpacks-cta .lead,
.backpacks-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Custom event napkins landing page */
.napkins-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.napkins-intro.section,
.napkins-types.section,
.napkins-build.section,
.napkins-team.section,
.napkins-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.napkins-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: center;
}

.napkins-collage__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 19, 28, .12);
}

.napkins-collage__img--1,
.napkins-collage__img--4 {
  transform: translateY(clamp(14px, 2vw, 24px));
}

.napkins-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.napkins-point {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.napkins-point__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.napkins-point p {
  margin-top: 8px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.napkins-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.napkins-type-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(16, 19, 28, .04);
}

.napkins-type-card__img {
  object-fit: cover;
}

.napkins-type-card__link {
  color: var(--blue);
}

.napkins-build__media,
.napkins-team__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 5 / 4;
}

.napkins-build__media .napkins-build__img,
.napkins-team__media .napkins-team__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-event-napkins .reveal,
.page-event-napkins .contact-hero__caption,
.page-event-napkins .contact-hero__wrap > *,
.page-event-napkins .thankyou-ctas {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.napkins-cta {
  text-align: center;
}

.napkins-cta .lead,
.napkins-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Custom gifts for lawyers landing page */
.lawyers-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.lawyers-intro.section,
.lawyers-gifts.section,
.lawyers-build.section,
.lawyers-team.section,
.lawyers-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.lawyers-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.lawyers-intro__media .lawyers-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lawyers-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.lawyers-point {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.lawyers-point__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.lawyers-point p {
  margin-top: 8px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.lawyers-gift-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lawyers-gift-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(16, 19, 28, .04);
}

.lawyers-gift-card__img {
  object-fit: cover;
}

.lawyers-gift-card__link {
  color: var(--blue);
}

.lawyers-build__media,
.lawyers-team__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 5 / 4;
}

.lawyers-build__media .lawyers-build__img,
.lawyers-team__media .lawyers-team__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-lawyers-gifts .reveal,
.page-lawyers-gifts .contact-hero__caption,
.page-lawyers-gifts .contact-hero__wrap > *,
.page-lawyers-gifts .thankyou-ctas {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.lawyers-cta {
  text-align: center;
}

.lawyers-cta .lead,
.lawyers-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Travel gift bags landing page */
.travelbags-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.travelbags-intro.section,
.travelbags-gifts.section,
.travelbags-build.section,
.travelbags-team.section,
.travelbags-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.travelbags-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.travelbags-intro__media .travelbags-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.travelbags-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.travelbags-point {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.travelbags-point__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.travelbags-point p {
  margin-top: 8px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.travelbags-gift-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.travelbags-gift-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(16, 19, 28, .04);
}

.travelbags-gift-card__img {
  object-fit: cover;
}

.travelbags-gift-card__link {
  color: var(--blue);
}

.travelbags-build__media,
.travelbags-team__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 5 / 4;
}

.travelbags-build__media .travelbags-build__img,
.travelbags-team__media .travelbags-team__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-travel-gift-bags .reveal,
.page-travel-gift-bags .contact-hero__caption,
.page-travel-gift-bags .contact-hero__wrap > *,
.page-travel-gift-bags .thankyou-ctas {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.travelbags-cta {
  text-align: center;
}

.travelbags-cta .lead,
.travelbags-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Gift boxes for men landing page */
.giftboxes-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.giftboxes-intro.section,
.giftboxes-gifts.section,
.giftboxes-build.section,
.giftboxes-team.section,
.giftboxes-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.giftboxes-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.giftboxes-intro__media .giftboxes-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.giftboxes-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.giftboxes-point {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.giftboxes-point__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.giftboxes-point p {
  margin-top: 8px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.giftboxes-gift-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.giftboxes-gift-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(16, 19, 28, .04);
}

.giftboxes-gift-card__img {
  object-fit: cover;
}

.giftboxes-gift-card__link {
  color: var(--blue);
}

.giftboxes-build__media,
.giftboxes-team__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 5 / 4;
}

.giftboxes-build__media .giftboxes-build__img,
.giftboxes-team__media .giftboxes-team__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gift-boxes-men .reveal,
.page-gift-boxes-men .contact-hero__caption,
.page-gift-boxes-men .contact-hero__wrap > *,
.page-gift-boxes-men .thankyou-ctas {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.giftboxes-cta {
  text-align: center;
}

.giftboxes-cta .lead,
.giftboxes-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Simple Christmas gifts for coworkers landing page */
.simplegifts-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.simplegifts-intro.section,
.simplegifts-gifts.section,
.simplegifts-build.section,
.simplegifts-team.section,
.simplegifts-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.simplegifts-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.simplegifts-intro__media .simplegifts-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.simplegifts-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.simplegifts-point {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.simplegifts-point__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.simplegifts-point p {
  margin-top: 8px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.simplegifts-gift-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simplegifts-gift-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(16, 19, 28, .04);
}

.simplegifts-gift-card__img {
  object-fit: cover;
}

.simplegifts-feature-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.35;
}

.simplegifts-feature-list li {
  position: relative;
  padding-left: 14px;
}

.simplegifts-feature-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.simplegifts-gift-card__link {
  color: var(--blue);
}

.simplegifts-build__media,
.simplegifts-team__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 5 / 4;
}

.simplegifts-build__media .simplegifts-build__img,
.simplegifts-team__media .simplegifts-team__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-simple-christmas-coworkers .reveal,
.page-simple-christmas-coworkers .contact-hero__caption,
.page-simple-christmas-coworkers .contact-hero__wrap > *,
.page-simple-christmas-coworkers .thankyou-ctas {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.simplegifts-cta {
  text-align: center;
}

.simplegifts-cta .lead,
.simplegifts-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* Personalized office products landing page */
.officeproducts-hero-form {
  margin-bottom: clamp(28px, 3.6vw, 56px);
}

.officeproducts-intro.section,
.officeproducts-products.section,
.officeproducts-build.section,
.officeproducts-team.section,
.officeproducts-faq.section {
  padding-block: clamp(42px, 5vw, 78px);
}

.officeproducts-intro__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 1200 / 630;
  background: var(--white);
}

.officeproducts-intro__media .officeproducts-intro__img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.officeproducts-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.officeproducts-point {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16, 19, 28, .1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 19, 28, .08);
}

.officeproducts-point__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--text-m);
  line-height: 1.15;
}

.officeproducts-point p {
  margin-top: 8px;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.officeproducts-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.officeproducts-product-card__media {
  aspect-ratio: 1 / 1;
  background: rgba(16, 19, 28, .04);
}

.officeproducts-product-card__img {
  object-fit: cover;
}

.officeproducts-feature-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(16, 19, 28, .72);
  font-size: var(--text-xs);
  line-height: 1.35;
}

.officeproducts-feature-list li {
  position: relative;
  padding-left: 14px;
}

.officeproducts-feature-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.officeproducts-product-card__link {
  color: var(--blue);
}

.officeproducts-build__media,
.officeproducts-team__media {
  height: auto;
  min-height: 0 !important;
  aspect-ratio: 5 / 4;
}

.officeproducts-build__media .officeproducts-build__img,
.officeproducts-team__media .officeproducts-team__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-office-products .reveal,
.page-office-products .contact-hero__caption,
.page-office-products .contact-hero__wrap > *,
.page-office-products .thankyou-ctas {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.officeproducts-cta {
  text-align: center;
}

.officeproducts-cta .lead,
.officeproducts-cta .ctas {
  margin-inline: auto;
  justify-content: center;
}

/* lp01 info split — OG-ratio featured image, tighter vertical rhythm */
.lp01-info.section { padding-block: clamp(40px, 5vw, 72px); }

#spark.city-intro {
  padding-top: clamp(8px, 1.5vw, 20px);
  padding-bottom: clamp(24px, 3vw, 44px);
}
.pl-process-steps {
  padding-bottom: clamp(28px, 3vw, 44px);
}
.lp01-info .wrap.split > :not(.split__media) { padding-block: 0; }
.lp01-info .split__media,
.lp01-info .split__media .split__img { aspect-ratio: 1200 / 630; }
.lp01-info .split__media { height: auto; }
.lp01-info .split__media .split__img { object-fit: contain; }

@media (max-width: 760px) {
  .gf-employee-intro.section,
  .gf-employee-types.section,
  .gf-employee-ideas.section,
  .gf-options.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .gf-employee-form,
  .gf-retirement-form,
  .football-hero-form,
  .workshop-hero-form,
  .interns-hero-form,
  .nonprofit-hero-form,
  .synagogue-hero-form,
  .fairharbor-hero-form,
  .backpacks-hero-form,
  .napkins-hero-form,
  .lawyers-hero-form,
  .travelbags-hero-form,
  .giftboxes-hero-form,
  .simplegifts-hero-form,
  .officeproducts-hero-form {
    margin-bottom: clamp(18px, 5vw, 30px);
  }

  .gf-employee-intro__media {
    aspect-ratio: auto;
  }

  .gf-employee-intro__media .gf-employee-intro__img {
    max-height: min(54svh, 360px);
  }

  .gf-employee-video__media {
    width: min(68vw, 270px);
  }

  .gf-employee-card-grid,
  .gf-employee-ideas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .football-intro.section,
  .football-options.section,
  .football-customize.section,
  .football-blogs.section,
  .football-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .football-intro__media {
    aspect-ratio: auto;
  }

  .football-intro__media .football-intro__img {
    max-height: min(54svh, 360px);
  }

  .football-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .football-customize__media {
    aspect-ratio: 4 / 5;
    max-height: min(70svh, 520px);
  }

  .football-blog-grid {
    grid-template-columns: 1fr !important;
  }

  .workshop-intro.section,
  .workshop-gifts.section,
  .workshop-content.section,
  .workshop-blogs.section,
  .workshop-faq.section,
  .workshop-options.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .workshop-intro__media {
    aspect-ratio: auto;
  }

  .workshop-intro__media .workshop-intro__img {
    max-height: min(54svh, 360px);
  }

  .workshop-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .workshop-impact {
    padding: 8px;
  }

  .workshop-impact__title {
    font-size: var(--text-s);
  }

  .workshop-impact p {
    display: none;
  }

  .workshop-gift-grid,
  .page-gifting-workshop .workshop-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workshop-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .workshop-blog-grid {
    grid-template-columns: 1fr !important;
  }

  .page-gifting-workshop .workshop-options-grid .pp-city__title {
    font-size: var(--text-s);
    line-height: 1.2;
  }

  .interns-intro.section,
  .interns-gifts.section,
  .interns-content.section,
  .interns-more.section,
  .interns-blogs.section,
  .interns-faq.section,
  .interns-options.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .interns-intro__media {
    aspect-ratio: auto;
  }

  .interns-intro__media .interns-intro__img {
    max-height: min(54svh, 360px);
  }

  .interns-fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .interns-fit {
    padding: 8px;
  }

  .interns-fit__title {
    font-size: var(--text-s);
  }

  .interns-fit p {
    display: none;
  }

  .interns-gift-grid,
  .interns-extra-grid,
  .page-gifting-interns .interns-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interns-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .interns-blog-grid {
    grid-template-columns: 1fr !important;
  }

  .page-gifting-interns .interns-options-grid .pp-city__title {
    font-size: var(--text-s);
    line-height: 1.2;
  }

  .nonprofit-intro.section,
  .nonprofit-video.section,
  .nonprofit-gifts.section,
  .nonprofit-values.section,
  .nonprofit-faq.section,
  .nonprofit-options.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .nonprofit-intro__media {
    aspect-ratio: auto;
  }

  .nonprofit-intro__media .nonprofit-intro__img {
    max-height: min(54svh, 360px);
  }

  .nonprofit-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .nonprofit-impact {
    padding: 8px;
  }

  .nonprofit-impact__title {
    font-size: var(--text-s);
  }

  .nonprofit-impact p {
    display: none;
  }

  .nonprofit-video__media {
    aspect-ratio: 16 / 9;
    max-height: min(54svh, 360px);
  }

  .nonprofit-pick-block {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: clamp(22px, 6vw, 34px);
  }

  .nonprofit-gift-grid,
  .page-gifting-nonprofit .nonprofit-options-grid,
  .nonprofit-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-gifting-nonprofit .nonprofit-options-grid .pp-city__title {
    font-size: var(--text-s);
    line-height: 1.2;
  }

  .synagogue-intro.section,
  .synagogue-merch.section,
  .synagogue-latest.section,
  .synagogue-testimonial.section,
  .synagogue-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .synagogue-intro__media,
  .synagogue-latest__media {
    aspect-ratio: auto;
  }

  .synagogue-intro__media .synagogue-intro__img {
    max-height: min(54svh, 360px);
  }

  .synagogue-latest__media .synagogue-latest__img {
    position: static;
    height: auto;
    max-height: min(60svh, 420px);
    object-fit: contain;
  }

  .synagogue-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .synagogue-impact {
    padding: 8px;
  }

  .synagogue-impact__title {
    font-size: var(--text-s);
  }

  .synagogue-impact p {
    display: none;
  }

  .synagogue-merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .synagogue-testimonial__media {
    aspect-ratio: 16 / 9;
    max-height: min(54svh, 360px);
  }

  .fairharbor-intro.section,
  .fairharbor-merch.section,
  .fairharbor-latest.section,
  .fairharbor-testimonial.section,
  .fairharbor-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .fairharbor-intro__media,
  .fairharbor-latest__media {
    aspect-ratio: auto;
  }

  .fairharbor-intro__media .fairharbor-intro__img {
    max-height: min(54svh, 360px);
  }

  .fairharbor-latest__media .fairharbor-latest__img {
    position: static;
    height: auto;
    max-height: min(60svh, 420px);
    object-fit: contain;
  }

  .fairharbor-impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .fairharbor-impact {
    padding: 8px;
  }

  .fairharbor-impact__title {
    font-size: var(--text-s);
  }

  .fairharbor-impact p {
    display: none;
  }

  .fairharbor-merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fairharbor-testimonial__media {
    aspect-ratio: 16 / 9;
    max-height: min(54svh, 360px);
  }

  .backpacks-intro.section,
  .backpacks-types.section,
  .backpacks-build.section,
  .backpacks-team.section,
  .backpacks-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .backpacks-intro__media {
    aspect-ratio: auto;
  }

  .backpacks-intro__media .backpacks-intro__img {
    max-height: min(54svh, 360px);
  }

  .backpacks-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .backpacks-point {
    padding: 8px;
  }

  .backpacks-point__title {
    font-size: var(--text-s);
  }

  .backpacks-point p {
    display: none;
  }

  .backpacks-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .backpacks-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .backpacks-team__media {
    aspect-ratio: 5 / 4;
    max-height: min(54svh, 360px);
  }

  .napkins-intro.section,
  .napkins-types.section,
  .napkins-build.section,
  .napkins-team.section,
  .napkins-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .napkins-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .napkins-collage__img--1,
  .napkins-collage__img--4 {
    transform: none;
  }

  .napkins-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .napkins-point {
    padding: 8px;
  }

  .napkins-point__title {
    font-size: var(--text-s);
  }

  .napkins-point p {
    display: none;
  }

  .napkins-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .napkins-build__media,
  .napkins-team__media {
    aspect-ratio: 5 / 4;
    max-height: min(54svh, 360px);
  }

  .lawyers-intro.section,
  .lawyers-gifts.section,
  .lawyers-build.section,
  .lawyers-team.section,
  .lawyers-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .lawyers-intro__media {
    aspect-ratio: auto;
  }

  .lawyers-intro__media .lawyers-intro__img {
    max-height: min(54svh, 360px);
  }

  .lawyers-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .lawyers-point {
    padding: 8px;
  }

  .lawyers-point__title {
    font-size: var(--text-s);
  }

  .lawyers-point p {
    display: none;
  }

  .lawyers-gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lawyers-build__media,
  .lawyers-team__media {
    aspect-ratio: 5 / 4;
    max-height: min(54svh, 360px);
  }

  .travelbags-intro.section,
  .travelbags-gifts.section,
  .travelbags-build.section,
  .travelbags-team.section,
  .travelbags-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .travelbags-intro__media {
    aspect-ratio: auto;
  }

  .travelbags-intro__media .travelbags-intro__img {
    max-height: min(54svh, 360px);
  }

  .travelbags-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .travelbags-point {
    padding: 8px;
  }

  .travelbags-point__title {
    font-size: var(--text-s);
  }

  .travelbags-point p {
    display: none;
  }

  .travelbags-gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travelbags-build__media,
  .travelbags-team__media {
    aspect-ratio: 5 / 4;
    max-height: min(54svh, 360px);
  }

  .giftboxes-intro.section,
  .giftboxes-gifts.section,
  .giftboxes-build.section,
  .giftboxes-team.section,
  .giftboxes-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .giftboxes-intro__media {
    aspect-ratio: auto;
  }

  .giftboxes-intro__media .giftboxes-intro__img {
    max-height: min(54svh, 360px);
  }

  .giftboxes-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .giftboxes-point {
    padding: 8px;
  }

  .giftboxes-point__title {
    font-size: var(--text-s);
  }

  .giftboxes-point p {
    display: none;
  }

  .giftboxes-gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .giftboxes-build__media,
  .giftboxes-team__media {
    aspect-ratio: 5 / 4;
    max-height: min(54svh, 360px);
  }

  .simplegifts-intro.section,
  .simplegifts-gifts.section,
  .simplegifts-build.section,
  .simplegifts-team.section,
  .simplegifts-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .simplegifts-intro__media {
    aspect-ratio: auto;
  }

  .simplegifts-intro__media .simplegifts-intro__img {
    max-height: min(54svh, 360px);
  }

  .simplegifts-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .simplegifts-point {
    padding: 8px;
  }

  .simplegifts-point__title {
    font-size: var(--text-s);
  }

  .simplegifts-point p {
    display: none;
  }

  .simplegifts-gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .simplegifts-feature-list {
    display: none;
  }

  .simplegifts-build__media,
  .simplegifts-team__media {
    aspect-ratio: 5 / 4;
    max-height: min(54svh, 360px);
  }

  .officeproducts-intro.section,
  .officeproducts-products.section,
  .officeproducts-build.section,
  .officeproducts-team.section,
  .officeproducts-faq.section {
    padding-block: clamp(28px, 7vw, 44px);
  }

  .officeproducts-intro__media {
    aspect-ratio: auto;
  }

  .officeproducts-intro__media .officeproducts-intro__img {
    max-height: min(54svh, 360px);
  }

  .officeproducts-point-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .officeproducts-point {
    padding: 8px;
  }

  .officeproducts-point__title {
    font-size: var(--text-s);
  }

  .officeproducts-point p {
    display: none;
  }

  .officeproducts-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .officeproducts-feature-list {
    display: none;
  }

  .officeproducts-build__media,
  .officeproducts-team__media {
    aspect-ratio: 5 / 4;
    max-height: min(54svh, 360px);
  }

  .gf-retirement-collage {
    gap: 10px;
  }

  .page-gifting-retirement .gf-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .page-gifting-retirement .gf-options-grid .pp-city__title {
    font-size: var(--text-s);
    line-height: 1.2;
  }

  .gf-employee-card {
    padding: 10px;
    gap: 9px;
  }

  .gf-employee-card__title {
    font-size: var(--text-m);
  }

  .gf-employee-card__copy {
    font-size: var(--text-xs);
  }

  .lp01-info .split__media {
    min-height: 0 !important;
    aspect-ratio: auto;
  }
  .lp01-info .split__media .split__img {
    position: static;
    height: auto;
    max-height: min(56svh, 360px);
    aspect-ratio: auto;
    object-fit: contain;
  }
}

@media (max-width: 340px) {
  .gf-employee-card-grid,
  .gf-employee-ideas__grid,
  .page-gifting-retirement .gf-options-grid,
  .football-option-grid,
  .workshop-gift-grid,
  .page-gifting-workshop .workshop-options-grid,
  .interns-gift-grid,
  .interns-extra-grid,
  .page-gifting-interns .interns-options-grid,
  .nonprofit-gift-grid,
  .nonprofit-value-grid,
  .page-gifting-nonprofit .nonprofit-options-grid,
  .synagogue-merch-grid,
  .fairharbor-merch-grid,
  .backpacks-type-grid,
  .napkins-type-grid,
  .lawyers-gift-grid,
  .travelbags-gift-grid,
  .giftboxes-gift-grid,
  .simplegifts-gift-grid,
  .officeproducts-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .lp01-form { margin-top: -64px; }
}
