/* ── Typography ── */
.v3-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--v3-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.v3-display {
  margin: 0;
  font-family: var(--v3-font-display);
  font-size: clamp(3.25rem, 10vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.82;
  color: var(--v3-ink);
  hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
  max-width: 100%;
}

.v3-display--xl {
  font-size: clamp(3.75rem, 10vw, 9rem);
  line-height: 0.78;
  max-width: min(12ch, 100%);
  text-wrap: balance;
}

/* Tablet portrait (iPad Mini ~768px): between phone and desktop sizing */
@media (max-width: 1024px) and (min-width: 481px) {
  .v3-display--xl {
    font-size: clamp(2.75rem, 7.5vw, 4.75rem);
    line-height: 0.86;
    letter-spacing: -0.05em;
    max-width: none;
    text-wrap: balance;
  }
}

@media (max-width: 480px) {
  .v3-display--xl {
    font-size: clamp(2.35rem, 10.5vw, 3.75rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .v3-display--xl {
    font-size: clamp(2.1rem, 9.5vw, 2.75rem);
    line-height: 0.92;
  }
}

.v3-display--md {
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  max-width: 14ch;
}

.v3-display--sm {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.v3-display span,
.v3-hero .v3-display span,
.v3-panel--orange .v3-display span {
  font-family: var(--v3-font-accent);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: normal;
  overflow-wrap: anywhere;
}

.v3-display span {
  color: var(--v3-accent);
}

.v3-display--stroke span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 242, 0.58);
}

.v3-lede {
  margin: 1.75rem 0 0;
  max-width: 46ch;
  color: var(--v3-ink-muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
  font-weight: 400;
}

.v3-lede--light {
  color: rgba(244, 244, 242, 0.88);
}

/* ── Buttons ── */
.v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.5rem;
}

.v3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.4rem;
  padding: 0.85rem 1.1rem;
  border: none;
  font-family: var(--v3-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.25s var(--v3-ease), color 0.25s var(--v3-ease), border-color 0.25s var(--v3-ease);
}

.v3-btn--primary {
  background: var(--v3-accent);
  color: #0a0a0a;
}

.v3-btn--primary:hover {
  background: #ff6338;
}

.v3-btn--secondary {
  background: transparent;
  color: var(--v3-ink);
  border-bottom: 1px solid rgba(244, 244, 242, 0.35);
  min-width: auto;
  padding-inline: 0;
}

.v3-btn--secondary:hover {
  border-bottom-color: var(--v3-accent);
  color: var(--v3-accent);
}

.v3-btn--on-orange-primary {
  background: var(--v3-on-orange-ink);
  color: var(--v3-on-orange-caption);
}

.v3-btn--on-orange-primary:hover {
  background: #1a1a1a;
  color: var(--v3-on-orange-caption);
}

.v3-btn--on-orange-secondary {
  background: transparent;
  color: var(--v3-on-orange-ink);
  border: 1px solid var(--v3-on-orange-ink);
}

.v3-btn--on-orange-secondary:hover {
  background: rgba(8, 8, 8, 0.08);
  color: var(--v3-on-orange-ink);
  border-color: var(--v3-on-orange-ink);
}

/* Keep button colours when nested inside prose link styles */
a.v3-btn--primary,
.v3-prose a.v3-btn--primary {
  color: #0a0a0a;
}

a.v3-btn--primary:hover,
.v3-prose a.v3-btn--primary:hover {
  color: #0a0a0a;
}

a.v3-btn--secondary,
.v3-prose a.v3-btn--secondary {
  color: var(--v3-ink);
}

a.v3-btn--secondary:hover,
.v3-prose a.v3-btn--secondary:hover {
  color: var(--v3-accent);
}

a.v3-btn--on-orange-primary,
.v3-prose a.v3-btn--on-orange-primary {
  color: var(--v3-on-orange-caption);
}

a.v3-btn--on-orange-secondary,
.v3-prose a.v3-btn--on-orange-secondary {
  color: var(--v3-on-orange-ink);
}

/* ── Nav ── */
.v3-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--v3-nav-h);
  padding: 0 clamp(1rem, 3vw, 2.25rem);
  pointer-events: none;
  color: #fff;
  mix-blend-mode: difference;
}

.v3-nav.is-over-orange {
  mix-blend-mode: normal;
  color: var(--v3-on-orange-ink);
}

.v3-nav__logo,
.v3-nav__links a,
.v3-nav__toggle,
.v3-nav__dropdown,
.v3-nav__cta {
  pointer-events: auto;
}

.v3-nav__logo {
  font-family: var(--v3-font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.v3-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.75rem);
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v3-nav__cta {
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(244, 244, 242, 0.35);
  border-radius: 999px;
}

.v3-nav.is-over-orange .v3-nav__cta {
  border-color: var(--v3-on-orange-ink);
}

.v3-nav__dropdown {
  position: relative;
}

.v3-nav__dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.v3-nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 14rem;
  background: var(--v3-bg-elevated);
  border: 1px solid var(--v3-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  mix-blend-mode: normal;
}

.v3-nav__dropdown.is-open .v3-nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.v3-nav__dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--v3-ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v3-nav__dropdown-link:hover,
.v3-nav__dropdown-link.is-active {
  background: var(--v3-accent-soft);
  color: var(--v3-accent);
}

.v3-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
}

.v3-nav__toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

/* Mobile drawer */
.v3-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.v3-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.v3-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 100%);
  height: 100%;
  background: var(--v3-bg);
  border-left: 1px solid var(--v3-line);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--v3-ease);
  overflow-y: auto;
}

.v3-mobile.is-open .v3-mobile__panel {
  transform: none;
}

.v3-mobile__link {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--v3-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--v3-line);
}

.v3-mobile__label {
  margin: 1.5rem 0 0.5rem;
  color: var(--v3-accent);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .v3-nav__links {
    display: none;
  }

  .v3-nav__toggle {
    display: block;
  }
}

/* ── Hero handoff ── */
.v3-hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--v3-nav-h) + 3rem) var(--v3-gutter) clamp(4rem, 10vw, 8rem);
  border-bottom: 1px solid var(--v3-line);
}

.v3-hero--dark {
  background: var(--v3-bg);
  color: var(--v3-ink);
}

.v3-hero--dark .v3-eyebrow {
  color: var(--v3-on-orange-caption);
}

.v3-hero--dark .v3-display {
  color: var(--v3-ink);
}

.v3-hero--dark .v3-display span {
  color: var(--v3-accent);
}

.v3-hero--dark .v3-lede {
  color: rgba(244, 244, 242, 0.72);
}

.v3-hero--orange {
  background: var(--v3-on-orange-bg);
  color: var(--v3-on-orange-ink);
  border-bottom-color: rgba(8, 8, 8, 0.15);
}

.v3-hero--orange .v3-eyebrow {
  color: var(--v3-on-orange-caption);
}

.v3-hero--orange .v3-display {
  color: var(--v3-on-orange-ink);
}

.v3-hero--orange .v3-display span {
  color: var(--v3-on-orange-caption);
}

.v3-hero--orange .v3-lede {
  color: var(--v3-on-orange-body);
}

@media (max-width: 1024px) and (min-width: 481px) {
  .v3-hero:not(.v3-hero--compact):not(.v3-hero--split) {
    align-items: stretch;
    padding-top: calc(var(--v3-nav-h) + clamp(1.5rem, 4vw, 2.5rem));
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
  }

  .v3-hero:not(.v3-hero--compact):not(.v3-hero--split) .v3-display--xl {
    font-size: clamp(3.25rem, 9.5vw, 7rem);
    line-height: 0.8;
    letter-spacing: -0.06em;
    max-width: 100%;
  }

  .v3-hero:not(.v3-hero--compact):not(.v3-hero--split) .v3-lede {
    max-width: none;
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  }
}

@media (min-width: 1025px) {
  .v3-hero:not(.v3-hero--compact):not(.v3-hero--split) .v3-display--xl {
    font-size: clamp(3.75rem, 7.5vw, 9rem);
    max-width: 100%;
    text-wrap: balance;
  }
}

.v3-hero--compact {
  min-height: auto;
  padding-top: calc(var(--v3-nav-h) + 2rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.v3-hero--compact.v3-hero--orange,
.v3-hero--compact.v3-hero--dark {
  min-height: min(85svh, 48rem);
}

/* Split hero (contact) */
.v3-hero--split {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  border-bottom: 1px solid var(--v3-line);
}

.v3-hero__pane {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--v3-nav-h) + 3rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 8vw, 6rem);
  min-height: 100svh;
}

.v3-hero__pane--orange {
  background: var(--v3-on-orange-bg);
  color: var(--v3-on-orange-ink);
}

.v3-hero__pane--orange .v3-eyebrow {
  color: var(--v3-on-orange-caption);
}

.v3-hero__pane--orange .v3-display {
  color: var(--v3-on-orange-ink);
}

.v3-hero__pane--orange .v3-display span {
  color: var(--v3-on-orange-caption);
}

.v3-hero__pane--orange .v3-lede {
  color: var(--v3-on-orange-body);
}

.v3-hero__pane--dark {
  background: var(--v3-bg);
  color: var(--v3-ink);
}

.v3-hero__pane--dark .v3-eyebrow {
  color: var(--v3-on-orange-caption);
}

.v3-hero__pane--dark .v3-display {
  color: var(--v3-ink);
}

.v3-hero__pane--dark .v3-display span {
  color: var(--v3-accent);
}

.v3-hero__pane--dark .v3-lede {
  color: rgba(244, 244, 242, 0.72);
}

@media (max-width: 900px) {
  .v3-hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .v3-hero__pane {
    min-height: auto;
    padding-top: calc(var(--v3-nav-h) + 2rem);
  }
}

/* ── Global media frames ── */
.v3-media {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.v3-media--16x10 {
  aspect-ratio: 16 / 10;
}

.v3-media--4x3 {
  aspect-ratio: 4 / 3;
}

.v3-media--square {
  aspect-ratio: 1;
}

.v3-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.v3-media--contain img {
  object-fit: contain;
  padding: 1rem;
  background: #fff;
}

/* ── Featured product row ── */
.v3-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border: 1px solid var(--v3-line);
  background: var(--v3-line);
  margin-top: 3rem;
  color: inherit;
  text-decoration: none;
}

.v3-featured__media {
  min-height: clamp(20rem, 45vw, 36rem);
  background: #0a0a0a;
}

.v3-featured__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.v3-featured__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--v3-bg-elevated);
}

.v3-featured__copy .v3-display--sm {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0.5rem 0 1rem;
}

@media (max-width: 900px) {
  .v3-featured {
    grid-template-columns: 1fr;
  }

  .v3-featured__media {
    min-height: 16rem;
  }
}

/* ── Orange panel ── */
.v3-panel--orange {
  position: relative;
  background: var(--v3-on-orange-bg);
  color: var(--v3-on-orange-ink);
  padding: clamp(4rem, 12vw, 10rem) var(--v3-gutter);
}

.v3-panel--orange[data-variant="full"] {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) var(--v3-gutter);
}

.v3-panel--orange[data-variant="band"] {
  min-height: 50svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vw, 8rem) var(--v3-gutter);
}

.v3-panel--orange[data-variant="exit"] {
  min-height: min(90svh, 56rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vh, 8rem) var(--v3-gutter);
}

.v3-panel--orange[data-variant="exit"] .v3-eyebrow {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.v3-panel--orange[data-variant="exit"] .v3-display {
  font-size: clamp(3.5rem, 14vw, 12rem);
  line-height: 0.72;
  letter-spacing: -0.09em;
  max-width: 100%;
}

.v3-panel--orange[data-variant="exit"] .v3-panel__foot {
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.v3-panel--orange[data-variant="exit"] .v3-panel__lede {
  max-width: 42ch;
}

.v3-panel--orange[data-variant="exit"] .v3-panel__actions {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.v3-panel--orange .v3-eyebrow {
  color: var(--v3-on-orange-caption);
}

.v3-panel--orange[data-variant="full"] .v3-eyebrow {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
}

.v3-panel--orange .v3-display {
  color: var(--v3-on-orange-ink);
  max-width: 14ch;
}

.v3-panel--orange[data-variant="full"] .v3-display {
  font-size: clamp(3.25rem, 12vw, 10rem);
  line-height: 0.76;
  letter-spacing: -0.08em;
  max-width: 100%;
}

.v3-panel--orange[data-variant="band"] .v3-display {
  font-size: clamp(2.75rem, 8.5vw, 7.5rem);
  line-height: 0.8;
  max-width: 13ch;
}

.v3-panel--orange .v3-display span {
  color: var(--v3-on-orange-caption);
}

.v3-panel--orange .v3-lede {
  color: var(--v3-on-orange-body);
  max-width: 48ch;
}

.v3-panel--orange[data-variant="full"] .v3-lede {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  max-width: 52ch;
}

.v3-panel--orange[data-variant="full"] .v3-actions {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Editorial asymmetric layout - desktop */
@media (min-width: 900px) {
  .v3-panel--orange[data-variant="full"] > .v3-panel__canvas {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 2.5vw, 2.5rem);
    row-gap: clamp(1.75rem, 3.5vw, 3rem);
    align-content: center;
    width: 100%;
    max-width: var(--v3-max);
  }

  .v3-panel--orange[data-variant="full"] .v3-panel__eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .v3-panel--orange[data-variant="full"] .v3-panel__headline {
    grid-column: 1 / -1;
    max-width: 100%;
    font-size: clamp(4.5rem, 8.5vw, 10rem);
    line-height: 0.72;
    letter-spacing: -0.085em;
    text-wrap: balance;
  }

  .v3-panel--orange[data-variant="full"] .v3-panel__headline.v3-display--xl {
    max-width: 100%;
  }

  .v3-panel--orange[data-variant="full"] .v3-panel__foot {
    grid-column: 1 / 10;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3.5vw, 3rem);
  }

  .v3-panel--orange[data-variant="full"] .v3-panel__lede {
    margin-top: 0;
    max-width: 68ch;
    font-size: clamp(1.2rem, 1.8vw, 1.75rem);
    line-height: 1.45;
    text-wrap: pretty;
  }

  .v3-panel--orange[data-variant="full"] .v3-panel__actions {
    margin-top: 0;
  }

  .v3-panel--orange[data-variant="band"] > .v3-panel__canvas {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 2.5vw, 2.5rem);
    row-gap: clamp(1.5rem, 2.5vw, 2rem);
    align-content: center;
    width: 100%;
    max-width: var(--v3-max);
  }

  .v3-panel--orange[data-variant="band"] .v3-panel__eyebrow {
    grid-column: 1 / 4;
    margin-bottom: 0;
    align-self: end;
  }

  .v3-panel--orange[data-variant="band"] .v3-panel__headline {
    grid-column: 1 / 9;
    max-width: none;
    font-size: clamp(3rem, 6.5vw, 7rem);
    line-height: 0.78;
    text-wrap: balance;
  }

  .v3-panel--orange[data-variant="band"] .v3-panel__foot {
    grid-column: 1 / 8;
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 3vw, 2.5rem);
  }

  .v3-panel--orange[data-variant="band"] .v3-panel__lede {
    margin-top: 0;
    max-width: 62ch;
    line-height: 1.45;
  }

  .v3-panel--orange[data-variant="band"] .v3-panel__actions {
    margin-top: 0;
  }

  .v3-panel--orange[data-variant="exit"] > .v3-panel__canvas {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 2.5vw, 2.5rem);
    row-gap: clamp(1.5rem, 3vw, 2.5rem);
    align-content: center;
    width: 100%;
    max-width: var(--v3-max);
  }

  .v3-panel--orange[data-variant="exit"] .v3-panel__eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .v3-panel--orange[data-variant="exit"] .v3-panel__headline {
    grid-column: 1 / -1;
    max-width: 100%;
    font-size: clamp(4.5rem, 12vw, 11rem);
    line-height: 0.72;
    letter-spacing: -0.09em;
    text-wrap: balance;
  }

  .v3-panel--orange[data-variant="exit"] .v3-panel__foot {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 2.5vw, 2.5rem);
    align-items: end;
    margin-top: clamp(2.5rem, 6vw, 5rem);
  }

  .v3-panel--orange[data-variant="exit"] .v3-panel__lede {
    grid-column: 1 / 7;
    margin-top: 0;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.5;
  }

  .v3-panel--orange[data-variant="exit"] .v3-panel__actions {
    grid-column: 7 / -1;
    justify-self: end;
    margin-top: 0;
  }

  .v3-panel--orange[data-variant="exit"] .v3-panel__foot:not(:has(.v3-panel__lede)) .v3-panel__actions {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (min-width: 1200px) {
  .v3-panel--orange[data-variant="full"] .v3-panel__foot {
    grid-column: 1 / 9;
  }
}

@media (max-width: 1024px) and (min-width: 481px) {
  .v3-panel--orange[data-variant="full"] .v3-display {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 0.86;
    max-width: none;
    text-wrap: balance;
  }

  .v3-panel--orange[data-variant="band"] .v3-display {
    font-size: clamp(2.25rem, 6.5vw, 3.75rem);
    max-width: none;
    text-wrap: balance;
  }

  .v3-panel--orange[data-variant="exit"] .v3-display {
    font-size: clamp(2.75rem, 9vw, 5.5rem);
    line-height: 0.78;
    max-width: none;
    text-wrap: balance;
  }
}

@media (max-width: 480px) {
  .v3-panel--orange[data-variant="full"] .v3-display {
    font-size: clamp(2.5rem, 11vw, 4.25rem);
    line-height: 0.86;
    max-width: none;
  }

  .v3-panel--orange[data-variant="band"] .v3-display {
    font-size: clamp(2.25rem, 9vw, 3.75rem);
    max-width: none;
  }

  .v3-panel--orange[data-variant="exit"] .v3-display {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    line-height: 0.82;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .v3-panel--orange[data-variant="full"] .v3-display {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 0.9;
  }
}

.v3-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3rem;
}

.v3-panel__stat {
  padding: 2rem 0;
  border-top: 1px solid rgba(8, 8, 8, 0.2);
}

.v3-panel__stat-value {
  display: block;
  font-family: var(--v3-font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.75;
  color: var(--v3-on-orange-ink);
}

.v3-panel__stat-label {
  display: block;
  margin-top: 0.75rem;
  color: var(--v3-on-orange-caption);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .v3-panel__stats {
    grid-template-columns: 1fr;
  }
}

/* ── Manifesto ── */
.v3-manifesto__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--v3-line);
  font-family: var(--v3-font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.v3-manifesto__line strong {
  color: var(--v3-accent);
  font-family: var(--v3-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Work cards ── */
.v3-work-card {
  display: flex;
  flex-direction: column;
  background: var(--v3-bg-elevated);
  color: var(--v3-ink);
  overflow: hidden;
  border-top: 0.45rem solid var(--v3-card-accent, var(--v3-accent));
  min-height: 100%;
  text-decoration: none;
}

.v3-work-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
  flex-shrink: 0;
}

.v3-work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--v3-ease);
}

.v3-work-card:hover .v3-work-card__media img {
  transform: scale(1.05);
}

.v3-work-card__body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.v3-work-card__index {
  color: var(--v3-accent);
  font-family: var(--v3-font-mono);
  font-size: 0.62rem;
}

.v3-work-card__cat {
  display: block;
  margin-top: 0.5rem;
  color: var(--v3-ink-muted);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v3-work-card__title {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--v3-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

/* ── Runway ── */
.v3-runway {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
}

.v3-runway::-webkit-scrollbar {
  display: none;
}

.v3-runway-section {
  padding-bottom: 0;
}

.v3-runway-section .v3-wrap {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.v3-runway__track {
  display: flex;
  gap: 1px;
  width: max-content;
  min-height: min(85vh, 52rem);
  background: var(--v3-line);
}

.v3-runway__card {
  flex: 0 0 min(72vw, 52rem);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #0a0a0a;
  color: var(--v3-ink);
  border-top: 0.5rem solid var(--v3-card-accent, var(--v3-accent));
  text-decoration: none;
}

.v3-runway__card-image {
  position: relative;
  min-height: clamp(22rem, 48vw, 36rem);
  overflow: hidden;
  background: #111;
}

.v3-runway__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.v3-runway__card-meta {
  padding: 1.25rem 1.5rem 1.75rem;
}

.v3-runway__end {
  flex: 0 0 min(45vw, 36rem);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--v3-accent);
  color: var(--v3-on-orange-ink);
}

.v3-runway__end .v3-display {
  color: var(--v3-on-orange-ink);
  font-size: clamp(2.5rem, 6vw, 5rem);
}

/* ── Footer ── */
.v3-footer {
  position: relative;
  z-index: 2;
  background: #080808;
  border-top: 1px solid var(--v3-line);
  padding: clamp(4rem, 10vw, 8rem) var(--v3-gutter) 2rem;
  overflow: hidden;
}

.v3-footer::before {
  content: "COZQ";
  position: absolute;
  left: -0.04em;
  bottom: -0.15em;
  color: rgba(255, 255, 255, 0.024);
  font-family: var(--v3-font-display);
  font-size: min(31vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
  pointer-events: none;
}

.v3-footer__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--v3-line);
}

.v3-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.v3-footer__links a {
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v3-ink-muted);
}

.v3-footer__links a:hover {
  color: var(--v3-accent);
}

.v3-footer__hello-label {
  margin: 0 0 0.5rem;
  color: var(--v3-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.v3-footer__hello-email {
  font-family: var(--v3-font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.v3-footer__mid {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.v3-footer__tag {
  margin: 0;
  max-width: 36ch;
  font-family: var(--v3-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.v3-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.v3-footer__social a {
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v3-ink-muted);
}

.v3-footer__bottom {
  position: relative;
  z-index: 2;
  padding-top: 1.4rem;
  border-top: 1px solid var(--v3-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--v3-ink-muted);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.v3-footer__bottom a:hover {
  color: var(--v3-accent);
}

@media (max-width: 900px) {
  .v3-footer__top {
    grid-template-columns: 1fr;
  }
}

/* ── Forms ── */
.v3-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v3-ink-muted);
}

.v3-form input,
.v3-form textarea,
.v3-form select {
  width: 100%;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--v3-bg-elevated);
  border: 1px solid var(--v3-line);
  color: var(--v3-ink);
  font-family: var(--v3-font-body);
}

.v3-form input:focus,
.v3-form textarea:focus,
.v3-form select:focus {
  border-color: var(--v3-accent);
  outline: none;
}

.v3-form-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--v3-bg-elevated);
  border: 1px solid var(--v3-line);
}

/* ── Stage (light screenshot block) ── */
.v3-stage {
  background: var(--v3-stage-bg);
  color: var(--v3-stage-ink);
  padding: clamp(3rem, 8vw, 6rem) var(--v3-gutter);
}

.v3-stage__frame {
  border: 1px solid rgba(16, 16, 20, 0.12);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.15);
}

.v3-stage__frame img {
  width: 100%;
  height: auto;
}

/* ── FAQ ── */
.v3-faq details {
  border-top: 1px solid var(--v3-line);
  padding: 1rem 0;
}

.v3-faq summary {
  cursor: pointer;
  font-family: var(--v3-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  list-style: none;
}

.v3-faq summary::-webkit-details-marker {
  display: none;
}

.v3-faq p {
  margin: 0.75rem 0 0;
  color: var(--v3-ink-muted);
  line-height: 1.6;
}

/* ── Pillar cards ── */
.v3-pillar {
  grid-column: span 4;
  min-height: 16rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--v3-bg-elevated);
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: background 0.3s var(--v3-ease);
}

a.v3-pillar:hover {
  background: #111;
}

.v3-pillar--hero {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 22rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 77, 32, 0.12), transparent 45%),
    var(--v3-bg-elevated);
}

.v3-pillar--wide {
  grid-column: span 8;
}

.v3-pillar__index {
  color: var(--v3-accent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.v3-pillar__title {
  font-family: var(--v3-font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.v3-pillar__text {
  color: var(--v3-ink-muted);
  line-height: 1.55;
  margin: 0 0 auto;
}

.v3-pillar__cta {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--v3-accent);
}

@media (max-width: 1024px) {
  .v3-pillar,
  .v3-pillar--hero,
  .v3-pillar--wide {
    grid-column: span 12;
    grid-row: auto;
  }
}

/* ── Logo marquee ── */
.v3-marquee {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--v3-accent);
  border-bottom: none;
}

.v3-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: v3-marquee 40s linear infinite;
  will-change: transform;
}

.v3-marquee__list {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.v3-marquee__item {
  flex: 0 0 auto;
}

.v3-marquee__link,
.v3-marquee__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  height: 2.75rem;
  text-decoration: none;
}

.v3-marquee__link img,
.v3-marquee__mark img {
  display: block;
  max-height: 2.5rem;
  max-width: 9rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.15);
  opacity: 0.9;
}

@keyframes v3-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-100% / var(--v3-marquee-copies, 2)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .v3-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 1.25rem;
  }

  .v3-marquee__list[aria-hidden='true'] {
    display: none;
  }
}

/* ── Case study prose ── */
.v3-prose {
  color: var(--v3-ink-muted);
  line-height: 1.75;
  max-width: 44rem;
}

.v3-prose h2,
.v3-prose h3 {
  color: var(--v3-ink);
  font-family: var(--v3-font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.v3-prose a {
  color: var(--v3-accent);
}
