:root {
  --bg-dark: #111112;
  --bg-dark-soft: #17171a;
  --fg-dark: #f4f2ec;
  --fg-dark-mute: #9a9a94;
  --fg-dark-dim: #666666;
  --bg-cream: #efebdd;
  --bg-cream-soft: #e8e3d2;
  --fg-cream: #2a2a28;
  --fg-cream-mute: #6b6b66;
  --fg-cream-dim: #9a9a94;
  --accent: #d2ff00;
  --accent-dim: #8faa00;
  --accent-alpha: rgba(210, 255, 0, 0.15);
  --line-dark: #2a2a2a;
  --line-cream: #c8c3b2;
  --font-en-head: "Anton", "Bebas Neue", sans-serif;
  --font-en-body: "Inter", system-ui, sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
  --nav-height: 64px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--fg-dark);
  font-family: var(--font-ja);
  overflow-x: hidden;
}

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

body.custom-cursor {
  cursor: auto;
}

img,
svg {
  display: block;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: var(--bg-dark);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.cursor {
  display: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 130;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  color: var(--fg-dark);
  transition: opacity 500ms ease, transform 900ms var(--ease), visibility 500ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 26px;
  width: min(86vw, 740px);
}

.loader-logo {
  width: 100%;
  height: auto;
}

.loader-logo text {
  color: var(--fg-dark);
  fill: transparent;
  stroke: var(--accent);
  stroke-width: 1.4px;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  font-family: var(--font-en-head);
  font-size: 92px;
  letter-spacing: 0;
  text-transform: lowercase;
  animation: drawText 2.1s ease forwards;
}

.loader-button,
.hero-bottom a,
.form-actions button,
.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-en-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease;
}

.loader-button:hover,
.hero-bottom a:hover,
.form-actions button:hover,
.line-button:hover {
  transform: translateY(-2px);
}

.site-wordmark {
  position: fixed;
  top: 42px;
  left: 18px;
  z-index: 121;
  color: rgba(244, 242, 236, 0.5);
  font-family: var(--font-en-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  transition: color 220ms ease, opacity 220ms ease;
}

.site-wordmark.on-light {
  color: rgba(42, 42, 40, 0.58);
}

.site-wordmark:hover,
.site-wordmark:focus-visible {
  color: var(--accent);
}

.site-nav {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0;
  color: var(--fg-dark);
  transition: transform 420ms var(--ease), color 220ms ease;
}

.site-nav.is-hidden {
  transform: none;
}

.site-nav::before {
  display: none;
}

.site-nav.on-light {
  color: var(--fg-cream);
}

.site-nav.on-light::before {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 6px;
  min-width: 0;
  font-family: var(--font-en-body);
  font-size: 14px;
  font-weight: 800;
  text-transform: lowercase;
  white-space: nowrap;
}

.brand-dot {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-en-head);
  font-size: 30px;
  line-height: 1;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
  font-family: var(--font-en-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: lowercase;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.menu-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-en-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  color: var(--bg-dark);
}

.nav-cta-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.menu-button span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 260ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

body.menu-open .menu-button span:first-child {
  transform: rotate(42deg);
}

body.menu-open .menu-button span:last-child {
  transform: rotate(-42deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 6vw, 92px);
  align-items: end;
  padding: calc(var(--nav-height) + 54px) clamp(18px, 5vw, 88px) clamp(28px, 5vw, 70px);
  background: var(--bg-dark);
  color: var(--fg-dark);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 760ms var(--ease), visibility 760ms var(--ease);
}

.menu-panel.is-open {
  visibility: visible;
  transform: translateY(0);
}

.menu-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: min(70vh, 690px);
  overflow: hidden;
}

.menu-column {
  display: grid;
  gap: 12px;
  animation: menuDrift 18s linear infinite;
}

.menu-column-reverse {
  transform: translateY(-30%);
  animation-direction: reverse;
}

.menu-column img {
  height: min(36vh, 350px);
  border-radius: 8px;
  filter: saturate(0.76) contrast(1.08);
}

.menu-links {
  display: grid;
  align-self: center;
}

.menu-links a {
  display: block;
  padding-block: clamp(8px, 1.3vw, 17px);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-en-head);
  font-size: clamp(54px, 9vw, 134px);
  line-height: 0.86;
  text-transform: uppercase;
}

.menu-links a:hover,
.menu-links a:focus-visible {
  color: var(--accent);
}

.menu-meta {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--fg-dark-mute);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

section {
  position: relative;
  overflow: clip;
}

.theme-dark {
  background: var(--bg-dark);
  color: var(--fg-dark);
}

.theme-cream {
  background: var(--bg-cream);
  color: var(--fg-cream);
}

.theme-cream-soft {
  background: var(--bg-cream-soft);
  color: var(--fg-cream);
}

.theme-accent {
  background: var(--accent);
  color: var(--bg-dark);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-height) + 58px) clamp(18px, 5vw, 88px) clamp(26px, 4vw, 62px);
  isolation: isolate;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(210, 255, 0, 0.17), transparent 28vw),
    linear-gradient(180deg, rgba(17, 17, 18, 0.12), rgba(17, 17, 18, 0.92));
}

.hero-bg-word,
.parallax-word {
  position: absolute;
  z-index: 0;
  color: rgba(244, 242, 236, 0.035);
  font-family: var(--font-en-head);
  font-size: clamp(118px, 23vw, 420px);
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}

.hero-bg-word {
  left: -0.04em;
  top: 14vh;
}

.parallax-left {
  left: -0.05em;
  top: 10%;
}

.parallax-right {
  right: -0.04em;
  bottom: 12%;
  color: rgba(42, 42, 40, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 6vw, 90px);
  align-items: end;
  width: min(100%, 1120px);
}

.hero-copy {
  display: grid;
  gap: clamp(12px, 2vw, 24px);
}

.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  max-width: 980px;
}

.hero-logo {
  width: min(100%, 980px);
  height: auto;
  overflow: visible;
}

.hero-logo text {
  color: var(--fg-dark);
  fill: var(--fg-dark);
  stroke: none;
  font-family: var(--font-en-head);
  font-size: 132px;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero-logo tspan {
  color: var(--accent);
  fill: var(--accent);
  stroke: none;
}

.hero .is-visible .hero-logo text,
.hero-title.is-visible .hero-logo text {
  animation: none;
}

.hero-sub {
  max-width: 620px;
  margin: 0;
  color: var(--fg-dark-mute);
  font-family: var(--font-en-body);
  font-size: clamp(20px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: lowercase;
}

.hero-meta {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(17, 17, 18, 0.42);
  backdrop-filter: blur(14px);
  color: var(--fg-dark-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(42px, 9vh, 88px);
  color: var(--fg-dark-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.about,
.services,
.workflow,
.works,
.pricing,
.contact {
  padding: clamp(80px, 12vw, 172px) clamp(18px, 5vw, 88px);
}

.about {
  padding-bottom: 0;
  background: #282c20;
  transition: background-color 200ms linear;
}

.services {
  background: #f4f4ed;
}

.section-kicker {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(26px, 5vw, 58px);
}

.section-kicker span {
  color: currentColor;
  opacity: 0.58;
  font-size: 14px;
  font-weight: 700;
}

.section-title {
  margin: 0;
  max-width: min(100%, 1180px);
  font-family: var(--font-en-head);
  font-size: clamp(22px, 3.5vw, 59px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

.about-layout {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin-inline: auto;
}

.about-main {
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  width: 100%;
}

.lead {
  max-width: 1040px;
  margin: 0;
  color: var(--fg-dark);
  font-size: clamp(23px, 3.1vw, 54px);
  font-weight: 700;
  line-height: 1.45;
}

.highlight-word {
  color: inherit;
  transition: color 420ms ease, font-weight 420ms ease;
}

.highlight-word.is-active {
  color: var(--accent);
  font-weight: 900;
}

.quote {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(28px, 5vw, 70px);
  border-left: 4px solid var(--accent);
  background: var(--bg-dark-soft);
}

.quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.quote p {
  margin: 0;
  font-size: clamp(25px, 4vw, 68px);
  line-height: 1.1;
  font-weight: 900;
}

.quote cite {
  display: block;
  margin-top: 22px;
  color: var(--fg-dark-mute);
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.signature-svg {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin-top: 22px;
}

.signature-svg path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

.signature-svg.is-drawn path {
  animation: drawPath 4.8s ease forwards;
}

.signature-svg.is-drawn path:nth-child(2n) {
  animation-delay: 120ms;
}

.signature-svg.is-drawn path:nth-child(3n) {
  animation-delay: 240ms;
}

.about-side {
  display: none;
}

.about-side > div {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(244, 242, 236, 0.03);
}

.about-side ul,
.about-side ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--fg-dark-mute);
  line-height: 1.75;
}

.photo-scroll {
  position: relative;
  z-index: 1;
  height: 180svh;
  margin: clamp(64px, 10vw, 128px) calc(clamp(18px, 5vw, 88px) * -1) 0;
}

.photo-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.photo-strip {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  width: max-content;
  margin: 0;
  padding-inline: clamp(18px, 5vw, 88px);
  overflow: visible;
  scrollbar-width: none;
  will-change: transform;
}

.photo-strip::-webkit-scrollbar {
  display: none;
}

.photo-strip img {
  flex: 0 0 min(72vw, 720px);
  height: min(68vh, 650px);
  border-radius: 8px;
  filter: grayscale(0.12) saturate(0.82) contrast(1.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(36px, 7vw, 86px);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 420px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid var(--line-cream);
  border-radius: 8px;
  background: rgba(244, 242, 236, 0.35);
  transition: background 280ms ease, transform 280ms ease, color 280ms ease;
}

.service-card:hover {
  background: var(--bg-dark);
  color: var(--fg-dark);
  transform: translateY(-6px);
}

.service-num {
  color: var(--fg-cream-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.service-icon {
  width: 28px;
  height: 28px;
  margin: 28px 0 14px;
  color: var(--fg-cream);
  transition: color 280ms ease;
}

.service-card:hover .service-icon {
  color: var(--accent);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.2;
  font-weight: 900;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--fg-cream-mute);
  line-height: 1.82;
}

.service-card:hover p,
.service-card:hover .service-num {
  color: var(--fg-dark-mute);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--fg-cream-mute);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.service-card:hover li {
  color: var(--accent);
}

.workflow-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  width: min(100%, 1320px);
  margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  border-top: 0;
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  min-height: 320px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line-cream);
  border-radius: 8px;
  background: rgba(244, 242, 236, 0.24);
}

.step span {
  color: var(--fg-cream-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}

.step em {
  display: inline-block;
  margin-left: 4px;
  color: var(--accent-dim);
  font-style: normal;
}

.step h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.1;
}

.step p {
  grid-column: auto;
  margin: 0;
  color: var(--fg-cream-mute);
  line-height: 1.8;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(34px, 7vw, 82px);
}

.works-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2.2vw, 26px);
  border-radius: 8px;
  background: var(--fg-cream);
  color: var(--fg-dark);
  cursor: pointer;
  transition: background 300ms ease, color 300ms ease, transform 250ms ease;
}

.works-card:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.works-card .cat {
  color: var(--fg-dark-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.works-card h3 {
  margin: 30px 0 0;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.02;
  font-weight: 900;
}

.works-card p {
  margin: 14px 0 0;
  color: var(--fg-dark-dim);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 300ms ease, transform 300ms ease, color 300ms ease;
}

.works-card .num {
  align-self: flex-end;
  color: #444;
  font-family: var(--font-en-head);
  font-size: 46px;
  line-height: 1;
  transition: color 300ms ease;
}

.works-card:hover .cat {
  color: #5a6600;
}

.works-card:hover p {
  color: #333;
  opacity: 1;
  transform: translateY(0);
}

.works-card:hover .num {
  color: #7a8a00;
}

.stats {
  min-height: 84svh;
  display: grid;
  place-items: center;
  padding: clamp(82px, 12vw, 150px) clamp(18px, 5vw, 88px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 72px) clamp(44px, 9vw, 118px);
  width: min(100%, 860px);
}

.stat strong {
  display: block;
  color: var(--bg-dark);
  font-family: var(--font-en-head);
  font-size: clamp(72px, 10vw, 138px);
  line-height: 0.9;
  letter-spacing: 0;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: rgba(17, 17, 18, 0.66);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.stat span em {
  display: block;
  margin-top: 6px;
  color: var(--bg-dark);
  font-family: var(--font-jp);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
}

.pricing-layout > .section-title {
  grid-column: 1 / -1;
}

.pricing-layout > .price-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-block {
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid var(--line-cream);
  border-radius: 8px;
  background: rgba(244, 242, 236, 0.34);
}

.price-block > span {
  color: var(--fg-cream-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.price-block h3 {
  margin: 12px 0 20px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.1;
}

.price-block dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.price-block dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line-cream);
}

.price-block dt,
.price-block dd {
  margin: 0;
  line-height: 1.6;
}

.price-block dt {
  color: var(--fg-cream-mute);
}

.price-block dd {
  font-weight: 900;
  white-space: nowrap;
}

.price-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--fg-cream-mute);
  line-height: 1.8;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(64px, 8vw, 112px);
  background: linear-gradient(180deg, #efebdd 0%, #e5eb71 60%, #d2ff00 100%);
}

.contact-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}

.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-heading h2 {
  margin: 14px 0 0;
  font-family: var(--font-en-head);
  font-size: clamp(31px, 5vw, 78px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-heading p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--fg-cream-mute);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label.wide,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--fg-cream-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-cream);
  border-radius: 8px;
  background: rgba(244, 242, 236, 0.48);
  color: var(--fg-cream);
  padding: 12px 14px;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-dim);
  background: rgba(244, 242, 236, 0.72);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-side {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-self: stretch;
}

.line-cta {
  margin-top: 0;
  align-self: start;
  padding: clamp(20px, 2.6vw, 32px);
  border: 1px solid var(--line-cream);
  border-radius: 8px;
  background: rgba(244, 242, 236, 0.34);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
}

.line-cta-text {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.line-cta-text p:not(.eyebrow) {
  margin: 0;
  color: var(--fg-cream);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.line-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: var(--accent);
  color: var(--bg-dark);
}

.line-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--fg-cream-mute);
  line-height: 1.6;
}

.site-footer {
  min-height: 0;
  display: grid;
  align-content: center;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(28px, 4vw, 48px) clamp(18px, 5vw, 88px) 24px;
  background: var(--accent);
  color: var(--bg-dark);
}

.footer-message h2 {
  margin: 14px 0 0;
  font-family: var(--font-en-head);
  font-size: clamp(74px, 14vw, 220px);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: lowercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  border-top: 1px solid rgba(17, 17, 18, 0.24);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-bottom a {
  margin-left: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-page {
  min-height: 100svh;
  padding: clamp(28px, 5vw, 72px);
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--fg-cream);
  font-family: var(--font-en-body);
  font-weight: 800;
  text-transform: lowercase;
}

.privacy-content {
  width: min(100%, 860px);
  margin: clamp(60px, 12vw, 140px) auto 0;
}

.privacy-content h1 {
  margin: 14px 0 28px;
  font-family: var(--font-en-head);
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.9;
}

.privacy-content h2 {
  margin: 36px 0 12px;
  font-size: clamp(22px, 3vw, 34px);
}

.privacy-content p {
  color: var(--fg-cream-mute);
  line-height: 1.9;
}

.privacy-date {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms ease, transform 720ms var(--ease);
}

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

.service-card:nth-child(2),
.works-card:nth-child(2),
.step:nth-child(2),
.price-block:nth-child(2) {
  transition-delay: 80ms;
}

.service-card:nth-child(3),
.works-card:nth-child(3),
.step:nth-child(3),
.price-block:nth-child(3) {
  transition-delay: 160ms;
}

.service-card:nth-child(4),
.works-card:nth-child(4),
.step:nth-child(4),
.price-block:nth-child(4) {
  transition-delay: 240ms;
}

.works-card:nth-child(5),
.step:nth-child(5) {
  transition-delay: 320ms;
}

.works-card:nth-child(6) {
  transition-delay: 400ms;
}

@keyframes drawText {
  to {
    fill: currentColor;
    stroke-dashoffset: 0;
  }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes menuDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-30%);
  }
}

@media (hover: none) {
  .works-card p {
    opacity: 1;
    transform: none;
  }

  body.custom-cursor {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-layout,
  .pricing-layout,
  .contact,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .price-note {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 58px;
  }

  .site-nav {
    top: 10px;
    right: 10px;
  }

  .site-wordmark {
    top: 32px;
    left: 20px;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    align-items: start;
    overflow-y: auto;
  }

  .menu-visuals {
    display: none;
  }

  .menu-meta {
    grid-column: auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-logo {
    width: 100%;
    max-width: none;
  }

  .hero-sub {
    line-height: 1.08;
  }

  .section-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .lead {
    line-height: 1.55;
  }

  .service-grid,
  .works-grid,
  .stats-grid,
  .steps,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

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

  .step p {
    grid-column: auto;
    margin-top: 0;
  }

  .price-block dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-block dd {
    white-space: normal;
  }

  .contact-form label.wide,
  .form-actions,
  .form-status {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .loader-button,
  .hero-bottom a,
  .form-actions button,
  .line-button {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
  }

  .works-card {
    min-height: 230px;
  }

  .photo-scroll {
    height: 155svh;
  }

  .photo-strip img {
    flex-basis: 82vw;
    height: min(56vh, 520px);
  }
}

@media (orientation: landscape) and (max-height: 460px) and (max-width: 920px) {
  .hero,
  .about,
  .services,
  .workflow,
  .works,
  .pricing,
  .contact {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .loader-logo text,
  .hero-logo text,
  .signature-svg path {
    fill: currentColor;
    stroke-dashoffset: 0;
  }
}
