/* ###########################################################################
   STYLES.CSS – Basura mission-led brands landing page

   Jump points (Cmd/Ctrl+F):
   - [00-VARS]          Global variables
   - [01-FONTS]         Fonts
   - [02-RESET]         Base / Reset
   - [03-HERO]          Hero layout
   - [04-PROOF]         Credibility strip
   - [05-AUDIENCE]      Audience section
   - [06-PROBLEM]       Problem section
   - [07-HOOK]          Human hook section
   - [08-PROJECTS]      Project proof section
   - [09-AWARENESS]     Awareness section
   - [10-SERVICES]      Services section
   - [11-POV]           Point of view / founder section
   - [12-FAQ]           FAQ accordion
   - [13-FINAL-CTA]     Final CTA section
   - [14-FOOTER]        Footer
   - [15-BUTTONS]       Buttons / CTAs
   - [16-RESPONSIVE]    Tablet + mobile overrides
   - [17-DEBUG]         Debug overlay
   ########################################################################### */

/* #region [00-VARS] ######################################################### */
:root {
  /* ########################
     GLOBAL TOKENS
     ######################## */
  --bg: #f9dcda;
  --bg-alt: #ffffff;
  --bg-grey: #f1f1f1;
  --text: #111;
  --muted: #444;
  --accent: #0c0c0c;
  --border: rgba(0, 0, 0, 0.10);
  --border-strong: rgba(0, 0, 0, 0.18);

  /* Ticker */
  --ticker-height: 52px;
  --ticker-margin-bottom: 0px;
  --ticker-border: rgba(0, 0, 0, 0.12);
  --ticker-fade-width: 56px;
  --ticker-pill-bg: #fffa69;
  --ticker-pill-radius: 10px;
  --ticker-pill-pad-y: 6px;
  --ticker-pill-pad-x: 12px;
  --ticker-pill-gap: 12px;
  --ticker-pill-dot-size: 10px;
  --radius-sm: 12px;
  --max-width: 780px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Section spacing */
  --section-pad-y: clamp(3.25rem, 6.4vw, 5.6rem);
  --section-gap: clamp(1.5rem, 3vw, 2.5rem);

  /* Hero */
  --hero-headline-size: clamp(2.4rem, 5.5vw, 3.6rem);
  --hero-subhead-size: clamp(1.1rem, 2.2vw, 1.3rem);

  /* Body headline */
  --section-headline-size: clamp(1.8rem, 3.8vw, 2.6rem);
  --section-body-size: clamp(1.1rem, 2.2vw, 1.3rem);

  /* CTA button */
  --cta-bg: #111;
  --cta-color: #fff;
  --cta-radius: 10px;
  --cta-pad-y: 14px;
  --cta-pad-x: 32px;
  --cta-font-size: 1.05rem;
}

/* #endregion [00-VARS] ###################################################### */

/* #region [01-FONTS] ######################################################## */
@font-face {
  font-family: "FreeSerif";
  src: url("assets/fonts/FreeSerif.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FreeSerif";
  src: url("assets/fonts/FreeSerifItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FreeSerif";
  src: url("assets/fonts/FreeSerifBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* #endregion [01-FONTS] ##################################################### */

/* #region [02-RESET] ######################################################## */
html {
}

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

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  font-family: "FreeSerif", Georgia, serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Floating Basura logo (top-right, always visible) ────────────────────── */
.floating-logo {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 1.25rem);
  right: calc(env(safe-area-inset-right, 0px) + 1.25rem);
  width: 86px;
  height: auto;
  z-index: 9999;
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  opacity: 0;
  overflow: visible;
  transition: opacity 0.6s ease;
}
.floating-logo.is-visible {
  opacity: 1;
}
.is-ios .floating-logo {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 20px);
  right: calc(env(safe-area-inset-right, 0px) + 20px);
  bottom: auto;
  left: auto;
  opacity: 1;
  cursor: default;
}
.floating-logo-mark {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  will-change: transform;
  -webkit-user-drag: none;
  user-select: none;
}

@keyframes spin-ccw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

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

/* #endregion [02-RESET] ##################################################### */

/* ── Reusable divider (1px black line) ───────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid #000;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* ── Shared section wrapper ──────────────────────────────────────────────── */
.page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

/* ###########################################################################
   ####################### HERO ##############################################
   Text left, image right (edge-to-edge, full viewport height)
   ########################################################################### */
/* #region [03-HERO] ######################################################### */
.hero-frame {
  width: 100%;
  height: 100vh;
  height: 100svh; /* iOS: stable height, no shifts when chrome shows/hides */
  display: flex;
  background: var(--bg-grey);
  overflow: hidden;
}

/* ── Hero text column (right) ────────────────────────────────────────────── */
.hero-text {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem clamp(2rem, 5vw, 4rem);
}

.hero-text-group {
  width: 100%;
  max-width: 530px;
}

/* ── Hero image column (right, edge-to-edge) ─────────────────────────────── */
.hero-image-col {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
}

.hero-image-col img.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-img--top {
  transition: opacity 0.8s ease;
  /* ← tweak fade speed here */
  opacity: 0;
}

.hero-caption-pill {
  display: none;
  position: absolute;
  bottom: 12px;
  left: auto;
  right: 12px;
  background: rgba(245, 245, 243, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 7px;
  /* ← CONTROL: pill corner radius */
  opacity: 0.6;
  /* ← CONTROL: pill transparency */
  text-align: right;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

h1.headline,
.headline {
  margin: 0 0 1rem 0;
  max-width: 530px;
  line-height: 1.18;
  font-size: var(--hero-headline-size);
  font-weight: 400;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.subhead-wrap {
  max-width: 530px;
}

.subhead {
  margin: 0 0 1.25rem 0;
  font-size: var(--hero-subhead-size);
  color: var(--muted);
  line-height: 1.5;
}

/* ── Hero CTA button area ────────────────────────────────────────────────── */
.hero-cta-wrap {
  margin: 2.5rem 0 1rem 0;
  /* ← top = gap above button, bottom = gap below */
}

.hero-cta-wrap .cta-btn {
  display: block;
  width: 100%;
  max-width: 520px;
  /* ← CTA button max width */
  text-align: center;
  padding: 10px 20px;
}

/* ── Credibility line (replaces Felsius flag row) ────────────────────────── */
.hero-proof-line {
  margin-top: 14px;
  max-width: 520px;
  /* ← matches CTA button max-width */
}

.hero-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  /* ← always centered under the button */
  margin-top: 0.25rem;
}

.proof-logo {
  width: auto;
  height: 36px;
  display: block;
  flex-shrink: 0;
}

.proof-copy {
  display: flex;
  flex-direction: column;
  margin-left: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.3;
  text-align: left;
}

/* #endregion [03-HERO] ###################################################### */

/* ###########################################################################
   ####################### PROOF STRIP #######################################
   ########################################################################### */
/* #region [04-PROOF] ######################################################## */
.proof-strip {
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1.2rem var(--gutter);
  text-align: center;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--muted);
  line-height: 1.5;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* #endregion [04-PROOF] ##################################################### */

/* ###########################################################################
   ####################### TICKER ############################################
   ########################################################################### */
/* #region [04B-TICKER] ###################################################### */
.ticker-wrap {
  width: 100%;
  height: var(--ticker-height);
  position: relative;
  overflow: hidden;
  user-select: none;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black var(--ticker-fade-width),
      black calc(100% - var(--ticker-fade-width)),
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black var(--ticker-fade-width),
      black calc(100% - var(--ticker-fade-width)),
      transparent 100%);
  margin-bottom: var(--ticker-margin-bottom);
}

.ticker-wrap.isDragging {
  cursor: grabbing;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ticker-border);
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  top: 0;
}

.ticker-wrap::after {
  bottom: 0;
}

.ticker-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}

.ticker-seg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 6px;
  transform: translate3d(0, 0, 0);
  -webkit-font-smoothing: antialiased;
}

.ticker-seg-inner {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.ticker-seg-inner>* {
  margin-right: var(--ticker-pill-gap);
}

.ticker-seg-inner>*:last-child {
  margin-right: 0;
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  background: var(--ticker-pill-bg);
  border-radius: var(--ticker-pill-radius);
  padding: var(--ticker-pill-pad-y) var(--ticker-pill-pad-x);
  font-family: "FreeSerif", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  color: #000;
}

.ticker-dot {
  font-size: var(--ticker-pill-dot-size);
  line-height: 1;
  margin-right: 6px;
}

/* #endregion [04B-TICKER] ################################################### */

/* ###########################################################################
   ####################### HERO IMAGE ########################################
   ########################################################################### */
/* #region [04C-HERO-IMAGE] ################################################## */
.hero-image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 var(--gutter) var(--section-pad-y);
  background: var(--bg);
}

.hero-image-wrap {
  width: min(600px, 100%);
  border-radius: 15px;
  overflow: hidden;
  background: var(--bg-grey);
}

.hero-image-wrap img {
  width: 100%;
  display: block;
}

/* #endregion [04C-HERO-IMAGE] ############################################### */

/* ###########################################################################
   ####################### AUDIENCE ##########################################
   ########################################################################### */
/* #region [05-AUDIENCE] ##################################################### */
.audience {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg);
}

.audience h2 {
  margin: 0 0 2rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: pretty;
}

.audience p {
  margin: 0 0 1.25rem 0;
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}

.audience p:last-child {
  margin-bottom: 0;
}

/* ── Reusable split-section component ─────────────────────────────────────
   Drop this anywhere: image + text side-by-side.
   Control everything from these variables:
   ──────────────────────────────────────────────────────────────────────── */
.split-section {
  --split-img-width: 40%;
  /* ← DESKTOP image column width          */
  --split-gap: clamp(2rem, 4vw, 4rem);
  /* ← gap between columns          */
  --split-img-ratio: 4 / 5;
  /* ← image shape: 4/5, 1/1, 3/4, 16/9   */
  --split-bg: var(--bg);
  /* ← section background color            */
  --split-text-color: var(--muted);
  /* ← paragraph text color             */
  --split-heading-color: var(--text);
  /* ← heading color                  */
  --split-max-width: 900px;
  /* ← overall max content width           */
  --split-mobile-img: 80%;
  /* ← MOBILE image width                  */
}

.split-section .section-inner {
  width: min(var(--split-max-width), 100%);
  /* ← overrides the global 780px */
  max-width: var(--split-max-width);
}

.split-cols {
  display: flex;
  align-items: flex-start;
  gap: var(--split-gap);
}

.split-img-col {
  flex: 0 0 var(--split-img-width);
  max-width: var(--split-img-width);
}

.split-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  /* ← max image size on desktop */
  aspect-ratio: var(--split-img-ratio);
  overflow: hidden;
  margin-left: auto;
  /* ← right-aligns image in its column */
}

.split-img-wrap .press-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.press-img--top {
  transition: opacity 0.8s ease;
  /* ← tweak press fade speed here */
  opacity: 0;
}

.split-text-col {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}

.split-text-col h2 {
  color: var(--split-heading-color);
}

.split-text-col p {
  color: var(--split-text-color);
}

.split-text-col .cta-btn {
  margin-top: 0;
}

/* ###########################################################################
   ####################### WORK / SELECTED PROJECTS ##########################
   ########################################################################### */
/* #region [05B-WORK] ######################################################## */
.work-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg-alt);
}

.work-section .section-inner {
  width: min(900px, 100%);
  max-width: 900px;
}

.work-title {
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 3rem 0;
  text-align: center;
}

/* ── Case study card ─────────────────────────────────────────────────────── */
.case-study {
  margin-bottom: 4rem;
}

.case-study:last-of-type {
  margin-bottom: 0;
}

.case-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 3rem 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.case-study-name {
  font-size: var(--section-body-size);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.case-study-sub {
  font-size: var(--section-body-size);
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 2rem 0;
}

/* ── Challenge / Solution columns ────────────────────────────────────────── */
.case-cols {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 2.5rem;
}

.case-col {
  flex: 1 1 0;
  min-width: 0;
}

.case-label {
  font-size: var(--section-body-size);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: underline;
  margin: 0 0 0.75rem 0;
  color: var(--muted);
}

.case-col p {
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1rem 0;
}

.case-col p:last-child {
  margin-bottom: 0;
}

.case-col a:hover {
  color: blue;
}

/* ── Media grid: video left, two images stacked right ────────────────────── */
.case-media {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  /* ← SPACING: gap between video col & image col */
}

.case-media-primary {
  flex: 1 1 0;
  min-width: 0;
  align-self: flex-start;
}

.case-media-secondary {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /* ← SPACING: gap between stacked images (right col) */
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-grey);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-family: "FreeSerif", Georgia, serif;
  border: 1px dashed var(--border-strong);
}

.case-media-primary .media-placeholder {
  aspect-ratio: 9 / 14;
  /* ← tall video slot */
}

.case-media-secondary .media-placeholder {
  aspect-ratio: 4 / 3;
}

.case-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.case-img--hero {
  margin-bottom: 0.6rem;
}

.case-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.case-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Press image rotator ─────────────────────────────────────────────────── */
.case-press-rotator {
  position: relative;
  width: 100%;
  margin-top: 0.6rem;
  /* ← SPACING: gap between video & press rotator */
  overflow: hidden;
}

.press-rotator-img {
  width: 100%;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

/* First image is relative so it sets the container's natural height */
.press-rotator-img:first-child {
  position: relative;
}

.press-rotator-img--active {
  opacity: 1;
}

/* ── Stacked media layout (single column: video + image) ─────────────────── */
.case-media-stacked {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /* ← SPACING: gap between stacked video & image */
}

.case-video-wrap--16x9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.case-video-wrap--16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-img-wrap--16x9 {
  width: 100%;
}

.case-img-wrap--16x9 img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.case-img-wrap--16x9 .media-placeholder {
  aspect-ratio: 16 / 9;
}

/* ── Final CTA block (after case studies) ────────────────────────────────── */
.work-cta-block {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-cta-block .hero-cta-wrap {
  align-self: stretch;
  margin-bottom: 0;
}

.work-cta-block .cta-btn {
  margin-left: auto;
  margin-right: auto;
}

.work-cta-block .hero-proof-line {
  margin-top: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}

.work-cta-block .hero-proof-row {
  justify-content: center;
}

/* #endregion [05B-WORK] ##################################################### */

/* ###########################################################################
   ####################### SECTION DIVIDER ###################################
   ########################################################################### */
.section-divider {
  border: none;
  border-top: 1px solid #000;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* ###########################################################################
   ####################### ABOUT #############################################
   ########################################################################### */
/* #region [05C-ABOUT] ####################################################### */
.about {
  background: #dddfdc;
  padding: var(--section-pad-y) var(--gutter);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  background: #dddfdc;
  z-index: -1;
}

.about h2 {
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
}

.about p {
  font-size: var(--section-body-size);
  margin: 0 0 1rem 0;
  line-height: 1.65;
}

/* ── Logo reflection gif ─────────────────────────────────────────────────── */
.reflection-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.reflection-logo {
  width: 196px;
  height: auto;
  display: block;
}

/* #endregion [05C-ABOUT] #################################################### */

/* ###########################################################################
   ####################### SELECTED PRESS ####################################
   ########################################################################### */
/* #region [05C2-PRESS] ###################################################### */
.selected-press {
  background: var(--bg);
  padding: var(--section-pad-y) var(--gutter);
  position: relative;
}

.selected-press::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  background: var(--bg);
  z-index: -1;
}

.selected-press .section-inner {
  max-width: 900px;
}

.press-title {
  text-align: center;
  font-size: var(--section-headline-size);
  font-weight: 400;
  margin: 0 0 1rem 0;
}

.press-subtitle {
  text-align: center;
  font-size: var(--section-body-size);
  margin: 0 0 2.5rem 0;
  opacity: 0.7;
}

.press-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 2rem;
}

.press-col {
  list-style: none;
  margin: 0;
  padding: 0;
}

.press-col li {
  font-size: var(--section-body-size);
  font-weight: 400;
  line-height: 2;
}

/* ── Press scrolling image overlay ─────────────────────────────────────── */
.selected-press {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 90vh;                    /* ← CONTROL: section height */
}

.press-scroll-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  transition: opacity 0.6s ease;
  pointer-events: auto;
  cursor: grab;
}

.press-scroll-overlay.is-dragging {
  cursor: grabbing;
}

.press-scroll-track {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.press-scroll-img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
}



.press-text-layer {
  position: relative;
  z-index: 1;
  display: none;                    /* hidden for now, kept in DOM */
}

/* #endregion [05C2-PRESS] ################################################### */

/* ###########################################################################
   ####################### INFO ##############################################
   ########################################################################### */
/* #region [05D-INFO] ######################################################## */
.info-section {
  background: var(--bg);
  padding: var(--section-pad-y) var(--gutter);
  position: relative;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  background: var(--bg);
  z-index: -1;
}

.info-section .section-inner {
  max-width: 900px;
}

.info-headline {
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 900px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.info-block-title {
  font-size: var(--section-body-size);
  font-weight: 400;
  text-decoration: underline;
  margin: 0 0 0.5rem 0;
}

.info-block p {
  font-size: var(--section-body-size);
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

/* #endregion [05D-INFO] ##################################################### */

/* ###########################################################################
   ####################### PROBLEM ###########################################
   ########################################################################### */
/* #region [06-PROBLEM] ###################################################### */
.problem {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem h2 {
  margin: 0 0 1.5rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
  max-width: 580px;
}

.problem p {
  margin: 0 0 1rem 0;
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
}

.problem-list {
  list-style: none;
  margin: 1rem 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.problem-list li {
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--text);
}

.problem-closer {
  font-style: italic;
  color: var(--text) !important;
}

/* #endregion [06-PROBLEM] ################################################### */

/* ###########################################################################
   ####################### HUMAN HOOK ########################################
   ########################################################################### */
/* #region [07-HOOK] ######################################################### */
.hook {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg);
}

.hook h2 {
  margin: 0 0 1.5rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
}

.hook p {
  margin: 0 0 1rem 0;
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
}

.hook-list {
  list-style: none;
  margin: 1rem 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hook-list li {
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--text);
}

.hook-closer {
  margin-top: 0.5rem;
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
}

/* #endregion [07-HOOK] ###################################################### */

/* ###########################################################################
   ####################### PROJECTS ##########################################
   ########################################################################### */
/* #region [08-PROJECTS] ##################################################### */
.projects {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.projects h2 {
  margin: 0 0 2.5rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
}

.project-card {
  margin-bottom: 2rem;
}

.project-card:last-of-type {
  margin-bottom: 2.5rem;
}

.project-name {
  margin: 0 0 0.35rem 0;
  font-size: var(--section-body-size);
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

.project-desc {
  margin: 0;
  font-size: var(--section-body-size);
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}

.projects-cta-wrap {
  margin-top: 1rem;
}

.projects-cta-lead {
  margin: 0 0 1.25rem 0;
  font-size: var(--section-body-size);
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

/* #endregion [08-PROJECTS] ################################################## */

/* ###########################################################################
   ####################### AWARENESS #########################################
   ########################################################################### */
/* #region [09-AWARENESS] #################################################### */
.awareness {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg);
}

.awareness h2 {
  margin: 0 0 1.5rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
}

.awareness p {
  margin: 0 0 1rem 0;
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
}

.awareness-points {
  list-style: none;
  margin: 1rem 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.awareness-points li {
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--text);
}

.awareness-closer {
  margin-top: 0.5rem;
  color: var(--muted);
}

/* #endregion [09-AWARENESS] ################################################# */

/* ###########################################################################
   ####################### SERVICES ##########################################
   ########################################################################### */
/* #region [10-SERVICES] ##################################################### */
.services {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services h2 {
  margin: 0 0 2rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
}

.services-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  columns: 2;
  column-gap: 2.5rem;
}

.services-list li {
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
  break-inside: avoid;
  padding-bottom: 0.35rem;
}

.services-footnote {
  margin: 0;
  font-size: var(--section-body-size);
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

/* #endregion [10-SERVICES] ################################################## */

/* ###########################################################################
   ####################### POINT OF VIEW #####################################
   ########################################################################### */
/* #region [11-POV] ########################################################## */
.pov {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg);
}

.pov h2 {
  margin: 0 0 1.5rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
}

.pov p {
  margin: 0 0 1rem 0;
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
}

.pov-punch {
  font-style: italic;
  color: var(--text) !important;
}

/* #endregion [11-POV] ####################################################### */

/* ###########################################################################
   ####################### FAQ ACCORDION #####################################
   ########################################################################### */
/* #region [12-FAQ] ########################################################## */
.faq-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-section h2 {
  margin: 0 0 2.5rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--border-strong);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-strong);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  -webkit-tap-highlight-color: transparent;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::marker {
  display: none;
}

.faq-question {
  font-family: "FreeSerif", Georgia, serif;
  font-size: var(--section-body-size);
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  flex: 1 1 auto;
}

.faq-chevron {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: transform 0.28s cubic-bezier(0.83, 0, 0.17, 1);
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.58s cubic-bezier(0.83, 0, 0.17, 1);
}

details[open] .faq-body {
  grid-template-rows: 1fr;
}

details.is-closing .faq-body {
  grid-template-rows: 0fr;
}

details.is-opening .faq-body {
  grid-template-rows: 0fr;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-answer {
  margin: 0;
  padding: 0 0 1.1rem 0;
  font-size: var(--section-body-size);
  line-height: 1.65;
  color: var(--muted);
}

.faq-answer+.faq-answer {
  padding-top: 0.25rem;
}

/* #endregion [12-FAQ] ####################################################### */

/* ###########################################################################
   ####################### FINAL CTA #########################################
   ########################################################################### */
/* #region [13-FINAL-CTA] #################################################### */
.final-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--section-pad-y) var(--gutter);
  background: var(--bg);
  text-align: center;
}

.final-cta .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  margin: 0 0 1.5rem 0;
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
}

.final-cta p {
  margin: 0 0 2rem 0;
  font-size: var(--section-body-size);
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  text-wrap: balance;
}

/* #endregion [13-FINAL-CTA] ################################################# */

/* ###########################################################################
   ####################### CONTACT FORM ######################################
   ########################################################################### */
/* #region [13B-CONTACT] ##################################################### */
.contact-section {
  padding: var(--section-pad-y) var(--gutter);
}

.contact-section .section-inner {
  max-width: 700px;
}

.contact-eyebrow {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem 0;
}

.contact-title {
  font-size: var(--section-headline-size);
  font-weight: 400;
  text-align: center;
  margin: 0 0 3rem 0;
}

.contact-subtitle {
  text-align: center;
  font-size: var(--section-body-size);
  color: var(--muted);
  margin: 0 0 3rem 0;
  line-height: 1.6;
}

.contact-form {
  position: relative;
}

/* ── Form layout ─────────────────────────────────────────────────────────── */
.form-row {
  margin-bottom: 1.75rem;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-row--submit {
  margin-top: 0.5rem;
  text-align: center;
}

/* ── Fieldset groups ─────────────────────────────────────────────────────── */
.form-fieldset {
  border: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
}

.form-fieldset + .form-fieldset {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.form-legend {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding: 0;
}

/* ── Labels & hints ──────────────────────────────────────────────────────── */
.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

/* ── Inputs & textareas ──────────────────────────────────────────────────── */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--text);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  padding: 0.75rem;
  margin-top: 0.25rem;
  background: rgba(255, 255, 255, 0.5);
}

.form-textarea:focus {
  border-color: rgba(0, 0, 0, 0.35);
}

/* ── Select dropdown ─────────────────────────────────────────────────────── */
.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 0;
  bottom: 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
  pointer-events: none;
}

.form-select {
  cursor: pointer;
  padding-right: 1.5rem;
}

.form-select option {
  font-family: inherit;
}

/* ── Submit button ───────────────────────────────────────────────────────── */
.form-submit-btn {
  display: block;
  width: 100%;
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: #32CD32 !important;
  color: #111 !important;
  transition: opacity 0.3s ease;
}

.form-submit-btn:hover {
  opacity: 0.85;
}

.form-submit-btn:active {
  opacity: 0.75;
}

.form-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Form / Success stack ────────────────────────────────────────────────── */
.form-stack {
  display: grid;
}

.form-stack > * {
  grid-area: 1 / 1;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.form-success.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.form-success-title {
  font-size: var(--section-body-size);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.form-success-text {
  font-size: var(--section-body-size);
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* #endregion [13B-CONTACT] ################################################## */

/* ###########################################################################
   ####################### FOOTER ############################################
   ########################################################################### */
/* #region [14-FOOTER] ####################################################### */
.container-footer {
  width: 100%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.4rem;
  padding: 2.5rem var(--gutter);
  font-size: 0.875rem;
  color: var(--muted);
  opacity: 0.65;
}

.footer-dot {
  font-size: 0.35rem;
  vertical-align: middle;
}

.footer-link {
  color: var(--text);
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(12, 12, 12, 1);
}

/* #endregion [14-FOOTER] #################################################### */

/* ###########################################################################
   ####################### BUTTONS / CTAs ####################################
   ########################################################################### */
/* #region [15-BUTTONS] ###################################################### */
.cta-btn {
  display: inline-block;
  background: var(--cta-bg);
  color: var(--cta-color);
  padding: var(--cta-pad-y) var(--cta-pad-x);
  border-radius: var(--cta-radius);
  font-family: "FreeSerif", Georgia, serif;
  font-size: var(--cta-font-size);
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background: #333;
}

.cta-btn:active {
  transform: none;
}

/* Ghost / outline variant */
.cta-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--accent);
}

.cta-btn--ghost:hover {
  background: var(--accent);
  color: var(--cta-color);
}

/* #endregion [15-BUTTONS] ################################################### */

/* ###########################################################################
   ####################### PROOF STRIP (REPEATING) ###########################
   ########################################################################### */
.proof-repeat {
  width: 100%;
  padding: 1rem var(--gutter);
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* ###########################################################################
   ####################### RESPONSIVE ########################################
   ########################################################################### */
/* #region [16-RESPONSIVE] ################################################### */

/* ── Tablet / stacked hero (<= 900px) ────────────────────────────────────── */
@media (max-width: 900px) {
  .mobile-break {
    display: block;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  :root {
    --gutter: 1.25rem;
    --hero-headline-size: clamp(2.35rem, 8.6vw, 3rem);
    --hero-subhead-size: clamp(1.2rem, 4.2vw, 1.35rem);
  }

  .hero-frame {
    height: auto;
    flex-direction: column;
  }

  .hero-image-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: 100vw;
    /* ← square crop on mobile, tweak as needed */
  }

  .hero-image-col img.hero-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .hero-text {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    background: #ffffff;
    padding: 2.5rem var(--gutter) 2.5rem;
  }

  .hero-text-group {
    max-width: min(720px, 100%);
    margin: 40px auto;
    text-align: center;
  }

  h1.headline,
  .headline {
    max-width: 100%;
    /* ← remove 530px cap so text can center freely */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .subhead-wrap {
    max-width: 100%;
    /* ← remove 530px cap */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-cta-wrap {
    display: flex;
    justify-content: center;
  }

  .hero-cta-wrap .cta-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof-line {
    display: flex;
    justify-content: center;
    max-width: 100%;
    /* ← reset proof-line width for centered mobile */
  }

  /* ── CTA + proof lockup: force identical spacing everywhere ── */
  .hero-proof-line,
  .work-cta-block .hero-proof-line,
  .split-text-col .hero-proof-line {
    margin-top: 14px;
    padding: 0;
  }

  .hero-proof-row,
  .work-cta-block .hero-proof-row,
  .split-text-col .hero-proof-row {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0;
    padding: 0;
  }

  .hero-cta-wrap,
  .work-cta-block .hero-cta-wrap,
  .split-text-col .hero-cta-wrap {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .proof-copy {
    margin-left: 0;
    text-align: center;
    font-size: 0.9rem;
  }

  .split-cols {
    flex-direction: column;
    align-items: stretch;
    /* ← override flex-start so stacked children fill full width */
  }

  .split-img-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .split-img-wrap {
    max-width: var(--split-mobile-img);
    /* ← MOBILE image width */
    margin: 0 auto;
  }

  .split-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* ← centers every block child horizontally */
    text-align: center;
    /* ← centers inline text within each block  */
  }

  .split-text-col p {
    max-width: 560px;
  }

  .split-text-col h2 {
    max-width: 560px;
  }

  .split-text-col .hero-cta-wrap {
    width: 100%;
    max-width: 520px;
    margin-top: 1.25rem;
    /* ← compensate: flex doesn't collapse margins (1.25 + 1.25 = 2.5rem total) */
  }

  .split-text-col .hero-proof-line {
    width: 100%;
    max-width: 520px;
  }

  .case-study {
    max-width: min(720px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  /* ── Work section: stack columns on mobile ────────────────────────────── */
  .case-cols {
    flex-direction: column;
    max-width: min(720px, 100%);
  }

  .case-media {
    flex-direction: column;
  }

  .case-media-primary {
    align-self: stretch;
    width: 100%;
  }

  .work-title {
    text-align: center;
  }

  .case-study-name {
    text-align: left;
  }

  /* ── Selected press: 2 even columns on mobile ──────────────────────── */
  .press-columns {
    display: block;
    column-count: 2;
    column-gap: 1.5rem;
  }

  .press-col {
    display: contents;
  }

  /* ── Contact form: stack to single column on mobile ────────────────── */
  .form-row--half {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile (<= 768px) ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad-y: clamp(3rem, 8vw, 5rem);
    --hero-headline-size: clamp(2.1rem, 8vw, 2.8rem);
    --hero-subhead-size: clamp(1.2rem, 4.5vw, 1.35rem);
    --section-headline-size: clamp(1.7rem, 6vw, 2.2rem);
    --section-body-size: clamp(1.2rem, 4.5vw, 1.35rem);
  }




  .hero-text-group {
    margin: 0 auto;
  }

  .work-cta-block {
    margin-top: 1.5rem;
  }

  .work-cta-block .hero-proof-line {
    margin-bottom: 1rem;
  }

  .services-list {
    columns: 1;
  }
}

/* #endregion [16-RESPONSIVE] ################################################ */

/* #endregion [16B-REVEAL] – removed, no scroll animations */

/* #region [17-DEBUG] ######################################################## */
.debug-toggle {
  display: none;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 20;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: "FreeSerif", Georgia, serif;
}

.debug-on [data-label] {
  outline: 2px dotted rgba(200, 60, 80, 0.9) !important;
  position: relative;
}

.debug-on [data-label]::after {
  content: attr(data-label);
  position: absolute;
  top: 2px;
  right: 4px;
  padding: 2px 6px;
  background: rgba(200, 60, 80, 0.9);
  color: #fff;
  border-radius: 6px;
  font-size: 0.65rem;
  font-family: "FreeSerif", Georgia, serif;
  font-weight: 400;
  pointer-events: none;
}

/* #endregion [17-DEBUG] ##################################################### */
