
:root {
  --bg: #fbfaf8;
  --ink: #101010;
  --muted: #626262;
  --soft: #8b8b8b;
  --line: #e8e3dc;
  --button: #64645f;
  --button-dark: #33332f;
  --max: 1480px;
  --gutter: clamp(24px, 3.9vw, 58px);
  --section-bottom: clamp(88px, 8vw, 120px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

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

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

main { display: block; }

.site-nav {
  height: 76px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-links a,
.brand {
  outline-offset: 6px;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-image {
  position: relative;
  aspect-ratio: 1920 / 856;
  overflow: hidden;
  background: #e7e2da;
}

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

.under-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 4vw, 56px) var(--gutter) clamp(76px, 7vw, 104px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.under-hero .serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.under-hero .small {
  max-width: 390px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-bottom);
}

.section-kicker {
  margin: 0 0 26px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1d1d1d;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 66px 46px;
}

.work-card {
  display: block;
  outline-offset: 8px;
}

.work-card.feature {
  grid-column: span 2;
}

.work-card .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  background: #e8e5df;
}

.work-card.feature .media {
  aspect-ratio: 2.35 / 1;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card h3 {
  margin: 18px 0 5px;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.045em;
}

.work-card.feature h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 76px);
  letter-spacing: -.065em;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.work-card:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.work-card:focus-visible h3,
.vp-card:focus-visible h2 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.showreel-link {
  display: block;
  position: relative;
  cursor: pointer;
  outline-offset: 8px;
}

.showreel-image {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  background: #e8e5df;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .88;
  transition: opacity .25s ease;
}

.showreel-link:hover .play-overlay,
.showreel-link:focus-visible .play-overlay {
  opacity: 1;
}

.play-circle {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(2px);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  height: 46px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 26px;
  border: 1px solid var(--button);
  color: var(--button-dark);
  background: transparent;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.button.primary {
  background: var(--button);
  border-color: var(--button);
  color: white;
}

.button:hover {
  background: var(--button-dark);
  border-color: var(--button-dark);
  color: white;
}

.video-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  display: none;
  background: #050505;
  align-items: center;
  justify-items: center;
  padding: 0;
  overflow: hidden;
}

.video-modal.open { display: grid; }

.modal-inner {
  position: relative;
  width: min(92vw, 1400px, calc(86dvh * 16 / 9));
  aspect-ratio: 16 / 9;
}

.modal-frame {
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
}

.modal-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.modal-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  right: 0;
  top: -34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  padding: 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  outline-offset: 5px;
  transition: color .2s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: #fff;
}

.vp-home {
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: 72px;
  align-items: center;
}

.vp-video {
  display: block;
  position: relative;
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  background: #e8e5df;
  outline-offset: 8px;
}

.vp-video video,
.vp-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-copy h2,
.contact-heading h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.vp-copy h2 {
  font-size: clamp(42px, 4vw, 68px);
  line-height: .96;
}

.vp-copy .label {
  margin: 28px 0 14px;
  color: var(--soft);
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 800;
}

.vp-copy .vp-subtitle {
  max-width: 410px;
  margin: 20px 0 34px;
  color: #4a4a4a;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.35;
}

.vp-copy .vp-statement {
  max-width: 430px;
  margin: 0 0 30px;
  color: #151515;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 2.7vw, 46px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.vp-copy .vp-note {
  max-width: 390px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.vp-copy p {
  max-width: 410px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.about {
  display: grid;
  grid-template-columns: .48fr 1fr;
  gap: 68px;
  align-items: center;
}

.portrait {
  position: relative;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8e5df;
}

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

.portrait .color {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}

.portrait:hover .color { opacity: 1; }

.about-copy p {
  max-width: 740px;
  margin: 0 0 22px;
  color: #404040;
  font-size: 18px;
  line-height: 1.55;
}

/* Work detail pages */
.work-page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(66px, 6vw, 92px) var(--gutter) clamp(38px, 4vw, 56px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--soft);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  outline-offset: 6px;
}

.back-link:hover,
.back:hover {
  color: var(--ink);
}

.work-page-title {
  display: grid;
  grid-template-columns: 1fr .48fr;
  gap: 70px;
  align-items: end;
}

.work-page-title h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(58px, 7vw, 112px);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 400;
}

.work-page-title p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.work-large {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(42px, 4.5vw, 64px);
}

.work-large .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  background: #e8e5df;
}

.work-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(88px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.work-gallery .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  background: #e8e5df;
}

.work-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact validated block */
.contact-section {
  background: #fbfaf8;
  color: #111;
  border-top: 1px solid #e8e4dd;
  border-bottom: 1px solid #e8e4dd;
}

.contact-inner {
  max-width: var(--max);
  min-height: 390px;
  margin: 0 auto;
  padding: clamp(82px, 7vw, 104px) var(--gutter) clamp(78px, 6.4vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  align-items: start;
}

.contact-kicker {
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .34em;
  color: #8d8d8d;
}

.contact-heading h2 {
  font-size: clamp(76px, 8vw, 122px);
  line-height: .88;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 4px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.contact-links a {
  width: max-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #5c5c5c;
  transition: color .25s ease, transform .25s ease;
}

.contact-links a:hover {
  color: #111;
  transform: translateX(2px);
}

.site-footer-line {
  max-width: var(--max);
  min-height: 110px;
  margin: 0 auto;
  padding: 38px var(--gutter);
  border-top: 1px solid #e8e4dd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .30em;
  color: #8a8a8a;
}

/* Visual Preparation */
.page-title-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 6.8vw, 104px) var(--gutter) clamp(58px, 5.4vw, 76px);
}

.page-title-block .kicker {
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-title-row {
  display: grid;
  grid-template-columns: 1.05fr .58fr;
  gap: 96px;
  align-items: end;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.page-title-row h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(62px, 7.2vw, 116px);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 400;
}

.page-intro p {
  max-width: 440px;
  margin: 0;
  color: #4e4e4e;
  font-size: 17px;
  line-height: 1.56;
}

.page-intro .buttons {
  margin-top: 20px;
  justify-content: flex-start;
}

.page-intro .button {
  height: 40px;
  width: auto;
  padding: 0 18px;
  border-color: #2f2f2c;
  color: #242421;
  font-size: 10px;
  letter-spacing: .13em;
}

.vp-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(88px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 28px;
}

.vp-card .media {
  aspect-ratio: 2.1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e5df;
}

.vp-card {
  display: block;
  outline-offset: 8px;
}

.vp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-card .num {
  margin-top: 15px;
  color: var(--soft);
  font-size: 10px;
  letter-spacing: .16em;
}

.vp-card h2 {
  margin: 7px 0 8px;
  min-height: 55px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.07;
  letter-spacing: -.035em;
}

.vp-card p {
  margin: 0;
  max-width: 270px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.case-page .back {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--soft);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  outline-offset: 6px;
}

.case-page h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 400;
}

.case-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 6.8vw, 104px) var(--gutter) clamp(48px, 4.8vw, 62px);
}

.case-subtitle {
  margin-top: 22px;
  color: #4e4e4e;
  font-size: 20px;
  line-height: 1.35;
}

.case-image {
  max-width: var(--max);
  margin: 0 auto 54px;
  padding: 0 var(--gutter);
}

.case-image .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #eee;
}

.case-image img,
.case-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-sequence {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 42px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr .9fr;
  gap: 28px;
}

.stage {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.stage-label {
  color: var(--soft);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}

.stage h3 {
  margin: 12px 0 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.035em;
}

.stage p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.case-method,
.case-visual-sequence,
.case-value-grid,
.production-gain {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.case-method {
  padding-bottom: clamp(54px, 5vw, 76px);
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.case-method h2,
.production-gain h2 {
  margin: 0;
  max-width: 860px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.case-method h2 {
  font-size: clamp(38px, 4.2vw, 72px);
  line-height: .98;
}

.case-method .stage-label {
  grid-row: 1 / span 2;
}

.case-method p,
.production-gain p {
  margin: 22px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.case-method p {
  grid-column: 2;
}

.case-visual-sequence {
  padding-bottom: clamp(70px, 6.5vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
}

.case-sequence-card .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  background: #e8e5df;
}

.case-sequence-card img,
.case-sequence-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-sequence-card h3 {
  margin: 12px 0 0;
  color: #2b2b2b;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-sequence-card p {
  margin: 7px 0 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.case-value-grid {
  padding-bottom: clamp(64px, 6vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.case-value {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.case-value h3 {
  margin: 16px 0 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.case-value p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.production-gain {
  padding-bottom: clamp(88px, 8vw, 120px);
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 4vw, 52px);
}

.production-gain h2 {
  margin-top: 14px;
  font-size: clamp(40px, 4.8vw, 82px);
  line-height: .95;
}

.case01-page .case-image {
  margin-bottom: clamp(42px, 4.5vw, 64px);
}

.case-play-button,
.case01-play-button {
  margin-top: 16px;
}

.case01-statement,
.case01-brief,
.case01-gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.case01-statement {
  padding-bottom: clamp(58px, 6vw, 88px);
}

.case01-statement h2 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 84px);
  line-height: .96;
  letter-spacing: -.06em;
}

.case01-brief {
  padding-bottom: clamp(78px, 7vw, 112px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.case01-brief article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.case01-brief p {
  max-width: 340px;
  margin: 18px 0 0;
  color: #242424;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.3;
}

.case01-gallery {
  padding-bottom: clamp(88px, 8vw, 120px);
}

.case01-gallery-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 3vw, 42px);
}

.case01-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
  align-items: start;
}

.case01-gallery-grid .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e8e5df;
}

.case01-gallery-grid img,
.case01-gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case01-gallery-grid .night-thumb img {
  filter: brightness(1.08) contrast(1.04);
}

.case01-gallery-grid h3 {
  margin: 11px 0 0;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.case02-process {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(78px, 7vw, 112px);
}

.case02-process-heading {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.case02-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  align-items: start;
}

.case02-process-grid .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e8e5df;
  margin-bottom: 15px;
}

.case02-process-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case02-process-grid h3 {
  margin: 12px 0 0;
  color: #202020;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(21px, 1.75vw, 29px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.case02-comparison {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 36px);
}

.case02-comparison .media {
  aspect-ratio: 2.1 / 1;
}

.case02-before-after {
  display: grid;
  gap: clamp(34px, 4vw, 56px);
}

.case02-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
  align-items: start;
}

.case02-pair article {
  min-width: 0;
}

.case02-pair .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e8e5df;
  margin-bottom: 15px;
}

.case02-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case02-pair h3 {
  margin: 12px 0 0;
  color: #202020;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.case03-page .case-image {
  margin-bottom: clamp(42px, 4.5vw, 64px);
}

.case03-statement,
.case03-brief,
.case03-process,
.case03-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.case03-statement {
  padding-bottom: clamp(58px, 6vw, 88px);
}

.case03-statement h2 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 84px);
  line-height: .96;
  letter-spacing: -.06em;
}

.case03-brief {
  padding-bottom: clamp(78px, 7vw, 112px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.case03-brief article,
.case03-bottom article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.case03-brief p,
.case03-bottom p {
  max-width: 380px;
  margin: 18px 0 0;
  color: #242424;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.32;
}

.case03-process {
  padding-bottom: clamp(78px, 7vw, 112px);
}

.case03-process-heading {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.case03-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  align-items: start;
}

.case03-process-grid .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e8e5df;
  margin-bottom: 15px;
}

.case03-process-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case03-process-grid h3 {
  margin: 12px 0 8px;
  color: #202020;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(21px, 1.75vw, 29px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.case03-process-grid p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.case03-bottom {
  padding-bottom: clamp(48px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.case-standard .case-image {
  margin-bottom: clamp(42px, 4.5vw, 64px);
}

.case-statement,
.case-brief,
.case-process,
.case-final-gain {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.case-statement {
  padding-bottom: clamp(58px, 6vw, 88px);
}

.case-statement h2 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 84px);
  line-height: .96;
  letter-spacing: -.06em;
}

.case-brief {
  padding-bottom: clamp(78px, 7vw, 112px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.case-brief article,
.case-final-gain {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.case-brief p {
  max-width: 380px;
  margin: 18px 0 0;
  color: #242424;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.32;
}

.case-process {
  padding-bottom: clamp(78px, 7vw, 112px);
}

.case-process-heading {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.case-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  align-items: start;
}

.case-process-grid .media {
  aspect-ratio: 2.1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e8e5df;
  margin-bottom: 15px;
}

.case-process-grid img,
.case-process-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-process-grid h3 {
  margin: 12px 0 8px;
  color: #202020;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(21px, 1.75vw, 29px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.case-process-grid p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.case-final-gain {
  padding-bottom: clamp(48px, 5vw, 70px);
}

.case-final-gain h2 {
  margin: 14px 0 0;
  max-width: 860px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 82px);
  line-height: .95;
  letter-spacing: -.055em;
}

.case-final-gain p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.case-download {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(88px, 8vw, 120px);
}

@media (max-width: 1060px) {
  .work-grid, .work-gallery, .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.feature { grid-column: span 2; }
  .vp-home, .about, .page-title-row, .under-hero, .work-page-title { grid-template-columns: 1fr; }
  .vp-home, .about, .page-title-row, .under-hero, .work-page-title { gap: 48px; }
  .case-sequence { grid-template-columns: 1fr; }
  .case-method, .case-value-grid { grid-template-columns: repeat(2, 1fr); }
  .case-visual-sequence { grid-template-columns: repeat(2, 1fr); }
  .case01-brief,
  .case01-gallery-grid,
  .case02-process-grid,
  .case03-brief,
  .case03-process-grid,
  .case-brief,
  .case-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-nav {
    height: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand { font-size: 14px; }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
    font-size: 10px;
  }

  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section, .under-hero, .page-title-block, .vp-grid, .case-hero, .case-image, .case-sequence, .case-method, .case-visual-sequence, .case-value-grid, .production-gain, .case-download, .case01-statement, .case01-brief, .case01-gallery, .case02-process, .case03-statement, .case03-brief, .case03-process, .case03-bottom, .case-statement, .case-brief, .case-process, .case-final-gain, .work-page-hero, .work-large, .work-gallery {
    padding-left: 24px;
    padding-right: 24px;
  }

  .work-grid, .work-gallery, .vp-grid { grid-template-columns: 1fr; }
  .work-card.feature { grid-column: span 1; }
  .case-method, .case-visual-sequence, .case-value-grid, .case01-brief, .case01-gallery-grid, .case02-process-grid, .case02-pair, .case03-brief, .case03-process-grid, .case03-bottom, .case-brief, .case-process-grid { grid-template-columns: 1fr; }
  .case-method .stage-label,
  .case-method p {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    row-gap: 54px;
    padding: 76px 28px 70px;
  }

  .site-footer-line {
    padding: 32px 28px;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    letter-spacing: .22em;
  }

  .button {
    min-width: min(100%, 190px);
  }
}


/* Ready V4 corrections */
.work-card .media, .showreel-image, .vp-video, .work-large .media, .work-gallery .media { border-radius: 0; }
.work-card img, .showreel-image img, .vp-card img, .work-gallery img, .work-large img { transition: transform .55s ease; }
.work-card:hover img, .vp-card:hover img { transform: scale(1.015); }
a:focus-visible, button:focus-visible { outline: 1px solid #111; outline-offset: 4px; }
.contact-links a:first-child { overflow-wrap: anywhere; }

@media (max-width: 720px) {
  .hero-image {
    aspect-ratio: 16 / 9;
  }

  .hero-image img {
    object-fit: cover;
    object-position: center center;
  }

  .under-hero { padding-top: 34px; padding-bottom: 72px; }
  .contact-links { font-size: clamp(22px, 7.5vw, 32px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .work-card:hover img,
  .vp-card:hover img {
    transform: none;
  }
}
