:root {
  --ink: #11110f;
  --ink-soft: #25241f;
  --paper: #f1efe9;
  --paper-bright: #faf9f5;
  --bone: #d8d3c8;
  --bronze: #b59062;
  --muted: #76736b;
  --line: rgba(17, 17, 15, 0.18);
  --line-light: rgba(255, 255, 255, 0.28);
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", "Baskerville", Georgia, serif;
  --page: clamp(20px, 3.3vw, 54px);
  --content: 1480px;
  --header-height: 92px;
  --control-radius: 12px;
  --panel-radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: var(--control-radius);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.section-pad {
  width: min(100%, calc(var(--content) + var(--page) * 2));
  margin-inline: auto;
  padding-inline: var(--page);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  padding: 18px var(--page);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  color: white;
  transition: min-height 300ms ease, padding 300ms ease, background 300ms ease, color 300ms ease, border 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--ink);
  background: rgba(241, 239, 233, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-open {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  width: 25px;
  height: 26px;
}

.brand-mark i {
  display: block;
  width: 7px;
  background: currentColor;
}

.brand-mark i:nth-child(1) { height: 12px; }
.brand-mark i:nth-child(2) { height: 19px; }
.brand-mark i:nth-child(3) { height: 26px; }

.brand-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.brand-descriptor {
  padding-left: 12px;
  border-left: 1px solid currentColor;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 162px;
  padding: 11px 14px;
  border: 1px solid currentColor;
  border-radius: var(--control-radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover { color: var(--paper); background: var(--ink); }
.site-header:not(.is-scrolled) .header-cta:hover { color: var(--ink); background: white; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  padding: calc(var(--header-height) + 58px) var(--page) 40px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: white;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  animation: hero-breathe 16s ease-out both;
  object-position: center 55%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 9, 8, 0.56) 0%, transparent 34%),
    linear-gradient(90deg, rgba(9, 9, 8, 0.58) 0%, rgba(9, 9, 8, 0.08) 58%, rgba(9, 9, 8, 0.1) 100%),
    linear-gradient(0deg, rgba(9, 9, 8, 0.62) 0%, transparent 42%);
}

@keyframes hero-breathe { from { transform: scale(1.04); } to { transform: scale(1); } }

.hero-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.eyebrow,
.availability,
.hero-index {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.availability { display: inline-flex; align-items: center; gap: 9px; }
.availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8c39a;
  box-shadow: 0 0 0 5px rgba(216, 195, 154, 0.16);
}

.hero-copy {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: end;
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-bottom: clamp(52px, 8vh, 94px);
}

.hero h1,
.manifesto h2,
.work-title-row h2,
.services-heading h2,
.process-intro h2,
.contact h2,
.studio-note-copy {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 { font-size: clamp(70px, 9vw, 146px); }

h1 em,
h2 em,
.studio-note-copy em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-intro {
  max-width: 410px;
  padding-bottom: 10px;
}

.hero-intro p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.6;
}

.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 26px; }

.button {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 0;
  border-radius: var(--control-radius);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--paper-bright); }
.button-light:hover { color: white; background: var(--bronze); }

.text-link {
  display: inline-flex;
  gap: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  right: var(--page);
  bottom: 40px;
  opacity: .72;
}

.section-label {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-label-light { border-color: var(--line-light); }

.manifesto { padding-top: clamp(80px, 11vw, 168px); padding-bottom: clamp(110px, 15vw, 220px); }

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  margin-top: clamp(56px, 8vw, 120px);
}

.manifesto h2 {
  max-width: 1050px;
  font-size: clamp(52px, 7vw, 112px);
  line-height: .98;
}

.manifesto-copy { max-width: 390px; padding-bottom: 8px; }
.manifesto-copy p { margin: 0 0 22px; color: var(--ink-soft); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.65; }
.manifesto-copy p:last-child { margin-bottom: 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.work-section { color: white; background: var(--ink); }
.work-heading { padding-top: clamp(72px, 9vw, 132px); padding-bottom: clamp(54px, 8vw, 112px); }
.work-title-row { margin-top: clamp(42px, 7vw, 90px); display: flex; justify-content: space-between; gap: 70px; align-items: end; }
.work-title-row h2 { font-size: clamp(58px, 8vw, 122px); }
.work-title-row p { width: min(370px, 100%); margin: 0 0 8px; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.65; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  grid-template-rows: minmax(470px, 68vw) minmax(400px, 54vw) minmax(410px, 52vw);
  gap: 2px;
  background: rgba(255,255,255,.16);
}

.portfolio-item { position: relative; min-height: 0; margin: 0; overflow: hidden; background: #222; }
.portfolio-item img { transition: transform 900ms cubic-bezier(.2,.65,.25,1); }
.portfolio-item:hover img { transform: scale(1.025); }
.portfolio-primary { grid-column: 1; grid-row: 1; }
.portfolio-tall { grid-column: 2; grid-row: 1 / span 2; }
.portfolio-landscape { grid-column: 1; grid-row: 2; }
.portfolio-night { grid-column: 1 / -1; grid-row: 3; }
.portfolio-tall img { object-position: 57% center; }
.portfolio-night img { object-position: center 56%; }
.portfolio-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 70px 24px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.62));
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.services { padding-top: clamp(100px, 13vw, 190px); padding-bottom: clamp(110px, 14vw, 210px); }
.services-heading { margin: clamp(48px, 7vw, 100px) 0 clamp(68px, 9vw, 125px); display: flex; justify-content: space-between; gap: 80px; align-items: end; }
.services-heading h2 { font-size: clamp(58px, 7.8vw, 118px); }
.services-heading > p { width: min(390px, 100%); margin: 0 0 9px; color: var(--muted); font-size: 16px; line-height: 1.65; }

.service-list { border-bottom: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 50px minmax(190px, .45fr) minmax(300px, 1fr) 150px;
  gap: clamp(24px, 4vw, 68px);
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.service-number, .service-price { padding-top: 7px; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.service-price { text-align: right; }
.service-image { aspect-ratio: 1.35; overflow: hidden; }
.service-image img { transition: transform 800ms ease; }
.service-row:hover .service-image img { transform: scale(1.035); }
.service-copy { max-width: 650px; }
.service-copy h3 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(36px, 4.2vw, 62px); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.service-copy p { max-width: 570px; margin: 0 0 24px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.service-copy ul { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.service-copy li::before { content: "+"; margin-right: 7px; color: var(--bronze); }

.image-break { position: relative; height: min(78vw, 950px); min-height: 600px; overflow: hidden; }
.image-break img { object-position: center 53%; }
.image-break-note {
  position: absolute;
  left: var(--page);
  right: var(--page);
  bottom: 26px;
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  color: white;
  border-top: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.process { padding-top: clamp(100px, 13vw, 190px); padding-bottom: clamp(110px, 14vw, 210px); }
.process-layout { display: grid; grid-template-columns: minmax(0,.95fr) minmax(450px, .65fr); gap: clamp(70px, 11vw, 180px); margin-top: clamp(55px, 8vw, 120px); }
.process-intro { position: sticky; top: 135px; align-self: start; }
.process-intro h2 { font-size: clamp(58px, 7.2vw, 108px); }
.process-intro > p { max-width: 440px; margin: 34px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.process-steps { margin: 0; padding: 0; list-style: none; border-bottom: 1px solid var(--line); }
.process-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 26px; padding: 34px 0 46px; border-top: 1px solid var(--line); }
.process-steps > li > span { padding-top: 7px; color: var(--bronze); font-size: 10px; font-weight: 600; letter-spacing: .1em; }
.process-steps h3 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(32px, 3.5vw, 48px); font-weight: 400; line-height: 1; letter-spacing: -.03em; }
.process-steps p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.studio-note { padding-top: clamp(80px, 10vw, 150px); padding-bottom: clamp(100px, 13vw, 190px); text-align: center; }
.studio-note-mark { margin: 0 0 -20px; color: var(--bronze); font-family: var(--serif); font-size: 100px; line-height: .5; }
.studio-note-copy { font-size: clamp(45px, 6.7vw, 102px); line-height: 1; }
.studio-note-signoff { margin: 40px 0 0; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

.contact { position: relative; min-height: max(820px, 100svh); display: grid; color: white; overflow: hidden; isolation: isolate; }
.contact > img, .contact-overlay { position: absolute; inset: 0; z-index: -2; }
.contact > img { object-position: center 55%; transform: scale(1.02); }
.contact-overlay { z-index: -1; background: linear-gradient(90deg, rgba(10,10,9,.83), rgba(10,10,9,.43) 58%, rgba(10,10,9,.28)), linear-gradient(0deg, rgba(10,10,9,.72), transparent 60%); }
.contact-inner { width: 100%; padding-top: clamp(130px, 14vw, 210px); padding-bottom: clamp(70px, 8vw, 120px); display: grid; grid-template-columns: minmax(0,1.1fr) minmax(420px,.55fr); gap: clamp(60px, 10vw, 160px); align-items: end; }
.contact-copy { align-self: start; }
.contact-copy .eyebrow { display: block; margin-bottom: 42px; }
.contact h2 { max-width: 940px; font-size: clamp(62px, 8vw, 126px); }

.contact-form { align-self: end; padding: 26px; border: 1px solid rgba(255,255,255,.32); border-radius: var(--panel-radius); background: rgba(16,16,14,.36); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: white; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.45); border-radius: 0; outline: 0; }
.contact-form input, .contact-form select { height: 42px; }
.contact-form textarea { min-height: 72px; resize: vertical; padding: 10px 0; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.58); }
.contact-form select { color-scheme: dark; }
.form-message { grid-column: 1 / -1; }
.form-submit { width: 100%; margin-top: 26px; }
.form-note { min-height: 18px; margin: 12px 0 0; color: rgba(255,255,255,.62); font-size: 10px; }
.form-note.is-success { color: #ead5a8; }

.footer { color: white; background: var(--ink); padding-top: 70px; padding-bottom: 34px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; min-height: 155px; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,.18); }
.brand-footer .brand-name { font-size: clamp(54px, 8vw, 118px); }
.brand-footer .brand-mark { width: 50px; height: 54px; gap: 4px; }
.brand-footer .brand-mark i { width: 14px; }
.brand-footer .brand-mark i:nth-child(1) { height: 24px; }
.brand-footer .brand-mark i:nth-child(2) { height: 39px; }
.brand-footer .brand-mark i:nth-child(3) { height: 54px; }
.footer-up { display: inline-flex; gap: 20px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: end; padding-top: 30px; color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }
.footer-bottom nav { display: flex; gap: 28px; color: white; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  :root { --header-height: 76px; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle {
    justify-self: end;
    position: relative;
    z-index: 52;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: var(--control-radius);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 19px; height: 1px; background: currentColor; transition: transform 200ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 100px var(--page) 40px;
    color: var(--ink);
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }
  .site-header.is-open .brand { position: relative; z-index: 52; }
  .site-header.is-open .mobile-nav { visibility: visible; opacity: 1; pointer-events: auto; }
  .mobile-nav a { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(42px, 8vw, 68px); line-height: 1; }
  .mobile-nav a span { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .12em; }
  .hero-copy { grid-template-columns: 1fr; gap: 30px; }
  .hero-intro { max-width: 520px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-copy { margin-left: auto; }
  .service-row { grid-template-columns: 38px minmax(180px,.5fr) 1fr; }
  .service-price { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-copy { align-self: auto; }
  .contact-form { width: min(620px, 100%); margin-left: auto; }
}

@media (max-width: 760px) {
  :root { --page: 18px; }
  .brand-descriptor { display: none; }
  .brand-name { font-size: 19px; }
  .hero { min-height: 780px; padding-bottom: 26px; }
  .hero-image { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(9,9,8,.55), transparent 33%), linear-gradient(0deg, rgba(9,9,8,.82), rgba(9,9,8,.08) 70%); }
  .hero-kicker { padding-top: 16px; }
  .availability { display: none; }
  .hero-copy { padding-bottom: 54px; }
  .hero h1 { font-size: clamp(57px, 17vw, 82px); line-height: .92; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-index { bottom: 25px; }
  .manifesto { padding-top: 78px; padding-bottom: 110px; }
  .manifesto-grid { margin-top: 48px; gap: 48px; }
  .manifesto h2 { font-size: clamp(45px, 13vw, 66px); }
  .manifesto-copy { margin: 0; }
  .work-heading { padding-top: 72px; padding-bottom: 72px; }
  .work-title-row, .services-heading { align-items: flex-start; flex-direction: column; gap: 30px; }
  .work-title-row h2, .services-heading h2 { font-size: clamp(54px, 16vw, 78px); }
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, minmax(430px, 82vh)); gap: 1px; }
  .portfolio-primary, .portfolio-tall, .portfolio-landscape, .portfolio-night { grid-column: 1; grid-row: auto; }
  .portfolio-tall img { object-position: 55% center; }
  .portfolio-night img { object-position: 58% center; }
  .services { padding-top: 92px; padding-bottom: 120px; }
  .services-heading { margin: 50px 0 72px; }
  .service-row { grid-template-columns: 32px 1fr; gap: 18px 14px; padding: 26px 0 42px; }
  .service-image { grid-column: 2; aspect-ratio: 1.35; }
  .service-copy { grid-column: 2; }
  .service-copy h3 { margin-top: 10px; font-size: 41px; }
  .service-copy ul { display: grid; gap: 8px; }
  .image-break { min-height: 620px; height: 90vh; }
  .image-break img { object-position: 68% center; }
  .image-break-note span:last-child { display: none; }
  .process { padding-top: 92px; padding-bottom: 120px; }
  .process-layout { grid-template-columns: 1fr; gap: 72px; margin-top: 50px; }
  .process-intro { position: static; }
  .process-intro h2 { font-size: clamp(52px, 15vw, 74px); }
  .process-steps li { padding: 30px 0 36px; }
  .studio-note { padding-top: 90px; padding-bottom: 120px; }
  .studio-note-copy { font-size: clamp(41px, 12vw, 58px); }
  .contact { min-height: auto; }
  .contact > img { object-position: 65% center; }
  .contact-overlay { background: linear-gradient(0deg, rgba(10,10,9,.88), rgba(10,10,9,.32)); }
  .contact-inner { padding-top: 115px; padding-bottom: 70px; gap: 70px; }
  .contact h2 { font-size: clamp(53px, 15vw, 78px); }
  .contact-form { padding: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-message { grid-column: auto; }
  .footer { padding-top: 54px; }
  .footer-top { min-height: 120px; padding-bottom: 54px; align-items: flex-end; }
  .brand-footer { gap: 8px; }
  .brand-footer .brand-name { font-size: 45px; }
  .brand-footer .brand-mark { width: 25px; height: 30px; gap: 2px; }
  .brand-footer .brand-mark i { width: 7px; }
  .brand-footer .brand-mark i:nth-child(1) { height: 13px; }
  .brand-footer .brand-mark i:nth-child(2) { height: 21px; }
  .brand-footer .brand-mark i:nth-child(3) { height: 30px; }
  .footer-up { font-size: 0; border: 0; }
  .footer-up span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.5); border-radius: var(--control-radius); font-size: 16px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom nav { grid-row: 1; }
  .footer-bottom p:last-child { text-align: left; }
}

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

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled, .site-header.is-open { background: var(--paper); }
  .contact-form { background: rgba(16,16,14,.82); }
}
