:root {
  --bg: #060504;
  --bg-soft: #100d0b;
  --bg-panel: rgba(255, 247, 237, 0.055);
  --paper: #f4eee6;
  --muted: rgba(244, 238, 230, 0.68);
  --line: rgba(244, 238, 230, 0.11);
  --line-strong: rgba(244, 238, 230, 0.2);
  --gold: #d6ae78;
  --gold-soft: rgba(214, 174, 120, 0.18);
  --shadow: 0 32px 120px rgba(0, 0, 0, 0.5);
  --display: "Bodoni Moda", "Times New Roman", serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --container: min(1320px, calc(100vw - 56px));
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body);
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 14%, rgba(214, 174, 120, 0.15), transparent 26%),
    radial-gradient(circle at 83% 8%, rgba(214, 174, 120, 0.08), transparent 24%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.045), transparent 33%),
    linear-gradient(180deg, #100d0b 0%, #070605 44%, #040404 100%);
  overflow-x: hidden;
}

body.loading::before,
body.loading::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 220;
}

body.loading::before {
  background: var(--bg);
}

body.loading::after {
  inset: auto 50% 50% auto;
  width: 130px;
  height: 1px;
  margin-right: -65px;
  background: linear-gradient(90deg, transparent, var(--paper), transparent);
  animation: loader 1.35s ease-in-out infinite;
}

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

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

::selection {
  background: rgba(214, 174, 120, 0.2);
}

.grain,
.page-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.grain {
  opacity: 0.08;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.09) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.page-aura {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.05), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(214, 174, 120, 0.08), transparent 34%);
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  z-index: 140;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(244, 238, 230, 0.04);
  background: rgba(12, 10, 9, 0);
  backdrop-filter: blur(0px);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    backdrop-filter 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-condensed::before {
  background: rgba(12, 10, 9, 0.72);
  border-color: rgba(244, 238, 230, 0.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header__brand,
.site-header__status,
.site-header__nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-header__brand,
.site-header__nav a {
  color: rgba(244, 238, 230, 0.82);
}

.site-header__brand {
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-header__status {
  max-width: 30ch;
  text-align: right;
  color: rgba(244, 238, 230, 0.5);
}

.eyebrow,
.panel-label,
.card-index,
.metric-label,
.service-preview__label {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  padding-top: 132px;
  padding-bottom: 110px;
}

.hero__meta,
.section-heading--split,
.contact__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.hero__meta {
  margin-bottom: 48px;
}

.hero__meta span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 238, 230, 0.54);
}

.hero__meta span:first-child {
  grid-column: span 4;
}

.hero__meta span:last-child {
  grid-column: 8 / -1;
  text-align: right;
}

.hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 12.6vw, 12.8rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  padding-inline: 0.06em;
  margin-inline: -0.06em;
}

.hero__title-line > span {
  display: block;
}

.hero__title-line--ghost > span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 238, 230, 0.34);
}

.hero__lede {
  width: min(46ch, 100%);
  margin: 32px 0 0;
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  line-height: 1.75;
  color: rgba(244, 238, 230, 0.72);
}

.hero__actions {
  width: min(44rem, 100%);
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero__actions p {
  margin: 0;
  max-width: 30ch;
  color: rgba(244, 238, 230, 0.62);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(244, 238, 230, 0.03);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.button-link:hover {
  transform: translateY(-2px);
  background: rgba(244, 238, 230, 0.1);
  border-color: rgba(244, 238, 230, 0.3);
}

.button-link--solid {
  background: var(--paper);
  color: #090807;
  border-color: transparent;
}

.hero__visual {
  position: relative;
  min-height: 700px;
  padding: 18px 0 82px;
}

.hero__visual-main,
.contact__panel,
.project-stage__frame,
.manifesto__image {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__visual-main {
  position: absolute;
  inset: 0 0 90px 0;
  border-radius: 34px;
  border: 1px solid rgba(244, 238, 230, 0.1);
  background: #0c0a09;
}

.hero__visual-main::before,
.service-preview__frame::after,
.manifesto__image::after,
.contact__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__visual-main::before {
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.05), rgba(10, 8, 7, 0.62)),
    linear-gradient(90deg, rgba(214, 174, 120, 0.04), transparent 38%);
  z-index: 1;
}

.hero__visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.86);
}

.hero__visual-copy {
  position: absolute;
  left: 28px;
  right: clamp(148px, 16vw, 220px);
  bottom: 28px;
  z-index: 2;
}

.panel-value {
  margin: 14px 0 0;
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.2vw, 3.9rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero__seal {
  position: absolute;
  bottom: 112px;
  top: auto;
  right: 22px;
  width: 134px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 10, 9, 0.78);
  border: 1px solid rgba(214, 174, 120, 0.2);
  backdrop-filter: blur(16px);
}

.hero__seal-ring {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(214, 174, 120, 0.3);
}

.hero__seal-copy {
  display: grid;
  gap: 6px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 238, 230, 0.72);
}

.hero__visual-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 10px;
}

.hero__visual-meta p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.metric-value {
  display: block;
  margin-top: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: right;
  color: rgba(244, 238, 230, 0.88);
}

.manifesto {
  padding: 24px 0 118px;
}

.section-heading {
  width: min(900px, 100%);
}

.section-heading h2 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5.2vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.section-heading__title--philosophy {
  max-width: 11.5ch;
}

.section-heading__title--philosophy .word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.16em;
  padding-bottom: 0.08em;
}

.section-heading__title--philosophy .word-mask:last-child {
  margin-right: 0;
}

.section-heading__title--philosophy .word-inner {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.section-heading--split {
  width: 100%;
}

.section-heading--split > :first-child {
  grid-column: span 7;
}

.section-copy {
  grid-column: 9 / -1;
  align-self: end;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(244, 238, 230, 0.65);
}

.manifesto__stage {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}

.manifesto__image {
  border-radius: 30px;
  border: 1px solid rgba(244, 238, 230, 0.1);
  background: #0c0a09;
}

.manifesto__image::after {
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.04), rgba(10, 8, 7, 0.7)),
    linear-gradient(90deg, rgba(214, 174, 120, 0.08), transparent 44%);
}

.manifesto__image img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.88);
}

.manifesto__image figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
  z-index: 1;
}

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

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

.manifesto-row__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.manifesto-row__body p {
  margin: 14px 0 0;
  max-width: 38ch;
  line-height: 1.8;
  color: rgba(244, 238, 230, 0.66);
}

.project-intro {
  padding-bottom: 34px;
}

.project-stage {
  height: 430vh;
  position: relative;
}

.project-stage__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.project-stage__frame {
  width: min(1480px, calc(100vw - 24px));
  height: calc(100vh - 24px);
  border-radius: 34px;
  border: 1px solid rgba(244, 238, 230, 0.1);
  background: #070605;
}

.project-stage__frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(244, 238, 230, 0.12);
  pointer-events: none;
  z-index: 2;
}

.project-stage__layers,
.project-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-layer image {
  filter: brightness(0.82) saturate(0.82);
}

.project-stage__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  padding: clamp(22px, 3vw, 42px);
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.1), rgba(7, 6, 5, 0.24)),
    linear-gradient(0deg, rgba(7, 6, 5, 0.74), rgba(7, 6, 5, 0.08) 44%);
}

.project-stage__topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 238, 230, 0.54);
}

.project-copies {
  position: relative;
  width: min(580px, 100%);
  height: 100%;
}

.project-copy {
  position: absolute;
  left: 0;
  bottom: clamp(98px, 10vw, 138px);
  width: min(540px, 100%);
  clip-path: inset(100% 0 0 0);
}

.project-copy h3 {
  margin: 16px 0 18px;
  font-family: var(--display);
  font-size: clamp(3rem, 5.4vw, 5.9rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.project-copy p:last-child {
  margin: 0;
  max-width: 38ch;
  line-height: 1.8;
  color: rgba(244, 238, 230, 0.84);
}

.project-progress {
  position: absolute;
  left: clamp(22px, 3vw, 42px);
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(24px, 3vw, 42px);
  display: flex;
  gap: 14px;
}

.project-progress__segment {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(244, 238, 230, 0.16);
  overflow: hidden;
}

.project-progress__segment .fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(214, 174, 120, 0.85), var(--paper));
}

.marquee-band {
  overflow: hidden;
  padding: 30px 0 10px;
}

.marquee-band__track {
  width: max-content;
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 238, 230, 0.46);
  animation: marquee 26s linear infinite;
}

.services {
  padding-top: 88px;
  padding-bottom: 122px;
}

.dual-wave-wrapper {
  display: flex;
  width: 100%;
  gap: min(16vw, 200px);
  position: relative;
  margin-top: 54px;
  padding: 8vh 0 18vh;
}

.wave-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.wave-column-left {
  align-items: flex-start;
}

.wave-column-right {
  align-items: flex-end;
}

.service-item {
  width: max-content;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: rgba(244, 238, 230, 0.24);
  white-space: nowrap;
  transition: color 220ms ease;
}

.service-item.is-active {
  color: var(--paper);
}

.service-preview {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(156px, 11vw, 210px);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.service-preview__frame {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(244, 238, 230, 0.12);
  background: rgba(244, 238, 230, 0.02);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.service-preview__frame::after {
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.02), rgba(10, 8, 7, 0.35)),
    linear-gradient(90deg, rgba(214, 174, 120, 0.06), transparent 42%);
}

.service-preview__shine {
  position: absolute;
  inset: -24% auto -24% -46%;
  width: 70%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-24deg);
  z-index: 2;
  pointer-events: none;
}

.service-preview__image {
  width: 100%;
  aspect-ratio: 0.62;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.88);
}

.service-preview__meta {
  margin-top: 16px;
}

.service-preview__caption {
  margin: 12px 0 0;
  line-height: 1.8;
  color: rgba(244, 238, 230, 0.66);
}

.contact {
  padding-bottom: 120px;
}

.contact__panel {
  border-radius: 0;
  border-top: 1px solid rgba(244, 238, 230, 0.1);
  border-bottom: 1px solid rgba(244, 238, 230, 0.1);
  box-shadow: none;
  background: none;
  padding: clamp(28px, 4vw, 48px) 0;
}

.contact__panel::before {
  display: none;
}

.contact__headline {
  margin-top: 18px;
  display: grid;
  gap: 22px;
}

.contact__headline h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.contact__intro {
  max-width: 42ch;
  margin: 0;
  color: rgba(244, 238, 230, 0.64);
  line-height: 1.85;
}

.contact__grid {
  margin-top: 34px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.contact__copy {
  grid-column: auto;
  margin: 0;
  max-width: 42ch;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(244, 238, 230, 0.68);
}

.contact-form {
  position: relative;
  grid-column: auto;
  display: grid;
  gap: 18px;
  align-content: start;
  align-self: start;
  margin-top: 0;
}

.contact-form__row {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 238, 230, 0.48);
}

.field__input {
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(244, 238, 230, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: 1.04rem;
  line-height: 1.7;
  outline: none;
  transition:
    border-color 200ms ease,
    color 200ms ease,
    opacity 200ms ease;
}

.field__input::placeholder {
  color: rgba(244, 238, 230, 0.32);
}

.field:focus-within .field__label {
  color: rgba(214, 174, 120, 0.88);
}

.field:focus-within .field__input {
  border-bottom-color: rgba(214, 174, 120, 0.72);
}

.field--message {
  margin-top: 10px;
}

.field__input--textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__footer {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 238, 230, 0.1);
}

.contact-form__status {
  max-width: 34ch;
  color: rgba(244, 238, 230, 0.58);
  line-height: 1.75;
}

.contact-form__status.is-error {
  color: #f0b9ad;
}

.contact-form__status.is-success {
  color: #d6ae78;
}

.contact-form.is-submitting .field__input,
.contact-form.is-submitting .button-link {
  opacity: 0.7;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 238, 230, 0.46);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes loader {
  0% {
    transform: scaleX(0);
    transform-origin: 0% 50%;
  }

  50% {
    transform: scaleX(1);
    transform-origin: 0% 50%;
  }

  50.1% {
    transform: scaleX(1);
    transform-origin: 100% 50%;
  }

  100% {
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-header__status {
    text-align: center;
  }

  .hero__body,
  .manifesto__stage,
  .contact__headline {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 660px;
    padding: 18px 0 82px;
  }

  .hero__visual-main {
    inset: 0 0 82px 0;
  }

  .hero__meta span:first-child,
  .hero__meta span:last-child,
  .section-heading--split > :first-child,
  .section-copy,
  .contact__copy,
  .contact-form {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

@media (max-width: 960px) {
  :root {
    --container: min(100vw - 32px, 100%);
  }

  .hero {
    padding-top: 154px;
  }

  .hero__meta,
  .section-heading--split,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__meta span:last-child {
    text-align: left;
  }

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

  .hero__visual {
    min-height: auto;
    padding: 0;
    display: grid;
    gap: 18px;
  }

  .hero__visual-main,
  .hero__seal,
  .hero__visual-meta {
    position: relative;
    inset: auto;
    right: auto;
    left: auto;
    bottom: auto;
    top: auto;
  }

  .hero__visual-main {
    min-height: 520px;
  }

  .hero__visual-copy {
    right: 28px;
  }

  .hero__seal {
    width: 118px;
    justify-self: start;
  }

  .hero__visual-meta p {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .project-stage {
    height: 380vh;
  }

  .dual-wave-wrapper {
    display: block;
    padding-top: 320px;
    padding-bottom: 60px;
  }

  .service-preview {
    width: min(100%, 240px);
  }

  .wave-column-right {
    margin-top: 28px;
    align-items: flex-start;
  }

  .contact-form__row--split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    padding: 14px 16px;
    gap: 12px;
  }

  .site-header__nav {
    gap: 14px;
  }

  .hero__title {
    font-size: clamp(3.9rem, 18vw, 6.8rem);
  }

  .hero__visual-main {
    min-height: 420px;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .manifesto-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .manifesto__image figcaption {
    font-size: 1.28rem;
  }

  .project-stage {
    height: 340vh;
  }

  .project-stage__frame {
    width: min(100vw - 12px, 100%);
    height: calc(100vh - 12px);
    border-radius: 24px;
  }

  .project-stage__frame::after {
    inset: 10px;
    border-radius: 18px;
  }

  .project-stage__topline {
    flex-direction: column;
    gap: 8px;
  }

  .project-copy h3 {
    font-size: clamp(2.4rem, 10vw, 4.5rem);
  }

  .project-copy p:last-child,
  .section-copy,
  .contact__copy,
  .service-preview__caption {
    font-size: 0.95rem;
  }

  .service-item {
    font-size: clamp(1.9rem, 10vw, 3.5rem);
  }

  .contact__intro,
  .contact-form__status {
    font-size: 0.95rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 28px;
  }
}

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