:root {
  --color-bg: #363534;
  --color-surface: #3f3e3d;
  --color-text: #f5f0e8;
  --color-text-muted: #aba7a2;
  --color-accent: #3d8ecc;
  --color-border: rgba(245, 240, 232, 0.1);
  --nav-height: 80px;
  --font-brand: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

body.work-gallery-mode {
  --nav-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

button,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.section {
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 4vw;
  transition: transform 300ms ease, background-color 300ms ease, backdrop-filter 300ms ease, height 260ms ease, padding 260ms ease, border-color 260ms ease;
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(54, 53, 52, 0.96);
  backdrop-filter: blur(8px);
}

.site-nav.scrolled .brand-logo {
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.24));
}

.site-nav.scrolled .nav-links a {
  text-shadow: none;
}

.site-nav.nav-hidden {
  transform: translateY(-100%);
}

.site-nav.nav-gallery-mode {
  padding: 0 clamp(1rem, 2.4vw, 2rem);
  background: rgba(18, 18, 18, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.site-nav.nav-gallery-mode .brand {
  min-width: 0;
}

.site-nav.nav-gallery-mode .brand-logo {
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.22));
}

.site-nav.nav-gallery-mode .brand-logo--full {
  display: block;
  width: clamp(8.7rem, 9.6vw, 9.6rem);
  height: auto;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.34));
  transition:
    opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 300ms ease;
}

.brand-logo:hover {
  opacity: 0.96;
  transform: translateY(-1px) scale(1.01);
}

.brand-logo--full {
  width: clamp(9.75rem, 11vw, 10.9rem);
  height: auto;
  max-width: none;
}

@media (max-width: 768px) {
  .brand-logo--full {
    display: block;
    width: min(10.4rem, 48vw);
    height: auto;
  }
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.nav-links li {
  transition: max-width 240ms ease, opacity 200ms ease, margin 240ms ease;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 200ms ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-accent);
}

.site-nav.nav-gallery-mode .nav-links {
  gap: 0.7rem;
  margin-left: auto;
  margin-right: 0.5rem;
}

.site-nav.nav-gallery-mode .nav-links li {
  max-width: 8rem;
  overflow: hidden;
  white-space: nowrap;
}

.site-nav.nav-gallery-mode .nav-links li:not(:first-child) {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
}

.site-nav.nav-gallery-mode .nav-links a {
  text-shadow: none;
}

.site-nav.nav-gallery-mode .nav-links li:first-child a {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.92);
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  color: var(--color-text);
  padding: 0;
}

.menu-toggle {
  width: 28px;
  height: 18px;
  display: none;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 8px;
}

.menu-toggle span:nth-child(3) {
  top: 16px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(6px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  transition: color 200ms ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--color-accent);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 2rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100dvh;
  margin: 0;
  padding: 0 8vw 90px;
  background: #0f0e0d;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center 46%);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.01);
}

.hero-media-shell {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-media-shell--stack {
  isolation: isolate;
  background: #0f0e0d;
}

.hero-media-frame {
  opacity: 0;
  filter: saturate(0.9) brightness(0.88) blur(0.6px);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.03);
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 5000ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 9000ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 5000ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.hero-media-frame.is-active {
  opacity: 1;
  filter: saturate(1) brightness(1);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.006);
  z-index: 3;
}

.hero-media-frame.is-outgoing {
  opacity: 0;
  filter: saturate(0.96) brightness(0.92) blur(1.2px);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.014);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(98deg, rgba(5, 5, 5, 0.9) 0%, rgba(8, 8, 8, 0.78) 30%, rgba(10, 10, 10, 0.46) 58%, rgba(10, 10, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.46) 100%);
  z-index: 1;
}

.hero-content {
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 100px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.82);
  margin-bottom: 1.8rem;
  background: rgba(17, 17, 17, 0.14);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.hero-content p {
  color: rgba(245, 240, 232, 0.85);
}


/* ── Page-load animation keyframes ── */
@keyframes heroSlideDown {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Nav slides down from top */
.site-nav {
  animation: heroSlideDown 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Hero content — staggered per element */
.hero-eyebrow {
  opacity: 0;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 400ms forwards;
}
.hero-headline {
  opacity: 0;
  animation: heroFadeUp 1000ms cubic-bezier(0.16, 1, 0.3, 1) 560ms forwards;
}
.hero-sub {
  opacity: 0;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 720ms forwards;
}
.hero-ctas {
  opacity: 0;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 880ms forwards;
}
.hero-stats {
  opacity: 0;
  animation: heroFadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 1040ms forwards;
}

/* ── Why Us — Editorial Rows ── */
.why-us {
  background: linear-gradient(180deg, #f0ebe2 0%, #e7e1d7 100%);
  padding: 92px 0 96px;
  position: relative;
  overflow: clip;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.42), transparent 0 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
}

.why-us-shell {
  position: relative;
  z-index: 1;
  padding: 0 8vw;
}

.why-us-visual {
  display: grid;
  align-content: start;
  gap: clamp(1.2rem, 2.2vw, 1.9rem);
}

.why-us-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(30rem, 100%);
  margin-left: 0;
  gap: 0.65rem;
  margin-bottom: 0;
}

.why-us-header .section-label {
  margin-top: 0;
  font-size: clamp(1.06rem, 0.24vw + 1rem, 1.2rem);
  letter-spacing: 0.13em;
  font-weight: 500;
  color: rgba(30, 28, 27, 0.64);
}

.why-us-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(3rem, 4.9vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--color-text);
  max-width: 10ch;
  text-align: left;
}

.why-us-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.82fr);
  gap: clamp(1.8rem, 3.4vw, 3.5rem);
  align-items: start;
}

.why-us-stage {
  position: relative;
  min-height: clamp(360px, 40vw, 520px);
  border: 1px solid rgba(42, 41, 39, 0.12);
  background: rgba(222, 214, 202, 0.72);
  overflow: hidden;
}

.why-us-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(30, 28, 27, 0.12) 100%);
  pointer-events: none;
  z-index: 2;
}

.why-us-stage-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease;
  transform: scale(1.02);
  pointer-events: none;
}

.why-us-stage-panel.is-active {
  opacity: 1;
  transform: scale(1);
}

.why-us-stage-main {
  inset: 0;
  position: absolute;
  overflow: hidden;
  background: rgba(42, 41, 39, 0.08);
  border: 1px solid rgba(42, 41, 39, 0.12);
}

.why-us-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.84) contrast(0.96) brightness(0.94);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.why-us-stage-panel.is-active .why-us-stage-main img {
  transform: scale(1.04);
  filter: saturate(0.94) contrast(1.02) brightness(0.98);
}

.why-us-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-top: 1px solid rgba(42, 41, 39, 0.12);
  margin-top: clamp(5.4rem, 9vw, 7.5rem);
}

.why-us-item {
  border-bottom: 1px solid rgba(42, 41, 39, 0.12);
}

.why-us-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.why-us-trigger-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.86;
  color: rgba(42, 41, 39, 0.16);
  transition: color 300ms ease, transform 300ms ease;
}

.why-us-trigger-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: rgba(30, 28, 27, 0.82);
  transition: color 300ms ease, transform 300ms ease;
}

.why-us-item-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: calc(56px + 1rem);
  transition: max-height 420ms ease, opacity 260ms ease, padding-bottom 260ms ease;
}

.why-us-item.is-active .why-us-item-body {
  max-height: 220px;
  opacity: 1;
  padding-bottom: 1.15rem;
}

.why-us-item-text {
  max-width: 33ch;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.78;
  color: rgba(42, 41, 39, 0.72);
}

.why-us-item:hover .why-us-trigger-title,
.why-us-item.is-active .why-us-trigger-title {
  color: #1e1c1b;
  transform: translateX(6px);
}

.why-us-item:hover .why-us-trigger-num,
.why-us-item.is-active .why-us-trigger-num {
  color: rgba(42, 41, 39, 0.34);
  transform: translateY(-2px);
}

/* ── Kinetic Marquee ── */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-strip {
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  background: linear-gradient(180deg, #232220 0%, #2d2c2a 100%);
}

.marquee-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 16%, transparent 84%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 55%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  padding: 20px 0 22px;
  animation: marqueeScroll 42s linear infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item--service,
.marquee-item--meta {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.46);
}

.marquee-item--statement {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: rgba(245, 240, 232, 0.92);
  transform: translateY(1px);
}

.marquee-item--proof {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 232, 0.78);
}

.marquee-sep {
  width: 3.5rem;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 240, 232, 0.08) 18%, rgba(245, 240, 232, 0.16) 50%, rgba(245, 240, 232, 0.08) 82%, transparent 100%);
}

/* ── Services Section ── */
.services-section {
  background: var(--color-surface);
  padding: 0;
}

.services-header {
  padding: 96px 8vw 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4vw;
  border-bottom: 1px solid var(--color-border);
}

.services-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--color-text);
  text-align: right;
  max-width: 480px;
}

.services-section .services-accordion {
  margin: 0;
  padding: 0 8vw 80px;
  border-top: none;
  border-bottom: none;
}

/* Service panel: split layout (pull quote left, detail right) */
.service-panel-inner {
  padding: 28px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  margin-top: 8px;
}

.service-panel-pull {
  padding-right: 5vw;
  border-right: 1px solid var(--color-border);
}

.service-pull-quote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-style: italic;
  margin: 0;
}

.service-panel-detail {
  padding-left: 5vw;
}

.service-panel-detail p {
  margin: 0;
  max-width: 64ch;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* ── Sample Package — Two-Column Split ── */

.sample-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}

.sample-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.sample-right {
  padding-top: 0.2rem;
}

.sample-feature-list {
  border-top: 1px solid var(--color-border);
}

.sample-feature-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-brand);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 250ms ease;
}

.sample-feature-row:hover {
  color: var(--color-text);
}

.sample-feature-row svg {
  flex-shrink: 0;
  color: var(--color-text);
  opacity: 0.4;
  transition: opacity 250ms ease;
}

.sample-feature-row:hover svg {
  opacity: 0.7;
}

/* ── Approach ── */
.approach {
  background: var(--color-bg);
  padding: 96px 8vw 104px;
}

.approach-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.approach-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.approach-copy {
  display: grid;
  align-content: start;
  gap: clamp(1.35rem, 2.6vw, 2rem);
}

.approach-statement {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.7rem, 5.4vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: rgba(245, 240, 232, 0.94);
  font-style: italic;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 10ch;
  text-wrap: balance;
}

.approach-portrait {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 1349 / 1800;
  min-height: auto;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.04), rgba(245, 240, 232, 0)),
    linear-gradient(180deg, #262220 0%, #1b1918 100%);
}

.approach-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(26, 25, 24, 0.28) 0%, rgba(26, 25, 24, 0.06) 36%, rgba(26, 25, 24, 0.22) 100%),
    linear-gradient(180deg, rgba(26, 25, 24, 0.08) 0%, rgba(26, 25, 24, 0.26) 100%);
  pointer-events: none;
}

.approach-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 240, 232, 0.08), transparent 30%),
    radial-gradient(circle at 76% 74%, rgba(245, 240, 232, 0.06), transparent 28%),
    repeating-linear-gradient(
      0deg,
      rgba(245, 240, 232, 0.014) 0 1px,
      transparent 1px 3px
    );
  mix-blend-mode: screen;
  opacity: 0.75;
  pointer-events: none;
}

.approach-portrait-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.approach-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.78) contrast(0.95) brightness(0.9) sepia(0.05) grayscale(0.08);
  transform: none;
}

.approach-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  width: min(100%, 34rem);
  margin-top: 0;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  padding-top: 1.5rem;
}

.approach-body p {
  max-width: 50ch;
  font-size: 0.96rem;
  line-height: 1.82;
  color: rgba(245, 240, 232, 0.7);
  margin: 0;
}

/* ── Final CTA ── */
.final-cta {
  background: var(--color-surface);
  padding: 96px 8vw 92px;
}

.final-cta-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.final-cta-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-text);
  max-width: 12ch;
  margin: 0;
}

.final-cta-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2.5rem 4rem;
  border-top: 1px solid var(--color-border);
  margin-top: 2rem;
  padding-top: 1.85rem;
}

.final-cta-text {
  max-width: 50ch;
  color: rgba(245, 240, 232, 0.62);
  font-size: 0.88rem;
  line-height: 1.82;
  margin: 0;
}

.final-cta-link {
  justify-self: start;
  align-self: end;
  font-family: var(--font-brand);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.82);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.18);
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.final-cta-link::after {
  content: " \2192";
}

.final-cta-link:hover,
.final-cta-link:focus-visible {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateX(3px);
}

.projects {
  padding: 36px 0 0;
  background: #1b1a19;
}

.section-label {
  display: block;
  font-size: clamp(1.02rem, 0.26vw + 0.96rem, 1.18rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 1.3rem;
}

.projects-label {
  padding: 0;
}

/* section-label inside flex headers — no large bottom margin */
.why-us-header .section-label,
.services-header .section-label,
.process-header .section-label,
.studio-left .section-label,
.studio-thinking .section-label,
.studio-approach .section-label,
.team-atlas .section-label,
.contact-info .section-label,
.approach-inner .section-label,
.final-cta-inner .section-label,
.sample-copy .section-label {
  margin-bottom: 0;
}

/* ── Studio Section ── */
.studio-section {
  background: var(--color-surface);
  padding: 96px 8vw 80px;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6vw;
  align-items: start;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 72px;
}

.studio-thinking {
  display: grid;
  gap: clamp(1.8rem, 2.8vw, 2.8rem);
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--color-border);
}

.studio-thinking-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(22rem, 1.16fr);
  column-gap: clamp(2.2rem, 5vw, 6rem);
  row-gap: clamp(1.5rem, 2.4vw, 2.4rem);
  align-items: start;
}

.studio-thinking-header {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 27rem);
  grid-column: 1;
  grid-row: 1;
}

.studio-thinking-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.05rem, 3.25vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.024em;
  color: rgba(245, 240, 232, 0.94);
  max-width: 11ch;
  margin: 0;
  text-wrap: balance;
}

.studio-thinking-intro {
  margin: 0;
  max-width: 31ch;
  font-size: 0.92rem;
  line-height: 1.74;
  color: rgba(245, 240, 232, 0.58);
}

.studio-thinking-grid {
  display: grid;
  gap: clamp(1.35rem, 2vw, 1.8rem);
  align-items: start;
  grid-column: 2;
  grid-row: 1 / span 3;
}

.studio-thinking-block {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}

.studio-thinking-block--primary .studio-thinking-title {
  font-size: clamp(1.46rem, 1.9vw, 1.8rem);
}

.studio-thinking-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: rgba(245, 240, 232, 0.92);
  margin: 0;
}

.studio-thinking-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.84;
  color: rgba(245, 240, 232, 0.68);
}

.studio-thinking-block--primary .studio-thinking-text {
  max-width: 50ch;
  font-size: 0.98rem;
  line-height: 1.9;
}

.studio-thinking-observation {
  margin: 0;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  max-width: 21ch;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.14rem, 1.55vw, 1.34rem);
  line-height: 1.34;
  letter-spacing: -0.012em;
  color: rgba(245, 240, 232, 0.72);
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.studio-thinking-closing {
  margin: 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.22rem, 1.7vw, 1.5rem);
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: rgba(245, 240, 232, 0.82);
  max-width: 22ch;
  grid-column: 1;
  grid-row: 3;
  align-self: start;
}

.studio-approach {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--color-border);
}

.studio-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.studio-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.studio-right {
  padding-top: 0.3rem;
}

.studio-text {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--color-text-muted);
  margin: 0;
}

/* Editorial studio placeholder gallery */
.studio-imagery {
  display: grid;
  gap: 18px;
  margin-bottom: 64px;
}

.studio-imagery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "lead tall"
    "wide accent";
  gap: 18px;
  align-items: stretch;
  aspect-ratio: 1 / 1;
}

.studio-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  background: #1a1917;
  isolation: isolate;
  border: 1px solid rgba(245, 240, 232, 0.08);
}

.studio-shot::before,
.studio-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.studio-shot::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(24, 23, 21, 0.12) 0%, rgba(24, 23, 21, 0.04) 38%, rgba(24, 23, 21, 0.22) 100%),
    linear-gradient(90deg, rgba(24, 23, 21, 0.1) 0%, rgba(24, 23, 21, 0) 36%, rgba(24, 23, 21, 0.14) 100%);
}

.studio-shot::after {
  z-index: 2;
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 233, 212, 0.1) 0%, rgba(247, 233, 212, 0) 34%),
    linear-gradient(180deg, rgba(248, 244, 237, 0.05) 0%, rgba(248, 244, 237, 0) 100%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.studio-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.8) contrast(0.95) brightness(0.92) sepia(0.08);
  transform: scale(1.015);
  transition: transform 800ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 500ms ease;
}

.studio-shot:hover img,
.studio-shot:focus-within img {
  transform: scale(1.04);
  filter: saturate(0.84) contrast(0.97) brightness(0.95) sepia(0.05);
}

.studio-shot--lead {
  grid-area: lead;
}

.studio-shot--lead img {
  object-position: center 54%;
}

.studio-shot--tall {
  grid-area: tall;
}

.studio-shot--tall img {
  object-position: center 52%;
}

.studio-shot--accent {
  grid-area: accent;
}

.studio-shot--accent img {
  object-position: center 56%;
}

.studio-shot--wide {
  grid-area: wide;
}

.studio-shot--wide img {
  object-position: center 50%;
}

.contact {
  background: #1a1918;
  padding: 110px 8vw;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8vw;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.contact-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.15rem, 3.7vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.contact-subline {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-qualifier {
  max-width: 34ch;
  margin: -0.15rem 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.46);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--color-border);
}

.contact-email-big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--color-text);
  border-bottom: 1px solid rgba(245, 240, 232, 0.15);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 250ms ease, color 250ms ease;
}

.contact-email-big:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
}

.whatsapp-btn {
  border: 1px solid rgba(245, 240, 232, 0.3);
  padding: 14px 32px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: border-color 250ms ease, color 250ms ease;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.location {
  margin-top: 32px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-email {
  font-size: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
  padding-bottom: 2px;
  transition: border-color 250ms ease, color 250ms ease;
}

.contact-email:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.contact-hours {
  margin-top: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 5vw 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: start;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(245, 240, 232, 0.66);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-self: center;
}

.footer-nav a {
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-contact a {
  transition: color 200ms ease;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-legal {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.64);
  margin: 0;
}

.footer-logo {
  width: clamp(12rem, 16vw, 13.75rem);
  height: auto;
  max-width: 100%;
  opacity: 0.98;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.22));
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-footer a {
  color: var(--color-text-muted);
  transition: color 200ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-accent);
}

.deferred-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1400;
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 180ms ease;
}

.cursor-outer {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.08);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.18);
  transform: translate3d(var(--cursor-outer-x, -100px), var(--cursor-outer-y, -100px), 0) translate(-50%, -50%) scale(var(--cursor-scale, 1));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.22);
  transform: translate3d(var(--cursor-inner-x, -100px), var(--cursor-inner-y, -100px), 0) translate(-50%, -50%);
}

body.custom-cursor-enabled,
body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled .project-card,
body.custom-cursor-enabled .work-project-card {
  cursor: none;
}

body.custom-cursor-enabled.custom-cursor-active .cursor {
  opacity: 1;
}

.cursor-outer.hover-project {
  --cursor-scale: 1.85;
}

.cursor-outer.hover-link {
  --cursor-scale: 1.4;
  background: rgba(61, 142, 204, 0.2);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(61, 142, 204, 0.28);
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  section[id] {
    scroll-margin-top: calc(var(--nav-height) + env(safe-area-inset-top) + 18px);
  }

  body.work-gallery-mode {
    --nav-height: 52px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .site-nav {
    padding: 0 5vw;
    gap: 0.75rem;
  }

  .brand-logo--full {
    width: min(10.4rem, 48vw);
  }

  .deferred-section {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .reveal {
    transform: translateY(8px);
  }

  .reveal.is-visible {
    transition-duration: 280ms;
  }

  .site-nav > .lang-switcher {
    display: none;
  }

  .site-nav.nav-gallery-mode {
    padding: 0 4vw;
  }

  .site-nav.nav-gallery-mode .brand-logo--full {
    width: min(9.8rem, 46vw);
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-right: -8px;
    flex-shrink: 0;
  }

  .menu-toggle span {
    width: 28px;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle span:nth-child(1) {
    top: 12px;
  }

  .menu-toggle span:nth-child(2) {
    top: 21px;
  }

  .menu-toggle span:nth-child(3) {
    top: 30px;
  }

  .menu-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
  }

  .mobile-menu {
    padding: calc(env(safe-area-inset-top) + 4.75rem) 6vw calc(env(safe-area-inset-bottom) + 2rem);
    align-content: start;
    gap: 1.15rem;
  }

  .mobile-menu a {
    font-size: clamp(1.8rem, 9.2vw, 2.3rem);
  }

  .menu-close {
    top: calc(env(safe-area-inset-top) + 12px);
    right: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .scroll-indicator {
    display: none;
  }

  .approach,
  .final-cta,
  .contact,
  .services-section,
  .studio-section {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .why-us-shell {
    padding: 0 6vw;
  }

  .why-us {
    padding: 72px 0 78px;
  }

  .why-us-header {
    width: 100%;
    margin-left: 0;
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .why-us-header .section-label {
    margin-top: 0;
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    color: rgba(30, 28, 27, 0.62);
  }

  .why-us-heading {
    max-width: 14ch;
    text-align: left;
    justify-self: start;
    font-size: clamp(2.35rem, 7vw, 3.5rem);
  }

  .why-us-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us-visual {
    gap: 1.2rem;
  }

  .why-us-stage {
    min-height: 320px;
  }

  .why-us-trigger {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.95rem 0;
  }

  .why-us-trigger-title {
    font-size: clamp(1.2rem, 4.8vw, 1.65rem);
  }

  .why-us-trigger-num {
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .why-us-item-body {
    padding-left: calc(48px + 0.85rem);
  }

  .why-us-item.is-active .why-us-item-body {
    max-height: 280px;
    padding-bottom: 1rem;
  }

  .why-us-item-text {
    max-width: 40ch;
  }

  .why-us-list {
    margin-top: 0;
  }

  .marquee-track {
    gap: 1.2rem;
    padding: 16px 0 17px;
    animation-duration: 36s;
  }

  .marquee-item--service,
  .marquee-item--meta {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .marquee-item--statement {
    font-size: clamp(1.2rem, 5vw, 1.55rem);
  }

  .marquee-item--proof {
    font-size: 1rem;
  }

  .marquee-sep {
    width: 2.3rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 6vw 40px;
    gap: 1rem;
  }

  .services-heading {
    text-align: left;
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .services-section .services-accordion {
    padding: 0 6vw 60px;
  }

  .service-panel-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .service-panel-pull {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.2rem;
  }

  .service-panel-detail {
    padding-left: 0;
  }

  .approach-statement {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .approach-top {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .approach-portrait {
    width: 100%;
    max-width: 30rem;
    min-height: auto;
    justify-self: center;
  }

  .approach-body {
    width: 100%;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .studio-thinking {
    gap: 1.2rem;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .studio-thinking-shell {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .studio-thinking-header {
    gap: 0.8rem;
    width: 100%;
    grid-column: auto;
    grid-row: auto;
  }

  .studio-thinking-heading {
    font-size: clamp(1.58rem, 5.5vw, 2.04rem);
    line-height: 1.04;
    max-width: 13ch;
  }

  .studio-thinking-intro {
    max-width: 36ch;
    font-size: 0.89rem;
    line-height: 1.64;
  }

  .studio-thinking-grid {
    gap: 0.9rem;
    grid-column: auto;
    grid-row: auto;
  }

  .studio-thinking-block {
    gap: 0.7rem;
    padding-top: 1rem;
  }

  .studio-thinking-title,
  .studio-thinking-block--primary .studio-thinking-title {
    font-size: clamp(1.18rem, 5vw, 1.45rem);
  }

  .studio-thinking-text,
  .studio-thinking-block--primary .studio-thinking-text {
    font-size: 0.9rem;
    line-height: 1.78;
    max-width: none;
  }

  .studio-thinking-observation {
    padding-top: 0.95rem;
    max-width: 18ch;
    font-size: clamp(1.05rem, 4.7vw, 1.24rem);
    line-height: 1.32;
    grid-column: auto;
    grid-row: auto;
  }

  .studio-thinking-closing {
    padding-top: 0.85rem;
    font-size: clamp(1.1rem, 4.8vw, 1.3rem);
    line-height: 1.3;
    max-width: 20ch;
    grid-column: auto;
    grid-row: auto;
  }

  .team-atlas {
    padding-top: 40px;
  }

  .team-atlas-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team-atlas-heading,
  .team-atlas-intro {
    max-width: none;
  }

  .team-atlas-current {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-atlas-future {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-imagery {
    gap: 12px;
    margin-bottom: 40px;
  }

  .studio-imagery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "lead"
      "tall"
      "wide"
      "accent";
    aspect-ratio: auto;
  }

  .studio-shot {
    height: auto;
  }

  .studio-shot--lead,
  .studio-shot--tall,
  .studio-shot--accent,
  .studio-shot--wide {
    aspect-ratio: 1.2 / 1;
  }

  .final-cta-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
  }

  /* ── Section vertical padding (desktop values too tall on mobile) ── */
  .approach {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .final-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .studio-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  /* ── Approach section ── */
  .approach-inner {
    padding: 0;
  }

  /* ── Contact ── */
  .contact-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info {
    position: static;
  }

  .contact-heading {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .contact-email-big,
  .whatsapp-btn {
    width: 100%;
  }

  .contact-email-big {
    word-break: break-word;
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form .btn {
    width: 100%;
    align-self: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 36px 6vw 20px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    width: min(12.5rem, 72vw);
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-contact {
    align-items: center;
  }

  .cursor {
    display: none;
  }
}

@media (max-width: 640px) {
  .team-atlas-current,
  .team-atlas-future {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card-caption {
    padding: 0.95rem 0.92rem 0.88rem;
  }

  .team-card-role {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .team-atlas-current,
  .team-atlas-future {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 980px) {
  .projects {
    display: block;
    padding-top: 24px;
    background: #1b1a19;
  }
}

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

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

/* Services accordion base */
.services-accordion {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.service-trigger {
  width: 100%;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 17px 0;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease;
}

.service-trigger:hover,
.service-trigger:focus-visible {
  color: #f5f0e8;
}

.service-trigger:focus-visible {
  outline: 1px solid rgba(61, 142, 204, 0.45);
  outline-offset: 6px;
}

.service-index {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.76rem;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
}

.service-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.05vw, 1.55rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.service-icon {
  position: relative;
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
  transition: transform 260ms ease;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(245, 240, 232, 0.72);
  transform: translate(-50%, -50%);
  transition: transform 260ms ease, opacity 260ms ease;
}

.service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item.is-open .service-icon {
  transform: rotate(180deg);
}

.service-item.is-open .service-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

.service-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 340ms ease, opacity 300ms ease;
}

@media (max-width: 768px) {
  .service-trigger {
    min-height: 60px;
    padding: 14px 0;
    gap: 0.85rem;
  }

  .service-title {
    font-size: clamp(1.02rem, 5.2vw, 1.25rem);
  }
}

/* ── Language Switcher (nav + mobile menu) ── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.26rem;
  border: 1px solid rgba(245, 240, 232, 0.24);
  border-radius: 999px;
  background: rgba(54, 53, 52, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.site-nav.nav-gallery-mode .lang-switcher {
  padding: 0.2rem;
  background: rgba(54, 53, 52, 0.18);
  box-shadow: none;
  border-color: rgba(245, 240, 232, 0.18);
}

.lang-opt {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.52);
  padding: 0.68rem 0.96rem;
  line-height: 1;
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.site-nav.nav-gallery-mode .lang-opt {
  padding: 0.56rem 0.78rem;
  font-size: 0.62rem;
}

.lang-opt.is-active {
  color: #171717;
  background: rgba(245, 240, 232, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.lang-opt:hover:not(.is-active) {
  color: rgba(245, 240, 232, 0.86);
  background: rgba(245, 240, 232, 0.08);
  transform: translateY(-1px);
}

.lang-sep {
  display: none;
}

.lang-switcher--mobile {
  border-color: rgba(245, 240, 232, 0.28);
  margin-top: 0.5rem;
}

.lang-switcher--mobile .lang-opt {
  font-size: 0.82rem;
  padding: 0.92rem 1.5rem;
  letter-spacing: 0.22em;
}

/* ── Hero B2B ── */
.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0 0 1.2rem;
  max-width: 820px;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
}

.hero-sub {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(245, 240, 232, 0.86);
  margin: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.4rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  display: inline-block;
  transition: all 400ms cubic-bezier(0.32, 0.72, 0, 1);
}

/* Glass buttons — hero only */
.btn-glass {
  background: rgba(245, 240, 232, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 240, 232, 0.22);
  color: var(--color-text);
}

.btn-glass--primary {
  background: rgba(245, 240, 232, 0.96);
  border-color: rgba(245, 240, 232, 0.92);
  color: #121212;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  font-weight: 400;
}

.btn-glass:hover {
  background: rgba(245, 240, 232, 0.18);
  border-color: rgba(245, 240, 232, 0.38);
  transform: translateY(-1px);
}

.btn-glass:active {
  transform: translateY(0) scale(0.99);
}

.btn-glass--primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #121212;
}

.btn-glass--ghost {
  background: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.24);
  color: rgba(245, 240, 232, 0.9);
}

.btn-glass--ghost:hover {
  background: rgba(245, 240, 232, 0.14);
  border-color: rgba(245, 240, 232, 0.38);
  color: var(--color-text);
}

/* Solid buttons — used outside hero (sample, form) */
.btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
  border: 1px solid var(--color-text);
}

.btn-primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 8vw;
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245, 240, 232, 0.07);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  text-align: center;
}

.hero-stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.58);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(245, 240, 232, 0.1);
  flex-shrink: 0;
  margin: 0 2.5vw;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.6rem;
    padding: calc(var(--nav-height) + env(safe-area-inset-top) + 10vw) 6vw 0;
  }

  .hero-content {
    width: 100%;
    max-width: 34rem;
  }

  .hero-eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.13em;
  }

  .hero-sub {
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    line-height: 1.78;
    max-width: 100%;
  }

  .hero-stats {
    position: relative;
    inset: auto;
    width: calc(100% + 12vw);
    margin: 0 -6vw;
    padding: 1.1rem 4vw calc(1.1rem + env(safe-area-inset-bottom));
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .hero-stat-divider {
    margin: 0 2.5vw;
    height: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
  }

  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ── Service Deliverables ── */
.service-deliverables {
  margin: 12px 0 0;
  padding: 0 0 0 1.2rem;
  list-style: none;
}

.service-deliverables li {
  position: relative;
  padding-left: 0;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.6;
}

.service-deliverables li::before {
  content: "—";
  position: absolute;
  left: -1.2rem;
  color: var(--color-accent);
}

/* ── Sample Package ── */
.sample {
  background: var(--color-surface);
  padding: 110px 8vw;
}

.sample-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 3.9vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sample-subline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  max-width: 48ch;
}

@media (max-width: 768px) {
  .sample {
    padding: 80px 6vw;
  }

  .sample-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── Process ── */
.process {
  background: #ede8df;
  padding: clamp(80px, 10vw, 140px) 8vw;
}

.process-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-header {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  gap: clamp(1.6rem, 4vw, 4.5rem);
  align-items: end;
}

.process-header-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.process-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4.4vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #1e1c1b;
  text-align: left;
  max-width: 13ch;
}

.process-intro {
  margin: 0.3rem 0 0;
  max-width: 43ch;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(42, 41, 39, 0.7);
}

.process-sidecar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-self: stretch;
  padding: 1.45rem 1.5rem 1.35rem;
  background: linear-gradient(180deg, #2b2724 0%, #221f1d 100%);
  color: #f5f0e8;
  overflow: hidden;
}

.process-sidecar::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -58px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 98, 69, 0.28) 0%, rgba(184, 98, 69, 0) 70%);
  pointer-events: none;
}

.process-sidecar::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -26px;
  width: 170px;
  height: 110px;
  background: linear-gradient(135deg, rgba(109, 141, 86, 0.24), rgba(109, 141, 86, 0));
  transform: rotate(-9deg);
  pointer-events: none;
}

.process-sidecar-label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.62);
}

.process-sidecar-text {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 26ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.48rem, 1.9vw, 2rem);
  line-height: 1.08;
  color: #f5f0e8;
}

.process-deepen-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 0.25rem;
  font-family: var(--font-brand);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1d4cb;
  border-bottom: 1px solid rgba(241, 212, 203, 0.24);
  transition: border-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.process-deepen-link::after {
  content: "\2192";
  font-size: 0.9rem;
  line-height: 1;
}

.process-deepen-link:hover {
  color: #fff4ef;
  border-color: rgba(255, 244, 239, 0.42);
  transform: translateX(2px);
}

.process-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: stretch;
}

.process-poster {
  position: relative;
  min-height: 640px;
  padding: clamp(1.4rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(109, 141, 86, 0.12), transparent 28%),
    linear-gradient(180deg, #252220 0%, #1c1918 100%);
  color: #f5f0e8;
}

.process-poster-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-poster-image {
  position: absolute;
  display: block;
  object-fit: cover;
}

.process-poster-image--main {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.44;
  filter: saturate(0.76) contrast(0.94) brightness(0.72);
}

.process-poster-image--detail {
  right: 1.35rem;
  bottom: 1.25rem;
  width: min(48%, 300px);
  aspect-ratio: 4 / 3;
  border: 10px solid rgba(245, 240, 232, 0.88);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.28);
  transform: rotate(4deg);
  opacity: 0.94;
}

.process-poster-image--sheet {
  left: -2.5rem;
  bottom: 4.6rem;
  width: min(64%, 360px);
  aspect-ratio: 3 / 2;
  border: 10px solid rgba(245, 240, 232, 0.9);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  transform: rotate(-8deg);
  opacity: 0.34;
}

.process-poster-orbit {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 16, 0.18) 0%, rgba(20, 17, 16, 0.78) 72%),
    linear-gradient(to right, rgba(245, 240, 232, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 240, 232, 0.04) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  opacity: 1;
  pointer-events: none;
}

.process-poster-geometry {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-geometry-shape {
  position: absolute;
  display: block;
}

.process-geometry-shape--a {
  width: 210px;
  height: 210px;
  right: -54px;
  top: 34px;
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 999px;
}

.process-geometry-shape--b {
  width: 156px;
  height: 94px;
  left: -18px;
  bottom: 54px;
  background: linear-gradient(135deg, rgba(197, 154, 73, 0.18), rgba(197, 154, 73, 0.02));
  transform: rotate(-14deg);
}

.process-geometry-shape--c {
  width: 92px;
  height: 92px;
  right: 58px;
  bottom: 120px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.1), rgba(245, 240, 232, 0));
  transform: rotate(14deg);
}

.process-poster-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 20rem;
}

.process-progress-lights {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-bottom: 0.2rem;
}

.process-progress-light {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.process-progress-light--01 {
  background: #b85040;
  box-shadow: 0 0 0 8px rgba(184, 80, 64, 0.14);
}

.process-progress-light--02 {
  background: #d08a2d;
  box-shadow: 0 0 0 8px rgba(208, 138, 45, 0.13);
}

.process-progress-light--03 {
  background: #d7ad49;
  box-shadow: 0 0 0 8px rgba(215, 173, 73, 0.13);
}

.process-progress-light--04 {
  background: #6f9661;
  box-shadow: 0 0 0 8px rgba(111, 150, 97, 0.13);
}

.process-core-label {
  font-family: var(--font-brand);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.64);
}

.process-poster-lead {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #f5f0e8;
}

.process-poster-signals {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  align-self: start;
}

.process-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  padding: 0.72rem 1rem;
  font-family: var(--font-brand);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5f0e8;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
}

.process-signal::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.process-signal--communication::before {
  background: #b85040;
  box-shadow: 0 0 0 6px rgba(184, 80, 64, 0.16);
}

.process-signal--standards::before {
  background: #d08a2d;
  box-shadow: 0 0 0 6px rgba(208, 138, 45, 0.16);
}

.process-signal--files::before {
  background: #6f9661;
  box-shadow: 0 0 0 6px rgba(111, 150, 97, 0.15);
}

.process-poster-caption {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 28ch;
  font-size: 0.83rem;
  line-height: 1.74;
  color: rgba(245, 240, 232, 0.72);
}

.process-tools-label {
  display: inline-block;
  margin-right: 0.55rem;
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.54);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.process-step {
  --process-accent: #b85040;
  --process-tint: rgba(184, 80, 64, 0.085);
  position: relative;
  min-height: 308px;
  padding: 1.6rem 1.45rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  border-top: 2px solid var(--process-accent);
  border-right: 1px solid rgba(42, 41, 39, 0.1);
  border-bottom: 1px solid rgba(42, 41, 39, 0.1);
  border-left: 1px solid rgba(42, 41, 39, 0.1);
  background:
    linear-gradient(180deg, var(--process-tint) 0%, rgba(255, 252, 248, 0.68) 42%, rgba(255, 252, 248, 0.92) 100%);
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--process-accent) 18%, white) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.process-step--02 {
  --process-accent: #d08a2d;
  --process-tint: rgba(208, 138, 45, 0.09);
}

.process-step--03 {
  --process-accent: #d7ad49;
  --process-tint: rgba(215, 173, 73, 0.1);
}

.process-step--04 {
  --process-accent: #6f9661;
  --process-tint: rgba(111, 150, 97, 0.09);
}

.process-step-marker {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--process-accent);
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--process-accent) 18%, transparent);
}

.process-step-index {
  display: block;
  margin-top: 0.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 3.6vw, 4rem);
  line-height: 0.8;
  color: color-mix(in srgb, var(--process-accent) 20%, rgba(30, 28, 27, 0.1));
}

.process-step-time {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.05rem;
  padding: 0.36rem 0.58rem 0.33rem;
  font-family: var(--font-brand);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--process-accent) 66%, #5f5850);
  background: color-mix(in srgb, var(--process-accent) 10%, #fffaf2);
  border: 1px solid color-mix(in srgb, var(--process-accent) 22%, rgba(42, 41, 39, 0.08));
}

.process-step-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 1.5vw, 1.9rem);
  line-height: 1.04;
  color: #1e1c1b;
}

.process-step-desc {
  margin: 0;
  max-width: 30ch;
  font-size: 0.9rem;
  line-height: 1.66;
  color: rgba(42, 41, 39, 0.72);
}

.process-step-exchange {
  margin-top: auto;
  padding-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  border-top: 1px solid rgba(42, 41, 39, 0.1);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(42, 41, 39, 0.76);
}

.process-step-exchange-item {
  display: grid;
  gap: 0.22rem;
}

.process-step-label {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--process-accent);
}

.process-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.8rem 2.4rem;
  align-items: start;
  padding: 1.55rem 1.6rem;
  background: #25211f;
  color: #f5f0e8;
}

.process-timeline-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.process-timeline-label {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.58);
}

.process-timeline-note {
  margin: 0;
  max-width: 34ch;
  font-size: 0.84rem;
  line-height: 1.68;
  color: rgba(245, 240, 232, 0.72);
}

.process-timeline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.process-timeline-item {
  padding-left: 1rem;
  border-left: 1px solid rgba(245, 240, 232, 0.12);
}

.process-timeline-item-label {
  display: block;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.6);
}

.process-timeline-item-value {
  display: block;
  margin-top: 0.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.08;
  color: #f5f0e8;
}

@media (max-width: 1120px) {
  .process-stage {
    grid-template-columns: 1fr;
  }

  .process-poster {
    min-height: 420px;
  }

  .process-poster-image--detail {
    width: min(42%, 260px);
  }

  .process-poster-image--sheet {
    width: min(52%, 300px);
  }
}

@media (max-width: 768px) {
  .process {
    padding: 80px 6vw;
  }

  .process-shell {
    gap: 1.5rem;
  }

  .process-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-heading {
    max-width: 10ch;
    font-size: clamp(2.3rem, 9vw, 3.6rem);
  }

  .process-sidecar {
    padding: 1.25rem 1.2rem;
  }

  .process-poster {
    min-height: 360px;
    padding: 1.2rem;
  }

  .process-poster-lead {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .process-poster-image--detail {
    right: 0.9rem;
    bottom: 1rem;
    width: min(46%, 180px);
    border-width: 8px;
  }

  .process-poster-image--sheet {
    left: -1.6rem;
    bottom: 3.8rem;
    width: min(58%, 220px);
    border-width: 8px;
  }

  .process-signal {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    padding: 0.68rem 0.9rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
    padding: 1.3rem 1.1rem 1.15rem;
  }

  .process-step-title {
    font-size: 1.45rem;
  }

  .process-step-exchange {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .process-footer {
    grid-template-columns: 1fr;
    padding: 1.25rem 1.1rem;
  }

  .process-timeline-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .process-poster {
    min-height: 330px;
  }

  .process-step-marker {
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--process-accent) 18%, transparent);
  }
}

/* ── Studio Credentials ── */
.credentials {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.credentials-title {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 12px;
}

.credentials-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.credential-tag {
  font-family: var(--font-brand);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  transition: border-color 250ms ease;
}

.credential-tag:hover {
  border-color: var(--color-accent);
}

/* ── Team Atlas ── */
.team-atlas {
  display: grid;
  gap: 1.35rem;
  border-top: 1px solid var(--color-border);
  padding-top: 72px;
}

.team-atlas-header {
  display: block;
}

.team-atlas-copy {
  display: grid;
  gap: 0.7rem;
  max-width: 54rem;
}

.team-atlas-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--color-text);
  margin: 0;
  max-width: 10ch;
}

.team-atlas-intro {
  margin: 0;
  max-width: 40ch;
  font-size: 0.94rem;
  line-height: 1.76;
  color: rgba(245, 240, 232, 0.72);
}

.team-atlas-current,
.team-atlas-future {
  display: grid;
  gap: 14px;
}

.team-atlas-current {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-atlas-future {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-atlas-collaborators {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}

.team-atlas-subhead {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  max-width: 34rem;
  grid-column: 1 / -1;
  padding-top: 0;
}

.team-atlas-future {
  grid-column: 1 / span 3;
}

.team-atlas-group-label {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.44);
}

.team-atlas-group-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(245, 240, 232, 0.6);
}

.team-card {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  background: #1c1a18;
}

.team-card::before,
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.team-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(19, 18, 17, 0.06) 0%, rgba(19, 18, 17, 0.12) 38%, rgba(19, 18, 17, 0.72) 100%),
    linear-gradient(90deg, rgba(249, 245, 239, 0.06) 0%, rgba(249, 245, 239, 0) 34%, rgba(249, 245, 239, 0.03) 100%);
}

.team-card::after {
  z-index: 2;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 238, 224, 0.18) 0%, rgba(246, 238, 224, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 30%);
  mix-blend-mode: screen;
}

.team-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.94) brightness(0.93) sepia(0.08);
  transform: scale(1.02);
}

.team-card-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  display: grid;
  gap: 0.18rem;
  padding: 1rem 1rem 0.95rem;
}

.team-card-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(1.08rem, 1.1vw, 1.34rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgba(249, 245, 239, 0.96);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.team-card-role {
  margin: 0;
  font-family: var(--font-brand);
  font-size: 0.64rem;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 237, 228, 0.74);
  max-width: 23ch;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.team-card--collaborator .team-card-name {
  font-size: clamp(1.02rem, 1vw, 1.22rem);
}

.team-card--collaborator .team-card-role {
  font-size: 0.61rem;
  letter-spacing: 0.11em;
}

.team-card--placeholder {
  border: 1px solid rgba(243, 237, 228, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #22201e;
}

.team-card--placeholder::before {
  background:
    linear-gradient(180deg, rgba(19, 18, 17, 0.02) 0%, rgba(19, 18, 17, 0.16) 52%, rgba(19, 18, 17, 0.64) 100%),
    linear-gradient(90deg, rgba(249, 245, 239, 0.05) 0%, rgba(249, 245, 239, 0.01) 100%);
}

.team-card--placeholder img {
  filter: saturate(0.22) contrast(0.88) brightness(0.8) sepia(0);
  transform: scale(1.04);
}

.team-card-placeholder-sheen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 240, 232, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(245, 240, 232, 0.06), transparent 46%);
  pointer-events: none;
}

/* ── Contact Form ── */
.contact-form-col {
  width: min(100%, 640px);
  justify-self: end;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 0.35rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-field--full {
  /* already full-width in flex column */
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  outline: none;
  transition: border-color 300ms ease;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(154, 149, 144, 0.4);
  font-size: 0.82rem;
}

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

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%238a8580' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  background-color: transparent;
  cursor: pointer;
  color: rgba(154, 149, 144, 0.6);
}

.contact-form select:valid {
  color: var(--color-text);
}

.contact-form select option {
  background: var(--color-surface);
  color: var(--color-text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
  padding-top: 10px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 12px;
}

.contact-route {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  margin: -0.1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
}

.contact-route a {
  color: rgba(245, 240, 232, 0.88);
  border-bottom: 1px solid rgba(245, 240, 232, 0.24);
  transition: color 220ms ease, border-color 220ms ease;
}

.contact-route a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.contact-form .btn.is-loading,
.sample-cta.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.contact-feedback,
.sample-gate-feedback {
  display: none;
  position: relative;
  grid-template-columns: minmax(0, 0.86fr) minmax(18rem, 1.14fr);
  gap: clamp(1.2rem, 2vw, 1.95rem);
  align-items: stretch;
  min-height: clamp(17rem, 28vw, 24rem);
  padding: clamp(1.25rem, 1.7vw, 1.55rem);
  border: 1px solid rgba(245, 240, 232, 0.12);
  background:
    linear-gradient(145deg, rgba(245, 240, 232, 0.09), rgba(245, 240, 232, 0.03)),
    rgba(245, 240, 232, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.contact-feedback::before,
.sample-gate-feedback::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 1.35rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid rgba(237, 232, 223, 0.3);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(237, 232, 223, 0.92) 0 32%, transparent 38% 100%);
  box-shadow: 0 0 0 7px rgba(237, 232, 223, 0.05);
}

.form-success-copy {
  display: grid;
  align-content: end;
  gap: 0.95rem;
  min-width: 0;
  padding: clamp(2.1rem, 3vw, 2.9rem) clamp(0.25rem, 0.9vw, 0.65rem) clamp(0.15rem, 0.5vw, 0.3rem);
}

.form-success-media {
  position: relative;
  margin: 0;
  min-height: clamp(15rem, 25vw, 21rem);
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(245, 240, 232, 0.12);
  background: rgba(245, 240, 232, 0.05);
}

.form-success-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33, 31, 30, 0.04), rgba(33, 31, 30, 0.16)),
    linear-gradient(90deg, rgba(33, 31, 30, 0.18), transparent 28%);
}

.form-success-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.92) contrast(0.94) brightness(0.92);
  transform: scale(1.025);
}

.contact-form.is-submitted .form-row,
.contact-form.is-submitted .form-field,
.contact-form.is-submitted .form-honeypot,
.contact-form.is-submitted > .btn,
.contact-form.is-submitted .contact-route {
  display: none;
}

.contact-form.is-submitted .contact-feedback {
  display: grid;
}

.sample-gate-card.is-submitted .sample-gate-feedback {
  display: grid;
}

.contact-form.is-submitted .contact-feedback > *,
.sample-gate-card.is-submitted .sample-gate-feedback > * {
  animation: formSuccessRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.contact-form.is-submitted .contact-feedback .form-success-media,
.sample-gate-card.is-submitted .sample-gate-feedback .form-success-media {
  animation-delay: 90ms;
}

.contact-feedback-label,
.sample-gate-feedback-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.68);
}

.contact-feedback-title,
.sample-gate-feedback-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  max-width: 14ch;
  font-size: clamp(1.92rem, 3vw, 3.05rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: rgba(245, 240, 232, 0.98);
  text-wrap: balance;
}

.contact-feedback-text,
.sample-gate-feedback-text {
  margin: 0;
  max-width: 36ch;
  font-size: 0.97rem;
  line-height: 1.78;
  color: rgba(245, 240, 232, 0.78);
}

.contact-error {
  display: none;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #a8553e;
}

@keyframes formSuccessRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form.is-error .contact-error {
  display: block;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-feedback,
  .sample-gate-feedback {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .form-success-copy {
    order: 2;
    padding-top: 1.35rem;
  }

  .form-success-media {
    order: 1;
    min-height: 14rem;
  }

  .contact-feedback-title,
  .sample-gate-feedback-title {
    max-width: 12ch;
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .contact-feedback-text,
  .sample-gate-feedback-text {
    max-width: 32ch;
  }
}

/* ── Extra-small screens (< 480px) ── */
@media (max-width: 480px) {
  .hero {
    gap: 1.25rem;
    padding-top: calc(var(--nav-height) + env(safe-area-inset-top) + 6vw);
    padding-left: 5vw;
    padding-right: 5vw;
  }

  /* Stats bar — compress at very small widths */
  .hero-stats {
    width: calc(100% + 10vw);
    margin: 0 -5vw;
    padding: 0.95rem 3vw calc(0.95rem + env(safe-area-inset-bottom));
  }

  .hero-stat-number {
    font-size: 1.12rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero-stat-divider {
    margin: 0 1.5vw;
    height: 24px;
  }

  .why-us-shell {
    padding: 0 5vw;
  }

  .why-us {
    padding: 64px 0 68px;
  }

  .why-us-stage {
    min-height: 260px;
  }

  .why-us-visual {
    gap: 1rem;
  }

  .why-us-trigger {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.85rem 0;
  }

  .why-us-trigger-title {
    font-size: clamp(1.1rem, 5.6vw, 1.45rem);
  }

  .why-us-trigger-num {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .why-us-item-body {
    padding-left: calc(42px + 0.7rem);
  }

  .why-us-item-text {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .why-us-item.is-active .why-us-item-body {
    max-height: 340px;
  }

  .marquee-track {
    gap: 1rem;
    padding: 14px 0 15px;
  }

  .marquee-item--service,
  .marquee-item--meta {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .marquee-item--statement {
    font-size: clamp(1.05rem, 6vw, 1.28rem);
  }

  .marquee-item--proof {
    font-size: 0.9rem;
  }

  .marquee-sep {
    width: 1.75rem;
  }

  /* Process index — scale down further */
  .process-step-index {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  /* Ensure full-width buttons */
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer single column comfortable */
  .site-footer {
    padding: 40px 5vw 24px;
  }
}

/* ════════════════════════════════════════
   THREE-ZONE TONAL SYSTEM
   Zone A — Charcoal (#363534) : base, most sections
   Zone B — Ink (#1a1918)      : cinematic gravity wells
   Zone C — Parchment (#ede8df): editorial daylight rooms
   ════════════════════════════════════════ */

/* ── Zone B · Ink — Approach (quote block) ── */
.approach {
  background: linear-gradient(180deg, #23211f 0%, #1a1918 100%);
}

/* ── Zone B · Ink — Final CTA (closing weight) ── */
.final-cta {
  background: #1a1918;
}

/* ── Zone A · Charcoal — Sample Package ── */
.sample { background: #363534; }

/* ── Zone C · Parchment — Process steps ── */
.process {
  background: #ede8df;
}
.process .section-label {
  color: rgba(42, 41, 39, 0.58);
}
.process .process-heading {
  color: #1e1c1b;
}
.process-header {
  border-bottom-color: rgba(42, 41, 39, 0.1);
}
.process-steps {
  border-top-color: transparent;
}
.process .process-step {
  border-bottom-color: rgba(42, 41, 39, 0.1);
}
.process .process-step:hover {
  transform: translateY(-2px);
}
.process .process-step-index {
  color: rgba(42, 41, 39, 0.12);
}
.process .process-step:hover .process-step-index {
  color: rgba(42, 41, 39, 0.18);
}
.process .process-step-title {
  color: #1e1c1b;
}
.process .process-step-desc {
  color: rgba(42, 41, 39, 0.72);
}
.process .process-step-time {
  color: rgba(42, 41, 39, 0.46);
}

/* ── Zone C · Parchment — Why Us ── */
.why-us .section-label { color: rgba(42, 41, 39, 0.56); }
.why-us .why-us-header .section-label { color: rgba(30, 28, 27, 0.78); }
.why-us .why-us-heading { color: #1e1c1b; }
.why-us .why-us-trigger-title { color: rgba(30, 28, 27, 0.82); }
.why-us .why-us-item-text { color: rgba(42, 41, 39, 0.72); }

/* ── Zone B · Ink — Projects / Work Gallery ── */
.projects { background: #1a1918; }
.projects .section-label { color: rgba(245, 240, 232, 0.76); }

.studio-approach .section-label,
.team-atlas .section-label,
.contact .section-label {
  color: rgba(245, 240, 232, 0.76);
}

/* ── Services Rework ── */
.services-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 251, 245, 0.84), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(244, 235, 221, 0.56), transparent 30%),
    linear-gradient(180deg, #ebe2d7 0%, #e1d5c8 100%);
  padding: 0;
  overflow: hidden;
  color: #211d1a;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(48, 41, 35, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(48, 41, 35, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.26), transparent 34%);
  background-size: 46px 46px, 46px 46px, auto;
  opacity: 0.5;
  pointer-events: none;
}

.services-shell {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 88px 5vw 104px;
}

.services-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%);
  opacity: 0.78;
  pointer-events: none;
}

.services-section .section-label {
  color: rgba(44, 38, 34, 0.62);
}

.services-header {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
  max-width: min(34rem, 100%);
  padding-bottom: 0.75rem;
}

.services-header-main {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.services-heading {
  max-width: 8.2ch;
  text-align: left;
  font-size: clamp(3.2rem, 6vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #201c18;
}

.services-board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.12fr) minmax(0, 0.97fr);
  gap: clamp(1rem, 1.5vw, 1.45rem);
  margin-top: 2.45rem;
  align-items: end;
}

.service-board {
  position: relative;
  min-height: 548px;
  padding: 1.25rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.98) 0%, rgba(239, 230, 219, 0.98) 100%);
  color: #1e1c1b;
  border: 1px solid rgba(126, 108, 90, 0.18);
  border-radius: 26px;
  box-shadow: 0 24px 52px rgba(53, 43, 34, 0.14);
  overflow: hidden;
  transform: translateY(14px);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-board:hover {
  transform: translateY(6px);
  box-shadow: 0 28px 56px rgba(53, 43, 34, 0.18);
}

.service-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 35, 30, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 35, 30, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.26;
  pointer-events: none;
}

.service-board::after {
  content: attr(data-service);
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.6rem, 8.8vw, 8.2rem);
  line-height: 0.8;
  color: rgba(39, 32, 28, 0.07);
  pointer-events: none;
}

.service-board--featured {
  background:
    radial-gradient(circle at top left, rgba(201, 176, 133, 0.14), transparent 44%),
    linear-gradient(180deg, #312a24 0%, #231f1b 100%);
  color: #f5f0e8;
  min-height: 620px;
  transform: translateY(-6px);
  border-color: rgba(198, 172, 132, 0.22);
  box-shadow: 0 34px 88px rgba(33, 26, 21, 0.28);
}

.service-board--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 96px rgba(33, 26, 21, 0.32);
}

.service-board--featured::before {
  background-image:
    linear-gradient(rgba(240, 224, 198, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 224, 198, 0.045) 1px, transparent 1px);
  opacity: 0.3;
}

.service-board--featured::after {
  color: rgba(245, 240, 232, 0.08);
  bottom: 1rem;
}

.service-board-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: baseline;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(53, 43, 34, 0.14);
}

.service-board--featured .service-board-top {
  border-bottom-color: rgba(245, 240, 232, 0.11);
}

.service-board-index {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: rgba(49, 40, 34, 0.46);
}

.service-board--featured .service-board-index {
  color: rgba(245, 240, 232, 0.48);
}

.service-board-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.38rem, 1.95vw, 1.92rem);
  letter-spacing: -0.015em;
  line-height: 1.06;
  color: #1e1c1b;
  margin: 0;
}

.service-board--featured .service-board-title {
  color: #f7f1e7;
}

.service-board-pull {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 2.25vw, 2.5rem);
  line-height: 0.97;
  letter-spacing: -0.028em;
  color: #221e1a;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.service-board--featured .service-board-pull {
  font-size: clamp(2.45rem, 3.15vw, 3.55rem);
  color: #f7f1e7;
  max-width: 11ch;
}

.service-board-body {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(45, 37, 31, 0.72);
}

.service-board--featured .service-board-body {
  max-width: 40ch;
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(245, 240, 232, 0.76);
}

.service-board-deliverables {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(53, 43, 34, 0.14);
}

.service-board--featured .service-board-deliverables {
  border-top-color: rgba(245, 240, 232, 0.12);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 0.95rem;
}

.service-board-deliverables li {
  position: relative;
  margin: 0;
  padding-left: 2.25rem;
  font-size: 0.79rem;
  line-height: 1.42;
  letter-spacing: 0.02em;
  color: rgba(45, 37, 31, 0.72);
}

.service-board-deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(112, 139, 99, 0.68);
  color: #708b63;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.service-board--featured .service-board-deliverables li {
  color: rgba(245, 240, 232, 0.76);
}

.service-board--featured .service-board-deliverables li::before {
  border-color: rgba(203, 182, 143, 0.66);
  color: #d1b78d;
}

@media (max-width: 1200px) {
  .services-shell {
    padding: 84px 6vw 94px;
  }

  .services-header {
    gap: 1rem;
    padding-bottom: 0.8rem;
  }

  .services-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 2.15rem;
  }

  .service-board--featured {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .service-board,
  .service-board--featured {
    transform: none;
  }

  .service-board:hover,
  .service-board--featured:hover {
    transform: translateY(-6px);
  }

  .service-board-pull {
    max-width: 13ch;
  }

  .service-board--featured .service-board-pull {
    max-width: 12ch;
  }
}

@media (max-width: 820px) {
  .services-shell {
    padding: 72px 5vw 84px;
  }

  .services-heading {
    max-width: 6.8ch;
    font-size: clamp(2.7rem, 11vw, 4.65rem);
  }

  .services-board-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-board--featured {
    order: -1;
    min-height: 0;
  }

  .service-board {
    min-height: 0;
  }

  .service-board,
  .service-board--featured {
    padding: 1.28rem 1.12rem 1.16rem;
  }

  .service-board-top {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
  }

  .service-board-title {
    font-size: clamp(1.26rem, 5.4vw, 1.65rem);
  }

  .service-board-pull,
  .service-board--featured .service-board-pull {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.97;
  }

  .service-board-body,
  .service-board--featured .service-board-body {
    max-width: none;
    font-size: 0.95rem;
  }

  .service-board--featured .service-board-deliverables {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .service-board::after {
    display: none;
  }
}

/* ── Sample Package · Lead Capture + Evidence ── */
.sample {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 240, 232, 0.08), transparent 34%),
    linear-gradient(180deg, #3b3a39 0%, #363534 100%);
  padding: clamp(76px, 8vw, 116px) 8vw;
  overflow: hidden;
}

.sample::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(245, 240, 232, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 240, 232, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 48%, transparent 100%);
  opacity: 0.45;
  pointer-events: none;
}

.sample-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 5.5vw, 88px);
  align-items: start;
}

.sample-copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 500px;
  padding-top: 0.35rem;
}

.sample .section-label {
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 0;
}

.sample-heading {
  max-width: 8.1ch;
  font-size: clamp(2.7rem, 4.2vw, 4.55rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.sample-subline {
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.88;
  color: rgba(245, 240, 232, 0.8);
}

.sample-includes {
  margin-top: clamp(34px, 6.2vw, 86px);
  width: min(360px, 100%);
  display: grid;
  gap: 1.3rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
}

.sample-includes-label {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.52);
}

.sample-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border: 0;
}

.sample-feature-row {
  gap: 0.95rem;
  padding: 0;
  border: 0;
  align-items: center;
  font-family: var(--font-brand);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(245, 240, 232, 0.92);
  line-height: 1.5;
}

.sample-feature-check {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(112, 168, 92, 0.45);
  background: rgba(112, 168, 92, 0.12);
}

.sample-feature-check::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 7px;
  height: 13px;
  border: solid #74b35f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sample-footnote {
  margin: auto 0 0;
  padding-top: clamp(34px, 6vw, 72px);
  font-size: 0.76rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.42);
}

.sample-request {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.4rem;
}

.sample-request-head {
  position: relative;
  display: block;
  align-items: start;
  padding: 1.35rem 0 1.65rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.sample-request-copy {
  max-width: min(56rem, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.sample-gate-form {
  margin-top: 0;
}

.sample-gate-card {
  display: grid;
  gap: 1.3rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.sample-gate-card.is-submitted .sample-gate-grid,
.sample-gate-card.is-submitted .sample-gate-actions,
.sample-gate-card.is-submitted .sample-gate-protocol {
  display: none;
}

.sample-gate-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.62);
}

.sample-gate-text {
  font-family: "Cormorant Garamond", serif;
  display: block;
  align-self: stretch;
  width: 100%;
  max-width: 34rem;
  font-size: clamp(1.56rem, 1.82vw, 2.12rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(245, 240, 232, 0.96);
  margin: 0;
  text-wrap: pretty;
}

.sample-gate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.sample-gate-field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.sample-gate-field--full {
  grid-column: 1 / -1;
}

.sample-gate-field label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.66);
}

.sample-gate-field--services {
  gap: 0;
}

.sample-service-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.9rem;
}

.sample-service-legend {
  padding: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.66);
}

.sample-service-help {
  margin: -0.1rem 0 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.5);
}

.sample-service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.sample-service-chip {
  position: relative;
  display: block;
  cursor: pointer;
}

.sample-service-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sample-service-chip span {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  min-height: 64px;
  width: 100%;
  gap: 0.9rem;
  padding: 0.95rem 1.05rem 0.95rem 1rem;
  border: 1px solid rgba(245, 240, 232, 0.16);
  background: rgba(245, 240, 232, 0.03);
  color: rgba(245, 240, 232, 0.82);
  font-family: var(--font-brand);
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.sample-service-chip span::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.32);
  background: rgba(245, 240, 232, 0.02);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sample-service-chip span::after {
  content: "";
  position: absolute;
  left: 1.48rem;
  top: 50%;
  width: 6px;
  height: 11px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: translateY(-58%) rotate(45deg);
  opacity: 0;
  transition: opacity 180ms ease;
}

.sample-service-chip:hover span {
  border-color: rgba(245, 240, 232, 0.28);
  background: rgba(245, 240, 232, 0.06);
  transform: translateY(-1px);
}

.sample-service-chip input:focus-visible + span {
  outline: 1px solid rgba(237, 232, 223, 0.72);
  outline-offset: 2px;
}

.sample-service-chip input:checked + span {
  border-color: rgba(237, 232, 223, 0.48);
  background: rgba(237, 232, 223, 0.14);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px rgba(237, 232, 223, 0.12);
}

.sample-service-chip input:checked + span::before {
  border-color: rgba(237, 232, 223, 0.62);
  background: rgba(237, 232, 223, 0.2);
}

.sample-service-chip input:checked + span::after {
  border-color: #f5f0e8;
  opacity: 1;
}

.sample-service-chip--muted span {
  color: rgba(245, 240, 232, 0.74);
}

.sample-service-error {
  min-height: 1.2rem;
  margin: -0.1rem 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #f0c0b6;
}

.sample-gate-field input,
.sample-gate-field textarea {
  width: 100%;
  min-height: 78px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(245, 240, 232, 0.16);
  background: rgba(245, 240, 232, 0.02);
  color: var(--color-text);
  font-family: var(--font-brand);
  font-size: 1rem;
  transition: border-color 250ms ease, background 250ms ease, transform 250ms ease;
}

.sample-gate-field textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.65;
}

.sample-gate-field select {
  width: 100%;
  min-height: 78px;
  padding: 1.1rem 3rem 1.1rem 1.2rem;
  border: 1px solid rgba(245, 240, 232, 0.16);
  background: rgba(245, 240, 232, 0.02);
  color: rgba(245, 240, 232, 0.44);
  font-family: var(--font-brand);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23d8d0c4' stroke-width='1.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: border-color 250ms ease, background 250ms ease, transform 250ms ease, color 250ms ease;
}

.sample-gate-field select:valid {
  color: var(--color-text);
}

.sample-gate-field select option {
  background: var(--color-surface);
  color: var(--color-text);
}

.sample-gate-field input::placeholder,
.sample-gate-field textarea::placeholder {
  color: rgba(245, 240, 232, 0.42);
}

.sample-gate-field input:focus,
.sample-gate-field select:focus,
.sample-gate-field textarea:focus {
  outline: none;
  border-color: rgba(245, 240, 232, 0.4);
  background: rgba(245, 240, 232, 0.06);
  transform: translateY(-1px);
}

.sample-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.sample-cta {
  width: 100%;
  min-height: 62px;
  justify-content: center;
  background: #ede8df;
  color: #1e1c1b;
  border: 1px solid #ede8df;
}

.sample-cta:hover {
  background: #ddd3c3;
  border-color: #ddd3c3;
  color: #1e1c1b;
  transform: translateY(-1px);
}

.sample-gate-protocol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 1.9vw, 2rem);
  padding-top: 1.45rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.sample-gate-protocol-item {
  display: grid;
  gap: 1rem;
  align-content: start;
  position: relative;
  min-height: 0;
  padding: 0;
  transition: transform 260ms ease;
}

.sample-gate-protocol-item:not(:first-child) {
  padding-left: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 1px solid rgba(245, 240, 232, 0.1);
}

.sample-gate-protocol-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.46);
}

.sample-gate-protocol-step::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 240, 232, 0.2), rgba(245, 240, 232, 0));
  transform-origin: left center;
  transition: background 260ms ease;
}

.sample-gate-protocol-item p {
  margin: 0;
  max-width: 23ch;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(245, 240, 232, 0.72);
  text-wrap: pretty;
  transition: color 260ms ease, transform 260ms ease;
}

.sample-gate-protocol-item:hover,
.sample-gate-protocol-item:focus-within {
  transform: translateY(-2px);
}

.sample-gate-protocol-item:hover .sample-gate-protocol-step::after,
.sample-gate-protocol-item:focus-within .sample-gate-protocol-step::after {
  background: linear-gradient(90deg, rgba(245, 240, 232, 0.38), rgba(245, 240, 232, 0.04));
}

.sample-gate-protocol-item:hover p,
.sample-gate-protocol-item:focus-within p {
  color: rgba(245, 240, 232, 0.88);
  transform: translateY(-1px);
}

.sample-gate-error {
  display: none;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #f0c0b6;
}

.sample-gate-card.is-error .sample-gate-error {
  display: block;
}

@media (max-width: 1120px) {
  .sample-shell {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .sample-copy,
  .sample-request {
    max-width: 820px;
  }

  .sample-request-head {
    max-width: 820px;
  }

  .sample-request-copy {
    max-width: min(44rem, 100%);
  }
}

@media (max-width: 768px) {
  .section-label {
    font-size: 0.96rem;
    letter-spacing: 0.14em;
  }

  .projects {
    padding-top: 28px;
  }

  .sample {
    padding: 72px 6vw;
  }

  .sample-shell {
    gap: 2rem;
  }

  .sample-heading {
    max-width: 8.2ch;
    font-size: clamp(2.4rem, 11vw, 3.9rem);
  }

  .sample-subline {
    max-width: none;
  }

  .sample-includes {
    width: 100%;
    margin-top: 2rem;
    padding-top: 1.45rem;
  }

  .sample-request {
    gap: 1.35rem;
  }

  .sample-request-head {
    padding: 1.3rem 0 1.35rem;
  }

  .sample-request-copy {
    max-width: 100%;
  }

  .sample-gate-text {
    width: 100%;
    max-width: 20rem;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.06;
  }

  .sample-gate-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .sample-gate-protocol {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.3rem;
  }

  .sample-gate-protocol-item {
    min-height: 0;
    padding: 0;
  }

  .sample-gate-protocol-item:not(:first-child) {
    padding-left: 0;
    padding-top: 1rem;
    border-left: 0;
    border-top: 1px solid rgba(245, 240, 232, 0.08);
  }

  .sample-gate-protocol-item p {
    max-width: none;
    font-size: 0.95rem;
  }

  .sample-service-options {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .sample-service-chip span {
    min-height: 58px;
    font-size: 0.92rem;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 0.82rem;
  }

  .sample-gate-field input,
  .sample-gate-field select,
  .sample-gate-field textarea {
    min-height: 64px;
    padding: 1rem 1rem;
  }

  .sample-gate-field select {
    padding-right: 2.8rem;
  }

  .sample-gate-field textarea {
    min-height: 112px;
  }

  .sample-feature-row {
    font-size: 0.94rem;
  }

  .sample-footnote {
    padding-top: 1.75rem;
    font-size: 0.72rem;
    line-height: 1.8;
  }

  .sample-cta {
    width: 100%;
  }
}

/* ── Work Editorial Reframe ── */
.projects {
  padding: clamp(2rem, 4vw, 3rem) 0 0;
}

/* ── Work Selector / Viewer Rewrite ── */
.work-curation-section {
  padding: clamp(0.9rem, 1.8vw, 1.45rem);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #262320 0%, #141311 18%, #12110f 100%);
  overflow: clip;
}

.work-curation-shell {
  width: min(100%, 118rem);
  margin: 0 auto;
  display: grid;
  gap: clamp(0.95rem, 1.5vw, 1.35rem);
}

.work-selector-header {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.work-selector-header-main {
  display: grid;
  justify-items: center;
  gap: 0.22rem;
}

.work-selector-header .section-label {
  margin: 0;
}

.work-selector-heading {
  font-size: clamp(3rem, 6vw, 5.15rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #f3ede4;
}

.work-selector-intro {
  max-width: 31rem;
  font-size: 0.95rem;
  line-height: 1.62;
  color: rgba(243, 237, 228, 0.76);
}

.work-selector-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.work-selector-filter {
  position: relative;
  overflow: hidden;
  padding: 0.56rem 0.92rem;
  border: 1px solid rgba(243, 237, 228, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(18, 17, 15, 0.18);
  color: rgba(243, 237, 228, 0.72);
  font-family: var(--font-brand);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.work-selector-filter:hover,
.work-selector-filter:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(243, 237, 228, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(18, 17, 15, 0.24);
  color: rgba(243, 237, 228, 0.9);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.work-selector-filter.is-active {
  border-color: rgba(243, 237, 228, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(243, 237, 228, 0.09);
  color: #f3ede4;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.work-selector-stage {
  position: relative;
  padding-inline: 0;
  min-width: 0;
}

.work-selector-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: clamp(0.16rem, 0.38vw, 0.34rem);
  min-width: 0;
  min-height: clamp(29rem, 67svh, 43rem);
}

.work-selector-arrow,
.work-viewer-nav,
.work-viewer-close {
  position: relative;
  overflow: hidden;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(243, 237, 228, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(14, 13, 12, 0.28);
  color: #f3ede4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.work-viewer-close {
  position: absolute;
  top: clamp(1rem, 2.4vw, 1.5rem);
  right: clamp(1rem, 2.2vw, 2rem);
  z-index: 4;
  width: 4rem;
  height: 4rem;
  border-color: rgba(243, 237, 228, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(14, 13, 12, 0.34);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.work-viewer-close::before {
  content: "";
  position: absolute;
  inset: 0.28rem;
  border-radius: inherit;
  border: 1px solid rgba(243, 237, 228, 0.07);
  pointer-events: none;
}

.work-selector-arrow {
  display: none !important;
}

.work-viewer-nav:hover,
.work-viewer-nav:focus-visible,
.work-viewer-close:hover,
.work-viewer-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(243, 237, 228, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(18, 17, 15, 0.32);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.work-viewer-close:hover,
.work-viewer-close:focus-visible {
  border-color: rgba(243, 237, 228, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(18, 17, 15, 0.38);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.work-selector-arrow span,
.work-viewer-nav span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.work-viewer-close .work-viewer-close-glyph {
  position: relative;
  z-index: 1;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px !important;
  font-weight: 300;
  line-height: 1 !important;
  color: rgba(243, 237, 228, 0.88);
  text-shadow: 0 0 8px rgba(243, 237, 228, 0.05);
  transform: translateY(-0.04rem);
}

.work-viewer-nav:disabled,
.work-viewer-nav.is-disabled {
  opacity: 0.34;
  cursor: default;
  pointer-events: none;
  transform: none;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.work-project-card {
  position: relative;
  flex: 1 1 0;
  min-width: clamp(4.5rem, 4vw, 5.25rem);
  min-height: clamp(29rem, 67svh, 43rem);
  padding: 0;
  border: 1px solid rgba(243, 237, 228, 0.08);
  background: #0f0e0d;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  opacity: 0;
  transform: translateX(-22px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    flex-grow 1120ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1120ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    box-shadow 1120ms cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  touch-action: auto;
}

.work-project-card > * {
  pointer-events: none;
}

.work-project-card.is-ready {
  opacity: 1;
  transform: translateX(0);
}

.work-project-card.is-active {
  flex-grow: 7.1;
  border-color: rgba(243, 237, 228, 0.22);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.34);
}

.work-project-card--residential.is-active {
  border-color: rgba(223, 191, 145, 0.28);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(223, 191, 145, 0.08);
}

.work-project-card--interior.is-active {
  border-color: rgba(183, 198, 210, 0.24);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(183, 198, 210, 0.08);
}

.work-project-card:focus-visible {
  outline: none;
  border-color: rgba(243, 237, 228, 0.32);
}

.work-project-card-media,
.work-project-card-shade {
  position: absolute;
  inset: 0;
}

.work-project-card-media {
  display: block;
  background: #0f0e0d;
}

.work-project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.11);
  filter: saturate(0.9) brightness(0.82);
  transition:
    transform 1360ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-project-card.is-active .work-project-card-media img {
  transform: scale(1.01);
  filter: saturate(1) brightness(1);
}

.work-project-card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.14) 26%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.08) 100%);
  opacity: 0.9;
  transition: opacity 1120ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-project-card.is-active .work-project-card-shade {
  opacity: 0.94;
}

.work-project-card-copy {
  position: absolute;
  inset: auto 0 1.15rem 0;
  z-index: 2;
  padding: 0 1.1rem;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 420ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-project-card-text {
  display: grid;
  gap: 0.3rem;
  width: min(28rem, calc(100% - 2.2rem));
  max-width: 100%;
  transition:
    opacity 420ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-project-card:not(.is-active) .work-project-card-copy,
.work-project-card:not(.is-active) .work-project-card-text {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.work-project-card-kicker,
.work-viewer-kicker,
.work-viewer-meta {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 237, 228, 0.68);
}

.work-project-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #f3ede4;
}

.work-project-card-summary {
  max-width: 22rem;
  font-size: 0.94rem;
  line-height: 1.58;
  color: rgba(243, 237, 228, 0.78);
}

body.work-viewer-open .site-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-120%);
}

.work-viewer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.work-viewer.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.work-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-viewer.is-open .work-viewer-backdrop {
  opacity: 1;
}

.work-viewer.is-gesture-dragging .work-viewer-backdrop,
.work-viewer.is-gesture-dragging .work-viewer-stage,
.work-viewer.is-gesture-dragging .work-viewer-overlay,
.work-viewer.is-gesture-dragging .work-viewer-slide {
  transition: none;
}

.work-viewer-stage {
  position: fixed;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  transition:
    top 860ms cubic-bezier(0.19, 1, 0.22, 1),
    left 860ms cubic-bezier(0.19, 1, 0.22, 1),
    width 860ms cubic-bezier(0.19, 1, 0.22, 1),
    height 860ms cubic-bezier(0.19, 1, 0.22, 1),
    border-radius 860ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 640ms ease,
    transform 280ms ease,
    opacity 280ms ease;
  will-change: top, left, width, height, border-radius, transform;
}

.work-viewer.is-open .work-viewer-stage {
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.56);
}

.work-viewer-media,
.work-viewer-overlay,
.work-viewer-slide {
  position: absolute;
  inset: 0;
}

.work-viewer-slide {
  margin: 0;
  opacity: 0;
  background: #0b0b0b;
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-viewer-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 2200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-viewer-slide.is-active {
  opacity: 1;
}

.work-viewer-slide.is-active img {
  transform: scale(1);
}

.work-viewer-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 20%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.26) 36%, rgba(0, 0, 0, 0.14) 100%);
  opacity: 0;
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-viewer.is-open .work-viewer-overlay {
  opacity: 1;
}

.work-viewer-topbar,
.work-viewer-copy,
.work-viewer-controls {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  padding-inline: clamp(1rem, 2.2vw, 2rem);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 420ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.work-viewer.is-open .work-viewer-topbar,
.work-viewer.is-open .work-viewer-copy,
.work-viewer.is-open .work-viewer-controls {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 220ms;
}

.work-viewer-topbar {
  top: 0;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: 1rem;
  padding-top: clamp(1rem, 2.4vw, 1.5rem);
  padding-right: clamp(5.4rem, 10vw, 6.5rem);
}

.work-viewer-brand {
  display: grid;
  gap: 0.55rem;
}

.work-viewer-close,
.work-viewer-buttons {
  pointer-events: auto;
}

.work-viewer-brand,
.work-viewer-kicker {
  display: none;
}

.work-viewer-copy {
  bottom: clamp(6rem, 12svh, 9rem);
  display: grid;
  gap: 0.85rem;
  width: min(100%, 34rem);
}

.work-viewer-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #f3ede4;
}

.work-viewer-description {
  max-width: 29rem;
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.68;
  color: rgba(243, 237, 228, 0.8);
}

.work-viewer-controls {
  bottom: clamp(1rem, 2.4vw, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.work-viewer-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.work-viewer-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(243, 237, 228, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(18, 17, 15, 0.18);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  font-family: var(--font-brand);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 237, 228, 0.74);
}

@media (hover: hover) and (pointer: fine) {
  .work-project-card:hover .work-project-card-media img {
    transform: scale(1.095);
    filter: saturate(0.92) brightness(0.84);
  }

  .work-project-card:hover .work-project-card-shade {
    opacity: 0.92;
  }
}

@media (max-width: 1100px) {
  .work-selector-header {
    gap: 0.7rem;
  }

  .work-selector-intro {
    max-width: 32rem;
  }
}

@media (max-width: 980px) {
  .work-curation-section {
    padding-inline: 0;
  }

  .work-curation-shell {
    gap: 1rem;
  }

  .work-selector-header {
    padding-inline: 1rem;
  }

  .work-selector-heading {
    font-size: clamp(2.9rem, 10vw, 5rem);
  }

  .work-selector-stage {
    padding-inline: 0;
  }

  .work-selector-arrow {
    display: none;
  }

  .work-selector-filters,
  .work-selector-track {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .work-selector-filters::-webkit-scrollbar,
  .work-selector-track::-webkit-scrollbar {
    display: none;
  }

  .work-selector-filter,
  .work-viewer-counter,
  .work-viewer-nav,
  .work-viewer-close {
    backdrop-filter: blur(10px) saturate(118%);
    -webkit-backdrop-filter: blur(10px) saturate(118%);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .work-selector-track {
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
    padding-inline: 4vw;
    scroll-padding-inline: 4vw;
    padding-bottom: 0.2rem;
    min-height: 27rem;
  }

  .work-project-card {
    flex: 0 0 92vw;
    min-height: 27rem;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 1;
    transform: none;
  }

  .work-project-card.is-active {
    flex-basis: 92vw;
  }

  .work-project-card-summary {
    max-width: 18rem;
  }

  .work-viewer-topbar,
  .work-viewer-copy,
  .work-viewer-controls {
    padding-left: calc(1rem + env(safe-area-inset-left));
    padding-right: calc(1rem + env(safe-area-inset-right));
  }

  .work-viewer-copy {
    width: min(100%, 24rem);
  }

  .work-viewer-title {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }
}

@media (max-width: 640px) {
  .work-curation-section {
    padding-top: 0.75rem;
  }

  .work-selector-header {
    justify-items: start;
    text-align: left;
    gap: 0.7rem;
    padding-inline: 6vw;
  }

  .work-selector-header-main {
    justify-items: start;
  }

  .work-selector-intro {
    font-size: 0.92rem;
    line-height: 1.62;
    max-width: 24rem;
  }

  .work-selector-filters {
    width: calc(100% + 12vw);
    margin-inline: -6vw;
    padding-inline: 6vw;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.46rem;
  }

  .work-selector-filter {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0.58rem 0.9rem;
    font-size: 0.58rem;
  }

  .work-project-card {
    flex-basis: 92vw;
    min-height: 24rem;
  }

  .work-project-card.is-active {
    flex-basis: 92vw;
  }

  .work-project-card-title {
    font-size: 1.34rem;
  }

  .work-project-card-copy {
    inset: auto 0 0.9rem 0;
    padding: 0 0.9rem;
  }

  .work-project-card-summary {
    max-width: 15rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .work-viewer-topbar {
    align-items: start;
    padding-top: calc(env(safe-area-inset-top) + 0.92rem);
    padding-right: calc(env(safe-area-inset-right) + 4.85rem);
  }

  .work-viewer-copy {
    bottom: calc(env(safe-area-inset-bottom) + 5.75rem);
    gap: 0.55rem;
    width: min(100%, 19rem);
  }

  .work-viewer-title {
    font-size: clamp(2.25rem, 10.8vw, 3.55rem);
  }

  .work-viewer-description {
    max-width: 18rem;
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .work-viewer-controls {
    bottom: calc(env(safe-area-inset-bottom) + 0.9rem);
    align-items: center;
  }

  .work-viewer-nav,
  .work-viewer-close {
    width: 3rem;
    height: 3rem;
  }

  .work-viewer-close {
    width: 3.45rem;
    height: 3.45rem;
    top: calc(env(safe-area-inset-top) + 0.9rem);
    right: calc(env(safe-area-inset-right) + 0.9rem);
  }

  .work-viewer-close .work-viewer-close-glyph {
    font-size: 23px !important;
  }

  .work-viewer-buttons {
    gap: 0.55rem;
  }

  .work-viewer-counter {
    min-width: 4.5rem;
    padding: 0.38rem 0.58rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 768px) {
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .team-atlas {
    padding-top: 40px;
    gap: 1.15rem;
  }

  .team-atlas-header {
    display: block;
  }

  .team-atlas-heading,
  .team-atlas-intro {
    max-width: none;
  }

  .team-atlas-current,
  .team-atlas-future {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .team-atlas-collaborators {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-top: 0.8rem;
  }

  .team-atlas-subhead {
    max-width: none;
    grid-column: auto;
  }

  .team-atlas-group-note {
    max-width: 34ch;
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .team-atlas-future {
    grid-column: auto;
  }

  .team-atlas-future > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: min(100%, calc(50% - 6px));
    justify-self: center;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-email-big,
  .whatsapp-btn {
    width: 100%;
  }

  .contact-email-big {
    word-break: break-word;
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form .btn {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 380px) {
  .team-atlas-current,
  .team-atlas-future {
    grid-template-columns: 1fr;
  }

  .team-atlas-future > :last-child:nth-child(odd) {
    max-width: none;
  }
}
