:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f1;
  --muted: rgba(245, 245, 241, 0.72);
  --muted-soft: rgba(245, 245, 241, 0.48);
  --accent: #d6d1c4;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --media-radius: 24px;
  --max-width: 1180px;
  --section-padding: 96px;
  --section-tight-padding: 64px;
  --section-gap: 16px;
  --body-line-height: 1.75;
  --heading-line-height: 1.04;
  --section-title-size: clamp(2.25rem, 5vw, 4rem);
  --body-size: 1.02rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.07), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(187, 176, 151, 0.1), transparent 18%),
    linear-gradient(180deg, #030303 0%, #050505 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.25;
}

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

.site-shell {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.nav a,
.footer a,
.eyebrow,
.campaign-tag {
  color: var(--muted-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.section {
  padding: var(--section-padding) 0;
}

.hero {
  min-height: calc(100vh - 96px);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
  padding-bottom: 8px;
}

.hero-media {
  position: relative;
  border-radius: var(--media-radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  pointer-events: none;
  border-radius: 44px;
  background:
    radial-gradient(circle at 28% 34%, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 72% 68%, rgba(214, 209, 196, 0.1), transparent 38%);
  filter: blur(26px);
  opacity: 0.8;
}

.hero-media:not(.hero-mark-panel) img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  border-radius: inherit;
}

.hero-mark-panel {
  min-height: 700px;
  padding: 0;
  background: #070707;
}

.hero-mark-panel .hero-mark-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center;
  transform: none;
  border-radius: inherit;
}

.hero-copy h1,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-weight: 700;
  line-height: var(--heading-line-height);
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 8.8vw, 7rem);
  line-height: var(--heading-line-height);
  margin-bottom: 38px;
}

.hero-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: var(--text);
  font-weight: 600;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.button-secondary {
  background: transparent;
}

.info-card p,
.statement p,
.why-card p {
  color: var(--muted);
  line-height: var(--body-line-height);
}

.statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement p {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section-heading {
  display: grid;
  gap: var(--section-gap);
  margin-bottom: 28px;
}

.section-heading h2,
.cta-section h2 {
  max-width: 11ch;
  font-size: var(--section-title-size);
}

.section-subtitle {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  line-height: var(--body-line-height);
  font-size: var(--body-size);
}

.gallery-section {
  padding-top: 64px;
  padding-bottom: var(--section-tight-padding);
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr) minmax(0, 1.1fr);
  grid-template-areas:
    "close-face close-face profile-side"
    "close-face close-face detail-pocket"
    "sitting-pose mid-shot offcenter-hero";
  gap: 16px;
  align-items: start;
  width: calc(100vw - 32px);
  margin-left: calc(50% - 50vw + 16px);
}

.gallery-tile {
  margin: 0;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: var(--bg-soft);
  position: relative;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-tile:hover img,
.gallery-tile:focus-within img {
  transform: scale(1.035);
}

.gallery-close-face {
  grid-area: close-face;
  min-height: 860px;
}

.gallery-profile-side {
  grid-area: profile-side;
  min-height: 443px;
}

.gallery-detail-pocket {
  grid-area: detail-pocket;
  min-height: 443px;
}

.gallery-sitting-pose {
  grid-area: sitting-pose;
  min-height: 420px;
}

.gallery-mid-shot {
  grid-area: mid-shot;
  min-height: 420px;
}

.gallery-offcenter-hero {
  grid-area: offcenter-hero;
  min-height: 420px;
}

.campaign-preview-section {
  padding-top: 120px;
  padding-bottom: 0;
}

.campaign-preview-stack {
  display: grid;
  gap: 112px;
}

.campaign-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.campaign-preview--media-left {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.campaign-preview-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.campaign-preview-copy h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.35rem, 4.6vw, 3.6rem);
}

.campaign-preview-subtitle {
  margin: 0;
  max-width: 30ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 245, 241, 0.72);
}

.campaign-preview-button {
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  margin-top: 8px;
}

.campaign-preview-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.campaign-preview-card {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.campaign-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-preview-card:hover img,
.campaign-preview-card:focus-within img {
  transform: scale(1.03);
}

.campaign-preview-card--velvet-primary img {
  object-position: center 22%;
}

.campaign-preview-card--velvet-secondary img {
  object-position: center 28%;
}

.campaign-preview-card--emerald-primary img {
  object-position: center 24%;
}

.campaign-preview-card--emerald-secondary img {
  object-position: center 42%;
}

.campaign-preview-card--valentino-primary img {
  object-position: center 30%;
}

.campaign-preview-card--valentino-secondary img {
  object-position: center 26%;
}

.campaign-preview--media-left .campaign-preview-copy {
  order: 1;
}

.campaign-preview--media-left .campaign-preview-media {
  order: 0;
}

.manifesto-section {
  padding-top: 108px;
  padding-bottom: 108px;
  text-align: center;
}

.manifesto-section h2 {
  max-width: 12ch;
  margin: 0 auto 24px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.manifesto-section p {
  margin: 0 auto;
  max-width: 28ch;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: var(--body-line-height);
  color: var(--muted);
}

.js .manifesto-section.reveal {
  transform: translateY(12px);
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.build-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.why-card,
.campaign-card,
.cta-section {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.info-card,
.why-card,
.campaign-card {
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.info-card,
.why-card {
  padding: 28px;
  border-radius: var(--media-radius);
}

.info-card h3,
.campaign-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

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

.campaign-worlds-section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.campaign-worlds-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.campaign-worlds-heading {
  justify-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.campaign-worlds-heading h2 {
  max-width: 9ch;
}

.campaign-worlds-heading .section-subtitle {
  max-width: 40ch;
  opacity: 0.7;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
}

.what-we-do-section {
  padding-top: var(--section-tight-padding);
  padding-bottom: var(--section-tight-padding);
}

.what-we-build {
  display: grid;
  gap: 60px;
  margin-top: 160px;
  margin-bottom: 160px;
}

.what-we-build::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 80px;
}

.what-we-do-heading {
  justify-items: center;
  text-align: center;
}

.what-we-build-heading {
  margin-bottom: 0;
}

.what-we-build-heading h2 {
  font-size: 48px;
  font-weight: 600;
  max-width: none;
  white-space: nowrap;
}

.what-we-build-heading .section-subtitle {
  font-size: 18px;
  opacity: 0.7;
  margin: 0 auto;
  text-align: center;
}

.what-we-do-heading h2 {
  max-width: 8ch;
}

.what-we-do-heading .section-subtitle {
  max-width: 38ch;
}

.what-we-do-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.what-we-build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.what-we-do-card {
  text-align: center;
  min-height: 100%;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}

.what-we-build-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.js .what-we-do-card {
  opacity: 0;
  transform: translateY(16px);
}

.js .what-we-do-section.is-visible .what-we-do-card {
  animation: service-card-reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .what-we-do-section.is-visible .what-we-do-card:nth-child(1) {
  animation-delay: 0ms;
}

.js .what-we-do-section.is-visible .what-we-do-card:nth-child(2) {
  animation-delay: 120ms;
}

.js .what-we-do-section.is-visible .what-we-do-card:nth-child(3) {
  animation-delay: 240ms;
}

.what-we-do-card:hover,
.what-we-do-card:focus-within {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 42px rgba(214, 209, 196, 0.08);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(255, 255, 255, 0.035));
}

.what-we-build-card:hover,
.what-we-build-card:focus-within {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 36px rgba(214, 209, 196, 0.06);
  background: rgba(255, 255, 255, 0.028);
}

.what-we-do-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.2;
}

.what-we-build-card h3 {
  font-size: 20px;
  font-weight: 500;
}

.what-we-do-card p {
  max-width: 24ch;
  margin: 0 auto;
}

.what-we-build-card p {
  font-size: 14px;
  opacity: 0.6;
}

.campaign-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--media-radius);
  overflow: hidden;
}

.campaign-card:hover,
.campaign-card:focus-within {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 44px rgba(214, 209, 196, 0.06);
}

.campaign-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-card:hover img,
.campaign-card:focus-within img {
  transform: scale(1.035);
}

.campaign-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.78) 100%);
  opacity: 0.68;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-card:hover::before,
.campaign-card:focus-within::before {
  opacity: 0.96;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 10%, rgba(0, 0, 0, 0.9) 100%);
}

.campaign-world-card {
  display: block;
  min-height: 500px;
  background: #090909;
  border-radius: 16px;
  cursor: pointer;
  transition:
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 400ms ease,
    box-shadow 400ms ease;
}

.campaign-world-card img {
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-world-card::before {
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.82) 100%);
  opacity: 0.74;
  transition: opacity 400ms ease, background 400ms ease;
}

.campaign-world-card:hover,
.campaign-world-card:focus-visible {
  transform: scale(1.028);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 56px rgba(214, 209, 196, 0.07);
  outline: none;
}

.campaign-world-card:hover img,
.campaign-world-card:focus-visible img {
  transform: scale(1.04);
}

.campaign-world-card:hover::before,
.campaign-world-card:focus-visible::before {
  opacity: 0.9;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 8%, rgba(0, 0, 0, 0.92) 100%);
}

.campaign-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
  pointer-events: none;
  display: grid;
  gap: 10px;
}

.campaign-overlay h3,
.campaign-link {
  margin: 0;
}

.campaign-world-card .campaign-overlay {
  inset: auto 28px 28px 28px;
  gap: 12px;
}

.campaign-world-card .campaign-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.campaign-world-copy {
  margin: 0;
  max-width: 24ch;
  font-size: 0.96rem;
  line-height: 1.5;
  color: rgba(245, 245, 241, 0.72);
}

.campaign-link {
  color: rgba(245, 245, 241, 0.86);
  font-size: 0.92rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-card:hover .campaign-link,
.campaign-card:focus-within .campaign-link {
  opacity: 1;
  transform: translateY(0);
}

.why-card {
  display: grid;
  gap: 12px;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 34px rgba(214, 209, 196, 0.05);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(255, 255, 255, 0.03));
}

.why-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--body-size);
  line-height: var(--body-line-height);
}

.cta-section {
  text-align: center;
  border-radius: var(--media-radius);
  padding: 72px 28px;
}

.cta-section h2 {
  max-width: 12ch;
  margin: 0 auto 28px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-name,
.footer-studio,
.footer-label,
.footer-note {
  margin: 0;
}

.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.18em;
}

.footer-studio,
.footer-note {
  color: var(--muted);
  line-height: var(--body-line-height);
}

.footer-label {
  color: var(--muted-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.footer-contact a {
  color: var(--text);
  line-height: 1.7;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes service-card-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 960px) {
  .hero,
  .campaign-grid,
  .what-we-do-grid,
  .build-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "close-face close-face"
      "profile-side detail-pocket"
      "sitting-pose mid-shot"
      "offcenter-hero offcenter-hero";
    width: calc(100vw - 24px);
    margin-left: calc(50% - 50vw + 12px);
  }

  .campaign-worlds-grid {
    gap: 24px;
  }

  .campaign-preview-stack {
    gap: 96px;
  }

  .campaign-preview,
  .campaign-preview--media-left {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-close-face,
  .gallery-offcenter-hero {
    min-height: 620px;
  }

  .gallery-profile-side,
  .gallery-detail-pocket,
  .gallery-sitting-pose,
  .gallery-mid-shot {
    min-height: 360px;
  }

  .campaign-preview-media {
    gap: 18px;
  }

  .campaign-preview-card {
    aspect-ratio: 1 / 1;
  }

  .nav {
    gap: 14px 18px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 4px;
  }

  .hero-media:not(.hero-mark-panel) img {
    min-height: 500px;
  }

  .hero-mark-panel {
    min-height: 500px;
  }

  .hero-mark-panel .hero-mark-image {
    min-height: 500px;
  }

  .section {
    padding: 72px 0;
  }

  .gallery-section,
  .manifesto-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

}

@media (max-width: 640px) {
  .campaign-worlds-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .what-we-build-grid {
    grid-template-columns: 1fr;
  }

  .campaign-preview-section {
    padding-top: 96px;
  }

  .campaign-preview-stack {
    gap: 80px;
  }

  .campaign-preview,
  .campaign-preview--media-left {
    gap: 28px;
  }

  .campaign-preview-copy,
  .campaign-preview--media-left .campaign-preview-copy {
    order: 0;
  }

  .campaign-preview-media,
  .campaign-preview--media-left .campaign-preview-media {
    order: 1;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .campaign-preview-card {
    aspect-ratio: 1 / 1;
  }

  .campaign-preview-copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .site-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .topbar {
    padding: 18px 0;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .info-card,
  .why-card,
  .cta-section {
    border-radius: 22px;
  }

  .gallery-layout {
    gap: 12px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "close-face"
      "profile-side"
      "detail-pocket"
      "sitting-pose"
      "mid-shot"
      "offcenter-hero";
    width: calc(100vw - 20px);
    margin-left: calc(50% - 50vw + 10px);
  }

  .gallery-close-face,
  .gallery-profile-side,
  .gallery-detail-pocket,
  .gallery-sitting-pose,
  .gallery-mid-shot,
  .gallery-offcenter-hero {
    min-height: 0;
  }

  .gallery-tile img {
    height: auto;
  }

  .hero-media:not(.hero-mark-panel) img {
    min-height: 420px;
  }

  .hero-mark-panel {
    min-height: 420px;
  }

  .hero-mark-panel .hero-mark-image {
    min-height: 420px;
  }

  .manifesto-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .campaign-card {
    min-height: 320px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .js .what-we-do-card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
