* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #e8ddd2;
  --paper: #f7efe7;
  --paper-light: #fffaf4;
  --ink: #15100c;
  --muted: rgba(21, 16, 12, .64);
  --muted-light: rgba(255, 250, 244, .72);
  --line: rgba(21, 16, 12, .13);
  --line-strong: rgba(21, 16, 12, .22);
  --line-light: rgba(255, 250, 244, .20);
  --accent: #a78e74;
  --accent-dark: #7c634e;
  --shadow: 0 28px 86px rgba(54, 38, 27, .13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.is-splashing,
body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(21, 16, 12, .42);
  backdrop-filter: blur(12px);
}

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

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

::selection {
  background: rgba(167, 142, 116, .34);
}

/* Intro */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
  transition: opacity .82s ease, visibility .82s ease;
}

.splash-screen.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-photo {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: .16;
  filter: blur(10px) saturate(.82) brightness(.78);
  transform: scale(1.08);
  transition: opacity 1.2s ease, filter 1.2s ease, transform 2.4s cubic-bezier(.18, .85, .2, 1);
}

.splash-screen.is-ready .splash-photo {
  opacity: .34;
  filter: blur(0) saturate(.88) brightness(.72);
  transform: scale(1.015);
}

.splash-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.splash-panels span {
  background: var(--paper);
  transform: translateY(0);
  transition: transform 1.05s cubic-bezier(.74, 0, .2, 1);
}

.splash-panels span:nth-child(2),
.splash-panels span:nth-child(4) {
  background: #efe4d9;
}

.splash-screen.is-ready .splash-panels span:nth-child(1) {
  transform: translateY(-100%);
  transition-delay: .18s;
}

.splash-screen.is-ready .splash-panels span:nth-child(2) {
  transform: translateY(100%);
  transition-delay: .28s;
}

.splash-screen.is-ready .splash-panels span:nth-child(3) {
  transform: translateY(-100%);
  transition-delay: .38s;
}

.splash-screen.is-ready .splash-panels span:nth-child(4) {
  transform: translateY(100%);
  transition-delay: .48s;
}

.splash-card {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 42px));
  display: grid;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: opacity .9s ease .65s, transform 1s cubic-bezier(.18, .85, .2, 1) .65s;
}

.splash-screen.is-ready .splash-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.splash-card img {
  width: 108px;
  height: 78px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .95;
  transform: translateY(8px);
  transition: transform .9s ease 1s, opacity .9s ease 1s;
}

.splash-screen.is-ready .splash-card img {
  transform: translateY(0);
}

.splash-wordmark {
  margin-top: 18px;
  display: flex;
  gap: .22em;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 600;
  line-height: .78;
  letter-spacing: -.065em;
}

.splash-wordmark span {
  display: inline-block;
  clip-path: inset(0 0 100% 0);
  transform: translateY(22px);
  transition: clip-path .92s cubic-bezier(.18, .85, .2, 1), transform .92s cubic-bezier(.18, .85, .2, 1);
}

.splash-screen.is-ready .splash-wordmark span:first-child {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  transition-delay: 1.02s;
}

.splash-screen.is-ready .splash-wordmark span:last-child {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  transition-delay: 1.16s;
}

.splash-card i {
  width: 0;
  height: 1px;
  margin-top: 28px;
  background: rgba(255, 250, 244, .82);
  transition: width .85s ease 1.45s;
}

.splash-screen.is-ready .splash-card i {
  width: min(360px, 64vw);
}

.splash-card p {
  margin-top: 18px;
  color: rgba(255, 250, 244, .76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease 1.75s, transform .7s ease 1.75s;
}

.splash-screen.is-ready .splash-card p {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 72px;
  padding: 0 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper-light);
  border-bottom: 1px solid rgba(255, 250, 244, .16);
  background: rgba(21, 16, 12, .18);
  backdrop-filter: blur(16px);
  transition: color .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease, min-height .3s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  min-height: 64px;
  color: var(--ink);
  border-color: rgba(21, 16, 12, .10);
  background: rgba(247, 239, 231, .94);
  box-shadow: 0 14px 45px rgba(38, 27, 20, .09);
}

.nav {
  width: min(920px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 64px);
}

.nav a,
.menu-toggle span,
.eyebrow,
.offer-row span,
.process-step span,
.portfolio-item figcaption,
.footer-nav a,
.footer-contact a,
.footer-contact span,
.studio-points span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  opacity: .78;
  transition: opacity .25s ease, transform .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: .72;
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 100%;
  min-height: 50px;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle i {
  position: absolute;
  right: 0;
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}

.menu-toggle i:first-of-type { top: 18px; }
.menu-toggle i:last-of-type { top: 30px; }
.menu-toggle.is-active i:first-of-type { top: 24px; transform: rotate(45deg); }
.menu-toggle.is-active i:last-of-type { top: 24px; transform: rotate(-45deg); }

.section-padding {
  padding: clamp(82px, 9vw, 142px) 7vw;
}

.eyebrow {
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.052em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 128px 7vw 88px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper-light);
  isolation: isolate;
  background: var(--ink);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 2.2s cubic-bezier(.18, .85, .2, 1), filter 1.2s ease;
}

body.page-ready .hero-bg {
  transform: scale(1.01);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 16, 12, .74) 0%, rgba(21, 16, 12, .34) 42%, rgba(21, 16, 12, .26) 100%),
    linear-gradient(180deg, rgba(21, 16, 12, .38), rgba(21, 16, 12, .22) 42%, rgba(21, 16, 12, .70));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity .95s ease .3s, transform 1.05s cubic-bezier(.18, .85, .2, 1) .3s, filter 1.05s ease .3s;
}

body.page-ready .hero-content {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-kicker {
  margin-bottom: 18px;
  color: rgba(255, 250, 244, .72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: .86;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  overflow: hidden;
}

.hero-content > p:last-child {
  max-width: 580px;
  margin-top: 24px;
  color: rgba(255, 250, 244, .76);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.78;
}

.quote-band {
  padding: clamp(72px, 9vw, 126px) 7vw;
  background: var(--paper);
}

.quote-band p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(39px, 5.5vw, 76px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.056em;
  text-align: center;
  text-wrap: balance;
}

/* Studio */
.studio-section {
  min-height: 100svh;
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}

.studio-split {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 45vw) minmax(0, 1fr);
  align-items: stretch;
}

.studio-photo {
  position: relative;
  min-height: 100svh;
  height: 100%;
  overflow: hidden;
  background: var(--accent);
  box-shadow: 24px 0 80px rgba(54, 38, 27, .10);
}

.studio-photo::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 2;
  width: clamp(18px, 3.2vw, 56px);
  border-left: 1px solid rgba(255, 250, 244, .48);
  background: linear-gradient(90deg, rgba(247, 239, 231, 0), rgba(247, 239, 231, .34));
  pointer-events: none;
}

.studio-photo::after {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 44px) clamp(18px, 3vw, 44px) clamp(18px, 3vw, 44px) auto;
  z-index: 3;
  width: min(72%, 520px);
  border: 1px solid rgba(255, 250, 244, .46);
  border-left: 0;
  border-radius: 0 28px 28px 0;
  pointer-events: none;
}

.studio-photo img {
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) brightness(1.02);
}

.studio-panel {
  min-height: 100svh;
  padding: clamp(96px, 12vh, 150px) 7vw clamp(70px, 9vh, 118px) clamp(38px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.studio-panel h2,
.section-head h2,
.image-break-copy h2,
.process-copy h2,
.contact-content h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .92;
  text-wrap: balance;
}

.studio-panel > p:not(.eyebrow),
.process-copy > p,
.contact-content > p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.studio-points {
  max-width: 760px;
  margin-top: clamp(36px, 5vw, 62px);
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.studio-points article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 64px minmax(120px, 180px) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.studio-points span,
.studio-points p {
  color: rgba(21, 16, 12, .52);
}

.studio-points span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.studio-points strong {
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.05em;
}

.studio-points p {
  line-height: 1.6;
}

/* Offer */
.offer-section {
  background: var(--paper);
}

.section-head {
  max-width: 880px;
  margin-bottom: clamp(40px, 6vw, 74px);
}

.offer-list {
  display: grid;
  gap: 18px;
}

.offer-row {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(230px, .52fr) minmax(0, 1fr);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 244, .38);
  transition: background .35s ease;
}

.offer-row:last-child {
  border-bottom: 1px solid var(--line);
}

.offer-row:hover {
  background: rgba(255, 250, 244, .58);
}

.offer-row figure {
  min-height: 360px;
  overflow: hidden;
}

.offer-row img {
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease, filter .9s ease;
}

.offer-row:hover img {
  transform: scale(1.035);
  filter: brightness(.96);
}

.offer-row div {
  padding: clamp(30px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-row span,
.process-step span,
.portfolio-item figcaption {
  color: rgba(21, 16, 12, .46);
}

.offer-row h3 {
  margin-top: 24px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .88;
}

.offer-row p {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.74;
}

.image-break {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
}

.image-break img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 16, 12, .70), rgba(21, 16, 12, .14)),
    linear-gradient(180deg, rgba(21, 16, 12, .08), rgba(21, 16, 12, .42));
}

.image-break-copy {
  position: absolute;
  left: 7vw;
  bottom: clamp(46px, 7vw, 82px);
  z-index: 2;
  max-width: 760px;
}

.image-break-copy .eyebrow,
.contact-content .eyebrow {
  color: rgba(255, 250, 244, .62);
}

/* Portfolio */
.portfolio-section {
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4 / 4.65;
  overflow: hidden;
  border-radius: 22px;
  background: var(--accent);
}

.portfolio-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .85s ease, filter .85s ease;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(21, 16, 12, .44));
  opacity: .64;
  transition: opacity .35s ease;
}

.portfolio-item:hover img {
  transform: scale(1.045);
  filter: brightness(.95);
}

.portfolio-item:hover::after {
  opacity: .9;
}

.portfolio-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 250, 244, .82);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

/* Process */
.process-section {
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 104px;
}

.process-copy img {
  margin-top: 34px;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.process-steps {
  display: grid;
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 172px;
  padding: 30px 0 30px 42px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.process-step::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.process-step::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 42px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(167, 142, 116, .14);
}

.process-step span {
  padding-top: 8px;
}

.process-step h3 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: .92;
}

.process-step p {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

/* Contact */
.contact-section {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
}

.contact-image {
  position: relative;
  min-height: 520px;
}

.contact-image img {
  height: 100%;
  object-fit: cover;
  filter: brightness(.84);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(21, 16, 12, .08), rgba(21, 16, 12, .94) 48%, rgba(21, 16, 12, .98));
}

.contact-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(58px, 8vw, 120px) 7vw clamp(58px, 8vw, 120px) clamp(34px, 5vw, 72px);
}

.contact-content > p {
  color: rgba(255, 250, 244, .72);
}

.contact-links {
  margin-top: 44px;
  display: grid;
  gap: 12px;
}

.contact-links a {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid var(--line-light);
  transition: opacity .25s ease, transform .25s ease;
}

.contact-links a:first-child {
  border-top: 1px solid var(--line-light);
}

.contact-links a:hover {
  opacity: .78;
  transform: translateX(6px);
}

.contact-links span {
  color: rgba(255, 250, 244, .48);
}

.contact-links strong {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.055em;
  word-break: break-word;
}

.footer {
  padding: 44px 7vw;
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) minmax(280px, .9fr) minmax(220px, .8fr);
  gap: 34px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-main p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.055em;
}

.footer-main span {
  display: block;
  max-width: 380px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-content: start;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(21, 16, 12, .62);
}

.footer-contact {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 12px;
  text-align: right;
}

.footer a {
  transition: color .25s ease;
}

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

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease, transform .7s cubic-bezier(.2, .72, .2, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal[data-reveal="up"],
.reveal[data-reveal="left"],
.reveal[data-reveal="right"],
.reveal[data-reveal="scale"] {
  transform: translateY(18px);
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .splash-screen {
    display: none;
  }

  .reveal,
  .hero-content {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1180px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .studio-split {
    grid-template-columns: minmax(320px, 43vw) minmax(0, 1fr);
  }

  .studio-panel {
    padding-right: 5vw;
  }

  .process-copy {
    position: static;
  }

  .contact-section::after {
    background: linear-gradient(180deg, rgba(21, 16, 12, .08), rgba(21, 16, 12, .95) 52%, rgba(21, 16, 12, .98));
  }

  .contact-image {
    min-height: 54svh;
  }

  .contact-content {
    padding: 70px 7vw 90px;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    min-height: 66px;
    padding: 0 22px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
    padding: 22px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    color: var(--ink);
    background: rgba(247, 239, 231, .98);
    border-bottom: 1px solid rgba(21, 16, 12, .12);
    box-shadow: 0 24px 80px rgba(28, 20, 15, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    justify-content: flex-start;
    min-height: 56px;
    border-bottom: 1px solid rgba(21, 16, 12, .10);
    font-size: 12px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .offer-row {
    grid-template-columns: 1fr;
  }

  .offer-row figure {
    min-height: 300px;
  }

  .process-step {
    padding-left: 32px;
    grid-template-columns: 58px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .section-padding {
    padding: 78px 22px;
  }

  .splash-wordmark {
    font-size: clamp(56px, 18vw, 82px);
  }

  .splash-card p {
    max-width: 280px;
    line-height: 1.7;
  }

  .hero {
    padding: 104px 22px 58px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(21, 16, 12, .68), rgba(21, 16, 12, .26)),
      linear-gradient(180deg, rgba(21, 16, 12, .30), rgba(21, 16, 12, .72));
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
    line-height: .9;
  }

  .hero-content > p:last-child {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  .quote-band {
    padding: 68px 22px;
  }

  .quote-band p {
    font-size: clamp(34px, 11vw, 54px);
  }

  .studio-split {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .studio-section {
    min-height: auto;
  }

  .studio-photo,
  .studio-photo img {
    min-height: 58svh;
  }

  .studio-photo {
    height: 58svh;
  }

  .studio-photo::after {
    inset: 20px 20px 20px auto;
    width: 70%;
    border-radius: 0 22px 22px 0;
  }

  .studio-panel {
    min-height: auto;
    padding: 72px 22px 78px;
  }

  .studio-panel h2,
  .section-head h2,
  .image-break-copy h2,
  .process-copy h2,
  .contact-content h2 {
    font-size: clamp(39px, 12vw, 58px);
    line-height: .96;
  }

  .studio-points article {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .offer-row div {
    padding: 28px 0 34px;
  }

  .offer-row h3 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .offer-row figure {
    min-height: 260px;
  }

  .image-break {
    min-height: 70svh;
  }

  .image-break-copy {
    left: 22px;
    right: 22px;
    bottom: 34px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    aspect-ratio: 4 / 4.45;
    border-radius: 22px;
  }

  .process-copy img {
    height: 300px;
    border-radius: 24px;
  }

  .process-step {
    min-height: auto;
    padding: 26px 0 26px 28px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step h3 {
    font-size: 36px;
  }

  .contact-image {
    min-height: 42svh;
  }

  .contact-content {
    padding: 64px 22px 76px;
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-links strong {
    font-size: clamp(27px, 9vw, 42px);
  }

  .footer {
    padding: 34px 22px;
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-kicker {
    letter-spacing: .16em;
  }

  .hero h1 {
    font-size: 41px;
  }

  .studio-photo,
  .studio-photo img {
    min-height: 420px;
  }

  .studio-photo {
    height: 420px;
  }

  .footer-main p {
    font-size: 31px;
  }
}
