@font-face {
  font-family: 'Inter';
  src: url('https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2')
    format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('https://framerusercontent.com/assets/bHYNJqzTyl2lqvmMiRRS6Y16Es.woff2')
    format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('https://framerusercontent.com/assets/iwWTDc49ENF2tCHbqlNARXw6Ug.woff2')
    format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('https://framerusercontent.com/assets/PfdOpgzFf7N2Uye9JX7xRKYTgSc.woff2')
    format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('https://framerusercontent.com/assets/qITWJ2WdG0wrgQPDb8lvnYnTXDg.woff2')
    format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --color-bg: rgb(248, 247, 243);
  --color-surface: rgb(241, 239, 233);
  --color-panel: rgb(229, 226, 219);
  --color-text: rgb(10, 10, 10);
  --color-muted: rgb(88, 86, 81);
  --color-soft: rgb(142, 139, 131);
  --color-border: rgba(10, 10, 10, 0.14);
  --color-footer-muted: rgb(170, 170, 164);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Inter Display', 'Inter', sans-serif;
  --header-height: 86px;
  --page-gutter: clamp(18px, 3vw, 32px);
  --content-max: 1420px;
  --section-space: clamp(84px, 11vw, 162px);
  --section-gap: clamp(26px, 4vw, 42px);
  --transition-base: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
}

html.has-smooth-scroll {
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}

#root,
main,
section,
footer,
header {
  width: 100%;
}

img,
video {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

a,
button {
  transition:
    transform var(--transition-base),
    opacity var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

a:hover,
button:hover {
  opacity: 0.92;
}

a:active,
button:active {
  transform: translateY(1px);
}

.site-shell {
  background: var(--color-bg);
}

.mobile-frame {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(248, 247, 243, 0.74);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 18px;
}

.site-header__brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__contact {
  min-height: 52px;
}

.site-header__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(228, 226, 220, 0.9);
  color: var(--color-text);
}

.site-header__menu.is-open {
  background: rgba(10, 10, 10, 0.12);
}

.site-header__menu-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(7, 7, 7, 0.96);
  color: rgb(255, 255, 255);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-overlay__panel {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 28px;
}

.menu-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.menu-overlay__menu-label,
.menu-overlay__eyebrow,
.menu-overlay__close {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.menu-overlay__menu-label {
  color: rgba(255, 255, 255, 0.88);
}

.menu-overlay__links {
  display: grid;
  gap: 10px;
}

.menu-overlay__link {
  width: fit-content;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.4vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.92;
  text-transform: uppercase;
}

.menu-overlay__footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-overlay__cta {
  flex-shrink: 0;
}

.hero {
  padding-top: calc(var(--header-height) + 12px);
  padding-bottom: min(10vw, 96px);
}

.hero__inner {
  display: block;
}

/* Wide enough that “STUDIO &” stays one line → hero stays 3 rows (not 4) */
.hero__title-wrap {
  max-width: min(16ch, 100%);
}

.hero__title span {
  white-space: nowrap;
}

.hero__title,
.section-title,
.contact-cta__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero__title {
  color: rgb(255, 255, 255);
  font-size: clamp(4rem, 10.2vw, 8.45rem);
  gap: 0.035em;
}

.hero__description,
.section-copy p,
.services__heading-copy p,
.service-item__description,
.process-step__description,
.journal-card__excerpt {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgb(255, 255, 255);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  font-size: 1rem;
  line-height: 1;
}

.hero__media-frame,
.studio__portrait-wrap,
.studio__story-image-wrap,
.project-card__media,
.services__lead-media,
.process-step__media,
.journal-card__media,
.gallery-stage__frame,
.contact-cta__media {
  position: relative;
  overflow: hidden;
  background: var(--color-panel);
}

.hero__media-frame {
  border-radius: 28px;
}

.hero__media,
.hero__media-scrim {
  position: absolute;
  inset: 0;
}

.hero__media-frame {
  min-height: calc(100svh - var(--header-height) - 24px);
}

.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42) 0%, transparent 34%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.hero__content {
  position: absolute;
  inset: clamp(22px, 3vw, 30px);
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 24px;
}

.hero__footer {
  display: grid;
  gap: 18px;
  max-width: 420px;
}

.hero__description {
  color: rgba(255, 255, 255, 0.84);
}

.section {
  padding-block: var(--section-space);
}

.section--muted {
  background: var(--color-surface);
}

.section__inner {
  display: grid;
  gap: var(--section-gap);
}

.section__heading-row,
.section__heading-grid {
  display: grid;
  gap: 18px;
}

.section__heading-copy {
  display: grid;
  gap: 18px;
}

.section__heading-grid--centered {
  justify-items: center;
  text-align: center;
}

.section-title {
  font-size: clamp(2.85rem, 7.6vw, 6.1rem);
}

.section--studio .section-title {
  letter-spacing: -0.07em;
  line-height: 0.86;
  gap: 0.04em;
}

.section-title--centered {
  align-items: center;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--color-text);
}

.section-tag--centered {
  align-self: center;
}

.section-tag--light {
  color: var(--color-footer-muted);
}

.section-tag__dot,
.pill-button__bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.section-tag__dot {
  background: currentColor;
}

.section-tag__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  background: var(--color-text);
  color: rgb(255, 255, 255);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.pill-button--light {
  border-color: rgb(255, 255, 255);
  background: rgb(255, 255, 255);
  color: var(--color-text);
}

.pill-button__bullet {
  border: 1px solid currentColor;
  opacity: 0.86;
}

.pill-button:hover {
  transform: translateY(-1px);
}

.reveal {
  will-change: transform, opacity;
}

.studio__top,
.studio__story-grid,
.services__layout,
.site-footer__top,
.site-footer__bottom {
  display: grid;
  gap: 22px;
}

.studio__content,
.studio__story-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 0;
}

.studio__portrait,
.studio__story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio__portrait {
  aspect-ratio: 1 / 1.1;
}

.studio__story-image {
  aspect-ratio: 1 / 1.12;
}

.studio__manifesto {
  display: grid;
  gap: 0.28em;
  width: 100%;
  min-width: 0;
}

/* Large lead left; following lines share a right edge for the staggered rail layout. */
.studio__manifesto-lead {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.078em;
  line-height: 0.88;
  text-align: left;
}

/* Diagonal staircase: each line steps further right. */
.studio__manifesto-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 0.09em;
  padding-right: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.6vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.96;
  gap: 0.1em;
}

.studio__manifesto-line {
  display: block;
  width: max-content;
  max-width: calc(100% - 0.5rem);
  text-align: left;
}

.studio__manifesto-line:nth-child(1) {
  margin-left: clamp(0.75rem, 16vw, 4.5rem);
}

.studio__manifesto-line:nth-child(2) {
  margin-left: clamp(2rem, 30vw, 8rem);
}

.studio__manifesto-line:nth-child(3) {
  margin-left: clamp(3.25rem, 44vw, 11.5rem);
}

.studio__manifesto-line:nth-child(2),
.studio__manifesto-line:nth-child(3) {
  margin-top: 0;
}

.project-list {
  display: grid;
  gap: 24px;
}

.project-card {
  display: block;
}

.project-card__asset,
.services__lead-asset,
.process-step__asset,
.gallery-stage__image,
.journal-card__asset,
.contact-cta__asset,
.service-item__preview-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__asset {
  aspect-ratio: 1.08 / 1;
}

.project-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
}

.project-card__meta h3,
.project-card__meta span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.project-card__meta span {
  color: var(--color-soft);
}

.project-card:hover .project-card__asset,
.journal-card:hover .journal-card__asset {
  transform: scale(1.03);
}

.project-card__asset,
.journal-card__asset {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services__heading-copy {
  max-width: 34rem;
}

.services__hero {
  display: grid;
  align-content: start;
  gap: 18px;
}

.services__lead-media {
  min-height: 280px;
}

.services__lead-asset {
  aspect-ratio: 1.08 / 1.02;
}

.services-accordion {
  display: grid;
  border-bottom: 1px solid var(--color-border);
}

.service-item {
  border-top: 1px solid var(--color-border);
}

.service-item__summary {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  text-align: left;
  color: var(--color-text);
}

.service-item__number,
.gallery-stage__count {
  color: var(--color-soft);
}

.service-item__number {
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.1vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.service-item__icon {
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
}

.service-item__panel {
  overflow: hidden;
  opacity: 0;
  height: 0;
}

.service-item__panel-inner {
  display: grid;
  gap: 22px;
  padding: 4px 0 28px;
}

.service-item__previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-item__preview {
  overflow: hidden;
  background: var(--color-panel);
}

.service-item__preview-asset {
  aspect-ratio: 1 / 1;
}

.process-list {
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--color-border);
  padding: 28px 0;
}

.process-step__copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5.75rem);
  font-weight: 600;
  letter-spacing: -0.1em;
  line-height: 0.82;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.93;
  text-transform: uppercase;
}

.process-step__media {
  min-height: 220px;
}

.process-step__asset {
  aspect-ratio: 1.3 / 1;
}

.gallery__cta-wrap {
  justify-self: start;
}

.gallery-stage {
  display: block;
}

.gallery-stage__viewport {
  display: grid;
  gap: 18px;
}

.gallery-stage__frame {
  min-height: clamp(320px, 55vw, 720px);
  border-radius: 28px;
}

.gallery-stage__image {
  position: absolute;
  inset: 0;
}

.gallery-stage__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22) 0 1px,
    rgba(255, 255, 255, 0.03) 1px 72px
  );
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.gallery-stage__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-stage__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.gallery-stage__control span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.gallery-stage__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.gallery-stage__title {
  font-family: inherit;
}

.journal-list {
  display: grid;
  gap: 24px;
}

.journal-card__link {
  display: grid;
  gap: 14px;
}

.journal-card__media {
  min-height: 260px;
}

.journal-card__asset {
  aspect-ratio: 1.18 / 1;
}

.journal-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.journal-card__top h3,
.journal-card__top span {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.journal-card__top h3 {
  max-width: 70%;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.journal-card__top span {
  color: var(--color-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.contact-cta {
  padding-top: 10px;
}

.contact-cta__media {
  min-height: clamp(340px, 55vw, 660px);
  border-radius: 28px;
}

.contact-cta__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.6) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 45%);
  pointer-events: none;
}

.contact-cta__asset {
  position: absolute;
  inset: 0;
}

.contact-cta__overlay {
  position: absolute;
  inset: 26px;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.contact-cta__overlay .section-tag--light {
  color: rgb(255, 255, 255);
}

.contact-cta__content {
  display: grid;
  gap: 24px;
  align-content: end;
}

.contact-cta__title {
  color: rgb(255, 255, 255);
  font-size: clamp(3rem, 7.5vw, 6.35rem);
}

.site-footer {
  padding-top: 32px;
  padding-bottom: 0;
  background: var(--color-text);
  color: rgb(255, 255, 255);
}

.site-footer .section-tag--light {
  color: var(--color-footer-muted);
}

.site-footer__inner {
  display: grid;
  gap: 28px;
}

.site-footer__contact,
.site-footer__column,
.site-footer__social {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer__address {
  max-width: 280px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.site-footer__columns {
  display: grid;
  gap: 22px;
}

.site-footer__column-links {
  display: grid;
  gap: 9px;
}

.site-footer__link,
.site-footer__text,
.site-footer__copyright {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.site-footer__link {
  display: inline-block;
  width: fit-content;
  color: rgb(255, 255, 255);
  font-size: 0.98rem;
  font-weight: 500;
}

.site-footer__link--large,
.site-footer__text {
  font-size: 1rem;
}

.site-footer__text {
  color: var(--color-footer-muted);
}

.site-footer__bottom {
  gap: 16px;
}

.site-footer__copyright {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.4;
}

.site-footer__wordmark-wrap {
  overflow: hidden;
  mask-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 72%, transparent 100%);
}

.site-footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 15vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.78;
  text-transform: uppercase;
}

@media (min-width: 820px) {
  .section__heading-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.62fr);
    align-items: end;
    column-gap: clamp(28px, 4vw, 54px);
  }

  .hero__footer {
    grid-template-columns: minmax(0, 320px) auto;
    align-items: end;
    max-width: 560px;
  }

  .studio__top,
  .studio__story-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: start;
    column-gap: clamp(24px, 4vw, 42px);
  }

  .project-list,
  .journal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    align-items: center;
    column-gap: clamp(24px, 4vw, 56px);
  }

  .contact-cta__content,
  .site-footer__bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .site-footer__top {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(220px, 0.6fr);
    column-gap: clamp(24px, 4vw, 42px);
  }

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

@media (min-width: 1040px) {
  .services__layout {
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(28px, 4vw, 56px);
  }

  .services__hero {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }

  .gallery-stage__controls {
    position: absolute;
    inset: 24px;
    align-items: flex-start;
  }

  .gallery-stage__viewport {
    position: relative;
  }

  .gallery-stage__caption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    align-items: flex-end;
    padding: 16px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
  }
}

/* Phones + small tablets: match live mobile header/menu + studio type (not only ≤819px) */
@media (max-width: 1023px) {
  :root {
    /* Shorter bar + smaller MENU — was feeling “huge” on phone */
    --header-height: 54px;
    --section-space: 72px;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(10, 10, 10, 0.05);
  }

  .site-header__inner {
    min-height: var(--header-height);
    gap: 12px;
  }

  .site-header__contact {
    display: none;
  }

  .site-header__brand {
    font-size: clamp(0.78rem, 3.4vw, 0.98rem);
    letter-spacing: -0.04em;
  }

  .site-header__menu {
    min-width: 56px;
    min-height: 30px;
    padding: 0 10px;
    background: rgb(236, 234, 228);
  }

  .site-header__menu-text {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  /* Edge-to-edge hero video (drop .mobile-frame gutters + card radius on small screens) */
  .hero {
    padding-top: calc(var(--header-height) + 6px);
    padding-bottom: clamp(40px, 10vw, 72px);
  }

  .hero .mobile-frame {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .hero__media-frame {
    border-radius: 0;
    min-height: calc(100svh - var(--header-height) - 16px);
  }

  .hero__content {
    inset: 0;
    padding: clamp(14px, 4vw, 22px);
    padding-bottom: clamp(18px, 5vw, 28px);
    box-sizing: border-box;
  }

  .menu-overlay__panel {
    padding-top: calc(var(--header-height) + 12px);
    gap: 32px;
  }

  .menu-overlay__links {
    gap: 2px;
  }

  .menu-overlay__link {
    font-size: clamp(1.95rem, 8.6vw, 2.95rem);
    line-height: 0.9;
    letter-spacing: -0.1em;
  }

  .menu-overlay__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .section--studio .section-title {
    font-size: clamp(3.4rem, 11.8vw, 5rem);
    line-height: 0.84;
    letter-spacing: -0.072em;
    gap: 0.055em;
  }

  .studio__manifesto {
    gap: 0.34em;
  }

  .studio__manifesto-lead {
    font-size: clamp(3.6rem, 13.2vw, 5.2rem);
    line-height: 0.86;
    letter-spacing: -0.078em;
  }

  .studio__manifesto-lines {
    font-size: clamp(1.95rem, 6.4vw, 2.5rem);
    line-height: 0.98;
    gap: 0.13em;
    margin-top: 0.14em;
  }

  .studio__manifesto-line:nth-child(1) {
    margin-left: clamp(0.5rem, 14vw, 3.5rem);
  }

  .studio__manifesto-line:nth-child(2) {
    margin-left: clamp(1.5rem, 28vw, 7rem);
  }

  .studio__manifesto-line:nth-child(3) {
    margin-left: clamp(2.5rem, 42vw, 10rem);
  }

  .studio__manifesto-line:nth-child(2),
  .studio__manifesto-line:nth-child(3) {
    margin-top: 0;
  }

  .gallery-stage__frame,
  .contact-cta__media {
    border-radius: 22px;
  }

  .service-item__panel-inner {
    padding-left: 0;
  }

  .gallery-stage__controls {
    justify-content: flex-start;
  }

  .gallery-stage__caption {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    will-change: auto;
  }
}
