@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Prata";
  src: url("assets/fonts/prata-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  src: url("assets/fonts/prata-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --bg: #141210;
  --bg-deep: #0d0c0b;
  --surface: #1d1916;
  --surface-light: #27211d;
  --paper: #e8e0d4;
  --paper-soft: #d8cec0;
  --ink: #171411;
  --text: #f0e9de;
  --muted: #aaa096;
  --muted-dark: #6c6259;
  --champagne: #cbb28d;
  --bronze: #957151;
  --line: rgba(240, 233, 222, 0.15);
  --line-dark: rgba(23, 20, 17, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1320px, calc(100vw - 96px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open main,
body.menu-open .site-footer {
  visibility: hidden;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

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

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 160px;
}

.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: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  transition: transform 180ms ease;
}

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

.page-noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--bronze), var(--champagne));
}

.cursor {
  position: fixed;
  z-index: 150;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 1px solid rgba(240, 233, 222, 0.48);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: width 220ms var(--ease), height 220ms var(--ease), margin 220ms var(--ease),
    opacity 180ms ease, background-color 220ms ease, border-color 220ms ease;
}

.cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--champagne);
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-hovering {
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-color: rgba(203, 178, 141, 0.62);
  background: rgba(203, 178, 141, 0.08);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 450ms var(--ease), background-color 450ms ease, border-color 450ms ease,
    backdrop-filter 450ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 76px;
  border-color: var(--line);
  background: rgba(15, 13, 12, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-menu-open {
  height: 100vh;
  height: 100dvh;
  border-color: transparent;
  background: #0b0a09;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.is-menu-open .header-inner {
  height: var(--header-height);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
}

.brand-monogram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 45px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-monogram i {
  position: relative;
  display: block;
  padding: 3px 4px;
  font-style: normal;
}

.brand-monogram i:first-child {
  border-right: 1px solid var(--champagne);
}

.brand-monogram::after {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  height: 1px;
  background: var(--champagne);
  opacity: 0.85;
}

.brand-suffix {
  padding-left: 13px;
  border-left: 1px solid var(--line);
  color: var(--text);
  font-family: "Prata", Georgia, serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 42px);
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  color: rgba(240, 233, 222, 0.72);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--champagne);
  transition: transform 350ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(203, 178, 141, 0.55);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.header-contact svg,
.button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 300ms var(--ease);
}

.header-contact:hover svg,
.button:hover svg {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle i {
  position: absolute;
  left: 9px;
  width: 27px;
  height: 1px;
  background: var(--text);
  transition: transform 350ms var(--ease), top 350ms var(--ease);
}

.menu-toggle i:first-of-type {
  top: 17px;
}

.menu-toggle i:last-of-type {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: calc(var(--header-height) + 42px) max(24px, calc((100vw - 1320px) / 2)) 32px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-16px);
  background:
    radial-gradient(circle at 100% 0%, rgba(149, 113, 81, 0.12), transparent 34%),
    #0b0a09;
  opacity: 0;
  isolation: isolate;
  pointer-events: none;
  scrollbar-width: none;
  transition: visibility 0s linear 500ms, transform 500ms var(--ease), opacity 400ms ease;
}

.mobile-menu::-webkit-scrollbar { display: none; }

.mobile-menu.is-open {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(240, 233, 222, 0.2);
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
  color: rgba(240, 233, 222, 0.94);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(29px, 8.5vw, 46px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
  transition: color 200ms ease, padding-left 300ms var(--ease);
}

.mobile-menu nav a:active {
  padding-left: 5px;
  color: var(--champagne);
}

.mobile-menu nav span {
  color: var(--bronze);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mobile-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  background: #17130f;
}

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

.hero-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 30%, rgba(133, 94, 59, 0.15), transparent 28%),
    radial-gradient(circle at 69% 76%, rgba(74, 49, 32, 0.18), transparent 32%),
    linear-gradient(135deg, #17130f, #0d0c0b 72%);
}

.hero-machine {
  --machine-shift: 0px;
  position: absolute;
  top: 10%;
  right: 1vw;
  width: min(54vw, 790px);
  min-width: 620px;
  height: 78%;
  transform: translate3d(0, var(--machine-shift), 0);
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
}

.machine-aura {
  position: absolute;
  inset: -8% -3% 2%;
  background: radial-gradient(ellipse, rgba(151, 105, 68, 0.2), transparent 63%);
  opacity: 0.7;
  filter: blur(36px);
}

.machine-screen {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 3%;
  width: 82%;
  height: 32%;
  min-height: 184px;
  padding: clamp(18px, 1.7vw, 26px);
  overflow: hidden;
  border: 6px solid #1a1714;
  border-radius: 16px;
  outline: 1px solid rgba(203, 178, 141, 0.24);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 30%),
    rgba(11, 10, 9, 0.94);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(240, 233, 222, 0.035),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 -30px 70px rgba(83, 54, 34, 0.14);
  transform: rotateY(-3deg);
  transform-origin: right center;
}

.machine-screen::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -2px;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(203, 178, 141, 0.35);
  box-shadow: 0 0 8px rgba(203, 178, 141, 0.22);
}

.machine-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 58%, rgba(240, 233, 222, 0.035) 72%, transparent 86%);
}

.machine-screen-head,
.machine-screen-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(240, 233, 222, 0.44);
  font-size: clamp(7px, 0.6vw, 9px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  transition: opacity 280ms ease;
}

.machine-screen-head span:last-child {
  color: var(--champagne);
}

.machine-output-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 58%;
  padding-top: 8px;
  white-space: nowrap;
  transition: opacity 280ms ease;
}

.machine-output {
  color: var(--text);
  font-size: clamp(30px, 3.55vw, 55px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  word-spacing: 0.18em;
}

.machine-output-line > i {
  display: block;
  width: 1px;
  height: clamp(30px, 3.7vw, 53px);
  margin-left: 7px;
  background: var(--champagne);
  animation: machine-caret 900ms steps(1) infinite;
}

.machine-progress {
  position: relative;
  z-index: 1;
  height: 1px;
  overflow: hidden;
  background: rgba(240, 233, 222, 0.1);
  transition: opacity 280ms ease;
}

.machine-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--bronze), var(--champagne));
}

.hero-machine.is-running .machine-progress i {
  animation: machine-progress 2.8s linear forwards;
}

.hero-machine.is-complete .machine-progress i {
  transform: scaleX(1);
}

.machine-screen-foot {
  margin-top: 12px;
  font-size: clamp(6px, 0.52vw, 8px);
}

.machine-welcome {
  position: absolute;
  z-index: 6;
  inset: 17px;
  visibility: hidden;
  overflow: hidden;
  border: 1px solid rgba(203, 178, 141, 0.22);
  border-radius: 9px;
  background:
    radial-gradient(circle at 16% 50%, rgba(149, 113, 81, 0.12), transparent 30%),
    rgba(17, 14, 12, 0.985);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.46);
  color: var(--text);
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transform-origin: center;
  transition: visibility 0s linear 420ms, opacity 420ms ease, transform 520ms var(--ease);
}

.hero-machine.show-welcome .machine-welcome {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.hero-machine.show-welcome .machine-screen-head,
.hero-machine.show-welcome .machine-output-line,
.hero-machine.show-welcome .machine-progress,
.hero-machine.show-welcome .machine-screen-foot {
  opacity: 0;
}

.machine-welcome-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 34px;
  padding-inline: 12px;
  border-bottom: 1px solid rgba(240, 233, 222, 0.1);
}

.machine-welcome-bar > span {
  display: flex;
  gap: 5px;
}

.machine-welcome-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

.machine-welcome-bar i:nth-child(2) { opacity: 0.62; }
.machine-welcome-bar i:nth-child(3) { opacity: 0.3; }

.machine-welcome-bar small {
  grid-column: 2;
  color: rgba(240, 233, 222, 0.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.machine-welcome-body {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
  height: calc(100% - 34px);
  padding: 13px clamp(18px, 2vw, 30px);
}

.machine-welcome-mark {
  display: grid;
  flex: 0 0 auto;
  width: clamp(38px, 3.8vw, 58px);
  height: clamp(38px, 3.8vw, 58px);
  place-items: center;
  border: 1px solid rgba(203, 178, 141, 0.32);
  border-radius: 50%;
  color: var(--bronze);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(14px, 1.35vw, 20px);
}

.machine-welcome-body strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(19px, 1.9vw, 30px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.machine-welcome-body p {
  margin: 0;
  color: rgba(240, 233, 222, 0.46);
  font-size: clamp(7px, 0.65vw, 10px);
}

.floating-keys {
  position: absolute;
  z-index: 3;
  top: 42%;
  right: 7%;
  width: 64%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: clamp(14px, 1.3vw, 20px) clamp(8px, 0.9vw, 14px);
  align-items: center;
  perspective: 900px;
}

.floating-keys::before {
  content: "";
  position: absolute;
  inset: -10% -8% -18%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(123, 84, 54, 0.16), transparent 65%);
  filter: blur(24px);
}

.floating-key {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  font-style: normal;
}

.floating-key::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px -2px -10px;
  border: 1px solid rgba(203, 178, 141, 0.1);
  border-radius: 15px;
  background: #080706;
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.42);
}

.floating-key span {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px solid rgba(226, 210, 186, 0.2);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(155deg, #2b241f, #12100e 76%);
  box-shadow:
    0 8px 0 #090806,
    0 22px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.07),
    inset 0 -12px 24px rgba(0, 0, 0, 0.24);
  color: rgba(225, 203, 168, 0.9);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 1.65vw, 25px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  transition: transform 110ms cubic-bezier(0.33, 0, 0.67, 1), color 110ms ease,
    border-color 110ms ease, background-color 110ms ease, box-shadow 110ms ease;
}

.floating-key span::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(203, 178, 141, 0.38);
}

.floating-key.is-pressed span {
  transform: translateY(10px) scaleX(0.98) scaleY(0.88);
  border-color: rgba(218, 193, 153, 0.62);
  background: linear-gradient(155deg, #352b22, #17120e 76%);
  box-shadow:
    0 1px 0 #090806,
    0 4px 10px rgba(0, 0, 0, 0.46),
    inset 0 4px 10px rgba(0, 0, 0, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.08);
  color: var(--champagne);
}

.floating-key.is-pressed span::after {
  background: rgba(203, 178, 141, 0.72);
}

.floating-key-e { grid-column: 1; grid-row: 1; }
.floating-key-l { grid-column: 2; grid-row: 1; }
.floating-key-i { grid-column: 4; grid-row: 1; }
.floating-key-t { grid-column: 5; grid-row: 1; }
.floating-key-w { grid-column: 1; grid-row: 2; }
.floating-key-o { grid-column: 2; grid-row: 2; }
.floating-key-r { grid-column: 3; grid-row: 2; }
.floating-key-k { grid-column: 4; grid-row: 2; }
.floating-key-s { grid-column: 5; grid-row: 2; }

@keyframes machine-caret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes machine-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-shade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.96) 0%, rgba(13, 12, 11, 0.78) 34%, rgba(13, 12, 11, 0.08) 72%),
    linear-gradient(180deg, rgba(13, 12, 11, 0.16), transparent 38%, rgba(13, 12, 11, 0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(240px, 2.7fr);
  gap: 7vw;
  align-items: end;
  min-height: max(780px, 100svh);
  padding-top: calc(var(--header-height) + 90px);
  padding-bottom: 104px;
}

.hero-copy {
  align-self: center;
  max-width: 930px;
}

.hero-eyebrow {
  margin-bottom: 36px;
  color: rgba(240, 233, 222, 0.67);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 52px;
  font-size: clamp(57px, 7.1vw, 112px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 > span {
  display: block;
}

.hero-serif {
  padding-block: 0.08em 0.04em;
  color: var(--champagne);
  font-family: "Prata", Georgia, serif;
  font-size: 0.91em;
  font-weight: 400;
  letter-spacing: -0.075em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(290px, 480px) auto;
  gap: clamp(34px, 5vw, 80px);
  align-items: end;
}

.hero-bottom > p {
  margin: 0;
  color: rgba(240, 233, 222, 0.72);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 300ms ease, border-color 300ms ease, background-color 300ms ease,
    transform 300ms var(--ease);
}

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

.button-primary {
  background: var(--champagne);
  color: var(--ink);
}

.button-primary:hover {
  background: #dbc49f;
}

.button-light {
  border-color: var(--line);
  background: var(--text);
  color: var(--ink);
}

.text-link,
.line-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: rgba(240, 233, 222, 0.7);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.text-link:hover,
.line-link:hover {
  color: var(--text);
}

.link-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--champagne);
}

.link-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.text-link .link-icon,
.line-link .link-icon {
  transition: transform 300ms var(--ease);
}

.text-link:hover .link-icon {
  transform: translateY(3px);
}

.line-link:hover .link-icon {
  transform: translate(3px, 3px);
}

.hero-aside {
  align-self: end;
  max-width: 250px;
  padding-left: 22px;
  border-left: 1px solid rgba(203, 178, 141, 0.4);
  color: rgba(240, 233, 222, 0.62);
  font-size: 12px;
}

.hero-aside > span {
  display: block;
  margin-bottom: 16px;
  color: var(--champagne);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.hero-aside p {
  margin-bottom: 0;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(90deg);
  transform-origin: right center;
  color: rgba(240, 233, 222, 0.45);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 55px;
  height: 1px;
  overflow: hidden;
  background: rgba(240, 233, 222, 0.2);
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--champagne);
  animation: scroll-line 2.2s var(--ease) infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.js [data-hero-item] {
  opacity: 0;
  transform: translateY(24px);
}

.js .is-ready [data-hero-item] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms ease, transform 1000ms var(--ease);
}

.js .is-ready [data-hero-item]:nth-child(2) { transition-delay: 120ms; }
.js .is-ready [data-hero-item]:nth-child(3) { transition-delay: 260ms; }
.js .is-ready .hero-aside[data-hero-item] { transition-delay: 480ms; }

.manifesto {
  background: var(--paper);
  color: var(--ink);
}

.section-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 12px;
}

.section-intro .eyebrow,
.section-intro p {
  margin-bottom: 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.78fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: end;
  padding-block: 100px 126px;
}

.manifesto h2,
.works h2,
.services h2,
.process h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 5.8vw, 86px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

h2 em {
  font-family: "Prata", Georgia, serif;
  font-size: 0.88em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.manifesto h2 em {
  color: var(--bronze);
}

.manifesto-copy > p {
  margin-bottom: 46px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

.manifesto-copy .line-link {
  width: min(100%, 350px);
  justify-content: space-between;
  gap: 30px;
  padding: 0 0 12px;
  color: var(--ink);
}

.manifesto-copy .line-link .link-icon {
  width: 34px;
  height: 34px;
  margin-block: -9px -7px;
  padding: 8px;
  border: 1px solid rgba(149, 113, 81, 0.5);
  border-radius: 50%;
  color: var(--bronze);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principles article {
  min-height: 245px;
  padding: 36px 42px 34px 0;
}

.principles article + article {
  padding-left: 42px;
  border-left: 1px solid var(--line-dark);
}

.principles article > span {
  display: block;
  margin-bottom: 47px;
  color: var(--bronze);
  font-family: "Prata", Georgia, serif;
  font-size: 13px;
}

.principles h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 600;
}

.principles p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.7;
}

.works {
  padding-bottom: 190px;
  background: var(--bg);
}

.works-heading {
  display: grid;
  grid-template-columns: 1.6fr 0.62fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 100px;
}

.works-heading h2 em {
  color: var(--champagne);
}

.works-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.project-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.project-offset {
  margin-top: 140px;
}

.project a {
  display: block;
}

.project-visual {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--surface);
}

.project-wide .project-visual {
  height: min(64vw, 760px);
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(240, 233, 222, 0.08);
  pointer-events: none;
}

.project-visual > * {
  transition: transform 900ms var(--ease);
}

.project:hover .project-visual > * {
  transform: scale(1.018) translateY(-4px);
}

.visual-one {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 73% 32%, rgba(177, 135, 91, 0.25), transparent 30%),
    linear-gradient(135deg, #191613, #2c241e 52%, #171311);
}

.visual-glow {
  position: absolute;
  top: -20%;
  right: 4%;
  width: 52%;
  height: 80%;
  transform: rotate(-12deg);
  background: linear-gradient(120deg, transparent, rgba(213, 185, 144, 0.18), transparent 62%);
  filter: blur(20px);
}

.case-browser {
  position: relative;
  width: min(78%, 1020px);
  overflow: hidden;
  border: 1px solid rgba(225, 202, 168, 0.25);
  border-radius: 5px;
  background: #100e0d;
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.5);
}

.case-browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(240, 233, 222, 0.09);
}

.case-browser-bar span {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(240, 233, 222, 0.38);
  border-radius: 50%;
}

.case-browser-bar i {
  margin-left: auto;
  color: rgba(240, 233, 222, 0.42);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.16em;
}

.case-browser-body {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  min-height: 430px;
}

.case-browser-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8%;
}

.case-browser-copy small {
  margin-bottom: 28px;
  color: var(--bronze);
  font-size: 7px;
  letter-spacing: 0.2em;
}

.case-browser-copy b {
  color: #eae1d4;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.case-browser-copy i {
  width: 90px;
  height: 1px;
  margin-top: 40px;
  background: var(--champagne);
}

.case-browser-object {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(219, 194, 157, 0.72) 50%, transparent 50.2%),
    linear-gradient(155deg, #251f1b 0 33%, #8f6c4d 33.2% 52%, #171311 52.2%);
}

.case-browser-object span {
  position: absolute;
  right: 18%;
  bottom: 10%;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(238, 226, 208, 0.24);
  transform: rotate(45deg);
}

.visual-two {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 38% 34%, rgba(216, 188, 146, 0.18), transparent 27%),
    linear-gradient(145deg, #0e0d0c, #2b241f);
}

.case-phone {
  position: relative;
  z-index: 2;
  width: 46%;
  min-width: 230px;
  height: 78%;
  padding: 20px 18px;
  border: 1px solid rgba(238, 226, 208, 0.23);
  border-radius: 34px;
  background: #171411;
  box-shadow: 0 42px 65px rgba(0, 0, 0, 0.48);
}

.case-phone::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 30%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: #080706;
}

.case-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  color: rgba(240, 233, 222, 0.48);
  font-size: 7px;
}

.case-phone-top i {
  width: 18px;
  height: 4px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.case-phone > small {
  color: var(--bronze);
  font-size: 6px;
  letter-spacing: 0.18em;
}

.case-phone > strong {
  display: block;
  margin: 12px 0 30px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.15;
}

.case-phone-card {
  position: relative;
  height: 31%;
  overflow: hidden;
  border-radius: 16px;
  background: #b99a72;
}

.case-phone-card span {
  position: absolute;
  bottom: -30%;
  width: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 20, 17, 0.3);
  border-radius: 50%;
}

.case-phone-card span:nth-child(1) { left: -7%; }
.case-phone-card span:nth-child(2) { left: 28%; bottom: -8%; }
.case-phone-card span:nth-child(3) { right: -14%; }

.case-phone-nav {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  display: flex;
  justify-content: space-around;
  padding-top: 12px;
  border-top: 1px solid rgba(240, 233, 222, 0.08);
}

.case-phone-nav i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240, 233, 222, 0.38);
}

.case-orbit {
  position: absolute;
  width: 73%;
  aspect-ratio: 1;
  border: 1px solid rgba(203, 178, 141, 0.2);
  border-radius: 50%;
}

.case-orbit::before,
.case-orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: inherit;
  border-radius: inherit;
}

.case-orbit::after { inset: 31%; }

.visual-three {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(23, 20, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 17, 0.05) 1px, transparent 1px),
    #b79a76;
  background-size: 38px 38px;
}

.case-dashboard {
  width: 76%;
  height: 61%;
  padding: 24px;
  border-radius: 5px;
  background: #171411;
  color: var(--text);
  box-shadow: 0 42px 70px rgba(32, 24, 17, 0.38);
}

.dash-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(240, 233, 222, 0.1);
  font-size: 8px;
}

.dash-top b {
  color: var(--champagne);
  font-family: "Prata", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
}

.dash-top span { color: rgba(240, 233, 222, 0.45); }
.dash-top i { width: 5px; height: 5px; margin-left: auto; border-radius: 50%; background: var(--champagne); }

.dash-value {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 24px 0 16px;
}

.dash-value small { color: var(--bronze); font-size: 6px; letter-spacing: 0.18em; }
.dash-value strong { font-family: "Prata", Georgia, serif; font-size: clamp(30px, 4vw, 50px); font-weight: 400; }

.dash-chart {
  display: flex;
  gap: 6%;
  align-items: end;
  height: 82px;
  padding-inline: 3%;
  border-bottom: 1px solid rgba(240, 233, 222, 0.12);
}

.dash-chart i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--champagne), rgba(149, 113, 81, 0.22));
}

.dash-chart i:nth-child(1) { --h: 27%; }
.dash-chart i:nth-child(2) { --h: 43%; }
.dash-chart i:nth-child(3) { --h: 38%; }
.dash-chart i:nth-child(4) { --h: 59%; }
.dash-chart i:nth-child(5) { --h: 73%; }
.dash-chart i:nth-child(6) { --h: 92%; }

.dash-bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 8px;
  margin-top: 13px;
}

.dash-bottom span { height: 4px; border-radius: 3px; background: rgba(240, 233, 222, 0.12); }

.project-meta {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr auto;
  gap: 30px;
  align-items: end;
  padding: 26px 0 24px;
  border-bottom: 1px solid var(--line);
}

.project-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin-bottom: 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.project-meta p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
}

.project-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(203, 178, 141, 0.3);
  border-radius: 50%;
  color: var(--champagne);
  transition: transform 300ms var(--ease), border-color 300ms ease, background-color 300ms ease;
}

.project-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.project:hover .project-arrow {
  transform: translate(5px, -5px);
  border-color: rgba(203, 178, 141, 0.65);
  background: rgba(203, 178, 141, 0.06);
}

.services {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 9% 40%, rgba(119, 84, 59, 0.12), transparent 22%),
    var(--bg-deep);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 11vw, 170px);
  align-items: start;
}

.services-title {
  position: sticky;
  top: 130px;
}

.services-title h2 {
  margin-bottom: 42px;
  font-size: clamp(43px, 5vw, 72px);
}

.services-title h2 em {
  color: var(--champagne);
}

.services-title > p:last-child {
  max-width: 460px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list details {
  border-bottom: 1px solid var(--line);
}

.service-list summary {
  display: grid;
  grid-template-columns: 52px 1fr 30px;
  gap: 18px;
  align-items: center;
  padding: 30px 0;
  list-style: none;
  cursor: pointer;
}

.service-list summary::-webkit-details-marker { display: none; }

.service-list summary > span {
  color: var(--bronze);
  font-family: "Prata", Georgia, serif;
  font-size: 11px;
}

.service-list summary b {
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-list summary i {
  position: relative;
  width: 22px;
  height: 22px;
  margin-left: auto;
}

.service-list summary i::before,
.service-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transition: transform 300ms var(--ease);
}

.service-list summary i::after { transform: rotate(90deg); }
.service-list details[open] summary i::after { transform: rotate(0deg); }

.service-content {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 54px;
  padding: 0 0 38px 70px;
}

.service-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: rgba(240, 233, 222, 0.68);
  font-size: 12px;
  list-style: none;
}

.service-content li::before {
  content: "—";
  margin-right: 8px;
  color: var(--bronze);
}

.process {
  background: var(--paper);
  color: var(--ink);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 0.75fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 100px;
}

.process-heading .eyebrow {
  align-self: start;
}

.process-heading h2 {
  font-size: clamp(45px, 5.4vw, 80px);
}

.process-heading > p:last-child {
  margin-bottom: 7px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.8;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 1fr 2fr 0.75fr;
  gap: 6vw;
  align-items: start;
  min-height: 170px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list li > span {
  color: var(--bronze);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

.process-list li > div {
  display: contents;
}

.process-list h3 {
  margin-bottom: 0;
  font-size: clamp(23px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.8;
}

.standard {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 50%, rgba(180, 136, 94, 0.17), transparent 26%),
    linear-gradient(130deg, #0e0c0b, #1d1814 62%, #0e0c0b);
}

.standard::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 7%;
  width: 1px;
  height: 180%;
  transform: rotate(22deg);
  background: linear-gradient(transparent, var(--champagne), transparent);
  opacity: 0.35;
}

.standard-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 0.55fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.standard-number {
  color: transparent;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(160px, 20vw, 310px);
  letter-spacing: -0.15em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(203, 178, 141, 0.28);
}

.standard-copy blockquote {
  max-width: 790px;
  margin-bottom: 44px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(37px, 4.3vw, 64px);
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.standard-copy > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.standard-notes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.standard-notes span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(240, 233, 222, 0.52);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  background: var(--bg-deep);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 150px);
  padding: 84px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 6% 0%, rgba(145, 104, 70, 0.14), transparent 22%),
    var(--surface);
}

.contact-heading h2 {
  margin-bottom: 36px;
  font-size: clamp(41px, 4.7vw, 70px);
}

.contact-heading h2 em {
  color: var(--champagne);
}

.contact-heading > p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-heading > a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(203, 178, 141, 0.55);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(18px, 2vw, 28px);
}

.project-form,
.project-form label {
  display: flex;
  flex-direction: column;
}

.project-form {
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.project-form label > span:first-child {
  margin-bottom: 9px;
  color: rgba(240, 233, 222, 0.56);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-form input,
.project-form textarea,
.project-form select {
  width: 100%;
  min-height: 50px;
  padding: 9px 0 13px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  transition: border-color 220ms ease;
}

.project-form textarea {
  min-height: 96px;
  resize: vertical;
}

.project-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--champagne) 50%),
    linear-gradient(135deg, var(--champagne) 50%, transparent 50%);
  background-position: calc(100% - 11px) 22px, calc(100% - 6px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.project-form select option {
  background: var(--surface);
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: rgba(240, 233, 222, 0.27);
}

.project-form input:focus,
.project-form textarea:focus,
.project-form select:focus {
  border-color: var(--champagne);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 8px;
}

.consent {
  flex: 1;
  flex-direction: row !important;
  gap: 11px;
  align-items: flex-start;
  cursor: pointer;
}

.consent input {
  width: 15px;
  min-height: 15px;
  margin-top: 2px;
  accent-color: var(--champagne);
}

.consent span {
  margin: 0 !important;
  color: rgba(240, 233, 222, 0.42) !important;
  font-size: 9px !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.form-status {
  min-height: 1.4em;
  margin: -10px 0 0;
  color: var(--champagne);
  font-size: 11px;
}

.site-footer {
  padding: 100px 0 38px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 74px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 0.87;
}

.footer-brand span {
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 500;
  letter-spacing: -0.08em;
}

.footer-brand i {
  align-self: flex-end;
  color: var(--champagne);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(30px, 4vw, 58px);
  font-style: normal;
  letter-spacing: -0.06em;
}

.footer-email {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(18px, 2vw, 28px);
}

.footer-email .link-icon {
  width: 21px;
  height: 21px;
  color: var(--champagne);
  transition: transform 300ms var(--ease);
}

.footer-email:hover .link-icon { transform: translate(3px, -3px); }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: rgba(240, 233, 222, 0.42);
  font-size: 10px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom p:last-child {
  justify-self: end;
}

.footer-bottom nav {
  display: flex;
  gap: 26px;
}

.footer-bottom a {
  transition: color 180ms ease;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 950ms var(--ease);
}

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

:focus-visible {
  outline: 1px solid var(--champagne);
  outline-offset: 5px;
}

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 64px, 1320px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .hero-bottom {
    grid-template-columns: minmax(280px, 440px) auto;
  }

  .contact-shell {
    padding: 64px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding-block: 112px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    justify-self: end;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    padding-bottom: 70px;
  }

  .hero-copy {
    align-self: end;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-aside,
  .hero-scroll {
    display: none;
  }

  .hero-machine {
    right: 0;
    width: 78%;
    min-width: 570px;
    opacity: 0.86;
  }

  .manifesto-grid,
  .services-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 60px;
    padding-block: 80px 100px;
  }

  .manifesto-copy {
    max-width: 560px;
  }

  .works-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .works-heading > p,
  .process-heading > p:last-child {
    max-width: 520px;
  }

  .project-pair {
    gap: 24px;
  }

  .project-offset {
    margin-top: 90px;
  }

  .services-title {
    position: static;
  }

  .services-title > p:last-child {
    margin-bottom: 30px;
  }

  .process-list li {
    grid-template-columns: 0.5fr 1.25fr 1fr;
    gap: 4vw;
  }

  .standard-grid {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .standard-number {
    font-size: clamp(130px, 23vw, 230px);
  }

  .standard-notes {
    grid-column: 2;
  }

  .contact-shell {
    padding: 58px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom nav {
    justify-self: end;
  }

  .footer-bottom p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 40px);
  }

  .section {
    padding-block: 88px;
  }

  .brand-suffix {
    font-size: 17px;
  }

  .hero {
    min-height: 960px;
  }

  .hero-machine {
    top: 88px;
    right: auto;
    left: 0;
    width: 100%;
    min-width: 0;
    height: 390px;
    opacity: 0.76;
  }

  .machine-aura {
    inset: -12% -20% -2%;
    opacity: 0.62;
  }

  .machine-screen {
    top: 0;
    right: auto;
    left: 20px;
    width: calc(100% - 40px);
    height: 128px;
    min-height: 0;
    padding: 14px;
    border-width: 4px;
    border-radius: 9px;
    transform: none;
  }

  .machine-screen-head {
    font-size: 6px;
  }

  .machine-output-line {
    min-height: 61px;
    padding-top: 5px;
  }

  .machine-output {
    font-size: clamp(27px, 8.3vw, 34px);
    letter-spacing: -0.035em;
    word-spacing: 0.14em;
  }

  .machine-output-line > i {
    height: 31px;
  }

  .machine-screen-foot {
    margin-top: 8px;
    font-size: 5px;
  }

  .machine-welcome {
    inset: 7px;
    border-radius: 6px;
  }

  .machine-welcome-bar {
    height: 23px;
    padding-inline: 7px;
  }

  .machine-welcome-bar > span {
    gap: 3px;
  }

  .machine-welcome-bar i {
    width: 4px;
    height: 4px;
  }

  .machine-welcome-bar small {
    font-size: 5px;
  }

  .machine-welcome-body {
    gap: 9px;
    height: calc(100% - 23px);
    padding: 7px 10px;
  }

  .machine-welcome-mark {
    width: 31px;
    height: 31px;
    font-size: 11px;
  }

  .machine-welcome-body strong {
    margin-bottom: 3px;
    font-size: clamp(13px, 4vw, 16px);
  }

  .machine-welcome-body p {
    font-size: 6px;
  }

  .floating-keys {
    top: 155px;
    right: auto;
    left: 50%;
    width: min(74%, 380px);
    height: auto;
    gap: 12px 6px;
    opacity: 0.82;
    transform: translateX(-50%);
  }

  .floating-key span {
    border-radius: 11px;
    font-size: clamp(11px, 3.5vw, 14px);
    box-shadow:
      0 6px 0 #090806,
      0 15px 28px rgba(0, 0, 0, 0.5),
      inset 0 1px rgba(255, 255, 255, 0.07),
      inset 0 -9px 18px rgba(0, 0, 0, 0.24);
  }

  .floating-key span::after {
    top: 7px;
    right: 7px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 12, 11, 0.08), rgba(13, 12, 11, 0.56) 43%, rgba(13, 12, 11, 0.96) 78%),
      linear-gradient(90deg, rgba(13, 12, 11, 0.48), rgba(13, 12, 11, 0.1));
  }

  .hero-inner {
    min-height: 960px;
    padding-top: 130px;
    padding-bottom: 42px;
  }

  .hero-eyebrow {
    max-width: 270px;
    margin-bottom: 27px;
    line-height: 1.7;
  }

  .hero h1 {
    margin-bottom: 34px;
    font-size: clamp(47px, 14.5vw, 68px);
    line-height: 0.96;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-bottom > p {
    max-width: 460px;
    font-size: 14px;
  }

  .hero-actions {
    flex-flow: row wrap;
    align-items: center;
    gap: 22px;
  }

  .button {
    min-height: 54px;
    padding-inline: 23px;
  }

  .section-intro {
    flex-direction: column;
    gap: 16px;
  }

  .manifesto-grid {
    gap: 42px;
    padding-block: 64px 78px;
  }

  .manifesto h2,
  .works h2,
  .services h2,
  .process h2,
  .contact h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .services-title h2 {
    line-height: 1.08;
  }

  .services-title h2 em {
    font-size: 0.8em;
    letter-spacing: -0.015em;
    line-height: 1.14;
  }

  .manifesto-copy > p {
    margin-bottom: 38px;
    font-size: 15px;
  }

  .manifesto-copy .line-link {
    width: 100%;
    padding-block: 15px;
    border-top: 1px solid rgba(23, 20, 17, 0.18);
    border-bottom-color: rgba(23, 20, 17, 0.32);
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .manifesto-copy .line-link .link-icon {
    width: 38px;
    height: 38px;
    margin-block: -6px;
    padding: 10px;
  }

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

  .principles article,
  .principles article + article {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
  }

  .principles article + article {
    border-top: 1px solid var(--line-dark);
  }

  .principles article > span {
    margin-bottom: 25px;
  }

  .works {
    padding-bottom: 110px;
  }

  .works-heading {
    gap: 30px;
    margin-bottom: 60px;
  }

  .project-list {
    gap: 75px;
  }

  .project-pair {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .project-offset {
    margin-top: 0;
  }

  .project-visual,
  .project-wide .project-visual {
    height: min(112vw, 500px);
  }

  .case-browser {
    width: 112%;
    margin-left: 24%;
  }

  .case-browser-body {
    min-height: 300px;
  }

  .case-browser-copy {
    padding: 7%;
  }

  .case-browser-copy b {
    font-size: clamp(30px, 9vw, 42px);
  }

  .case-phone {
    width: 58%;
    min-width: 210px;
  }

  .case-dashboard {
    width: 85%;
    height: 62%;
    padding: 19px;
  }

  .project-meta {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .project-meta p {
    grid-column: 1;
  }

  .project-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .services-layout {
    gap: 52px;
  }

  .service-list summary {
    grid-template-columns: 35px 1fr 22px;
    gap: 10px;
    padding: 25px 0;
  }

  .service-list summary b {
    font-size: 19px;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 0 32px 45px;
  }

  .process-heading {
    gap: 27px;
    margin-bottom: 58px;
  }

  .process-list li {
    grid-template-columns: 50px 1fr;
    gap: 22px;
    min-height: 0;
    padding: 30px 0;
  }

  .process-list li > div {
    display: block;
  }

  .process-list h3 {
    margin-bottom: 12px;
  }

  .standard {
    min-height: auto;
  }

  .standard-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .standard-number {
    position: absolute;
    top: -18px;
    right: 7%;
    z-index: 0;
    font-size: 160px;
    opacity: 0.55;
  }

  .standard-copy,
  .standard-notes {
    position: relative;
    z-index: 1;
  }

  .standard-copy blockquote {
    font-size: clamp(34px, 10vw, 48px);
  }

  .standard-notes {
    grid-column: auto;
  }

  .contact-shell {
    gap: 60px;
    padding: 50px 22px;
    border-right: 0;
    border-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 76px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 54px;
  }

  .footer-brand i {
    align-self: flex-start;
    margin-left: 58%;
  }

  .footer-email {
    font-size: 18px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom nav,
  .footer-bottom p:last-child {
    grid-column: auto;
    justify-self: start;
  }

  .mobile-menu-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .mobile-menu-bottom .button {
    min-height: 50px;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .mobile-menu {
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 22px;
  }

  .mobile-menu nav a {
    padding-block: 13px 15px;
    font-size: clamp(27px, 8vw, 36px);
  }

  .mobile-menu-bottom {
    margin-top: auto;
    padding-top: 26px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-hero-item],
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
