:root {
  --ink: #0b0b0b;
  --ink-soft: #181818;
  --paper: #f3efe6;
  --paper-light: #faf7f0;
  --paper-deep: #e7dfd0;
  --coral: #ff624a;
  --orange: #ff9e2c;
  --yellow: #ffd45c;
  --cobalt: #1739bd;
  --sky: #83deef;
  --muted: #6f6a62;
  --line: rgba(11, 11, 11, 0.16);
  --page: clamp(22px, 4vw, 72px);
  --section: clamp(88px, 10vw, 160px);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(11, 11, 11, 0.1);
  background: rgba(243, 239, 230, 0.88);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper-light);
  box-shadow: 0 8px 20px rgba(11, 11, 11, 0.16);
}

.mark::before {
  position: absolute;
  top: -11px;
  right: -9px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.mark i {
  position: absolute;
  bottom: -14px;
  left: -7px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--cobalt);
}

.mark b {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a:not(.contact-link)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-link {
  padding: 11px 16px !important;
  border: 1px solid rgba(11, 11, 11, 0.46);
  border-radius: 100px;
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-link:hover {
  background: var(--ink);
  color: var(--paper-light);
}

.menu-button {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-button span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1.5px;
  background: var(--paper-light);
  transition: top 180ms ease, transform 180ms ease;
}

.menu-button span:first-child { top: 17px; }
.menu-button span:nth-child(2) { top: 25px; }
.menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.26fr) minmax(330px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 5vw, 92px);
  padding: 124px var(--page) 92px;
  background: var(--paper);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11, 11, 11, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 11, 11, 0.055) 1px, transparent 1px);
  background-size: clamp(72px, 8vw, 126px) clamp(72px, 8vw, 126px);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -24vw;
  right: -14vw;
  width: 64vw;
  height: 64vw;
}

.hero-orbit-two {
  right: -5vw;
  bottom: -34vw;
  width: 72vw;
  height: 72vw;
}

.hero-copy,
.hero-object,
.hero-foot {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 clamp(28px, 4vw, 52px);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 158, 44, 0.2);
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(64px, 9.2vw, 148px);
  font-weight: 790;
  letter-spacing: -0.078em;
  line-height: 0.79;
}

.hero h1 em {
  color: var(--coral);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-intro {
  display: grid;
  max-width: 790px;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  gap: 36px;
  margin-top: clamp(38px, 5vw, 70px);
}

.hero-intro > p {
  max-width: 590px;
  margin: 0;
  font-size: clamp(18px, 1.55vw, 24px);
  letter-spacing: -0.028em;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper-light);
  box-shadow: 0 12px 30px rgba(11, 11, 11, 0.16);
}

.button-dark:hover { box-shadow: 0 16px 34px rgba(11, 11, 11, 0.24); }

.button-coral {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(255, 98, 74, 0.22);
}

.button-light {
  border-color: rgba(250, 247, 240, 0.55);
  background: var(--paper-light);
  color: var(--ink);
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.hero-object {
  width: min(100%, 520px);
  height: min(38vw, 560px);
  min-height: 430px;
  justify-self: end;
}

.studio-card {
  position: absolute;
  box-shadow: 0 28px 70px rgba(11, 11, 11, 0.16);
}

.studio-card-main {
  inset: 8% 5% 5% 7%;
  overflow: hidden;
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid rgba(11, 11, 11, 0.25);
  border-radius: clamp(22px, 2.6vw, 38px);
  background: var(--cobalt);
  color: var(--paper-light);
  transform: rotate(4.5deg);
}

.studio-card-main::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(250, 247, 240, 0.36);
  border-radius: 50%;
  content: "";
}

.card-index {
  position: relative;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.studio-card-main p {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 9%;
  max-width: 42%;
  margin: 0;
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.card-sun {
  position: absolute;
  top: 16%;
  right: 11%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: -70px 84px 0 -20px var(--coral), -128px 22px 0 -48px var(--yellow);
}

.studio-card-note {
  right: -2%;
  bottom: 0;
  display: flex;
  width: 205px;
  min-height: 106px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px 26px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  transform: rotate(-5deg);
}

.studio-card-note span,
.studio-card-note b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.studio-card-note span { color: var(--coral); }

.studio-lens {
  position: absolute;
  top: 0;
  left: -2%;
  display: grid;
  width: 116px;
  aspect-ratio: 1;
  place-items: center;
  border: 11px solid var(--ink);
  border-radius: 50%;
  background: var(--sky);
  box-shadow: inset 0 0 0 9px var(--paper-light), 0 22px 40px rgba(11, 11, 11, 0.18);
}

.studio-lens i {
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: inset 9px 8px 0 rgba(255, 255, 255, 0.28);
}

.tiny-star {
  position: absolute;
  color: var(--coral);
  font-size: 34px;
}

.tiny-star-one { top: 13%; right: -5%; }
.tiny-star-two { bottom: 12%; left: 0; color: var(--orange); font-size: 25px; }

.hero-foot {
  position: absolute;
  right: var(--page);
  bottom: 28px;
  left: var(--page);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.hero-foot i {
  width: 26px;
  height: 1px;
  background: var(--ink);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--orange);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  animation: marquee 30s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-track i { font-size: 15px; font-style: normal; }

@keyframes marquee { to { transform: translateX(-50%); } }

.section {
  padding: var(--section) var(--page);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 120px);
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 112px);
}

.section-heading p,
.section-label,
.light-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 9px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading p span,
.section-label span,
.light-kicker span { color: var(--coral); }

.section-heading h2,
.studio-heading h2,
.company-statement h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 96px);
  font-weight: 760;
  letter-spacing: -0.066em;
  line-height: 0.94;
}

.section-heading h2::first-line { color: var(--ink); }

.product-feature {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  border: 1px solid var(--ink);
  border-radius: clamp(24px, 3vw, 44px);
  background: var(--paper-light);
}

.product-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-visual:hover > img { transform: scale(1.025); }

.product-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 46%, rgba(11, 11, 11, 0.18));
  content: "";
  pointer-events: none;
}

.product-phone {
  position: absolute;
  z-index: 2;
  right: -4%;
  bottom: -16%;
  width: min(42%, 330px);
  overflow: hidden;
  border: 12px solid var(--ink);
  border-radius: 44px;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(11, 11, 11, 0.35);
  transform: rotate(6deg);
}

.product-phone img { width: 100%; }

.product-badge {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  padding: 11px 15px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 76px);
}

.product-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-title-row img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(11, 11, 11, 0.18);
}

.product-title-row span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title-row h3 {
  margin: 2px 0 0;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.product-lead {
  margin: 38px 0 18px !important;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  font-weight: 680;
  letter-spacing: -0.045em !important;
  line-height: 1.05 !important;
}

.product-copy > p {
  margin: 0;
  color: #48443f;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.6;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 30px 0 38px;
  list-style: none;
}

.product-tags li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-copy .button { align-self: flex-start; }

.section-dark {
  background: var(--ink);
  color: var(--paper-light);
}

.studio {
  position: relative;
  overflow: hidden;
  padding: var(--section) var(--page);
}

.studio::after {
  position: absolute;
  top: -30vw;
  right: -17vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(250, 247, 240, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8vw var(--ink), inset 0 0 0 calc(8vw + 1px) rgba(250, 247, 240, 0.14);
  content: "";
}

.studio-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 120px);
  margin-bottom: clamp(70px, 9vw, 128px);
}

.studio-heading h2 em,
.company-statement h2 em {
  color: var(--orange);
  font-family: var(--serif);
  font-weight: 400;
}

.principles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(250, 247, 240, 0.22);
}

.principle {
  min-height: 340px;
  padding: 30px clamp(22px, 3vw, 48px) 26px 0;
  border-right: 1px solid rgba(250, 247, 240, 0.22);
}

.principle + .principle { padding-left: clamp(22px, 3vw, 48px); }
.principle:last-child { border-right: 0; }

.principle > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.principle h3 {
  max-width: 280px;
  margin: 110px 0 20px;
  font-size: clamp(25px, 2.5vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.principle p {
  max-width: 360px;
  margin: 0;
  color: rgba(250, 247, 240, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(60px, 10vw, 170px);
  background: var(--paper-light);
}

.company-statement h2 {
  margin-top: 35px;
}

.company-statement > p:last-child {
  max-width: 640px;
  margin: 42px 0 0;
  color: #4f4a44;
  font-size: clamp(18px, 1.65vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.48;
}

.company-details {
  align-self: center;
  border-top: 1px solid var(--ink);
}

.detail-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-row strong,
.detail-row address,
.detail-row a {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.52;
}

.detail-row a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.contact-section {
  position: relative;
  display: flex;
  min-height: 650px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--section) var(--page);
  background: var(--cobalt);
  color: var(--paper-light);
  text-align: center;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.contact-section::before {
  top: -15%;
  left: -8%;
  width: 360px;
  height: 360px;
  background: var(--orange);
  filter: blur(1px);
}

.contact-section::after {
  right: -8%;
  bottom: -20%;
  width: 440px;
  height: 440px;
  background: var(--coral);
}

.contact-orbit {
  position: absolute;
  width: min(72vw, 860px);
  aspect-ratio: 1;
  border: 1px solid rgba(250, 247, 240, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px var(--cobalt), inset 0 0 0 71px rgba(250, 247, 240, 0.18);
}

.contact-section > p,
.contact-section h2,
.contact-section .button {
  position: relative;
  z-index: 2;
}

.contact-section > p {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section h2 {
  font-size: clamp(58px, 9vw, 134px);
}

.contact-section .button { margin-top: 48px; }

.site-footer {
  padding: 72px var(--page) 28px;
  background: var(--ink);
  color: var(--paper-light);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.2);
}

.wordmark-footer .mark {
  border: 1px solid rgba(250, 247, 240, 0.3);
}

.footer-top > p {
  max-width: 340px;
  margin: 0;
  color: rgba(250, 247, 240, 0.58);
  font-size: 15px;
  line-height: 1.5;
  text-align: right;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 36px;
  max-width: 730px;
  padding: 62px 0 78px;
  margin-left: auto;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links span {
  margin-bottom: 5px;
  color: rgba(250, 247, 240, 0.46);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a { font-size: 14px; }
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 240, 0.2);
  color: rgba(250, 247, 240, 0.48);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom p { margin: 0; }

.legal-main {
  min-height: 75vh;
  padding: 150px var(--page) var(--section);
  background: var(--paper-light);
}

.legal-layout {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(200px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(40px, 8vw, 130px);
  margin: 0 auto;
}

.legal-aside p {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-aside a {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
}

.legal-content h1 {
  margin: 0 0 22px;
  font-size: clamp(54px, 7vw, 96px);
  letter-spacing: -0.068em;
  line-height: 0.92;
}

.legal-updated {
  margin: 0 0 68px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-block {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.legal-block p {
  margin: 0 0 12px;
  color: #49453f;
  font-size: 15px;
  line-height: 1.65;
}

.legal-block a { text-decoration: underline; text-underline-offset: 4px; }

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: var(--page);
  background: var(--cobalt);
  color: var(--paper-light);
  text-align: center;
}

.not-found-inner span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.not-found-inner h1 {
  margin: 20px 0;
  font-size: clamp(78px, 18vw, 220px);
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.not-found-inner p { margin: 0 0 36px; font-size: 18px; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .hero-intro { grid-template-columns: 1fr; }
  .hero-actions { flex-wrap: wrap; }
  .product-feature { grid-template-columns: 1fr; }
  .product-visual { min-height: 580px; }
  .product-phone { width: 30%; }
  .company { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { height: 76px; }
  .wordmark { font-size: 19px; }
  .mark { width: 38px; height: 38px; border-radius: 12px; }
  .menu-button { display: block; }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 92px var(--page) 40px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 200ms ease, opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: clamp(36px, 10vw, 58px);
    font-weight: 720;
    letter-spacing: -0.055em;
  }

  .site-nav .contact-link {
    margin-top: 24px;
    padding: 12px 18px !important;
    font-size: 17px;
    letter-spacing: 0;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 126px;
  }

  .hero h1 { font-size: clamp(62px, 17vw, 112px); }
  .hero-intro { margin-top: 38px; }
  .hero-object { width: min(92%, 520px); height: 520px; margin: 68px auto 22px; justify-self: auto; }
  .hero-foot { position: relative; right: auto; bottom: auto; left: auto; margin-top: 50px; }

  .section-heading,
  .studio-heading,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section-heading { gap: 28px; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 260px; padding: 28px 0 34px !important; border-right: 0; border-bottom: 1px solid rgba(250, 247, 240, 0.22); }
  .principle:last-child { border-bottom: 0; }
  .principle h3 { margin-top: 74px; }
  .contact-section::before { width: 220px; height: 220px; }
  .contact-section::after { width: 260px; height: 260px; }
}

@media (max-width: 620px) {
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-object { height: 420px; }
  .studio-lens { width: 88px; border-width: 8px; }
  .studio-card-note { width: 170px; min-height: 90px; padding: 18px; }
  .studio-card-main { padding: 26px; }
  .product-visual { min-height: 440px; }
  .product-phone { right: -7%; bottom: -10%; width: 42%; border-width: 8px; border-radius: 30px; }
  .product-badge { top: 18px; left: 18px; }
  .product-copy { padding: 36px 24px 42px; }
  .detail-row { grid-template-columns: 1fr; gap: 10px; }
  .footer-top { flex-direction: column; }
  .footer-top > p { text-align: left; }
  .footer-links { grid-template-columns: 1fr 1fr; margin-left: 0; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-main { padding-top: 125px; }
}

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