@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg: #F0EDE8;
  --surface: #E8E4DC;
  --surface-2: #DEDAD0;
  --deep: #1C1E1A;
  --deep-2: #272921;
  --text: #1C1E1A;
  --text-2: #6C6860;
  --text-3: #9C9890;
  --accent: #8B5535;
  --accent-2: #4B5C46;
  --line: #C8C3B8;
  --white: #FAFAF6;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1320px;
  --section-v: 120px;
  --header-h: 72px;
}

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

html {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  position: relative;
}

body.body--locked {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

section {
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.label--light {
  color: var(--text-3);
}

.label--accent {
  color: var(--accent);
}

.section-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--line);
}

.divider--short {
  width: 48px;
  height: 1px;
  background-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background-color: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}

.btn--primary:hover {
  background-color: var(--deep-2);
  border-color: var(--deep-2);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--text);
  background-color: var(--text);
  color: var(--white);
}

.btn--ghost {
  padding: 0;
  border: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text);
  transition: width 0.4s var(--ease-out);
}

.btn--ghost:hover::after {
  width: 100%;
}

.btn--light {
  background-color: var(--white);
  color: var(--deep);
  border-color: var(--white);
}

.btn--light:hover {
  background-color: var(--surface);
  border-color: var(--surface);
  transform: translateY(-1px);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.header--scrolled {
  background-color: rgba(240, 237, 232, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.35s var(--ease-out);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__descriptor {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger__line {
  width: 100%;
  height: 1px;
  background-color: var(--text);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--surface);
  display: flex;
  flex-direction: column;
  padding: 32px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mobile-menu__logo img {
  height: 32px;
  width: auto;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

.mobile-menu__close:hover {
  border-color: var(--text);
}

.mobile-menu__close svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
}

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__link {
  font-family: var(--font-head);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s;
}

.mobile-menu__link:hover {
  color: var(--accent);
}

.mobile-menu__link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  opacity: 0.4;
}

.mobile-menu__footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mobile-menu__contact {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-2);
  line-height: 2;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 960px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 30, 26, 0.2) 0%,
    rgba(28, 30, 26, 0.1) 40%,
    rgba(28, 30, 26, 0.6) 80%,
    rgba(28, 30, 26, 0.82) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(48px, 7vh, 80px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 40px;
}

.hero__text {
  max-width: 680px;
}

.hero__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 246, 0.6);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__caption::before {
  content: '';
  width: 28px;
  height: 1px;
  background-color: rgba(250, 250, 246, 0.4);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
  color: rgba(250, 250, 246, 0.72);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 250, 246, 0.75);
  position: relative;
  padding-bottom: 2px;
}

.hero__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgba(250, 250, 246, 0.5);
  transition: width 0.4s var(--ease-out);
}

.hero__link:hover::after {
  width: 100%;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 8px;
}

.hero__stat {
  text-align: right;
}

.hero__stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 246, 0.5);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 246, 0.45);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,250,246,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.6); }
}

.parallax-container {
  overflow: hidden;
  position: relative;
}

.parallax-img {
  transition: none;
  will-change: transform;
}

.premise {
  padding: var(--section-v) 0;
  background-color: var(--bg);
}

.premise__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 40px;
}

.premise__heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 580px;
}

.premise__intro {
  max-width: 380px;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-top: 8px;
}

.premise__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
}

.premise__panel {
  background-color: var(--bg);
  padding: 48px 40px;
  transition: background-color 0.3s;
}

.premise__panel:hover {
  background-color: var(--surface);
}

.premise__panel-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}

.premise__panel-title {
  font-family: var(--font-head);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.premise__panel-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
}

.premise__panel--wide {
  grid-column: span 2;
  background-color: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.premise__panel--dark {
  background-color: var(--deep);
}

.premise__panel--dark .premise__panel-num {
  color: rgba(250,250,246,0.4);
}

.premise__panel--dark .premise__panel-title {
  color: var(--white);
}

.premise__panel--dark .premise__panel-text {
  color: rgba(250,250,246,0.55);
}

.material {
  padding: var(--section-v) 0;
  background-color: var(--surface);
  overflow: hidden;
}

.material__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.material__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.material__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.material__image:hover img {
  transform: scale(1.03);
}

.material__caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.7);
  background-color: rgba(28,30,26,0.5);
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}

.material__content {
  padding: 20px 0;
}

.material__label {
  margin-bottom: 20px;
}

.material__heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.material__text {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.material__standards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.material__standard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.material__standard-mark {
  width: 4px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.material__standard-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

.material__standard-text strong {
  color: var(--text);
  font-weight: 500;
}

.project-wall {
  padding: var(--section-v) 0;
  background-color: var(--bg);
}

.project-wall__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}

.project-wall__heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.project-wall__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.project-card__img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.project-card:hover .project-card__img img {
  transform: scale(1.04);
}

.project-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,30,26,0.7) 0%, transparent 50%);
  transition: opacity 0.4s;
}

.project-card:hover .project-card__img::after {
  opacity: 0.85;
}

.project-card--featured .project-card__img {
  aspect-ratio: 3/2;
}

.project-card--secondary .project-card__img {
  aspect-ratio: 5/4;
}

.project-card--small .project-card__img {
  aspect-ratio: 4/3;
}

.project-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 1;
}

.project-card__category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.6);
  margin-bottom: 6px;
}

.project-card__title {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.project-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.45);
}

.project-wall__bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.studio-note {
  padding: var(--section-v) 0;
  background-color: var(--deep);
}

.studio-note__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.studio-note__left {
  padding-top: 8px;
}

.studio-note__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.4);
  margin-bottom: 24px;
  display: block;
}

.studio-note__heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.studio-note__highlight {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-top: 40px;
}

.studio-note__highlight p {
  font-size: 0.9375rem;
  color: rgba(250,250,246,0.6);
  line-height: 1.7;
  font-style: italic;
}

.studio-note__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.studio-note__para {
  font-size: 1rem;
  color: rgba(250,250,246,0.65);
  line-height: 1.75;
}

.studio-note__detail {
  margin-top: 8px;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.studio-note__detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.4s;
}

.studio-note__detail:hover img {
  opacity: 0.8;
}

.services-floor {
  padding: var(--section-v) 0;
  background-color: var(--bg);
}

.services-floor__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 40px;
}

.services-floor__heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.services-floor__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1px;
}

.service-room {
  background-color: var(--bg);
  padding: 36px 28px 40px;
  transition: background-color 0.3s var(--ease-out);
  position: relative;
}

.service-room:hover {
  background-color: var(--surface);
}

.service-room__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 20px;
  display: block;
}

.service-room__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 0.6s var(--ease-out);
}

.service-room__icon path,
.service-room__icon line,
.service-room__icon polyline,
.service-room__icon rect,
.service-room__icon circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.7s var(--ease-out);
}

.service-room:hover .service-room__icon path,
.service-room:hover .service-room__icon line,
.service-room:hover .service-room__icon polyline,
.service-room:hover .service-room__icon rect,
.service-room:hover .service-room__icon circle {
  stroke-dashoffset: 0;
}

.service-room__title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-room__text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-room__outcome {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.services-floor__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
  border-top: none;
}

.services-floor__cta-block {
  background-color: var(--deep);
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.services-floor__cta-text {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 380px;
}

.services-floor__image-block {
  background-color: var(--surface);
  overflow: hidden;
  position: relative;
  min-height: 180px;
}

.services-floor__image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.build-sequence {
  padding: var(--section-v) 0;
  background-color: var(--surface);
}

.build-sequence__top {
  margin-bottom: 64px;
}

.build-sequence__heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.sequence-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
}

.sequence-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--line);
}

.sequence-step {
  padding: 0 16px;
  padding-top: 56px;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.sequence-step:hover {
  transform: translateY(-4px);
}

.sequence-step:first-child {
  padding-left: 0;
}

.sequence-step:last-child {
  padding-right: 0;
}

.sequence-step__dot {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid var(--line);
  background-color: var(--surface);
  transition: border-color 0.3s, background-color 0.3s;
}

.sequence-step:first-child .sequence-step__dot {
  left: 8px;
  transform: none;
}

.sequence-step:last-child .sequence-step__dot {
  left: auto;
  right: 8px;
  transform: none;
}

.sequence-step:hover .sequence-step__dot {
  border-color: var(--accent);
  background-color: var(--accent);
}

.sequence-step__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 10px;
  display: block;
}

.sequence-step__label {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.sequence-step__desc {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.6;
}

.proof-gallery {
  padding: var(--section-v) 0;
  background-color: var(--bg);
}

.proof-gallery__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 40px;
}

.proof-gallery__heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 64px;
}

.proof-panel {
  background-color: var(--bg);
  padding: 40px 32px;
  transition: background-color 0.3s;
}

.proof-panel:hover {
  background-color: var(--surface);
}

.proof-panel__quote {
  font-family: var(--font-head);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

.proof-panel__client {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.proof-panel__name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
}

.proof-panel__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
}

.proof-stat {
  background-color: var(--surface);
  padding: 36px 28px;
  text-align: center;
}

.proof-stat__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.proof-stat__suffix {
  font-size: 0.8em;
  vertical-align: super;
}

.proof-stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.marquee-section {
  padding: 48px 0;
  background-color: var(--deep);
  overflow: hidden;
  max-width: 100vw;
}

.marquee-row {
  overflow: hidden;
  max-width: 100vw;
  white-space: nowrap;
  position: relative;
}

.marquee-row + .marquee-row {
  margin-top: 12px;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee-left 35s linear infinite;
  will-change: transform;
}

.marquee-track--reverse {
  animation: marquee-right 35s linear infinite;
}

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(250,250,246,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item--accent {
  color: var(--accent);
  opacity: 0.7;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background-color: rgba(250,250,246,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.inquiry-cta {
  padding: var(--section-v) 0;
  background-color: var(--surface);
}

.inquiry-cta__inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: center;
}

.inquiry-cta__label {
  margin-bottom: 20px;
}

.inquiry-cta__heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.inquiry-cta__text {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.inquiry-cta__secondary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-top: 16px;
}

.inquiry-cta__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.inquiry-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.inquiry-cta__image:hover img {
  transform: scale(1.03);
}

.contact-studio {
  padding: var(--section-v) 0;
  background-color: var(--bg);
}

.contact-studio__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-studio__heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  margin-top: 16px;
}

.contact-studio__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.contact-detail__value {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-studio__map {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 36px;
}

.contact-studio__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(0.9);
}

.footer {
  background-color: var(--deep);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(250,250,246,0.1);
  margin-bottom: 40px;
}

.footer__brand-text {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(250,250,246,0.7);
  max-width: 300px;
  margin-bottom: 28px;
  margin-top: 12px;
}

.footer__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer__col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.35);
  margin-bottom: 20px;
  display: block;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(250,250,246,0.6);
  transition: color 0.3s;
  position: relative;
  display: inline-block;
}

.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.35s var(--ease-out);
}

.footer__nav-link:hover {
  color: var(--white);
}

.footer__nav-link:hover::after {
  width: 100%;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.footer__contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.25);
}

.footer__contact-val {
  font-size: 0.875rem;
  color: rgba(250,250,246,0.55);
  line-height: 1.5;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.3);
  transition: color 0.3s;
}

.footer__legal-link:hover {
  color: rgba(250,250,246,0.6);
}

.footer__copyright {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.25);
}

.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  background-color: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero__label {
  margin-bottom: 20px;
}

.page-hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 760px;
  margin-bottom: 24px;
}

.page-hero__sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
}

.page-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.page-hero__meta-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.about-section {
  padding: var(--section-v) 0;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.about-section__sticky {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.about-section__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 24px;
}

.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.about-section__image:hover img {
  transform: scale(1.03);
}

.about-section__image-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.5;
}

.about-section__content {
  padding-top: 8px;
}

.about-section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  margin-top: 16px;
}

.about-section__text {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-section__text:last-child {
  margin-bottom: 0;
}

.about-values {
  padding: var(--section-v) 0;
  background-color: var(--surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}

.value-item {
  background-color: var(--surface);
  padding: 40px 32px;
  transition: background-color 0.3s;
}

.value-item:hover {
  background-color: var(--surface-2);
}

.value-item__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.value-item__title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.value-item__text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.services-detail {
  padding: var(--section-v) 0;
  background-color: var(--bg);
}

.services-detail__intro {
  max-width: 640px;
  margin-bottom: 72px;
}

.services-detail__intro-text {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-top: 20px;
}

.service-entry {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.service-entry:first-of-type {
  border-top: 1px solid var(--line);
}

.service-entry__left {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.service-entry__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.service-entry__title {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.service-entry__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-top: 24px;
}

.service-entry__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-entry__image:hover img {
  transform: scale(1.04);
}

.service-entry__desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
  margin-top: 4px;
}

.service-entry__includes {
  margin-bottom: 28px;
}

.service-entry__includes-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.service-entry__include-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-entry__include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

.service-entry__include-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.service-entry__outcome {
  background-color: var(--surface);
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  margin-top: 12px;
}

.service-entry__outcome-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.service-entry__outcome-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

.faq-section {
  padding: var(--section-v) 0;
  background-color: var(--surface);
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px;
  align-items: start;
}

.faq-section__left {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.faq-section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-item__question {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: var(--text);
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.faq-item__icon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item--open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out);
}

.faq-item--open .faq-item__body {
  max-height: 600px;
}

.faq-item__answer {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  padding-bottom: 24px;
}

.portfolio-grid {
  padding: var(--section-v) 0;
  background-color: var(--bg);
}

.portfolio-grid__intro {
  max-width: 640px;
  margin-bottom: 72px;
}

.portfolio-grid__intro-text {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-top: 20px;
}

.portfolio-cases {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.case-study {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: start;
}

.case-study:nth-child(even) {
  grid-template-columns: 5fr 7fr;
  direction: rtl;
}

.case-study:nth-child(even) > * {
  direction: ltr;
}

.case-study__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.case-study__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.case-study__image:hover img {
  transform: scale(1.04);
}

.case-study__label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.case-study__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.case-study__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.case-study__title {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.case-study__context {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.case-study__meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}

.case-study__meta-item-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}

.case-study__meta-item-val {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.4;
}

.case-study__outcome {
  background-color: var(--surface);
  padding: 18px 20px;
  border-left: 2px solid var(--accent-2);
}

.case-study__outcome-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.case-study__outcome-text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

.contact-page {
  padding: var(--section-v) 0;
  background-color: var(--bg);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-page__info {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.contact-page__heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  margin-top: 16px;
}

.contact-page__sub {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-page__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-map {
  margin-top: 36px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(0.9);
}

.contact-form {
  background-color: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--line);
}

.contact-form__label-top {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-form__title {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-3);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-3);
  line-height: 1.6;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-color: var(--bg);
}

.thanks-page__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.thanks-page__mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.thanks-page__mark svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
}

.thanks-page__heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.thanks-page__text {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 40px;
}

.thanks-page__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  text-align: left;
}

.thanks-page__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

.thanks-page__step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 3px;
}

.legal-page {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 120px;
  background-color: var(--bg);
}

.legal-page__header {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}

.legal-page__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  margin-top: 16px;
}

.legal-page__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-page__meta-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.legal-content {
  max-width: 840px;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 52px;
  margin-bottom: 16px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 20px 20px;
}

.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 10px;
  padding-left: 8px;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content strong {
  color: var(--text);
  font-weight: 500;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(139,85,53,0.3);
  transition: text-decoration-color 0.3s;
}

.legal-content a:hover {
  text-decoration-color: var(--accent);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

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

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

[data-stagger-item] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-stagger-item].stagger-revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.section-label-row .label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background-color: var(--line);
  margin: var(--section-v) 0;
}

.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 4rem; }

@media (min-width: 1025px) and (hover: hover) {
  .parallax-img {
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  :root {
    --section-v: 96px;
  }

  .container {
    padding: 0 32px;
  }

  .services-floor__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer__top > :first-child {
    grid-column: span 3;
  }

  .sequence-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--line);
  }

  .sequence-step:nth-child(n+5) {
    margin-top: 0;
  }

  .sequence-steps::before {
    display: none;
  }

  .sequence-step {
    padding: 28px 20px;
    background-color: var(--surface);
  }

  .sequence-step__dot {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-v: 80px;
  }

  .header__nav,
  .header__cta,
  .header__descriptor {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .hero__meta {
    display: none;
  }

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

  .premise__panel--wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .material__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .project-wall__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .studio-note__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-floor__bottom {
    grid-template-columns: 1fr;
  }

  .sequence-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .inquiry-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .inquiry-cta__image {
    aspect-ratio: 16/9;
    order: -1;
  }

  .contact-studio__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-section__sticky {
    position: static;
  }

  .about-section__image {
    aspect-ratio: 16/9;
  }

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

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-section__left {
    position: static;
  }

  .service-entry {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-entry__left {
    position: static;
  }

  .case-study {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-study:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-page__info {
    position: static;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__top > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 64px;
    --container: 100%;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    max-height: 800px;
    min-height: 600px;
  }

  .hero__scroll {
    display: none;
  }

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

  .premise__panel--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .premise__top {
    flex-direction: column;
    gap: 24px;
  }

  .premise__intro {
    max-width: none;
  }

  .project-wall__grid {
    grid-template-columns: 1fr;
  }

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

  .project-wall__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-floor__grid {
    grid-template-columns: 1fr;
  }

  .sequence-steps {
    grid-template-columns: 1fr;
  }

  .proof-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer__top > :first-child {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 16px;
  }

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

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-floor__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .proof-gallery__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .case-study__meta-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

@media (max-width: 480px) {
  :root {
    --section-v: 56px;
  }

  .container {
    padding: 0 16px;
  }

  .hero__headline {
    font-size: 2.25rem;
  }

  .btn {
    font-size: 12px;
    padding: 13px 22px;
  }

  .mobile-menu {
    padding: 24px 20px 36px;
  }

  .proof-stats {
    grid-template-columns: 1fr 1fr;
  }
}
