:root {
  --primary: oklch(0.68 0.105 115);
  --primary-hover: oklch(0.38 0.08 115);
  --juniper: oklch(0.32 0.07 148);
  --juniper-deep: oklch(0.22 0.045 148);
  --mineral: oklch(0.97 0.004 155);
  --concrete: oklch(0.90 0.008 160);
  --concrete-deep: oklch(0.79 0.01 160);
  --carbon: oklch(0.16 0.012 155);
  --copy: oklch(0.31 0.014 155);
  --muted: oklch(0.44 0.012 155);
  --line: oklch(0.76 0.01 155);
  --inverse: oklch(0.97 0.004 155);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-heading: "Chiron Sung HK", "Songti TC", "Noto Serif TC", serif;
  --font-body: "Chiron Hei HK", "PingFang TC", sans-serif;
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(88px, 11vw, 176px);
  --section-space-compact: clamp(80px, 8vw, 112px);
  --rhythm-heading: clamp(56px, 8vw, 112px);
  --rhythm-service: clamp(80px, 12vw, 164px);
  --rhythm-work: clamp(64px, 9vw, 128px);
  --rhythm-work-grid: clamp(48px, 7vw, 104px);
  --rhythm-stagger: clamp(64px, 10vw, 144px);
  --rhythm-cinematic: clamp(104px, 12vw, 176px);
  --rhythm-step: clamp(32px, 4vw, 48px);
  --mobile-cta-height: 60px;
  --header-height: 80px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --z-sticky: 20;
  --z-header: 30;
  --z-menu: 40;
  --z-skip-link: 50;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--mineral);
  color: var(--carbon);
  font-family: var(--font-body);
  font-size: 1rem;
  font-kerning: normal;
  font-optical-sizing: auto;
  letter-spacing: 0.01em;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: contain;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

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

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

:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 3px;
  box-shadow:
    0 0 0 2px var(--mineral),
    0 0 0 5px var(--carbon);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-synthesis: none;
  font-weight: 600;
  letter-spacing: -0.012em;
}

p {
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + var(--space-md));
}

.page-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: var(--z-skip-link);
  padding: var(--space-sm) var(--space-md);
  translate: 0 -180%;
  background: var(--carbon);
  color: var(--inverse);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid transparent;
  color: var(--carbon);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.site-header.is-scrolled {
  border-color: oklch(0.76 0.01 155 / 0.75);
  background: var(--mineral);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-sm);
  min-width: 44px;
  min-height: 48px;
  text-decoration: none;
}

.brand-zh {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.brand-en {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease-out);
}

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

.nav-cta {
  gap: var(--space-lg);
  min-width: 156px;
  justify-content: center;
  padding-inline: var(--space-md);
  background: var(--carbon);
  color: var(--inverse);
  transition: background-color 160ms ease;
}

.nav-cta:hover {
  background: var(--primary-hover);
}

.menu-toggle {
  display: none;
  place-content: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin-block: 4px;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: 1fr;
  column-gap: clamp(var(--space-xl), 5vw, 80px);
  align-items: center;
  min-height: max(720px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--page-gutter) var(--space-2xl);
  background: var(--concrete);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 1px;
  background: var(--carbon);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 600px;
  padding-block: var(--space-xl);
}

.location-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: clamp(28px, 4vh, 48px);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.location-mark span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  max-width: 8em;
  margin-bottom: var(--space-lg);
  font-size: clamp(3.25rem, 5.2vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.hero-lead {
  max-width: 34em;
  margin-bottom: var(--space-xl);
  color: var(--copy);
  font-size: 1.0625rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  min-height: 52px;
  padding: var(--space-sm) var(--space-lg);
  border: 0;
  border-radius: 0;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms var(--ease-out);
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  min-width: 202px;
  background: var(--carbon);
  color: var(--inverse);
}

.button-primary:hover {
  background: var(--primary-hover);
}

.button-inverse {
  min-width: 220px;
  background: var(--inverse);
  color: var(--carbon);
}

.button-inverse:hover {
  background: var(--concrete);
  color: var(--carbon);
}

.button-large {
  width: min(100%, 380px);
  min-height: 60px;
  padding-inline: var(--space-lg);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  min-height: 48px;
  font-weight: 600;
  text-decoration: underline;
}

.hero-media {
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: 100%;
  min-width: 0;
  margin: 0;
  animation: specimen-settle 760ms var(--ease-expo) both;
}

.hero-image-frame {
  position: relative;
  width: min(100%, 620px);
  height: min(70svh, 720px);
  min-height: 540px;
  margin-left: auto;
  overflow: hidden;
  background: var(--concrete-deep);
  clip-path: inset(0 0 0 0);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid oklch(0.16 0.012 155 / 0.28);
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
}

.hero-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  width: min(100%, 620px);
  margin: var(--space-sm) 0 0 auto;
  color: var(--copy);
  font-size: 0.875rem;
  line-height: 1.6;
}

.hero-media figcaption span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.training-wire {
  position: absolute;
  inset: auto 0 -1%;
  z-index: 1;
  width: 100%;
  height: 14%;
  overflow: visible;
  opacity: 0.32;
  pointer-events: none;
}

.training-wire path {
  fill: none;
  stroke: var(--carbon);
  stroke-dasharray: 2600;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  animation: wire-draw 760ms 140ms var(--ease-out) both;
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--rhythm-heading);
}

.section-context {
  grid-column: 1 / span 3;
  margin: var(--space-xs) 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.section-heading h2 {
  grid-column: 4 / span 8;
  max-width: 10em;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.8vw, 3.9rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.16;
}

.service-split {
  display: grid;
  gap: var(--rhythm-service);
}

.service-path {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: end;
}

.service-image {
  grid-column: 1 / span 7;
  overflow: hidden;
  background: var(--concrete);
}

.service-image-tree {
  aspect-ratio: 5 / 4;
}

.service-image-pruning {
  grid-column: 6 / -1;
  aspect-ratio: 3 / 2;
}

.service-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.service-copy {
  grid-column: 9 / -1;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--carbon);
}

.service-path-reverse .service-copy {
  grid-column: 1 / span 4;
  grid-row: 1;
}

.service-type {
  margin-bottom: var(--space-md);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.service-copy h3 {
  margin-bottom: var(--space-lg);
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.service-copy p:not(.service-type) {
  max-width: 34em;
  color: var(--copy);
}

.service-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  min-height: 48px;
  font-weight: 700;
}

.work {
  background: var(--concrete);
}

.work-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: end;
  margin-bottom: var(--rhythm-work);
}

.work-heading h2 {
  grid-column: 1 / span 7;
  max-width: 10em;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.8vw, 3.9rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.16;
}

.work-heading > div {
  grid-column: 9 / -1;
}

.work-heading p {
  max-width: 35em;
  color: var(--copy);
}

.source-note {
  margin: var(--space-lg) 0 0;
  color: var(--muted) !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--rhythm-work-grid) var(--space-lg);
  align-items: start;
}

.work-item {
  margin: 0;
}

.work-item-main {
  grid-column: 1 / span 7;
}

.work-item-detail {
  grid-column: 9 / -1;
  margin-top: var(--rhythm-stagger);
}

.work-item-interior {
  grid-column: 4 / -1;
}

.work-media {
  overflow: hidden;
  background: var(--concrete-deep);
}

.work-item-main .work-media {
  aspect-ratio: 4 / 5;
}

.work-item-detail .work-media {
  aspect-ratio: 4 / 5;
}

.work-item-interior .work-media {
  aspect-ratio: 16 / 9;
}

.work-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease-out);
}

.work-item figcaption {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--carbon);
}

.work-item h3 {
  margin-bottom: var(--space-xs);
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
}

.work-item figcaption p {
  max-width: 36em;
  margin-bottom: 0;
  color: var(--copy);
}

.work-item figcaption a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  align-self: flex-start;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
}

.handoff {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: 880px;
  overflow: hidden;
  padding: var(--rhythm-cinematic) var(--page-gutter);
  background: var(--carbon);
  color: var(--inverse);
  isolation: isolate;
}

.handoff-word {
  position: absolute;
  inset: 50% 0 auto;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  color: oklch(0.28 0.015 155);
  font-family: var(--font-display);
  font-size: clamp(8rem, 17vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.62;
  pointer-events: none;
  translate: 0 -50%;
  user-select: none;
}

.handoff-media {
  z-index: 1;
  grid-column: 4 / span 6;
  align-self: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--juniper-deep);
}

.handoff-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.handoff-copy {
  z-index: 2;
  grid-column: 9 / -1;
  align-self: end;
  max-width: 520px;
  padding: var(--space-xl) 0 var(--space-lg) var(--space-xl);
  background: var(--carbon);
}

.location-mark-light {
  margin-bottom: var(--space-lg);
  color: oklch(0.82 0.012 155);
}

.handoff-copy h2 {
  margin-bottom: var(--space-lg);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.handoff-copy p:not(.location-mark) {
  max-width: 34em;
  margin-bottom: var(--space-xl);
  color: oklch(0.80 0.012 155);
}

.inquiry {
  background: var(--mineral);
}

.inquiry-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: end;
  margin-bottom: var(--rhythm-heading);
}

.inquiry-intro h2 {
  grid-column: 1 / span 7;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.8vw, 3.9rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.16;
}

.inquiry-intro p {
  grid-column: 9 / -1;
  margin-bottom: 0;
  color: var(--copy);
}

.inquiry-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: 0;
  list-style: none;
}

.inquiry-steps li {
  min-height: 260px;
  padding: var(--space-lg) var(--space-lg) var(--space-xl) 0;
  border-top: 1px solid var(--carbon);
}

.step-number {
  display: block;
  margin-bottom: var(--rhythm-step);
  color: var(--juniper);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.inquiry-steps h3 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
}

.inquiry-steps p {
  max-width: 31em;
  margin-bottom: 0;
  color: var(--copy);
}

.contact {
  background: var(--juniper-deep);
  color: var(--inverse);
}

.contact.section {
  padding-block: var(--section-space-compact);
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: end;
}

.contact-inner > div:first-child {
  grid-column: 1 / span 8;
}

.contact-place {
  margin-bottom: var(--space-lg);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.contact h2 {
  max-width: 10em;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
}

.contact-action {
  grid-column: 9 / -1;
}

.contact-action p {
  max-width: 36em;
  margin: var(--space-lg) 0 0;
  color: oklch(0.82 0.018 148);
  font-size: 0.875rem;
  line-height: 1.6;
}

.site-footer {
  padding-block: var(--space-3xl) calc(var(--space-3xl) + env(safe-area-inset-bottom));
  background: var(--carbon);
  color: var(--inverse);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: end;
}

.footer-inner p {
  margin-bottom: 0;
  color: oklch(0.78 0.012 155);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-inner p:first-child {
  grid-column: 1 / span 3;
  color: var(--inverse);
}

.footer-inner .demo-note {
  grid-column: 5 / span 5;
  max-width: 58em;
}

.footer-inner p:last-child {
  grid-column: 11 / -1;
  text-align: right;
}

.mobile-instagram-cta {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .service-image:hover img,
  .work-media:hover img {
    transform: scale(1.025);
  }
}

@keyframes specimen-settle {
  from {
    filter: blur(8px);
    opacity: 0.72;
    transform: scale(1.035);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wire-draw {
  from {
    stroke-dashoffset: 2600;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1120px) {
  .work-heading > div,
  .inquiry-intro p {
    grid-column: 8 / -1;
  }

  .handoff-media {
    grid-column: 3 / span 7;
  }

  .handoff-copy {
    grid-column: 8 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .js .menu-toggle {
    display: grid;
    z-index: calc(var(--z-menu) + 1);
  }

  .site-header.menu-visible {
    background: var(--carbon);
    color: var(--inverse);
  }

  .site-nav {
    position: absolute;
    inset: var(--header-height) 0 auto;
    z-index: var(--z-menu);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: var(--space-md) var(--page-gutter) max(var(--space-md), env(safe-area-inset-bottom));
    background: var(--carbon);
    color: var(--inverse);
  }

  .js .site-nav {
    position: fixed;
    inset: 0;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--page-gutter) max(var(--space-2xl), env(safe-area-inset-bottom));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      visibility 0s linear 220ms;
  }

  .js .site-nav[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav a {
    justify-content: space-between;
    min-height: 64px;
    border-bottom: 1px solid oklch(0.38 0.012 155);
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .site-nav .nav-cta {
    min-width: 0;
    margin-top: var(--space-xl);
    padding-inline: var(--space-lg);
    border-bottom: 0;
    background: var(--inverse);
    color: var(--carbon);
  }

  .hero {
    grid-template-rows: 1fr;
    column-gap: clamp(var(--space-lg), 4vw, 40px);
    min-height: max(680px, 100svh);
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

  .hero-copy {
    grid-column: 1;
    padding-block: var(--space-lg);
  }

  .hero-media {
    grid-column: 2;
  }

  .hero-image-frame {
    height: min(58svh, 560px);
    min-height: 460px;
  }

  .section-context {
    grid-column: 1 / span 3;
  }

  .section-heading h2 {
    grid-column: 4 / -1;
  }

  .service-image {
    grid-column: 1 / span 7;
  }

  .service-copy {
    grid-column: 8 / -1;
  }

  .service-image-pruning {
    grid-column: 6 / -1;
  }

  .service-path-reverse .service-copy {
    grid-column: 1 / span 5;
  }

  .work-item-main {
    grid-column: 1 / span 8;
  }

  .work-item-detail {
    grid-column: 7 / -1;
  }

  .work-item-interior {
    grid-column: 3 / -1;
  }

  .handoff {
    min-height: 760px;
  }

  .handoff-media {
    grid-column: 2 / span 8;
  }

  .handoff-copy {
    grid-column: 7 / -1;
  }

  .contact-inner > div:first-child {
    grid-column: 1 / span 7;
  }

  .contact-action {
    grid-column: 8 / -1;
  }

  .footer-inner p:first-child {
    grid-column: 1 / span 4;
  }

  .footer-inner .demo-note {
    grid-column: 6 / -1;
  }

  .footer-inner p:last-child {
    grid-column: 1 / -1;
    margin-top: var(--space-lg);
    text-align: left;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(var(--mobile-cta-height) + env(safe-area-inset-bottom));
  }

  .brand-en {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: max(760px, 100svh);
    padding-inline: 0;
    padding-top: calc(var(--header-height) + 12px);
  }

  .hero-media {
    order: 2;
    width: calc(100% - (2 * var(--page-gutter)));
    max-width: 520px;
    margin: var(--space-xl) auto 0;
  }

  .hero-image-frame {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-media figcaption {
    padding-right: 0;
  }

  .hero-media figcaption span:last-child {
    max-width: 17em;
    text-align: right;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    max-width: none;
    padding: var(--space-xl) var(--page-gutter) 0;
  }

  .location-mark {
    margin-bottom: var(--space-lg);
  }

  .hero h1 {
    max-width: 8em;
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: var(--space-sm);
  }

  .hero-actions .text-action {
    width: auto;
  }

  .hero-actions .button-primary {
    display: none;
  }

  .training-wire {
    display: none;
  }

  .section-heading,
  .service-path,
  .work-heading,
  .work-grid,
  .inquiry-intro,
  .contact-inner,
  .footer-inner {
    display: block;
  }

  .section-context {
    margin-bottom: var(--space-xl);
  }

  .section-heading h2,
  .work-heading h2,
  .inquiry-intro h2 {
    font-size: clamp(2rem, 7.8vw, 2.75rem);
  }

  .service-split {
    gap: var(--space-4xl);
  }

  .service-image {
    width: calc(100% + var(--page-gutter));
    margin-bottom: var(--space-xl);
    margin-left: calc(-1 * var(--page-gutter));
  }

  .service-path-reverse .service-image {
    width: calc(100% + var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    margin-left: 0;
  }

  .service-image-tree,
  .service-image-pruning {
    aspect-ratio: 4 / 3;
  }

  .service-copy {
    padding-bottom: var(--space-xl);
  }

  .work-heading h2,
  .inquiry-intro h2 {
    margin-bottom: var(--space-xl);
  }

  .work-heading > div,
  .inquiry-intro p {
    max-width: 42em;
  }

  .work-grid {
    padding-inline: 0;
  }

  .work-item {
    width: 100%;
    margin: 0 0 var(--space-4xl);
  }

  .work-item:last-child {
    margin-bottom: 0;
  }

  .work-item-main {
    width: calc(100% - var(--page-gutter));
  }

  .work-item-detail {
    width: 74%;
    margin-left: auto;
  }

  .work-item-interior {
    width: calc(100% - var(--page-gutter));
    margin-left: var(--page-gutter);
  }

  .work-item figcaption {
    display: block;
    padding-inline: var(--page-gutter);
  }

  .work-item figcaption a {
    display: inline-flex;
    align-items: center;
    margin-top: var(--space-md);
  }

  .handoff {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-inline: 0;
  }

  .handoff-word {
    top: 18%;
    right: -8px;
    left: -8px;
    font-size: clamp(6rem, 30vw, 10rem);
  }

  .handoff-media {
    order: 1;
    width: calc(100% - var(--page-gutter));
    margin: 0 var(--page-gutter) 0 0;
    aspect-ratio: 4 / 5;
  }

  .handoff-copy {
    order: 2;
    max-width: none;
    margin: calc(-1 * var(--space-xl)) 0 0 var(--page-gutter);
    padding: var(--space-xl) var(--page-gutter) 0 var(--space-lg);
  }

  .handoff-copy h2 {
    font-size: clamp(2.15rem, 8.5vw, 3rem);
  }

  .inquiry-steps {
    display: block;
  }

  .inquiry-steps li {
    min-height: 0;
    padding: var(--space-lg) 0 var(--space-3xl);
  }

  .step-number {
    margin-bottom: var(--space-2xl);
  }

  .contact-inner > div:first-child {
    margin-bottom: var(--space-2xl);
  }

  .contact h2 {
    font-size: clamp(2.15rem, 8.5vw, 3rem);
  }

  .footer-inner p {
    margin-bottom: var(--space-xl);
  }

  .footer-inner p:last-child {
    margin-bottom: 0;
    text-align: left;
  }

  .mobile-instagram-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-sticky);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(var(--mobile-cta-height) + env(safe-area-inset-bottom));
    padding: var(--space-sm) var(--page-gutter) max(var(--space-sm), env(safe-area-inset-bottom));
    border-top: 3px solid var(--primary);
    background: var(--carbon);
    color: var(--inverse);
    font-weight: 700;
    text-decoration: none;
  }
}

@media (max-width: 390px) {
  .hero-copy {
    padding-top: var(--space-xl);
  }

  .hero-media figcaption {
    display: block;
  }

  .hero-media figcaption span {
    display: block;
  }

  .hero-media figcaption span:last-child {
    margin-top: var(--space-xxs);
    text-align: left;
  }

  .work-item-detail {
    width: 82%;
  }
}

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

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

  .training-wire path {
    stroke-dasharray: none;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 3px solid ButtonText;
    box-shadow: none;
  }
}

@media print {
  .site-header,
  .mobile-instagram-cta,
  .training-wire,
  .hero-actions,
  .button {
    display: none !important;
  }

  body {
    padding-bottom: 0;
    background: white;
    color: black;
  }

  .hero,
  .work,
  .handoff,
  .contact,
  .site-footer {
    background: white;
    color: black;
  }
}
