:root {
  --paper: #f1efe9;
  --paper-soft: #e7e3da;
  --ink: #171717;
  --muted: #77736b;
  --line: rgba(23, 23, 23, 0.22);
  --acid: #d9ff43;
  --white: #fff;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(18px, 2.25vw, 38px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.4 var(--body);
}
body.is-loading,
body.menu-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { cursor: pointer; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
::selection { background: var(--acid); color: var(--ink); }

.shell { padding-inline: var(--pad); }
.eyebrow,
.section-kicker,
.micro {
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.serif { font-family: var(--serif); font-weight: 400; }
.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -.072em;
  line-height: .88;
}
.muted { color: var(--muted); }
.rule { border-top: 1px solid var(--line); }

/* cursor */
.cursor { position: fixed; z-index: 9999; pointer-events: none; opacity: 0; left: 0; top: 0; }
.cursor-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--acid); }
.cursor-ring {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: white;
  mix-blend-mode: difference;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, color .3s;
}
.cursor-ring span { opacity: 0; font-size: 8px; letter-spacing: .12em; }
.cursor-ring.is-view { width: 92px; height: 92px; background: white; color: black; mix-blend-mode: normal; }
.cursor-ring.is-view span { opacity: 1; }

/* header + menu */
.site-header {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: var(--pad);
  color: white;
  mix-blend-mode: difference;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.brand {
  justify-self: start;
  font: 760 21px/1 var(--display);
  letter-spacing: -.055em;
}
.brand sup { margin-left: 3px; font: 500 6px/1 var(--body); vertical-align: top; }
.header-page { justify-self: center; }
.desktop-nav { justify-self: end; display: flex; gap: 22px; }
.desktop-nav a,
.header-page { position: relative; font-size: 13px; letter-spacing: .11em; text-transform: uppercase; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right .45s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }
.menu-toggle {
  display: none;
  justify-self: end;
  width: 32px;
  border: 0;
  padding: 4px 0;
  background: none;
}
.menu-toggle span { display: block; height: 1px; margin: 6px 0; background: currentColor; transition: transform .35s var(--ease); }
.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.menu-panel {
  position: fixed;
  z-index: 450;
  inset: 0;
  color: white;
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition: clip-path .8s var(--ease);
}
.menu-panel.is-open { clip-path: inset(0); pointer-events: auto; }
.menu-panel__inner {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 110px var(--pad) 28px;
}
.menu-panel nav { align-self: center; }
.menu-panel nav a {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: baseline;
  padding: 12px 0 9px;
  border-top: 1px solid rgba(255,255,255,.2);
  font: 620 clamp(48px, 8vw, 128px)/.86 var(--display);
  letter-spacing: -.075em;
}
.menu-panel nav a span,
.menu-panel nav a i { font: 400 10px/1 var(--body); letter-spacing: .12em; text-transform: uppercase; }
.menu-panel__bottom { display: flex; justify-content: space-between; font-size: 11px; text-transform: uppercase; }

/* custom arrows — SVG keeps the mark typographic on iOS instead of rendering as emoji */
.arrow-mark {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  overflow: visible;
  vertical-align: -0.16em;
}
.arrow-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}
.arrow-mark--large {
  width: clamp(34px, 5vw, 78px);
  height: clamp(34px, 5vw, 78px);
}
.work-feature__mock .arrow-mark,
.site-footer__top .arrow-mark { width: 12px; height: 12px; margin-left: 4px; }
.form-submit .arrow-mark { width: clamp(30px, 4vw, 62px); height: clamp(30px, 4vw, 62px); }

/* global reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .95s var(--ease), transform .95s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.media-reveal { overflow: hidden; clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease); }
.media-reveal.is-visible { clip-path: inset(0); }
.media-reveal img { transform: scale(1.08); transition: transform 1.4s var(--ease); }
.media-reveal.is-visible img { transform: scale(1); }
/* Local project artwork prevents third-party image hotlink failures in Chrome/Cloudflare. */
.project-card__media img,
.work-feature__media > img,
.home-hero__slide img { background: #d4d0c8; }
.project-card__media img { object-position: center; }

.contact-stage__title > .contact-title-desktop { display: block; }
.contact-title-desktop > span { display: block; }
.contact-title-desktop .contact-stage__serif { text-align: right; }
.contact-stage__title > .contact-title-mobile { display: none; }


/* home */
.home-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 28px) var(--pad) 22px;
  overflow: hidden;
}
.home-hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}
.home-hero__top span:nth-child(2) { text-align: center; }
.home-hero__top span:last-child { text-align: right; }
.home-hero__title {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  margin: 10px 0 0;
  font-size: clamp(104px, 24.6vw, 450px);
  line-height: .71;
}
.home-hero__title span:last-child { align-self: flex-end; }
.home-hero__media {
  position: absolute;
  z-index: 1;
  left: 26.5%;
  top: 25%;
  width: 47%;
  height: 54%;
  overflow: hidden;
  background: #cfcac0;
  transform: rotate(-1.2deg);
}
.home-hero__slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.05); transition: opacity 1s var(--ease), transform 2s var(--ease); }
.home-hero__slide.is-active { opacity: 1; transform: scale(1); }
.home-hero__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.14)); }
.home-hero__caption {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  bottom: 24px;
  width: min(450px, 44vw);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -.025em;
}
.home-hero__caption strong { display: block; margin-bottom: 8px; font: 400 clamp(42px, 5.4vw, 88px)/.87 var(--serif); }
.home-hero__index {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 24px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 16px;
  align-items: end;
}
.home-hero__index b { font: 650 42px/.8 var(--display); letter-spacing: -.06em; }
.hero-scroll { writing-mode: vertical-rl; transform: rotate(180deg); }

.home-work { padding: 140px var(--pad) 155px; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--line);
}
.section-head > :nth-child(2) { max-width: 440px; }
.section-head > :last-child { justify-self: end; }
.work-feature {
  display: grid;
  grid-template-columns: 1.52fr .78fr;
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
}
.work-feature__media { position: relative; aspect-ratio: 16/10; background: #d7d1c7; }
.work-feature__mock {
  position: absolute;
  inset: 8% 8% 9%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px;
  background: #f4e9da;
  box-shadow: 0 32px 60px rgba(0,0,0,.18);
}
.work-feature__mock-top { display: flex; justify-content: space-between; font-size: 9px; letter-spacing: .1em; }
.work-feature__mock h3 { align-self: center; margin: 0; font: 650 clamp(48px, 7vw, 118px)/.78 var(--display); letter-spacing: -.085em; }
.work-feature__mock-bottom { display: flex; justify-content: space-between; font-size: 10px; }
.work-feature__copy h2 { margin: 0 0 22px; font: 600 clamp(52px, 7vw, 110px)/.82 var(--display); letter-spacing: -.075em; }
.work-feature__copy p { max-width: 420px; margin: 0 0 38px; font-size: clamp(17px, 1.5vw, 22px); }
.text-link { display: flex; justify-content: space-between; gap: 40px; max-width: 360px; padding: 12px 0; border-top: 1px solid currentColor; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.home-belief {
  padding: 130px var(--pad) 150px;
  color: white;
  background: var(--ink);
}
.home-belief__grid { display: grid; grid-template-columns: .75fr 1.45fr; gap: 8vw; }
.home-belief h2 { font-size: clamp(70px, 11.5vw, 186px); }
.home-belief h2 span { display: block; }
.home-belief h2 span:nth-child(2) { margin-left: 12%; }
.home-belief__aside { display: grid; align-content: end; gap: 42px; max-width: 510px; }
.home-belief__aside p { margin: 0; font-size: clamp(18px, 1.7vw, 26px); }
.capability-strip { margin-top: 100px; border-top: 1px solid rgba(255,255,255,.25); }
.capability-row { display: grid; grid-template-columns: 50px 1.3fr 1fr; gap: 22px; padding: 15px 0 19px; border-bottom: 1px solid rgba(255,255,255,.25); }
.capability-row h3 { margin: 0; font: 540 clamp(27px, 3.4vw, 54px)/.92 var(--display); letter-spacing: -.05em; }
.capability-row p { margin: 0; max-width: 510px; color: rgba(255,255,255,.62); }

.home-cta { padding: 130px var(--pad) 28px; }
.home-cta__top { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); }
.home-cta__link {
  position: relative;
  display: block;
  margin-top: 80px;
  font: 650 clamp(74px, 15vw, 240px)/.73 var(--display);
  letter-spacing: -.09em;
}
.home-cta__link span { display: block; }
.home-cta__link span:nth-child(2) { text-align: right; font-family: var(--serif); font-weight: 400; }
.home-cta__link .arrow-mark { position: absolute; right: 1%; top: 4%; }

/* page hero */
.page-hero { padding: calc(var(--header-h) + 64px) var(--pad) 95px; }
.page-hero__meta { display: flex; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--line); }
.page-hero h1 { margin-top: 52px; font-size: clamp(84px, 18vw, 290px); }
.page-hero h1 span { display: block; }
.page-hero h1 span:nth-child(2) { margin-left: 18%; font-family: var(--serif); font-weight: 400; }
.page-hero__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-top: 45px; }
.page-hero__intro p { max-width: 620px; margin: 0; font-size: clamp(20px, 2.25vw, 34px); letter-spacing: -.03em; }
.page-hero__intro p:last-child { justify-self: end; max-width: 420px; font-size: 14px; color: var(--muted); }

/* projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 95px 18px;
  padding: 100px var(--pad) 160px;
}
.project-card { grid-column: span 6; }
.project-card:nth-child(2),
.project-card:nth-child(5) { grid-column: 7 / span 5; margin-top: 130px; }
.project-card:nth-child(3) { grid-column: 2 / span 5; }
.project-card:nth-child(4) { grid-column: 7 / span 6; }
.project-card.is-hidden { display: none; }
.project-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #d4d0c8; }
.project-card--portrait .project-card__media { aspect-ratio: 4/5; }
.project-card__media img { transition: transform 1.1s var(--ease), filter .6s; }
.project-card:hover img { transform: scale(1.035); }
.project-card__number { position: absolute; top: 13px; left: 13px; color: white; mix-blend-mode: difference; }
.project-card[data-project="haileykim"] .project-card__number,
.project-card[data-project="sunday"] .project-card__number { left: auto; right: 13px; }
.project-card[data-project="junehale"] .project-card__number { top: auto; left: auto; right: 13px; bottom: 13px; }
.project-card__meta { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding-top: 12px; }
.project-card__meta h2 { margin: 0; font: 590 clamp(32px, 4.4vw, 66px)/.91 var(--display); letter-spacing: -.06em; overflow-wrap: anywhere; }
.project-card__meta p { margin: 4px 0 0; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.project-card__meta span { font-size: 10px; }

.project-modal {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--ink);
  background: var(--paper);
}
.project-modal::backdrop { background: rgba(0,0,0,.45); }
.project-modal__close { position: fixed; z-index: 5; top: 18px; right: var(--pad); border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; background: var(--paper); font-size: 10px; letter-spacing: .1em; }
.case { padding: 90px var(--pad) 100px; }
.case__head { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: end; }
.case__head h2 { grid-column: 1 / -1; margin: 60px 0 0; font: 650 clamp(72px, 15vw, 230px)/.78 var(--display); letter-spacing: -.085em; overflow-wrap: anywhere; }
.case__lead { font-size: clamp(18px, 2vw, 29px); }
.case__image { height: 76vh; margin-top: 45px; }
.case__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 45px; }
.case__gallery-item { height: 52vh; overflow: hidden; background: var(--paper); display: flex; align-items: center; justify-content: center; }
.case__gallery-item:nth-child(1) { grid-column: 1 / -1; height: 76vh; }
.case__gallery-item img, .case__gallery-item video { width: 100%; height: 100%; object-fit: contain; }
.case__gallery-item:nth-child(1) img, .case__gallery-item:nth-child(1) video { object-fit: cover; }
.case__details { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; padding: 100px 0 30px; }
.case__details h3 { margin: 0; font: 590 clamp(58px, 8vw, 128px)/.84 var(--display); letter-spacing: -.07em; }
.case__details p { max-width: 540px; font-size: 17px; }
.case__nav { display: flex; justify-content: space-between; gap: 24px; padding-top: 26px; border-top: 1px solid var(--line); }
.case__nav-link { display: grid; gap: 8px; padding: 0; border: 0; background: none; font-family: inherit; color: inherit; text-align: left; cursor: pointer; }
.case__nav-link--next { text-align: right; justify-items: end; }
.case__nav-link span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.case__nav-link strong { font: 600 clamp(20px, 2.6vw, 34px)/1.05 var(--display); letter-spacing: -.03em; }
.case__counter { align-self: center; font: 600 12px/1 var(--display); letter-spacing: .1em; color: var(--muted); white-space: nowrap; }

/* investment */
.investment-note { padding: 20px var(--pad) 100px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 8vw; }
.investment-note h2 { font-size: clamp(54px, 8.6vw, 138px); }
.investment-note p { align-self: end; max-width: 620px; font-size: clamp(18px, 1.7vw, 25px); }
.pricing { padding: 10px var(--pad) 150px; }
.price-card {
  display: grid;
  grid-template-columns: 70px 1.1fr .85fr .45fr;
  gap: 28px;
  align-items: start;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
}
.price-card:last-child { border-bottom: 1px solid var(--line); }
.price-card__title h2 { margin: 0; font: 600 clamp(42px, 6vw, 92px)/.88 var(--display); letter-spacing: -.065em; }
.price-card__title p { margin: 12px 0 0; color: var(--muted); }
.price-card ul { list-style: none; margin: 0; padding: 0; }
.price-card li { padding: 7px 0; border-bottom: 1px solid rgba(23,23,23,.12); font-size: 13px; }
.price-card__price { text-align: right; }
.price-card__price span { font-size: 13px; text-transform: uppercase; color: var(--muted); }
.price-card__was { display: block; margin-top: 6px; font: 500 clamp(24px, 2.9vw, 40px)/1 var(--display); letter-spacing: -.04em; color: var(--muted); text-decoration: line-through; }
.price-card__price strong { display: block; margin-top: 4px; font: 600 clamp(27px, 3.3vw, 46px)/1 var(--display); letter-spacing: -.05em; color: var(--ink); }
.price-card__select { max-width: none; margin-top: 16px; padding: 10px 0 0; gap: 10px; font-size: 10px; border-top: 1px solid rgba(23,23,23,.22); }
.price-card__select .arrow-mark { width: 12px; height: 12px; }
.price-card--featured { position: relative; }
.price-card--featured::before { content: "MOST CHOSEN"; position: absolute; top: 12px; right: 0; padding: 5px 9px; background: var(--acid); font-size: 8px; letter-spacing: .12em; }
.addons { padding: 130px var(--pad); color: white; background: var(--ink); }
.addons__head { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.addons h2 { font-size: clamp(68px, 11vw, 178px); }
.addons__head p { align-self: end; max-width: 460px; color: rgba(255,255,255,.65); }
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 80px; border-top: 1px solid rgba(255,255,255,.24); }
.addon { min-height: 180px; padding: 18px 22px 28px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.addon:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.24); }
.addon:nth-child(even) { padding-left: 22px; }
.addon span { font-size: 10px; color: rgba(255,255,255,.5); }
.addon h3 { margin: 30px 0 10px; font: 540 clamp(29px, 3.5vw, 54px)/.94 var(--display); letter-spacing: -.05em; }
.addon p { max-width: 520px; font-size: 15px; color: rgba(255,255,255,.62); }
.addon__list { list-style: none; margin: 22px 0 0; padding: 18px 0 0; width: 100%; max-width: none; display: grid; gap: 13px; border-top: 1px solid rgba(255,255,255,.16); }
.addon__list li { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; font-size: 16px; line-height: 1.4; color: rgba(255,255,255,.7); }
.addon__list li::after { content: ""; flex: 1; order: 1; margin: 0 2px 3px; border-bottom: 1px dotted rgba(255,255,255,.24); }
.addon__list li span { order: 0; font-size: 16px; }
.addon__list li b { order: 2; flex: none; font-size: 16px; font-weight: 600; color: #fff; white-space: nowrap; }
.addon__tiers { list-style: none; margin: 22px 0 0; padding: 18px 0 0; width: 100%; max-width: none; display: grid; gap: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.addon__tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; font-weight: 600; color: #fff; }
.addon__tier-head span { font-size: 18px; color: rgba(255,255,255,.85); }
.addon__tier-head span:last-child { color: #fff; }
.addon__tiers p { margin: 8px 0 0; max-width: none; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.58); }
.testimonials { padding: 130px var(--pad); border-top: 1px solid var(--line); }
.testimonials__head { max-width: 640px; margin-bottom: 60px; }
.testimonials__head h2 { margin-top: 14px; font-size: clamp(48px, 7vw, 108px); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; }
.testimonial { border-top: 1px solid var(--line); padding-top: 24px; }
.testimonial p { margin: 0 0 18px; font: 400 clamp(20px, 2.2vw, 30px)/1.35 var(--serif); font-style: italic; }
.testimonial span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.faq { padding: 130px var(--pad); }
.faq__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; }
.faq h2 { font-size: clamp(58px, 8vw, 126px); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: grid; grid-template-columns: 42px 1fr auto; gap: 16px; padding: 18px 0; border: 0; background: none; text-align: left; }
.faq-item button strong { font-weight: 500; font-size: 20px; }
.faq-item__answer { max-height: 0; overflow: hidden; padding-left: 58px; transition: max-height .55s var(--ease); }
.faq-item__answer p { max-width: 650px; margin: 0 0 24px; color: var(--muted); }
.faq-item.is-open .faq-item__answer { max-height: 220px; }

/* contact */
.contact-stage { width: 100%; overflow: hidden; min-height: 100svh; padding: calc(var(--header-h) + 58px) var(--pad) 30px; display: grid; grid-template-rows: auto 1fr auto; }
.contact-stage__title { align-self: center; font-size: clamp(76px, 16.8vw, 275px); }
.contact-stage__title > span { display: block; }
.contact-title-desktop .contact-stage__serif { text-align: right; font-family: var(--serif); font-weight: 400; }
.contact-stage__sans > span { display: inline; }
.contact-stage__bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; padding-top: 12px; border-top: 1px solid var(--line); }
.contact-stage__bottom > :last-child { text-align: right; }
.contact-main { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; padding: 120px var(--pad) 150px; background: var(--ink); color: white; }
.contact-aside { display: grid; align-content: space-between; gap: 70px; }
.contact-aside h2 { margin: 0; font: 560 clamp(48px, 7vw, 108px)/.86 var(--display); letter-spacing: -.07em; }
.contact-details { display: grid; gap: 32px; }
.contact-details span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a,
.contact-details p { margin: 0; font-size: 15px; }
.project-form { border-top: 1px solid rgba(255,255,255,.25); }
.form-row { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 20px 0 26px; border-bottom: 1px solid rgba(255,255,255,.25); }
.form-row label { font-size: 10px; letter-spacing: .12em; }
.form-row input,
.form-row textarea,
.form-row select { width: 100%; border: 0; outline: 0; background: transparent; color: white; font-size: clamp(21px, 2.5vw, 36px); letter-spacing: -.03em; resize: vertical; }
.form-row select option { color: var(--ink); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,.32); }
.form-row textarea { min-height: 120px; }
.form-submit { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding: 17px 0; border: 0; border-bottom: 1px solid white; background: transparent; color: white; font-size: clamp(28px, 4.4vw, 68px); font-family: var(--display); letter-spacing: -.055em; text-align: left; }
.form-note { margin-top: 18px; color: rgba(255,255,255,.5); font-size: 11px; }
.form-message { min-height: 22px; margin-top: 16px; color: var(--acid); }

/* footer */
.site-footer { padding: 24px var(--pad) 18px; border-top: 1px solid var(--line); }
.site-footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; padding-bottom: 70px; }
.site-footer__top > :last-child { justify-self: end; text-align: right; }
.site-footer__top span { display: block; margin-bottom: 8px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.site-footer__top p,
.site-footer__top a { margin: 0; font-size: 13px; }
.site-footer__word { overflow: hidden; font: 730 20.6vw/.7 var(--display); letter-spacing: -.095em; white-space: nowrap; }
.site-footer__bottom { display: flex; justify-content: space-between; padding-top: 20px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer--dark { color: white; background: var(--ink); border-top-color: rgba(255,255,255,.24); }
.site-footer--dark .site-footer__top span { color: rgba(255,255,255,.5); }


@media (min-width: 981px) {
  :root { --header-h: 78px; }
  .brand { font-size: 24px; }
  .brand sup { font-size: 7px; }
  .desktop-nav { gap: 27px; }
  .desktop-nav a,
  .header-page { font-size: 14px; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-page { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .menu-toggle { display: block; }
  .cursor { display: none; }
  .home-hero__media { left: 20%; width: 60%; top: 29%; height: 47%; }
  .home-hero__caption { width: 60vw; }
  .work-feature, .home-belief__grid, .investment-note, .faq__grid, .contact-main, .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid { gap: 36px; }
  .work-feature__copy { padding-top: 35px; }
  .home-belief__aside { justify-self: end; }
  .project-card,
  .project-card:nth-child(n) { grid-column: span 6; margin-top: 0; }
  .price-card { grid-template-columns: 45px 1fr .75fr; }
  .price-card__price { grid-column: 2 / -1; text-align: left; }
  .case__details { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 58px; }
  .home-hero { min-height: 92svh; }
  .home-hero__top span:nth-child(2) { display: none; }
  .home-hero__top { grid-template-columns: 1fr 1fr; }
  .home-hero__title { font-size: 28vw; margin-top: 18px; line-height: .74; }
  .home-hero__media { left: 14%; top: 31%; width: 72%; height: 42%; }
  .home-hero__caption { bottom: 28px; width: 68vw; font-size: 14px; }
  .home-hero__caption strong { font-size: 12vw; }
  .home-hero__index { bottom: 28px; }
  .home-hero__index .hero-scroll { display: none; }
  .section-head { grid-template-columns: 1fr auto; }
  .section-head > :nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
  .work-feature { grid-template-columns: 1fr; }
  .work-feature__media { aspect-ratio: 4/5; }
  .home-belief__grid { gap: 70px; }
  .capability-row { grid-template-columns: 38px 1fr; }
  .capability-row p { grid-column: 2; }
  .home-cta { padding-top: 95px; }
  .page-hero { padding-bottom: 65px; }
  .page-hero h1 { font-size: 24vw; }
  .page-hero h1 span:nth-child(2) { margin-left: 8%; }
  .page-hero__intro { grid-template-columns: 1fr; }
  .page-hero__intro p:last-child { justify-self: start; }
  .projects-grid { grid-template-columns: 1fr; gap: 70px; padding-top: 70px; }
  .project-card,
  .project-card:nth-child(n) { grid-column: 1; }
  .project-card__meta h2 { font-size: 11vw; }
  .case { padding-top: 80px; }
  .case__nav { flex-direction: column; gap: 20px; }
  .case__nav-link--next { text-align: left; justify-items: start; }
  .case__head { grid-template-columns: 1fr; }
  .case__head h2 { font-size: 20vw; }
  .case__image { height: 58vh; }
  .case__gallery { grid-template-columns: 1fr; gap: 14px; }
  .case__gallery-item,
  .case__gallery-item:nth-child(1) { height: 40vh; }
  .case__gallery-item:nth-child(1) video { object-fit: contain; }
  .investment-note { padding-bottom: 60px; }
  .price-card { grid-template-columns: 34px 1fr; gap: 16px; }
  .price-card ul, .price-card__price { grid-column: 2; }
  .price-card--featured::before { display: none; }
  .addons__head { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .addon:nth-child(n) { border-right: 0; padding-left: 0; }
  .contact-stage { min-height: 92svh; }
  .contact-stage__title {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    line-height: .72;
    letter-spacing: -.085em;
  }
  .contact-stage__title > .contact-title-desktop { display: none; }
  .contact-stage__title > .contact-title-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    font-family: var(--display);
    font-weight: 650;
  }
  .contact-title-mobile > span {
    display: block;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(72px, 22.8vw, 112px);
    line-height: .69;
  }
  .contact-title-mobile > span:nth-child(2) { margin-left: 7%; }
  .contact-title-mobile > span:nth-child(3) { align-self: flex-end; }
  .contact-title-mobile .serif-line {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(67px, 20.4vw, 100px);
    line-height: .72;
    letter-spacing: -.07em;
  }
  .contact-title-mobile .serif-line:nth-child(4) { margin-top: .13em; margin-left: 18%; }
  .contact-title-mobile .serif-line:nth-child(5) { align-self: flex-end; }
  .contact-stage__bottom { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .contact-stage__bottom > :nth-child(2) { display: none; }
  .contact-stage__bottom > :last-child { white-space: nowrap; font-size: 9px; }
  .form-row { grid-template-columns: 38px 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .site-footer__top > :last-child { justify-self: start; text-align: left; }
  .site-footer__word { font-size: 21vw; }
  .site-footer__bottom { display: grid; gap: 7px; }
  .menu-panel nav a { grid-template-columns: 40px 1fr; font-size: 13vw; }
  .menu-panel nav a i { display: none; }
}

@media (max-width: 460px) {
  :root { --pad: 15px; }
  .home-hero__media { left: 9%; width: 82%; }
  .home-hero__title span:last-child { margin-top: -.11em; }
  .contact-stage { padding-inline: 15px; }
  .home-hero__index b { font-size: 30px; }
  .home-work { padding-top: 100px; padding-bottom: 115px; }
  .home-belief { padding-top: 95px; padding-bottom: 110px; }
  .capability-row h3 { font-size: 8vw; }
  .home-cta__link { font-size: 20vw; }
  .home-cta__link .arrow-mark { width: 42px; height: 42px; right: 2px; top: 6px; }
  .site-footer__top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .media-reveal { clip-path: none; }
}
