:root {
  color-scheme: light;
  --bg: #f4f3ef;
  --bg-raised: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --ink: #19191b;
  --ink-soft: #5e5d61;
  --line: rgba(25, 25, 27, 0.1);
  --line-strong: rgba(25, 25, 27, 0.18);
  --accent: #ff6843;
  --accent-dark: #d84928;
  --accent-soft: #ffe3d9;
  --dark: #1a1a1d;
  --dark-raised: #252529;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(31, 26, 21, 0.07);
  --shadow-md: 0 24px 70px rgba(31, 26, 21, 0.12);
  --shadow-lg: 0 36px 100px rgba(23, 18, 14, 0.18);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.75rem;
  --container: 1240px;
  --header-height: 4.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101012;
  --bg-raised: #18181b;
  --surface: rgba(33, 33, 37, 0.72);
  --surface-solid: #202024;
  --ink: #f4f3ef;
  --ink-soft: #adacb2;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent-soft: #4a241b;
  --dark: #070708;
  --dark-raised: #18181b;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 36px 100px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 300ms ease, color 300ms ease;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent), white 20%);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.pressable {
  touch-action: manipulation;
  transform-origin: center;
}

.pressable.is-pressing,
.pressable:active {
  transform: scale(0.97);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 0;
  pointer-events: none;
}

.header-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), 1280px);
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 0.6rem 0.7rem 0.6rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.35rem;
  background: color-mix(in srgb, var(--surface), transparent 8%);
  box-shadow: 0 8px 32px rgba(23, 20, 16, 0.07);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  pointer-events: auto;
  transition: box-shadow 250ms ease, background-color 250ms ease, transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 16px 40px rgba(23, 20, 16, 0.12);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: -0.035em;
  transition: transform 100ms ease-out;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 1.9rem;
  height: 1.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.62rem;
  background: var(--ink);
}

.brand-mark i {
  position: absolute;
  width: 0.95rem;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

.brand-mark i:first-child {
  transform: translateY(-0.28rem);
}

.brand-mark i:last-child {
  transform: translateY(0.28rem);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 0.9rem;
}

.desktop-nav a {
  padding: 0.65rem 0.8rem;
  border-radius: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 590;
  letter-spacing: -0.01em;
  transition: background-color 180ms ease, color 180ms ease, transform 100ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: color-mix(in srgb, var(--ink), transparent 93%);
  color: var(--ink);
}

.desktop-nav a:active {
  transform: scale(0.96);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  padding: 0.58rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.location-pill svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.icon-button {
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, transform 100ms ease;
}

.icon-button:hover {
  background: color-mix(in srgb, var(--ink), transparent 94%);
}

.icon-button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.moon-icon {
  display: none;
}

:root[data-theme="dark"] .sun-icon {
  display: none;
}

:root[data-theme="dark"] .moon-icon {
  display: block;
}

.button {
  min-height: 3.35rem;
  padding: 0.85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 1rem;
  font-size: 0.92rem;
  font-weight: 690;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: box-shadow 220ms ease, background-color 180ms ease, color 180ms ease, transform 100ms ease-out;
}

.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 2.65rem;
  padding: 0.6rem 0.92rem;
  border-radius: 0.8rem;
  font-size: 0.8rem;
}

.button-primary {
  background: var(--accent);
  color: #1a0c08;
  box-shadow: 0 10px 28px rgba(255, 104, 67, 0.25);
}

.button-primary:hover {
  background: #ff7958;
  box-shadow: 0 14px 32px rgba(255, 104, 67, 0.32);
}

.button-dark {
  background: var(--ink);
  color: var(--bg);
}

.button-dark:hover {
  background: color-mix(in srgb, var(--ink), var(--accent) 12%);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #f6f5f1;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: min(960px, 100svh);
  padding-top: clamp(8.8rem, 15vh, 11rem);
  padding-bottom: clamp(4rem, 8vh, 7rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  width: 34rem;
  height: 34rem;
  top: -10rem;
  right: -9rem;
  background: radial-gradient(circle, rgba(255, 104, 67, 0.12), transparent 68%);
}

.ambient-two {
  width: 27rem;
  height: 27rem;
  bottom: -8rem;
  left: -9rem;
  background: radial-gradient(circle, rgba(85, 145, 255, 0.09), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(33rem, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.eyebrow {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.3rem color-mix(in srgb, var(--accent), transparent 84%);
}

.hero h1,
.section-heading h2,
.precision h2,
.process h2,
.brief h2,
.local h2 {
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 6.9rem);
  font-weight: 690;
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.text-link {
  min-height: 3rem;
  padding: 0.65rem 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease, transform 100ms ease;
}

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

.text-link span {
  display: inline-grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-facts {
  margin: 3.2rem 0 0;
  padding: 1.6rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-facts strong {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.3;
}

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: clamp(34rem, 46vw, 42rem);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 68% 28%, rgba(255, 142, 111, 0.2), transparent 36%),
    var(--bg-raised);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: box-shadow 300ms ease;
}

:root[data-theme="dark"] .hero-visual {
  background:
    linear-gradient(150deg, rgba(46, 46, 51, 0.72), rgba(24, 24, 27, 0.38)),
    radial-gradient(circle at 68% 28%, rgba(255, 104, 67, 0.16), transparent 36%),
    var(--bg-raised);
  border-color: rgba(255, 255, 255, 0.1);
}

.glass {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
}

:root[data-theme="dark"] .glass {
  background: rgba(36, 36, 40, 0.65);
  border-color: rgba(255, 255, 255, 0.1);
}

.visual-toolbar {
  position: absolute;
  z-index: 4;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 3rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 620;
  letter-spacing: 0.02em;
}

.visual-toolbar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.visual-toolbar i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #47bf78;
  box-shadow: 0 0 0 0.27rem rgba(71, 191, 120, 0.14);
}

.fabrication-stage {
  position: absolute;
  inset: 5.2rem 1.2rem 1.2rem;
  border-radius: 2rem;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 2.3rem 2.3rem;
  background-position: center;
  overflow: hidden;
  transform: translateZ(18px);
}

.fabrication-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, var(--bg-raised) 82%);
  opacity: 0.72;
}

.printer-frame {
  position: absolute;
  z-index: 1;
  inset: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  color: var(--ink);
  overflow: visible;
}

.frame-stroke,
.frame-faint,
.print-head-line,
.platform-line,
.layer-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.frame-stroke {
  stroke: url(#frameGradient);
  stroke-width: 5;
}

.frame-faint {
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.11;
}

.print-head {
  fill: color-mix(in srgb, var(--ink), transparent 10%);
}

.print-head-line {
  stroke: var(--bg-raised);
  stroke-width: 2;
  opacity: 0.6;
}

.laser-beam {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 3 5;
  filter: drop-shadow(0 0 6px var(--accent));
}

.platform {
  fill: color-mix(in srgb, var(--ink), transparent 12%);
}

.platform-line {
  stroke: var(--bg-raised);
  stroke-width: 2;
  opacity: 0.22;
}

.printed-object {
  fill: url(#objectGradient);
}

.layer-line {
  stroke: rgba(255, 255, 255, 0.52);
  stroke-width: 2;
}

.floating-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  transform: translate3d(var(--float-x, 0), var(--float-y, 0), 40px);
}

.tag-fdm {
  left: 1.2rem;
  bottom: 1.4rem;
  padding: 0.75rem 0.9rem;
}

.tag-material {
  top: 2rem;
  right: 1.2rem;
  padding: 0.7rem 0.9rem;
}

.floating-tag small,
.floating-tag strong {
  display: block;
}

.floating-tag small {
  margin-bottom: 0.08rem;
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 620;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.floating-tag strong {
  font-size: 0.7rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.tag-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.72rem;
}

.tag-icon-coral {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.tag-icon svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.axis-label {
  position: absolute;
  z-index: 2;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-raised);
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 750;
}

.axis-x { right: 1rem; bottom: 1rem; }
.axis-y { right: 3rem; bottom: 1rem; }
.axis-z { right: 5rem; bottom: 1rem; }

.section-heading {
  max-width: 55rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.precision h2,
.process h2,
.brief h2,
.local h2 {
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 0.96;
}

.section-heading > p:last-child {
  max-width: 40rem;
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 38rem;
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 250ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.service-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 1.4rem;
  transform: translateZ(20px);
}

.service-number {
  grid-row: 1;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-card p {
  max-width: 28rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-card ul {
  grid-column: 1 / -1;
  align-self: end;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.service-card li {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: color-mix(in srgb, var(--bg-raised), transparent 10%);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 630;
}

.service-art {
  position: absolute;
  inset: 7.2rem 1.4rem 3.5rem;
  display: grid;
  place-items: center;
  transform: translateZ(10px);
}

.service-art svg {
  width: min(82%, 21rem);
  overflow: visible;
  filter: drop-shadow(0 26px 34px rgba(28, 22, 17, 0.18));
}

.art-shadow {
  fill: rgba(20, 19, 19, 0.14);
  filter: blur(8px);
}

.service-fdm {
  background:
    radial-gradient(circle at 65% 55%, rgba(255, 104, 67, 0.16), transparent 42%),
    var(--bg-raised);
}

.fdm-art .art-main {
  fill: var(--accent);
}

.art-lines {
  fill: none;
  stroke: rgba(255, 255, 255, 0.54);
  stroke-width: 2;
  stroke-linecap: round;
}

.service-lcd {
  background:
    radial-gradient(circle at 62% 54%, rgba(115, 124, 255, 0.19), transparent 43%),
    var(--bg-raised);
}

.lcd-art .gem {
  fill: rgba(116, 128, 255, 0.72);
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 2;
}

.gem-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.54);
  stroke-width: 2;
}

.service-wood {
  background:
    radial-gradient(circle at 62% 54%, rgba(193, 126, 56, 0.19), transparent 44%),
    var(--bg-raised);
}

.wood-board {
  fill: #bd8750;
}

.wood-grain,
.wood-ring {
  fill: none;
  stroke: rgba(82, 43, 14, 0.26);
  stroke-width: 2;
  stroke-linecap: round;
}

.wood-mark {
  fill: rgba(70, 34, 10, 0.8);
}

.service-metal {
  background:
    radial-gradient(circle at 62% 54%, rgba(157, 163, 174, 0.2), transparent 43%),
    var(--bg-raised);
}

.metal-tag {
  fill: url(#metalFill);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2;
}

.metal-hole {
  fill: var(--bg-raised);
  stroke: rgba(20, 20, 20, 0.3);
}

.metal-mark {
  fill: none;
  stroke: rgba(27, 27, 29, 0.68);
  stroke-width: 5;
  stroke-linecap: round;
}

.laser {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  filter: drop-shadow(0 0 5px var(--accent));
}

.laser-point {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent));
}

.precision {
  padding-top: 2rem;
}

.precision-panel {
  position: relative;
  min-height: 43rem;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: 1fr auto;
  gap: 3rem;
  border-radius: var(--radius-xl);
  background: #18181b;
  color: #f8f7f3;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.precision-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 50%, rgba(255, 104, 67, 0.16), transparent 27%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 3rem 3rem, 3rem 3rem;
}

.precision-copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.6);
}

.precision-copy p:last-child {
  max-width: 31rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.precision-data {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.precision-data > div {
  padding: 1.9rem 1.5rem 0 0;
  display: flex;
  align-items: end;
  gap: 0.9rem;
}

.precision-data > div + div {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.precision-data strong {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 620;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.precision-data span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  line-height: 1.3;
}

.scan-orbit {
  position: absolute;
  z-index: 1;
  width: min(41rem, 58vw);
  aspect-ratio: 1;
  right: -2rem;
  top: -3rem;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.orbit-one {
  width: 70%;
  height: 70%;
  transform: rotateX(68deg) rotateZ(18deg);
}

.orbit-two {
  width: 54%;
  height: 54%;
  transform: rotateY(65deg) rotateZ(-22deg);
}

.orbit-core {
  position: relative;
  width: 28%;
  height: 28%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 36% 64% 58% 42% / 45% 37% 63% 55%;
  background: rgba(255, 104, 67, 0.78);
  box-shadow: inset 20px 10px 34px rgba(255, 255, 255, 0.2), 0 30px 70px rgba(255, 70, 30, 0.22);
  transform: rotate(-17deg);
}

.orbit-core::before,
.orbit-core::after,
.orbit-core span {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  height: 1px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.orbit-core::before { top: 34%; }
.orbit-core span { top: 50%; }
.orbit-core::after { top: 66%; }

.scan-line {
  position: absolute;
  width: 68%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  opacity: 0.65;
  animation: scan 5s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-9rem); opacity: 0; }
  20%, 80% { opacity: 0.65; }
  50% { transform: translateY(9rem); }
}

.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.section-heading-row > p:last-child {
  max-width: 28rem;
  margin-bottom: 0.25rem;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.project-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 38rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 250ms ease;
}

.project-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.project-card-large {
  grid-column: 1 / -1;
  min-height: 42rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}

.project-visual {
  position: relative;
  min-height: 25rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: translateZ(10px);
}

.project-info {
  position: relative;
  z-index: 2;
  padding: 2rem;
  transform: translateZ(20px);
}

.project-card-large .project-info {
  padding: clamp(2.2rem, 5vw, 4.2rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.project-info > span {
  color: var(--accent-dark);
  font-size: 0.67rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 0.8rem 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.project-info p {
  max-width: 28rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.enclosure-visual {
  min-height: 42rem;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 104, 67, 0.15), transparent 50%);
  background-size: 2.5rem 2.5rem, 2.5rem 2.5rem, auto;
  perspective: 900px;
}

.enclosure {
  position: relative;
  width: min(22rem, 54vw);
  aspect-ratio: 1.5;
  border: 2px solid rgba(255, 255, 255, 0.23);
  border-radius: 2.2rem;
  background: linear-gradient(145deg, #ff8061, #c94022);
  box-shadow: inset -24px -20px 35px rgba(100, 20, 5, 0.24), inset 10px 8px 20px rgba(255, 255, 255, 0.2), 0 42px 60px rgba(71, 31, 22, 0.22);
  transform: rotateX(58deg) rotateZ(-27deg) translateY(-1rem);
}

.enclosure::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 1.65rem;
}

.vent {
  position: absolute;
  z-index: 2;
  top: 28%;
  width: 0.65rem;
  height: 38%;
  border-radius: 99px;
  background: rgba(55, 20, 12, 0.42);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.vent-1 { left: 25%; }
.vent-2 { left: 33%; }
.vent-3 { left: 41%; }
.vent-4 { left: 49%; }

.port {
  position: absolute;
  right: 18%;
  bottom: 18%;
  width: 1.8rem;
  height: 0.8rem;
  border-radius: 0.35rem;
  background: rgba(50, 20, 15, 0.7);
}

.button-dot {
  position: absolute;
  right: 20%;
  top: 24%;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #ffc4b4;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
}

.measure {
  position: absolute;
  padding: 0.38rem 0.56rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 680;
  backdrop-filter: blur(10px);
}

.measure-x { bottom: 16%; left: 22%; }
.measure-y { right: 20%; top: 20%; }

.plaque-visual {
  background: #e0c29a;
}

.plaque-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: repeating-radial-gradient(ellipse at 0 50%, transparent 0 16px, #7e4c26 17px 18px, transparent 19px 34px);
}

.plaque {
  position: relative;
  width: min(70%, 21rem);
  aspect-ratio: 1.28;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(94, 52, 24, 0.32);
  border-radius: 0.7rem;
  background: rgba(226, 195, 151, 0.68);
  color: #5c331c;
  box-shadow: 0 30px 50px rgba(79, 48, 23, 0.24), inset 0 0 0 0.55rem rgba(114, 68, 36, 0.1);
  transform: rotate(-6deg);
}

.plaque-mark {
  font-size: 3.3rem;
  font-weight: 300;
  line-height: 1;
}

.plaque-name {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  font-weight: 750;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}

.plaque-line {
  width: 4rem;
  height: 1px;
  margin: 0.8rem 0;
  background: currentColor;
  opacity: 0.55;
}

.plaque small {
  font-size: 0.48rem;
  letter-spacing: 0.12em;
}

.miniature-visual {
  background:
    radial-gradient(circle at 50% 45%, rgba(130, 137, 255, 0.32), transparent 32%),
    #cbcdea;
  perspective: 800px;
}

.miniature-base {
  position: absolute;
  width: 13rem;
  height: 3.8rem;
  bottom: 19%;
  border-radius: 50%;
  background: linear-gradient(180deg, #7077cd, #3d427f);
  box-shadow: 0 26px 35px rgba(48, 49, 92, 0.28), inset 0 4px 10px rgba(255, 255, 255, 0.25);
}

.miniature-body {
  position: absolute;
  width: 7.6rem;
  height: 15rem;
  bottom: 24%;
  border-radius: 52% 48% 44% 56% / 31% 36% 64% 69%;
  background: linear-gradient(145deg, #f0f0ff, #888fdc 58%, #575ca8);
  box-shadow: inset 14px 5px 22px rgba(255, 255, 255, 0.38), 0 26px 40px rgba(51, 54, 112, 0.3);
  transform: rotate(4deg);
}

.miniature-body::before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  left: 1.6rem;
  top: -2.2rem;
  border-radius: 47% 53% 44% 56%;
  background: inherit;
}

.miniature-body i {
  position: absolute;
  left: 14%;
  right: 14%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.miniature-body i:nth-child(1) { top: 32%; }
.miniature-body i:nth-child(2) { top: 53%; }
.miniature-body i:nth-child(3) { top: 74%; }

.miniature-ring {
  position: absolute;
  width: 13rem;
  height: 5.5rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.ring-a { top: 25%; transform: rotateX(68deg) rotateZ(13deg); }
.ring-b { top: 46%; transform: rotateX(72deg) rotateZ(-14deg); }

.process {
  background: color-mix(in srgb, var(--bg-raised), var(--bg) 50%);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(4rem, 9vw, 8rem);
}

.process-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.process-intro > p:last-child {
  max-width: 27rem;
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 10.5rem;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: start;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.66rem;
  font-weight: 710;
}

.process-list h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 29rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.step-state {
  padding: 0.42rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 650;
}

.brief {
  background: color-mix(in srgb, var(--bg-raised), var(--bg) 50%);
  padding-top: 2rem;
}

.brief-panel {
  position: relative;
  padding: clamp(1.3rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(2rem, 6vw, 6rem);
  border-radius: var(--radius-xl);
  background: #18181b;
  color: #f7f6f2;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.brief-panel::before {
  content: "";
  position: absolute;
  width: 35rem;
  height: 35rem;
  left: -14rem;
  bottom: -18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 104, 67, 0.28), transparent 67%);
}

.brief-copy {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
}

.brief-copy > p:nth-of-type(2) {
  max-width: 31rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.brief-note {
  margin-top: auto;
  padding-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.73rem;
}

.brief-note svg {
  flex: 0 0 auto;
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.brief-form {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.07);
}

.brief-form fieldset {
  margin: 0 0 1.6rem;
  padding: 0;
  border: 0;
}

.brief-form legend,
.text-field > span {
  margin-bottom: 0.75rem;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 670;
}

.text-field > span small {
  margin-left: 0.3rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 520;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.choice-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.choice {
  min-height: 3rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 620;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 100ms ease;
}

.choice:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.choice.is-selected {
  border-color: rgba(255, 104, 67, 0.7);
  background: rgba(255, 104, 67, 0.17);
  color: #ffb39f;
}

.text-field {
  position: relative;
  display: block;
}

.text-field textarea {
  width: 100%;
  min-height: 6.5rem;
  padding: 0.9rem 3rem 1.3rem 0.95rem;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.text-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 104, 67, 0.13);
}

.text-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.text-field em {
  position: absolute;
  right: 0.75rem;
  bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.58rem;
  font-style: normal;
}

.brief-preview {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 2px solid var(--accent);
  background: rgba(0, 0, 0, 0.15);
}

.brief-preview > span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brief-preview p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.5;
}

.brief-actions {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

.direct-contact {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.direct-contact > p {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 690;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.direct-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.contact-method {
  min-width: 0;
  min-height: 3.8rem;
  padding: 0.65rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.045);
  transition: background-color 180ms ease, border-color 180ms ease, transform 100ms ease;
}

.contact-method:hover {
  border-color: rgba(255, 104, 67, 0.55);
  background: rgba(255, 104, 67, 0.11);
}

.contact-symbol {
  flex: 0 0 auto;
  width: 2.05rem;
  height: 2.05rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: rgba(255, 104, 67, 0.15);
  color: #ff9d84;
  font-size: 0.55rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.contact-method > span:last-child {
  min-width: 0;
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method strong {
  margin-bottom: 0.08rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
}

.contact-method small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.56rem;
  overflow-wrap: anywhere;
}

.local {
  overflow: hidden;
}

.local-grid {
  min-height: 36rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.local-map {
  position: relative;
  min-height: 34rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg-raised);
  overflow: hidden;
}

.local-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-road {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 2;
  stroke-linecap: round;
}

.map-road-soft {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 7 8;
}

.map-pulse {
  fill: none;
  stroke: var(--accent);
}

.pulse-outer {
  opacity: 0.22;
  stroke-width: 1;
}

.pulse-inner {
  opacity: 0.44;
  stroke-width: 1.5;
}

.map-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent));
}

.map-label {
  position: absolute;
  left: calc(50% + 1.6rem);
  top: calc(50% - 0.3rem);
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 0.85rem;
}

.map-label > span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.map-label strong,
.map-label small {
  display: block;
}

.map-label strong {
  font-size: 0.76rem;
}

.map-label small {
  color: var(--ink-soft);
  font-size: 0.56rem;
}

.local-copy > p:nth-of-type(2) {
  margin: 1.8rem 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.delivery-list {
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.delivery-list li {
  min-height: 3.3rem;
  padding: 0.65rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--bg-raised), transparent 18%);
}

.delivery-list span {
  font-size: 0.78rem;
  font-weight: 690;
  letter-spacing: -0.015em;
}

.delivery-list small {
  color: var(--ink-soft);
  font-size: 0.62rem;
  text-align: right;
}

.site-footer {
  padding: 5rem 0 1.6rem;
  background: var(--dark);
  color: #f5f4ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand .brand-mark {
  background: #f5f4ef;
}

.footer-grid > div:first-child p {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-grid strong {
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-contact > a {
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.footer-grid nav a:hover,
.footer-contact > a:hover {
  color: var(--accent);
}

.footer-contact > a span {
  margin-left: 0.2rem;
  color: var(--accent);
}

.footer-contact small {
  max-width: 16rem;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.62rem;
}

.footer-contact a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.footer-bottom {
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.62rem;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 1.5rem;
  min-height: 3.2rem;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  background: rgba(25, 25, 28, 0.88);
  color: #fff;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 2rem)) scale(0.96);
  transition: opacity 240ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  font-size: 0.76rem;
  font-weight: 640;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.toast svg {
  width: 1.1rem;
  fill: none;
  stroke: #67d391;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(1.75rem) scale(0.985);
  transition: opacity 650ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .desktop-nav,
  .location-pill {
    display: none;
  }

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

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts li:last-child {
    display: none;
  }

  .service-card {
    min-height: 35rem;
  }

  .project-card-large {
    grid-template-columns: 1fr 0.72fr;
  }

  .brief-panel {
    gap: 2rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 4rem;
  }

  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .section {
    padding: 5rem 0;
  }

  .site-header {
    padding-top: 0.55rem;
  }

  .header-shell {
    width: calc(100% - 1rem);
    min-height: var(--header-height);
    padding: 0.45rem 0.45rem 0.45rem 0.9rem;
    border-radius: 1.15rem;
  }

  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
  }

  .menu-button span {
    width: 1.1rem;
    height: 1.5px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

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

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

  .mobile-menu {
    position: fixed;
    top: 0.55rem;
    left: 0.5rem;
    right: 0.5rem;
    z-index: 1;
    padding: 5rem 1rem 1rem;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.15rem 1.15rem 1.5rem 1.5rem;
    background: color-mix(in srgb, var(--bg-raised), transparent 6%);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(24px) saturate(170%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-header::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(12, 12, 14, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .menu-open .site-header::before {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu a {
    padding: 1rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
    font-size: 1.12rem;
    font-weight: 640;
    letter-spacing: -0.025em;
  }

  .mobile-menu a span {
    color: var(--ink-soft);
    font-size: 0.62rem;
    letter-spacing: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 8.8rem;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-facts {
    max-width: 34rem;
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 38rem);
    min-height: 36rem;
    margin-inline: auto;
  }

  .service-grid,
  .project-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 37rem;
  }

  .precision-panel {
    min-height: 48rem;
    grid-template-columns: 1fr;
  }

  .precision-copy {
    max-width: 31rem;
  }

  .scan-orbit {
    width: 34rem;
    right: -8rem;
    top: 10rem;
  }

  .precision-data {
    grid-template-columns: 1fr;
    align-self: end;
  }

  .precision-data > div {
    padding: 1.1rem 0;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .precision-data > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .precision-data strong {
    min-width: 5.5rem;
    font-size: 2.5rem;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p:last-child {
    margin-top: 1.8rem;
  }

  .project-card-large {
    grid-column: auto;
    min-height: 42rem;
    display: flex;
  }

  .project-card-large .project-visual {
    min-height: 28rem;
  }

  .project-card-large .project-info {
    padding: 2rem;
  }

  .process-grid,
  .brief-panel,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .brief-copy {
    min-height: 25rem;
  }

  .local-copy {
    grid-row: 1;
    text-align: center;
  }

  .local-copy .eyebrow {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .section {
    padding: 4.4rem 0;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .section-heading h2,
  .precision h2,
  .process h2,
  .brief h2,
  .local h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hero-facts li,
  .hero-facts li:last-child {
    display: flex;
  }

  .hero-facts li {
    padding: 0.65rem 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .hero-facts span {
    text-align: right;
  }

  .hero-visual {
    min-height: 30rem;
    border-radius: 2rem;
  }

  .visual-toolbar span:last-child,
  .tag-material,
  .axis-label {
    display: none;
  }

  .fabrication-stage {
    inset: 5rem 0.8rem 0.8rem;
  }

  .service-card {
    min-height: 35rem;
    padding: 1.4rem;
    border-radius: 1.6rem;
  }

  .service-copy {
    column-gap: 1rem;
  }

  .service-card h3 {
    font-size: 1.85rem;
  }

  .service-art {
    inset-inline: 0;
  }

  .service-card ul {
    display: grid;
  }

  .precision-panel,
  .brief-panel,
  .local-map {
    border-radius: 2rem;
  }

  .precision-panel {
    min-height: 46rem;
    padding: 1.5rem;
  }

  .precision-copy p:last-child {
    font-size: 0.9rem;
  }

  .scan-orbit {
    width: 29rem;
    right: -11rem;
    top: 9rem;
  }

  .precision-data span br {
    display: none;
  }

  .project-card {
    min-height: 35rem;
    border-radius: 1.6rem;
  }

  .project-card-large .project-visual {
    min-height: 24rem;
  }

  .enclosure {
    width: 16rem;
  }

  .process-list li {
    grid-template-columns: 3rem 1fr;
  }

  .step-state {
    display: none;
  }

  .brief-copy {
    min-height: auto;
    padding: 1rem;
  }

  .brief-note {
    margin-top: 2rem;
  }

  .brief-form {
    padding: 1.2rem;
    border-radius: 1.45rem;
  }

  .choice-grid,
  .choice-grid-three {
    grid-template-columns: 1fr 1fr;
  }

  .brief-actions {
    grid-template-columns: 1fr;
  }

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

  .local-map {
    min-height: 25rem;
  }

  .map-label {
    left: 50%;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.35rem;
  }
}

@media (hover: none), (pointer: coarse) {
  [data-tilt] {
    transform: none !important;
  }
}

@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: 120ms !important;
  }

  .reveal {
    transform: none;
  }

  [data-tilt] {
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .header-shell,
  .glass,
  .mobile-menu,
  .toast {
    background: var(--surface-solid);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .toast {
    background: #202024;
  }
}

@media (prefers-contrast: more) {
  .header-shell,
  .service-card,
  .project-card,
  .local-map {
    border-color: var(--ink);
  }

  .glass {
    background: color-mix(in srgb, var(--surface-solid), transparent 4%);
    border-color: var(--ink);
  }
}
