@font-face {
  font-family: Anton;
  src: url("assets/anton.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/roboto-condensed.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --color-background: #f7f6f3;
  --color-surface: #fff;
  --color-text-primary: #050505;
  --color-text-secondary: #b7b6b4;
  --color-accent: #f3131b;
  --color-border: #dddad6;
  --film-grain: url("assets/film-grain.png");
  --body: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --display: Anton, "Arial Narrow", Impact, sans-serif;
  --gutter: clamp(30px, 4.5vw, 86px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  isolation: isolate;
  margin: 0;
  background: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.4;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
  background-image: var(--film-grain);
  background-size: 192px 192px;
  background-position: var(--grain-position, 0 0);
}
body.modal-open {
  overflow: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 5px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button {
  border-radius: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.04;
}
h2 {
  font-size: clamp(32px, 3.1vw, 53px);
  letter-spacing: -0.025em;
}
h3 {
  font-size: 34px;
}
em {
  color: var(--color-accent);
  font-style: normal;
}
.page-shell {
  max-width: 1800px;
  margin: auto;
  padding: 0 var(--gutter);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.075em;
  font-weight: 700;
  text-transform: uppercase;
}
.wordmark {
  font-family: Arial, sans-serif;
  font-size: 35px;
  letter-spacing: -2px;
  font-weight: 900;
  line-height: 1;
}
.site-header {
  height: 105px;
  display: flex;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid var(--color-border);
}
.site-header nav {
  margin-left: auto;
  display: flex;
  gap: clamp(25px, 3.6vw, 68px);
}
.site-header nav a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.site-header nav a:hover,
.text-link:hover {
  color: var(--color-accent);
}
.button {
  border: 1px solid var(--color-text-primary);
  background: var(--color-text-primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 17px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 48px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.button span {
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 0.7;
}
.button:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.button-red {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.button-red:hover {
  background: var(--color-text-primary);
  border-color: var(--color-text-primary);
}
.text-link {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  background: none;
  border: 0;
  padding: 0;
  min-height: 38px;
}
.text-link span {
  font-size: 22px;
}
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  padding: 43px 0 65px;
  min-height: 625px;
  align-items: start;
}
.hero-copy {
  position: relative;
  z-index: 2;
  pointer-events: none;
  padding-top: 3px;
}
.hero-copy a {
  pointer-events: auto;
}
.hero-copy .eyebrow {
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(74px, 7.65vw, 132px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  position: relative;
  width: 135%;
  margin-bottom: 25px;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.ink-glow {
  position: relative;
  isolation: isolate;
}
.ink-glow::before {
  content: "";
  position: absolute;
  inset: 4% 0 -8% -5%;
  background: radial-gradient(
    ellipse at 32% 58%,
    #f3131bd9 0%,
    #f3131baa 26%,
    #f3131b55 46%,
    transparent 69%
  );
  filter: blur(15px);
  z-index: -2;
  transform: rotate(-6deg);
  transform-origin: 32% 58%;
  border-radius: 42% 58% 63% 37% / 54% 38% 62% 46%;
  animation: liquid-glow 26s ease-in-out -9s infinite;
  pointer-events: none;
}
/* Grain stays above the glows and below foreground content. */
.ink-glow::after,
.partnership::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--film-grain) repeat;
  background-size: 192px 192px;
  background-position: var(--grain-position, 0 0);
  opacity: 0.5;
  pointer-events: none;
}
.ink-glow::after {
  inset: -10% -5% -20% -10%;
  mask-image: radial-gradient(ellipse at 32% 58%, #000 26%, transparent 69%);
}
@keyframes liquid-glow {
  0%,
  100% {
    transform: translate(0, 0) rotate(-6deg) scale(1, 1);
    border-radius: 42% 58% 63% 37% / 54% 38% 62% 46%;
  }
  33% {
    transform: translate(1.5%, -3%) rotate(-3deg) skewX(5deg) scale(1.06, 0.91);
    border-radius: 58% 42% 44% 56% / 39% 61% 43% 57%;
  }
  67% {
    transform: translate(-1%, 4%) rotate(-8deg) skewX(-4deg) scale(0.96, 1.1);
    border-radius: 36% 64% 57% 43% / 62% 44% 56% 38%;
  }
}
.hero-description {
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  max-width: 450px;
}
.hero-copy > .text-link {
  margin-top: 20px;
}
.hero-image {
  border: 0;
  padding: 0;
  position: relative;
  height: 450px;
  width: 100%;
  background: #181816;
  color: #fff;
  overflow: hidden;
}
.hero-image img {
  object-position: 50% 30%;
  filter: brightness(0.7);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0006, transparent 45%);
}
.hero-image:hover img {
  filter: brightness(0.9);
}
.image-kicker {
  position: absolute;
  left: 24px;
  top: 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.play-label {
  position: absolute;
  bottom: 30px;
  right: 27px;
  display: flex;
  gap: 14px;
  align-items: center;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.15;
  z-index: 1;
}
.play-icon {
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 31px;
  font-family: Arial, sans-serif;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}
.registration-mark {
  position: absolute;
  font: 28px monospace;
  font-weight: 200;
  color: #888;
  right: -17px;
}
.mark-top {
  top: 25px;
}
.mark-bottom {
  bottom: 114px;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(165px, 19%) minmax(0, 1fr);
  gap: 25px;
}
.section-rail .eyebrow {
  margin-bottom: 18px;
}
.work {
  padding: 0 0 66px;
}
.work-filters {
  display: grid;
  gap: 8px;
  margin-top: 48px;
  justify-items: start;
}
.work-filters button {
  background: none;
  border: 0;
  font-size: 14px;
  min-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  display: flex;
  gap: 35px;
}
.work-filters button span {
  font-size: 12px;
  color: #777;
}
.work-filters .active,
.work-filters button:hover {
  color: var(--color-accent);
}
.rail-note {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 32px;
  color: #65635f;
}
.hand-arrow {
  display: block;
  color: var(--color-accent);
  font-size: 70px;
  font-family: cursive;
  line-height: 1.1;
  transform: rotate(-12deg);
  width: 70px;
  margin-top: 15px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  align-content: start;
}
.project-card {
  position: relative;
  aspect-ratio: 1.12;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #222;
  text-align: left;
  color: white;
}
.project-card[hidden] {
  display: none;
}
.project-card img {
  transition:
    transform 0.5s,
    filter 0.3s;
  filter: brightness(0.86);
}
.project-card:hover img {
  transform: scale(1.045);
  filter: brightness(1);
}
.project-card > span {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  justify-content: end;
  flex-direction: column;
  background: linear-gradient(transparent 45%, #000b);
  opacity: 0;
  transition: opacity 0.2s;
}
.project-card:hover > span,
.project-card:focus-visible > span {
  opacity: 1;
}
.project-card b {
  font-size: 24px;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
}
.project-card small {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 4px;
}
.project-card i {
  position: absolute;
  bottom: 20px;
  right: 18px;
  font: 28px Arial;
}
.alternate-crop {
  object-position: 75% 20%;
  transform: scale(1.4);
}
.project-card:hover .alternate-crop {
  transform: scale(1.46);
}
.ruled-section {
  border-top: 1px solid var(--color-border);
}
.partnership {
  padding: 65px 0 60px;
  position: relative;
  isolation: isolate;
}
.partnership::before {
  content: "";
  position: absolute;
  right: calc(-1 * var(--gutter));
  top: 90px;
  width: 170px;
  height: 380px;
  background: radial-gradient(ellipse at 100% 50%, #f3131b77, transparent 70%);
  filter: blur(15px);
  transform-origin: 100% 50%;
  border-radius: 58% 42% 38% 62% / 43% 56% 44% 57%;
  animation: liquid-edge-glow 34s ease-in-out -18s infinite;
  z-index: -2;
  pointer-events: none;
}
.partnership::after {
  right: calc(-1 * var(--gutter));
  top: 70px;
  width: 195px;
  height: 420px;
  mask-image: radial-gradient(ellipse at 100% 50%, #000, transparent 70%);
}
@keyframes liquid-edge-glow {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1, 1);
    border-radius: 58% 42% 38% 62% / 43% 56% 44% 57%;
  }
  36% {
    transform: translate(-3%, 2%) rotate(4deg) skewY(4deg) scale(1.12, 0.94);
    border-radius: 39% 61% 57% 43% / 59% 38% 62% 41%;
  }
  72% {
    transform: translate(2%, -2%) rotate(-3deg) skewY(-3deg) scale(0.94, 1.06);
    border-radius: 64% 36% 46% 54% / 37% 63% 41% 59%;
  }
}
.plans-intro {
  display: grid;
  grid-template-columns: 31% 38% 1fr;
  gap: 30px;
}
.plans-intro h2 {
  font-size: clamp(42px, 4vw, 64px);
}
.plans-intro .eyebrow {
  margin-bottom: 18px;
}
.scribble {
  position: relative;
  display: inline-block;
}
.scribble::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 85%;
  height: 9px;
  border-top: 2px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  transform: rotate(-8deg) skewX(-35deg);
  pointer-events: none;
}
.lead {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 1.28;
}
.plans-description {
  padding-top: 38px;
  max-width: 440px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 15px;
  font-size: 16px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 19px;
  line-height: 1;
}
.compact {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  gap: 7px;
  margin-top: 25px;
}
.side-note {
  align-self: end;
  justify-self: end;
  font-size: 16px;
  color: #72716d;
  text-align: right;
  padding: 0 20px 10px 0;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 92%;
  margin: 95px auto 70px;
}
.plan {
  position: relative;
  border: 1px solid #c9c6c1;
  padding: 34px 28px 25px;
  display: flex;
  flex-direction: column;
  min-height: 515px;
}
.plan h3 {
  font-size: clamp(38px, 3.6vw, 58px);
  letter-spacing: -0.025em;
}
.plan > p:not(.price) {
  margin-top: 12px;
  font-size: 17px;
}
.plan .price {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-top: 30px;
  letter-spacing: -1.5px;
}
.price span {
  font: 500 14px var(--body);
  letter-spacing: 0;
  margin-left: 3px;
}
.plan .button {
  margin-top: auto;
  width: 100%;
}
.plan .check-list {
  margin-bottom: 34px;
}
.recommended {
  border-color: var(--color-accent);
  transform: translateY(-13px);
  margin-bottom: -13px;
  padding-top: 47px;
}
.recommended h3 {
  color: var(--color-accent);
}
.recommended-label {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background: var(--color-accent);
  color: white;
  padding: 7px 18px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.process {
  padding-top: 15px;
}
.small-heading {
  font-size: 38px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-grid li {
  border-left: 1px solid #cbc8c2;
  padding-left: 18px;
  position: relative;
}
.step-number {
  font-family: var(--display);
  font-size: 18px;
  display: block;
  margin-bottom: 13px;
}
.process-grid img,
.process-visual {
  width: 100%;
  height: 125px;
  margin-bottom: 20px;
}
.process-grid h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 31px;
  margin-bottom: 12px;
}
.process-grid h3 span {
  font: 24px Arial;
  color: #777;
}
.process-grid p {
  font-size: 16px;
  line-height: 1.35;
}
.process-visual {
  background: #e9e5dc;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #37352f;
  overflow: hidden;
}
.plan-visual span:first-child {
  font: 24px var(--display);
  transform: rotate(-6deg);
}
.plan-visual span:nth-child(2) {
  font-style: italic;
  font-size: 13px;
}
.plan-visual span:last-child {
  font-size: 9px;
  border-top: 1px solid #999;
  padding-top: 5px;
}
.deliver-visual {
  background: #242321;
  color: #e0ddd4;
}
.deliver-visual span:first-child {
  font: 21px var(--display);
  line-height: 1.1;
}
.deliver-visual span:last-child {
  font-size: 10px;
  letter-spacing: 2px;
  color: #aaa;
}
.repeat-visual {
  justify-content: center;
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
  word-spacing: 4px;
}
.repeat-visual b {
  color: var(--color-accent);
  border: 1px solid;
  border-radius: 50%;
  padding: 3px;
}
.services {
  padding: 55px 0;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.service-card {
  height: 340px;
  position: relative;
  padding: 0;
  border: 0;
  text-align: left;
  background: #222;
  color: white;
  overflow: hidden;
}
.service-card img {
  filter: brightness(0.65);
  transition: transform 0.5s;
}
.service-card:hover img {
  transform: scale(1.04);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, #0009);
}
.service-copy {
  position: absolute;
  left: 25px;
  bottom: 28px;
  display: grid;
  z-index: 1;
}
.service-copy strong {
  font: 40px/1.1 var(--display);
  text-transform: uppercase;
}
.service-copy b {
  font-size: 21px;
  font-weight: 500;
  margin-top: 3px;
}
.service-copy small {
  font-size: 16px;
  max-width: 220px;
  margin-top: 12px;
  line-height: 1.25;
}
.service-arrow {
  position: absolute;
  right: 26px;
  bottom: 27px;
  font: 42px Arial;
  z-index: 1;
}
.cases {
  padding: 55px 0;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.case > img {
  height: 345px;
}
.case-number {
  display: block;
  font: 24px var(--display);
  color: var(--color-accent);
  margin-bottom: 18px;
}
.case h3 {
  font-size: 28px;
  margin-bottom: 9px;
}
.case-type {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 23px;
}
.case p:not(.case-type) {
  font-size: 15px;
  line-height: 1.4;
}
.concept-label {
  display: block;
  font-size: 12px;
  color: #6d6a65;
  line-height: 1.4;
  margin-top: 16px;
}
.case .text-link {
  margin-top: 17px;
}
.about {
  padding: 55px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 45px;
  align-items: center;
}
.about-grid > img {
  height: 350px;
}
.about-grid .lead {
  margin-bottom: 25px;
}
.about-grid p:not(.lead) {
  max-width: 360px;
  font-size: 17px;
}
.about-grid .text-link {
  margin-top: 24px;
}
.studio-note {
  display: grid;
  grid-template-columns: 70px 1fr 225px;
  gap: 30px;
  padding: 42px 20px;
  align-items: center;
}
.quote-mark {
  font: bold 110px/0.8 Arial;
  color: var(--color-accent);
  align-self: start;
  padding-top: 10px;
}
.studio-note p {
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.3;
}
.studio-note .eyebrow {
  display: block;
  color: var(--color-accent);
  margin-top: 18px;
}
.studio-note img {
  height: 145px;
  filter: grayscale(1);
  object-position: 50% 25%;
}
.faq {
  padding: 42px 0 50px;
}
.faq-list details {
  border-bottom: 1px solid #c8c5bf;
}
.faq-list details:first-child {
  border-top: 1px solid #c8c5bf;
}
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font: 24px Arial;
  transition: transform 0.2s;
}
.faq details[open] summary span {
  transform: rotate(45deg);
  color: var(--color-accent);
}
.faq details p {
  max-width: 760px;
  padding: 0 35px 22px 0;
  color: #514e48;
  font-size: 17px;
}
.closing {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 65px;
  padding: 45px 0 65px;
  isolation: isolate;
}
.closing h2 {
  font-size: clamp(48px, 5.3vw, 84px);
  letter-spacing: -0.035em;
}
.closing p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 28px;
}
.closing .button {
  min-width: 250px;
}
.closing .ink-glow::before {
  inset: -5% 12% -2% -8%;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--color-border);
  min-height: 110px;
}
.site-footer > span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.site-footer > span:last-child {
  text-align: right;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: #fff;
  padding: 15px;
}
.skip-link:focus {
  top: 10px;
}
dialog {
  padding: 0;
  border: 0;
  background: var(--color-background);
  color: var(--color-text-primary);
  max-height: 90vh;
  max-height: 90dvh;
  overflow: auto;
  box-shadow: 0 25px 100px #0005;
}
dialog::backdrop {
  background: #050505b8;
  backdrop-filter: blur(6px);
}
.close-dialog {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--color-background);
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  font: 30px Arial;
  z-index: 2;
}
.project-dialog {
  width: min(1080px, 92vw);
}
.project-dialog[open] {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}
.project-dialog > img {
  min-height: 550px;
  max-height: 75vh;
}
.project-details {
  padding: 75px 35px 40px;
  align-self: center;
}
.project-details h2 {
  font-size: 52px;
  margin: 15px 0 25px;
}
.project-details > p:not(.eyebrow):not(.concept-label) {
  font-size: 20px;
}
.project-details .button {
  margin-top: 30px;
}
.inquiry-dialog {
  width: min(650px, 92vw);
  padding: 40px;
}
.inquiry-dialog h2 {
  font-size: 50px;
  margin: 20px 0 28px;
}
.inquiry-dialog form {
  display: grid;
  gap: 17px;
}
.inquiry-dialog label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.inquiry-dialog input,
.inquiry-dialog textarea,
.inquiry-dialog select {
  width: 100%;
  background: transparent;
  border: 1px solid #bbb7b0;
  padding: 12px;
  color: var(--color-text-primary);
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
}
.inquiry-dialog textarea {
  resize: vertical;
}
.form-note,
.form-status {
  font-size: 14px;
  line-height: 1.4;
  color: #605c55;
}
.form-status:empty {
  display: none;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 735px;
  }
  .hero-image {
    height: 540px;
  }
  .mark-bottom {
    bottom: 134px;
  }
  .project-card {
    aspect-ratio: 1.16;
  }
  .plan {
    min-height: 550px;
  }
  .service-card {
    height: 400px;
  }
  .case > img {
    height: 400px;
  }
  .about-grid > img {
    height: 400px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 25px;
  }
  .site-header nav {
    gap: 23px;
  }
  .hero {
    min-height: 530px;
  }
  .hero-image {
    height: 375px;
  }
  .hero h1 {
    font-size: 7.8vw;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
  }
  .section-grid {
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 20px;
  }
  .plans-grid {
    width: 100%;
    gap: 13px;
  }
  .plan {
    padding-left: 21px;
    padding-right: 21px;
  }
  .check-list {
    font-size: 14px;
  }
  .case-grid {
    gap: 23px;
  }
  .case {
    gap: 14px;
    grid-template-columns: 0.9fr 1fr;
  }
  .case h3 {
    font-size: 23px;
  }
  .case > img {
    height: 355px;
  }
  .process-grid {
    gap: 15px;
  }
  .process-grid li {
    padding-left: 12px;
  }
  .process-visual {
    padding: 10px;
  }
  .about-grid {
    gap: 30px;
  }
  .studio-note {
    grid-template-columns: 55px 1fr 180px;
  }
  .closing {
    gap: 40px;
  }
  .service-copy strong {
    font-size: 34px;
  }
  .side-note {
    display: none;
  }
}
@media (max-width: 800px) {
  :root {
    --gutter: 24px;
  }
  .site-header {
    height: 86px;
  }
  .wordmark {
    font-size: 30px;
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header nav a {
    font-size: 12px;
  }
  .site-header > .button {
    font-size: 12px;
    padding: 11px;
    gap: 12px;
  }
  .hero {
    min-height: 470px;
    padding-top: 32px;
  }
  .hero h1 {
    font-size: 8vw;
  }
  .hero-image {
    height: 330px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
  }
  .image-kicker {
    display: none;
  }
  .section-grid {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 18px;
  }
  h2 {
    font-size: 30px;
  }
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .work-filters {
    margin-top: 30px;
  }
  .plans-intro {
    grid-template-columns: 1fr 1.4fr;
    gap: 35px;
  }
  .plans-description {
    padding-top: 30px;
  }
  .plans-intro h2 {
    font-size: 43px;
  }
  .plans-grid {
    margin-top: 70px;
  }
  .plan {
    padding: 28px 15px 18px;
    min-height: 485px;
  }
  .plan h3 {
    font-size: 32px;
  }
  .plan > p:not(.price) {
    font-size: 15px;
    min-height: 42px;
  }
  .plan .price {
    font-size: 29px;
  }
  .plan .button {
    font-size: 12px;
    gap: 8px;
    padding: 11px;
  }
  .check-list {
    font-size: 13px;
    gap: 13px;
  }
  .check-list li {
    padding-left: 21px;
  }
  .recommended {
    padding-top: 41px;
  }
  .recommended-label {
    font-size: 12px;
    padding: 6px 12px;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .process-grid {
    margin-top: 30px;
  }
  .process-grid p {
    font-size: 14px;
  }
  .service-card {
    height: 290px;
  }
  .service-copy {
    left: 18px;
    bottom: 20px;
  }
  .service-copy strong {
    font-size: 30px;
  }
  .service-copy b {
    font-size: 17px;
  }
  .service-copy small {
    font-size: 14px;
    max-width: 150px;
  }
  .service-arrow {
    font-size: 30px;
    right: 17px;
    bottom: 20px;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .case {
    grid-template-columns: 1fr 1.1fr;
  }
  .case > img {
    height: 290px;
  }
  .case h3 {
    font-size: 30px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-grid > img {
    height: 300px;
  }
  .about-grid p:not(.lead) {
    max-width: none;
  }
  .studio-note {
    grid-template-columns: 35px 1fr 135px;
    gap: 20px;
    padding: 30px 0;
  }
  .quote-mark {
    font-size: 80px;
  }
  .studio-note p {
    font-size: 21px;
  }
  .studio-note img {
    height: 130px;
  }
  .closing {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .closing h2 {
    font-size: 8vw;
  }
  .closing > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }
  .closing p {
    margin: 0;
    font-size: 19px;
  }
  .project-dialog[open] {
    grid-template-columns: 1fr;
  }
  .project-dialog > img {
    min-height: 0;
    height: 35vh;
  }
  .project-details {
    padding: 28px;
  }
  .project-details h2 {
    font-size: 40px;
  }
  .project-details > p:not(.eyebrow):not(.concept-label) {
    font-size: 17px;
  }
}
@media (max-width: 580px) {
  :root {
    --gutter: 20px;
  }
  .site-header {
    gap: 15px;
    flex-wrap: wrap;
    height: auto;
    padding: 20px 0 14px;
    justify-content: space-between;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-top: 4px;
  }
  .site-header > .button {
    min-height: 38px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 30px 0 38px;
    gap: 26px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
  }
  .hero h1 {
    font-size: 12vw;
    width: 100%;
  }
  .hero h1 span {
    white-space: normal;
  }
  .hero-description {
    font-size: 20px;
  }
  .hero-image {
    height: 300px;
  }
  .registration-mark {
    display: none;
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section-rail .eyebrow {
    margin-bottom: 12px;
  }
  .work {
    padding-bottom: 38px;
  }
  .work .section-rail h2 br {
    display: none;
  }
  .work .section-rail h2 em {
    margin-left: 6px;
  }
  .work-filters {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .work-filters button {
    font-size: 12px;
    gap: 5px;
  }
  .rail-note {
    margin-top: 12px;
  }
  .hand-arrow {
    display: none;
  }
  .project-card > span {
    opacity: 1;
    padding: 12px;
  }
  .project-card b {
    font-size: 20px;
  }
  .project-card small {
    font-size: 10px;
  }
  .project-card i {
    font-size: 22px;
    bottom: 12px;
    right: 10px;
  }
  .partnership {
    padding: 38px 0;
  }
  .plans-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .plans-description {
    padding-top: 0;
  }
  .plans-intro h2 {
    font-size: 48px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    margin: 45px 0;
  }
  .plan {
    min-height: 0;
    padding: 28px;
  }
  .plan h3 {
    font-size: 45px;
  }
  .plan > p:not(.price) {
    min-height: 0;
    font-size: 17px;
  }
  .plan .price {
    font-size: 34px;
    margin-top: 20px;
  }
  .plan .check-list {
    font-size: 16px;
    margin: 25px 0;
  }
  .plan .button {
    font-size: 14px;
    padding: 14px;
  }
  .recommended {
    transform: none;
    margin: 0;
  }
  .recommended-label {
    font-size: 13px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    margin-top: 5px;
  }
  .process-grid li {
    padding-left: 12px;
  }
  .process-grid p {
    font-size: 15px;
  }
  .process-visual,
  .process-grid img {
    height: 115px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .services,
  .cases,
  .about {
    padding: 38px 0;
  }
  .service-card {
    height: 320px;
  }
  .service-copy strong {
    font-size: 39px;
  }
  .service-copy b {
    font-size: 20px;
  }
  .service-copy small {
    font-size: 16px;
    max-width: 210px;
  }
  .case {
    grid-template-columns: 0.9fr 1fr;
  }
  .case > img {
    height: 310px;
  }
  .case h3 {
    font-size: 27px;
  }
  .case p:not(.case-type) {
    font-size: 14px;
  }
  .case-type {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .case .text-link {
    font-size: 12px;
  }
  .about-grid > img {
    height: 270px;
  }
  .studio-note {
    grid-template-columns: 28px 1fr;
    gap: 17px;
  }
  .studio-note img {
    display: none;
  }
  .studio-note p {
    font-size: 22px;
  }
  .studio-note .eyebrow {
    font-size: 11px;
  }
  .faq {
    padding: 35px 0;
  }
  .faq summary {
    font-size: 14px;
    min-height: 60px;
    padding: 16px 0;
  }
  .faq details p {
    font-size: 16px;
  }
  .closing {
    padding: 35px 0 40px;
  }
  .closing h2 {
    font-size: 10.3vw;
  }
  .closing > div {
    display: block;
  }
  .closing p {
    font-size: 20px;
    margin-bottom: 22px;
  }
  .site-footer {
    padding: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .site-footer > span:last-child {
    text-align: left;
  }
  .site-footer > span {
    font-size: 11px;
  }
  .inquiry-dialog {
    padding: 28px 23px;
  }
  .inquiry-dialog h2 {
    font-size: 40px;
    margin-top: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .project-details .button {
    font-size: 12px;
  }
  .project-details {
    padding: 25px;
  }
}
/* Editorial composition: masthead, opening spread, then staggered stories. */
:root {
  --gutter: clamp(20px, 2.2vw, 42px);
}
.page-shell {
  max-width: 1800px;
  overflow-x: clip;
}
.site-header {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  height: auto;
  min-height: clamp(280px, 32vw, 530px);
  padding: 12px 0 0;
  border: 0;
}
.site-header .wordmark {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(58px, 9vw, 150px);
  font-weight: 400;
  letter-spacing: -0.065em;
  align-self: start;
}
.site-header > .button {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-top: 10px;
  background: transparent;
  border: 0;
  color: var(--color-text-primary);
  font-size: 14px;
  padding: 8px 0 8px 16px;
}
.site-header > .button:hover { text-decoration: underline; }
.site-header nav {
  grid-column: 1 / -1;
  grid-row: 3;
  position: relative;
  width: 100%;
  margin: 0;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 18px;
}
.site-header nav a { font-size: 14px; }
.masthead {
  position: absolute;
  inset: 14px calc(-1 * var(--gutter)) 40px;
  z-index: -1;
  overflow: visible;
  pointer-events: none;
}
.masthead::before {
  content: "VIDẽKAI";
  inset: 5% -3% 0;
  background: none;
  color: var(--color-accent);
  font: 400 clamp(220px, 28vw, 500px)/0.95 var(--display);
  letter-spacing: -0.065em;
  text-align: center;
  white-space: nowrap;
  filter: blur(clamp(8px, 1.2vw, 20px));
  transform-origin: 50% 50%;
}
.masthead::after {
  /* Feather the extra grain beyond the lettering, never at the navigation edge. */
  inset: -80px -80px -160px;
  mask-image: radial-gradient(ellipse closest-side, #000 35%, transparent 100%);
  opacity: 0.35;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  min-height: 0;
  align-items: stretch;
  padding: 0 0 clamp(90px, 12vw, 200px);
}
.hero-copy {
  grid-column: 2;
  grid-row: 1;
  width: auto;
  min-width: 0;
  padding: 0 0 0 8px;
}
.hero-copy .eyebrow { display: none; }
.hero h1 {
  width: 100%;
  font-size: clamp(54px, 8.7vw, 154px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
}
.hero h1 span { white-space: normal; }
.hero h1 .hero-kicker {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin: 0 0 16px;
}
.hero-description {
  max-width: 420px;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.15;
}
.hero-image {
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  min-height: 340px;
  max-height: 610px;
}
.hero-image img { object-position: 50% 40%; filter: none; }
.hero-image:hover img { filter: none; }
.hero .registration-mark { display: none; }
.hero-copy > .text-link {
  margin-top: 28px;
  color: var(--color-accent);
  letter-spacing: 0.16em;
}
.work.section-grid { display: block; padding-bottom: 110px; }
.work .section-rail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 30px;
  align-items: end;
  padding-bottom: 28px;
}
.work .section-rail .eyebrow { grid-column: 1 / -1; margin: 0; }
.work .section-rail h2 { font-size: clamp(44px, 5vw, 82px); letter-spacing: -0.04em; }
.work .section-rail h2 br { display: none; }
.work .section-rail h2 em { margin-left: 0.15em; }
.work-filters { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 0; }
.work-filters button { min-height: 44px; align-items: center; font-size: 14px; gap: 8px; }
.work .rail-note { grid-column: 1 / -1; margin: 0; font-size: 14px; }
.work .hand-arrow { display: none; }
.work-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(60px, 8vw, 130px) 8px;
  align-items: start;
}
.work-grid .project-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  background: transparent;
  color: var(--color-text-primary);
  overflow: hidden;
}
.work-grid .project-card[hidden] { display: none; }
.work-grid .project-card > img {
  aspect-ratio: 0.85;
  height: auto;
  object-fit: cover;
  filter: none;
}
.work-grid .project-card > span {
  position: relative;
  inset: auto;
  width: 100%;
  min-width: 0;
  padding: 18px 16px 0 0;
  opacity: 1;
  background: none;
  justify-content: start;
}
.work-grid .project-card b {
  font-size: clamp(34px, 4.2vw, 74px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.work-grid .project-card small {
  order: -1;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.project-description {
  display: block;
  max-width: 32ch;
  margin-top: 22px;
  color: #777570;
  font-size: clamp(18px, 2.1vw, 32px);
  font-weight: 600;
  line-height: 1.15;
}
.project-link {
  display: block;
  margin-top: 38px;
  padding-bottom: 8px;
  color: var(--color-accent);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.work-grid .project-card i { display: none; }
.work-grid .project-card:hover > img { transform: none; filter: none; }
.work-grid .project-card:hover .project-link { text-decoration: underline; }
.work-grid .project-card:nth-child(3n + 1) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
}
.work-grid .project-card:nth-child(3n + 1) > img {
  width: 82%;
  margin-left: auto;
  aspect-ratio: 0.78;
}
.work-grid .project-card:nth-child(3n + 1) > span { padding: 0 12px; }
.work-grid .project-card:nth-child(3n + 1) .project-link { margin-top: auto; padding-top: 38px; }
.work-grid .project-card:nth-child(3n + 2) { grid-column: 2 / 7; }
.work-grid .project-card:nth-child(3n + 3) { grid-column: 7 / -1; margin-top: 100px; }
.work-grid .alternate-crop { transform: none; object-position: 75% 20%; }
.work-grid:has(.project-card[hidden]) .project-card {
  grid-column: span 6;
  margin-top: 0;
  display: flex;
}
.work-grid:has(.project-card[hidden]) .project-card[hidden] { display: none; }
.work-grid:has(.project-card[hidden]) .project-card > img { width: 100%; margin: 0; aspect-ratio: 0.85; }
.work-grid:has(.project-card[hidden]) .project-card > span { padding: 18px 16px 0 0; }
.cases .case-grid { gap: 50px; }
.cases .case { grid-template-columns: 1fr; gap: 24px; }
.cases .case > img { height: auto; aspect-ratio: 0.9; }
.cases .case:nth-child(2) { margin-top: 100px; }
.cases .case h3 { font-size: clamp(38px, 4vw, 66px); letter-spacing: -0.04em; }
@media (max-width: 800px) {
  .site-header { min-height: 270px; }
  .hero { padding-bottom: 90px; }
  .hero-image { min-height: 350px; }
  .hero h1 { font-size: 8.5vw; }
  .work .section-rail { grid-template-columns: 1fr; }
  .work-grid .project-card:nth-child(3n + 1) > img { width: 100%; }
  .work-grid .project-card:nth-child(3n + 2) { grid-column: 1 / 7; }
  .work-grid .project-card:nth-child(3n + 3) { margin-top: 60px; }
  .project-description { font-size: 20px; }
  .project-link { letter-spacing: 0.15em; }
}
@media (max-width: 580px) {
  .site-header { min-height: 235px; padding-top: 12px; }
  .site-header .wordmark { font-size: 66px; }
  .site-header > .button { font-size: 14px; gap: 8px; margin-top: 0; }
  .site-header nav { gap: 12px; flex-wrap: wrap; padding-top: 20px; }
  .site-header nav a { font-size: 14px; }
  .masthead::before { font-size: 230px; left: -30%; right: -30%; }
  .hero { display: flex; flex-direction: column; gap: 22px; padding-bottom: 70px; }
  .hero-image { order: -1; height: 300px; min-height: 0; }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(64px, 15vw, 88px); }
  .hero-description { font-size: 21px; }
  .hero-description br { display: none; }
  .work.section-grid { padding-bottom: 70px; }
  .work-filters { gap: 6px 18px; }
  .work-grid { display: flex; flex-direction: column; gap: 65px; }
  .work-grid .project-card,
  .work-grid .project-card:nth-child(3n + 1),
  .work-grid .project-card:nth-child(3n + 3) {
    display: flex;
    width: 100%;
    margin: 0;
  }
  .work-grid .project-card[hidden] { display: none; }
  .work-grid .project-card:nth-child(3n + 1) > span { padding: 18px 0 0; }
  .work-grid .project-card > img,
  .work-grid .project-card:nth-child(3n + 1) > img { aspect-ratio: 0.95; }
  .work-grid .project-card b { font-size: 48px; }
  .project-description { max-width: 100%; margin-top: 16px; }
  .project-link { margin-top: 24px; }
  .work-grid .project-card:nth-child(3n + 1) .project-link { padding-top: 24px; }
  .cases .case:nth-child(2) { margin-top: 0; }
}
/* Three ungrouped projects. Pin only where a full spread fits comfortably. */
#work .section-rail { grid-template-columns: 1fr; }
#work .work-grid { display: flex; flex-direction: column; }
#work .project-card { margin: 0; width: 100%; }
#work.horizontal-scroll { display: block; position: relative; padding: 0; }
.horizontal-scroll .scroll-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 24px 0 32px;
}
#work.horizontal-scroll .section-rail {
  flex: 0 0 auto;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding-bottom: 24px;
}
#work.horizontal-scroll .section-rail h2 { font-size: clamp(38px, 4vw, 64px); }
#work.horizontal-scroll .rail-note { grid-column: 2; grid-row: 2; text-align: right; }
.horizontal-scroll .scroll-window { flex: 1; min-height: 0; overflow: hidden; }
#work.horizontal-scroll .work-grid {
  height: 100%;
  flex-direction: row;
  gap: 0;
  will-change: transform;
}
#work.horizontal-scroll .project-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 70px);
  height: 100%;
  min-width: 0;
  padding: 4px;
  align-items: stretch;
}
#work.horizontal-scroll .project-card > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  margin: 0;
}
#work.horizontal-scroll .project-card > span { padding: 16px 16px 16px 0; }
#work.horizontal-scroll .project-description { font-size: clamp(18px, 2vw, 30px); }
#work.horizontal-scroll .project-link { margin-top: auto; padding-top: 24px; }
#work.horizontal-scroll .project-card:focus-visible { outline-offset: -4px; }
.cases > .scroll-stage { display: contents; }
.cases .scroll-window { min-width: 0; }
.cases.horizontal-scroll { display: block; position: relative; padding: 0; border-top: 0; }
.cases.horizontal-scroll > .scroll-stage { display: flex; }
.cases.horizontal-scroll .section-rail { flex: 0 0 auto; padding-bottom: 24px; }
.cases.horizontal-scroll .section-rail .eyebrow { margin-bottom: 8px; }
.cases.horizontal-scroll .section-rail h2 { font-size: clamp(38px, 4vw, 64px); }
.cases.horizontal-scroll .section-rail h2 br { display: none; }
.cases.horizontal-scroll .case-grid {
  display: flex;
  height: 100%;
  gap: 0;
  will-change: transform;
}
.cases.horizontal-reverse .case-grid { flex-direction: row-reverse; }
.cases.horizontal-scroll .case {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 70px);
  height: 100%;
  min-width: 0;
  margin: 0;
  padding: 4px;
}
.cases.horizontal-scroll .case > img { height: 100%; min-height: 0; aspect-ratio: auto; }
.cases.horizontal-scroll .case > div { display: flex; flex-direction: column; min-height: 0; padding: 16px 16px 16px 0; }
.cases.horizontal-scroll .case .text-link { margin-top: auto; padding-top: 24px; }
.cases.horizontal-scroll .text-link:focus-visible { outline-offset: -4px; }
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
