/* CANTÃO — BLACK STEEL. Photography, scale, and the movement of a real shutter. */
:root {
  --ink: #0b0c0d;
  --panel: #111315;
  --white: #f0f0ec;
  --muted: #999c9e;
  --line: #ffffff26;
  --gutter: clamp(22px, 4.7vw, 90px);
  --display: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 0.68, 0, 1.02);
  --cantao-green: #00ff8b;
  --cantao-green-hover: #00e07a;
  --cantao-green-dark: #009e47;
  --cantao-glow: rgba(0, 255, 139, 0.28);
  --cantao-subtle: rgba(0, 255, 139, 0.12);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  background: none;
  border: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
dialog:focus-visible {
  outline: 2px solid var(--cantao-green);
  outline-offset: 6px;
}
button:active,
.button-light:active {
  transform: scale(0.98);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
}
::selection {
  background: var(--cantao-green);
  color: #060809;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 20px;
  z-index: 60;
  transform: translateY(-200%);
  background: var(--white);
  color: var(--ink);
  padding: 15px;
}
.skip-link:focus {
  transform: none;
}
.reading-progress {
  position: fixed;
  z-index: 45;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--cantao-green);
  box-shadow: 0 0 10px var(--cantao-glow);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}
/* Navigation stays quiet over the film. */
.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  gap: 28px;
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease);
}
.site-header.scrolled {
  background: #0b0c0dee;
  padding-top: 13px;
  padding-bottom: 13px;
}
.brand {
  width: 194px;
  flex-shrink: 0;
}
.brand img,
.menu-top img,
.footer-top img {
  filter: none;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 6vw;
}
.desktop-nav a,
.header-quote {
  font-size: 12px;
  font-weight: 500;
}
.desktop-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 0.3s var(--ease);
}
.desktop-nav a:hover {
  color: var(--cantao-green);
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--cantao-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease);
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-actions {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header-quote {
  border-bottom: 1px solid var(--cantao-green);
  padding: 12px 0;
  display: flex;
  gap: 30px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header-quote span {
  font-size: 19px;
  color: var(--cantao-green);
  transition: transform 0.4s var(--ease);
}
.header-quote:hover {
  color: var(--cantao-green);
}
.header-quote:hover span {
  transform: translate(3px, -3px);
}
.menu-toggle {
  width: 38px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 5px;
}
.menu-toggle span {
  display: block;
  width: 27px;
  height: 1px;
  background: currentColor;
}
.menu-toggle span:last-child {
  width: 19px;
  align-self: flex-end;
}
.site-menu {
  position: fixed;
  inset: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  padding: 25px var(--gutter);
  background: #111315;
  border: 0;
  color: var(--white);
  z-index: 50;
}
.site-menu::backdrop,
.gallery-modal::backdrop {
  background: #080909e8;
}
.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-top img {
  width: 194px;
}
.menu-close,
.gallery-close {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  min-height: 44px;
}
.menu-close span,
.gallery-close span {
  font-size: 32px;
}
.site-menu nav {
  display: flex;
  flex-direction: column;
  padding: 6svh 0;
}
.site-menu nav a {
  font-family: var(--display);
  font-size: clamp(42px, 7.5svh, 90px);
  line-height: 1.25;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.site-menu nav small {
  font: 10px var(--body);
  color: var(--cantao-green);
  display: inline-block;
  width: 60px;
  vertical-align: middle;
}
.site-menu nav a:hover {
  color: var(--cantao-green);
}
.menu-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  line-height: 1.6;
  display: block;
  color: var(--cantao-green);
}
.side-note {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.tiny-line {
  display: inline-block;
  height: 1px;
  width: 32px;
  background: var(--cantao-green);
  vertical-align: middle;
  margin-right: 16px;
}
.section-space {
  padding: 130px var(--gutter);
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}
.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  line-height: 1.6;
  border-bottom: 1px solid #ffffff55;
  padding: 12px 0;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
  width: fit-content;
}
.text-link .icon-arrow {
  color: var(--cantao-green);
}
.text-link:hover {
  color: var(--cantao-green);
  border-bottom-color: var(--cantao-green);
}
.button-light {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px 11px 10px 24px;
  background: var(--cantao-green);
  color: #060809;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.055em;
  border-radius: 2px;
  box-shadow: 0 4px 22px var(--cantao-glow);
  transition:
    background 0.4s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.button-light span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.08);
  font-size: 21px;
  color: #060809;
  transition: transform 0.6s var(--ease);
}
.button-light .icon-arrow {
  width: 17px;
  height: 17px;
  color: #060809;
}
.button-light:hover {
  background: var(--cantao-green-hover);
  box-shadow: 0 6px 30px rgba(0, 255, 139, 0.45);
}
.button-light:hover span {
  transform: translate(2px, -2px);
}
.icon-arrow {
  display: inline-block;
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.4;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.text-link:hover .icon-arrow,
.header-quote:hover .icon-arrow,
.btn-calc-submit:hover .icon-arrow,
.product-directory > a:hover .icon-arrow,
.region-links a:hover .icon-arrow {
  transform: translate(2px, -2px);
}
/* A real facade, its real shutter, and an opening cut from the photograph. */
.opening {
  position: relative;
}
.opening-stage {
  height: 100svh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: #111;
}
.next-scene,
.door-world,
.hero-shade,
.next-scene img,
.door-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.next-scene img {
  object-fit: cover;
  filter: saturate(1.05);
  object-position: 50% 56%;
}
.door-world {
  transform-origin: 50% 31%;
  filter: saturate(1.05);
}
.door-photo {
  overflow: visible;
}
.hero-shade {
  background: linear-gradient(
    180deg,
    #07080999 0%,
    #07080920 28%,
    #07080915 45%,
    #070809bb 100%
  );
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  inset: auto var(--gutter) 145px;
  z-index: 2;
}
.hero-eyebrow {
  margin-bottom: 28px;
}
.hero-copy h1 {
  font: 700 clamp(82px, 13.4vw, 255px) / 0.79 var(--display);
  letter-spacing: -0.028em;
  text-transform: uppercase;
}
.line-mask {
  display: block;
  overflow: hidden;
  padding: 0.07em 0;
  margin: -0.04em 0;
}
.line-mask > span {
  display: block;
}
.hero-copy h1 .line-mask:last-child {
  padding-left: 15vw;
  color: var(--cantao-green);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-top: 38px;
}
.hero-bottom > p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 315px;
  color: #dadcdd;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-actions .text-link {
  font-size: 11px;
}
.opening-footer {
  position: absolute;
  z-index: 3;
  inset: auto var(--gutter) 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.opening-footer b {
  font-weight: 400;
  font-size: 14px;
}
.scroll-invitation {
  display: flex;
  align-items: center;
  gap: 15px;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: #ffffff30;
  position: relative;
  overflow: hidden;
}
.scroll-line:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cantao-green);
  transform: translateY(-100%);
  animation: scroll-line 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.motion-toggle {
  display: flex;
  gap: 12px;
  align-items: center;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.06em;
  padding: 10px 0;
  min-height: 44px;
}
.motion-toggle span {
  border: 1px solid #ffffff60;
  padding: 4px 5px;
}
.threshold-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.threshold-copy p {
  font: 600 clamp(70px, 10vw, 180px) / 0.85 var(--display);
  text-align: center;
  text-transform: uppercase;
}
.scene-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0b0c0d40, #0b0c0d15 35%, #0b0c0dc9);
}
@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }
  60%,
  100% {
    transform: translateY(100%);
  }
}
/* Chapter one, a single image with three deliberate beats. */
.process-stage {
  height: 100svh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}
.process-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.82);
  object-position: 50% 56%;
}
.process-heading {
  position: absolute;
  inset: 18% var(--gutter) auto;
}
.process-heading .eyebrow {
  margin-bottom: 45px;
}
.process h2 {
  font: 600 clamp(60px, 10.2vw, 190px) / 0.91 var(--display);
  letter-spacing: -0.02em;
}
.process-word {
  display: block;
}
.process-word:nth-child(2) {
  margin-left: 8vw;
  color: var(--cantao-green);
}
.process-word:nth-child(3) {
  margin-left: 23vw;
}
.process-caption {
  position: absolute;
  bottom: 8%;
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.process-caption p {
  font-size: 12px;
  line-height: 1.8;
}
.caption-rule {
  height: 1px;
  background: #ffffff45;
  width: 100px;
}
.process-caption .text-link {
  margin-left: 5vw;
}
/* Product editorial. Material is the image; no conventional cards. */
.statement {
  font: 600 clamp(70px, 11.9vw, 220px) / 0.85 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.statement > span {
  display: block;
}
.muted-word {
  color: #73787b;
}
.product-editorial {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 8vw;
  margin-top: 85px;
}
.product-copy {
  padding: 30px 0;
  max-width: 390px;
}
.large-copy {
  font-size: clamp(23px, 2.6vw, 43px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}
.product-copy > p:nth-child(2) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 310px;
  margin: 30px 0;
}
.editorial-index {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 70px;
}
.material-photo {
  height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.material-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.1);
  object-position: 50% 51%;
  filter: saturate(1.05);
}
figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0.1em;
  background: linear-gradient(transparent, #08090ab8);
}
.image-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95px;
  height: 95px;
  border: 1px solid var(--cantao-green);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.13em;
  line-height: 1.5;
  color: var(--cantao-green);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.finish-editorial {
  margin-top: 130px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: center;
}
.finish-photo {
  height: 570px;
  position: relative;
  overflow: hidden;
}
.finish-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  object-position: 55% 50%;
  transform: scale(1.1);
}
.finish-copy h3 {
  font: 600 clamp(65px, 7.7vw, 135px) / 0.88 var(--display);
  text-transform: uppercase;
  margin: 35px 0 40px;
  letter-spacing: -0.02em;
}
/* Fullscreen application wipes; static flow is the baseline if motion is off. */
.application-stage {
  position: relative;
  background: var(--panel);
}
.application-label {
  position: absolute;
  top: 115px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 7;
  display: flex;
  justify-content: space-between;
}
.application-counter {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--cantao-green);
}
.application-scene {
  position: relative;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
}
.application-scene > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.88);
}
.application-scene .scene-shade {
  background: linear-gradient(180deg, #08090999, transparent 40%, #080909de);
}
.application-copy {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 145px;
}
.application-copy h3 {
  font: 600 clamp(62px, 13.2vw, 230px) / 0.93 var(--display);
  letter-spacing: -0.025em;
  margin-top: 20px;
}
.application-copy .text-link {
  margin-top: 20px;
}
.application-copy small {
  display: block;
  font-size: 10px;
  color: #bbc0c2;
  margin-top: 14px;
}
.application-detail > img {
  transform: scale(1.6);
  object-position: 50% 50%;
}
.application-detail h3 {
  font-size: clamp(42px, 9.5vw, 180px);
}
.application-nav {
  display: none;
}
.cinematic-apps .application-stage {
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
}
.cinematic-apps .application-scenes {
  position: absolute;
  inset: 0;
}
.cinematic-apps .application-scene {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
}
.cinematic-apps .application-scene:not(:first-child) {
  clip-path: inset(100% 0 0 0);
}
.cinematic-apps .application-scene {
  pointer-events: none;
}
.cinematic-apps .application-scene.is-current {
  pointer-events: auto;
}
.cinematic-apps .application-nav {
  position: absolute;
  inset: auto var(--gutter) 40px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
.application-nav button {
  text-align: left;
  border-top: 1px solid #ffffff40;
  padding: 17px 0 0;
  color: #abb0b2;
  font-size: 10px;
  line-height: 1.7;
  transition:
    color 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.application-nav button span {
  display: block;
  font-size: 9px;
  margin-bottom: 5px;
}
.application-nav button.is-current {
  color: var(--cantao-green);
  border-color: var(--cantao-green);
}
.application-nav button.is-current span {
  color: var(--cantao-green);
}
.projects .statement {
  font-size: clamp(70px, 11.5vw, 210px);
}
.project-pair {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7vw;
  align-items: start;
  margin-top: 85px;
}
.project-project {
  padding: 0;
  text-align: left;
  min-width: 0;
}
.project-project:nth-child(2) {
  margin-top: 160px;
}
.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  height: 510px;
}
.project-project:nth-child(2) .project-image {
  height: 430px;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition:
    transform 1.1s var(--ease),
    filter 1.1s var(--ease);
}
.project-project:hover img {
  transform: scale(1.05);
  filter: brightness(1.04) saturate(1.08);
}
.project-open {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--cantao-green);
  color: #060809;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 16px var(--cantao-glow);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.project-project:hover .project-open {
  transform: scale(1.1);
  background: var(--cantao-green-hover);
}
.project-caption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  letter-spacing: 0.07em;
  margin-top: 20px;
  color: #bfc2c3;
}
.project-caption span:first-child {
  color: var(--cantao-green);
}
.product-directory {
  margin-top: 130px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 7vw;
}
.product-directory > .eyebrow {
  grid-row: span 4;
  padding-top: 24px;
}
.product-directory > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  font: 500 clamp(25px, 3.5vw, 60px) var(--display);
  text-transform: uppercase;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.product-directory > a span:last-child {
  font: 25px var(--body);
  color: var(--cantao-green);
  transition: transform 0.5s var(--ease);
}
.product-directory > a:hover {
  color: var(--cantao-green);
  border-bottom-color: var(--cantao-green);
}
.product-directory > a:hover span:last-child {
  transform: translate(6px, -6px);
}
/* The original brand mark, extruded. Only this signature is rendered in 3D. */
.brand-stage {
  height: 100svh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: #101214;
  padding: 75px var(--gutter);
}
.brand-stage > .eyebrow {
  position: relative;
  z-index: 2;
}
.logo-sculpture {
  position: absolute;
  width: 62%;
  height: 90%;
  right: -3%;
  top: 1%;
}
.logo-sculpture canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.logo-fallback {
  position: absolute;
  width: 70%;
  height: 65%;
  top: 17%;
  left: 10%;
  overflow: hidden;
  filter: saturate(1);
  opacity: 0.75;
  transform: perspective(700px) rotateY(-20deg) rotateX(8deg);
}
.logo-fallback img {
  max-width: none;
  width: 350%;
  height: 100%;
  object-fit: fill;
}
.logo-sculpture.has-webgl .logo-fallback {
  visibility: hidden;
}
.signature-copy {
  position: absolute;
  inset: auto var(--gutter) 12%;
  z-index: 2;
  pointer-events: none;
}
.signature-copy h2 {
  font: 600 clamp(75px, 10vw, 180px) / 0.85 var(--display);
  letter-spacing: -0.025em;
}
.signature-copy h2 span {
  color: var(--cantao-green);
  text-shadow: 0 0 35px var(--cantao-glow);
}
.signature-copy p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 28px;
  color: #bbbfc1;
}
.quote-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 12vw;
  align-items: end;
  margin-bottom: 65px;
}
.quote-heading h2 {
  font: 600 clamp(76px, 11vw, 190px) / 0.83 var(--display);
  letter-spacing: -0.02em;
}
.quote-heading > div {
  padding-bottom: 8px;
}
.quote-heading > div > p:first-child {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.5;
  margin-bottom: 24px;
}
.quote-heading > div > p:nth-child(2) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
}
.calc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 60px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}
.calc-field label,
.calc-row-extra label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: #c4c7c9;
}
.calc-form input {
  border: 0;
  border-bottom: 1px solid #ffffff40;
  background: #141618;
  color: var(--white);
  width: 100%;
  padding: 18px 16px;
  min-height: 58px;
  border-radius: 0;
  font-size: 13px;
  transition: border-color 0.3s var(--ease);
}
.calc-form input:focus {
  border-bottom-color: var(--cantao-green);
  outline: none;
}
.calc-form input::placeholder {
  color: #a0a4a6;
  opacity: 1;
}
.calc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.calc-chip {
  border: 1px solid #ffffff30;
  padding: 9px 12px;
  font-size: 9px;
  min-height: 34px;
  border-radius: 2px;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.calc-chip:hover,
.calc-chip.selected {
  background: var(--cantao-green);
  border-color: var(--cantao-green);
  color: #060809;
  font-weight: 700;
}
.calc-row-extra {
  grid-column: 1/-1;
}
.btn-calc-submit {
  grid-column: 1/-1;
  justify-self: end;
  background: var(--cantao-green);
  color: #060809;
  padding: 22px 34px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 2px;
  box-shadow: 0 4px 20px var(--cantao-glow);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.btn-calc-submit:hover {
  background: var(--cantao-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 255, 139, 0.45);
}
.national-section {
  background: var(--panel);
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 15vw;
  align-items: center;
}
.national-section h2 {
  font: 600 clamp(50px, 6vw, 105px) / 0.93 var(--display);
  text-transform: uppercase;
  margin: 28px 0;
}
.national-section p {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 20px;
}
.region-links {
  display: flex;
  flex-direction: column;
}
.region-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.region-links a:hover {
  color: var(--cantao-green);
  border-bottom-color: var(--cantao-green);
}
.region-links span {
  font-size: 22px;
  color: var(--cantao-green);
}
.region-links a:last-child {
  margin-top: 35px;
  font-size: 12px;
  color: var(--muted);
}
.region-links a:last-child:hover {
  color: var(--cantao-green);
}
footer {
  padding: 65px var(--gutter) 0;
  overflow: hidden;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-top img {
  width: 230px;
}
.back-top {
  font-size: 11px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.back-top span {
  font-size: 25px;
}
.footer-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin: 60px 0 30px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.9;
  color: var(--muted);
}
.footer-wordmark {
  font: 700 28vw/0.9 var(--display);
  letter-spacing: -0.035em;
  text-align: center;
  margin: 45px -1.5vw -1.6vw;
  color: #34393c;
}
.gallery-modal {
  position: fixed;
  inset: 25px;
  max-width: 1450px;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  max-height: none;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
}
.gallery-top {
  position: sticky;
  top: -30px;
  background: var(--ink);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  scroll-margin-top: 85px;
}
@media (min-width: 1800px) {
  .hero-copy {
    bottom: 18%;
  }
  .hero-bottom {
    margin-top: 60px;
  }
  .material-photo {
    height: 760px;
  }
  .section-space {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }
  .brand {
    width: 165px;
  }
  .hero-copy h1 {
    font-size: 15vw;
  }
  .hero-copy h1 .line-mask:last-child {
    padding-left: 4vw;
  }
  .hero-bottom {
    gap: 25px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-copy {
    bottom: 145px;
  }
  .product-editorial {
    gap: 6vw;
  }
  .material-photo {
    height: 500px;
  }
  .finish-photo {
    height: 470px;
  }
  .project-image {
    height: 430px;
  }
  .project-project:nth-child(2) .project-image {
    height: 370px;
  }
  .process h2 {
    font-size: 11.4vw;
  }
  .process-word:nth-child(2) {
    margin-left: 0;
  }
  .process-word:nth-child(3) {
    margin-left: 15vw;
  }
  .process-caption .caption-rule {
    display: none;
  }
  .section-space {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .product-directory {
    grid-template-columns: 0.6fr 1fr;
  }
  .quote-heading {
    gap: 6vw;
  }
  .brand-stage {
    min-height: 650px;
  }
}
@media (max-width: 640px) {
  :root {
    --gutter: 22px;
  }
  .site-header {
    padding: 17px var(--gutter);
    gap: 15px;
  }
  .brand {
    width: 145px;
  }
  .header-actions {
    gap: 12px;
  }
  .header-quote {
    display: none !important;
  }
  .threshold-copy {
    display: none !important;
  }
  .menu-toggle {
    width: 29px;
  }
  .opening-stage {
    height: 100svh;
    min-height: 680px;
  }
  .hero-copy {
    bottom: 135px;
  }
  .hero-eyebrow {
    font-size: 8px;
    margin-bottom: 26px;
    letter-spacing: 0.1em;
  }
  .tiny-line {
    width: 20px;
    margin-right: 10px;
  }
  .hero-copy h1 {
    font-size: 18.8vw;
    line-height: 0.88;
    font-weight: 700;
    letter-spacing: -0.022em;
  }
  .hero-copy h1 .line-mask:last-child {
    padding-left: 0;
    font-size: 0.91em;
  }
  .hero-bottom {
    display: block;
    margin-top: 28px;
  }
  .hero-bottom > p {
    max-width: 260px;
    font-size: 12px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 12px;
    align-items: flex-start;
  }
  .button-light {
    font-size: 9px;
    min-height: 50px;
    padding-left: 19px;
    gap: 24px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .opening-footer {
    bottom: 20px;
    font-size: 8px;
    letter-spacing: 0.055em;
    gap: 12px;
  }
  .opening-footer > span:nth-child(2) {
    display: none;
  }
  .scroll-line {
    height: 27px;
  }
  .door-photo {
    width: 190%;
    left: -45%;
  }
  .door-world {
    filter: saturate(1.05);
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #08090980,
      #08090925 25%,
      #08090955 50%,
      #080909c9
    );
  }
  .section-space {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .section-intro {
    margin-bottom: 40px;
  }
  .side-note {
    display: none;
  }
  .eyebrow {
    font-size: 8px;
  }
  .process-stage {
    min-height: 640px;
    height: 100svh;
  }
  .process-heading {
    top: 24%;
  }
  .process-heading .eyebrow {
    margin-bottom: 40px;
  }
  .process h2 {
    font-size: 12.5vw;
    line-height: 1.04;
  }
  .process-word:nth-child(3) {
    margin-left: 12vw;
  }
  .process-caption {
    display: block;
    bottom: 10%;
    left: var(--gutter);
    right: var(--gutter);
  }
  .process-caption p {
    font-size: 12px;
  }
  .process-caption .text-link {
    margin-left: 0;
    margin-top: 20px;
  }
  .process-photo {
    object-position: 45% 50%;
    filter: saturate(1.05) brightness(0.82);
  }
  .statement {
    font-size: 16vw;
    line-height: 0.9;
  }
  .product-editorial {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .product-copy {
    padding: 0;
    max-width: 100%;
  }
  .large-copy {
    font-size: 27px;
  }
  .product-copy > p:nth-child(2) {
    margin: 22px 0;
  }
  .editorial-index {
    display: none;
  }
  .material-photo {
    height: 450px;
  }
  .finish-editorial {
    margin-top: 75px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .finish-photo {
    height: 400px;
  }
  .finish-copy h3 {
    font-size: 75px;
    margin: 20px 0;
  }
  .finish-copy h3 br {
    display: none;
  }
  .finish-copy h3 br:after {
    content: " ";
  }
  .finish-copy h3 {
    max-width: 340px;
  }
  .application-label {
    top: 100px;
  }
  .application-scene {
    height: 90svh;
    min-height: 580px;
  }
  .cinematic-apps .application-stage {
    height: 100svh;
    min-height: 640px;
  }
  .application-copy {
    bottom: 150px;
  }
  .application-copy h3 {
    font-size: 18vw;
  }
  .application-detail h3 {
    font-size: 11.8vw;
  }
  .application-copy .eyebrow {
    font-size: 7px;
    letter-spacing: 0.09em;
  }
  .application-copy .text-link {
    font-size: 11px;
  }
  .application-scene > img {
    object-position: center;
  }
  .application-detail > img {
    transform: scale(1.05);
  }
  .cinematic-apps .application-nav {
    bottom: 35px;
    gap: 8px;
  }
  .application-nav button {
    font-size: 7px;
    letter-spacing: -0.02em;
    padding-top: 12px;
  }
  .application-nav button span {
    font-size: 8px;
  }
  .projects .statement {
    font-size: 17vw;
  }
  .projects .section-intro {
    align-items: flex-start;
  }
  .projects .section-intro .text-link {
    font-size: 9px;
    gap: 12px;
    white-space: nowrap;
    padding-top: 0;
  }
  .project-pair {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 45px;
  }
  .project-project:nth-child(2) {
    margin-top: 0;
    width: 82%;
    justify-self: end;
  }
  .project-image {
    height: 370px;
  }
  .project-project:nth-child(2) .project-image {
    height: 310px;
  }
  .product-directory {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
  }
  .product-directory > .eyebrow {
    padding: 0 0 20px;
  }
  .product-directory > a {
    font-size: 32px;
    padding: 19px 0;
  }
  .brand-stage {
    min-height: 700px;
    height: 100svh;
    padding-top: 60px;
  }
  .logo-sculpture {
    width: 100%;
    height: 65%;
    right: -10%;
    top: 3%;
  }
  .signature-copy {
    bottom: 10%;
  }
  .signature-copy h2 {
    font-size: 18vw;
  }
  .signature-copy p {
    font-size: 11px;
  }
  .logo-fallback {
    left: 0;
  }
  .quote-heading {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 40px;
  }
  .quote-heading h2 {
    font-size: 25vw;
  }
  .quote-heading > div {
    max-width: 340px;
  }
  .quote-heading > div > p:first-child {
    font-size: 23px;
    margin-bottom: 18px;
  }
  .calc-form {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }
  .calc-form input {
    font-size: 16px;
  }
  .calc-field label,
  .calc-row-extra label {
    font-size: 10px;
  }
  .calc-chip {
    min-height: 40px;
    font-size: 9px;
  }
  .btn-calc-submit {
    justify-self: stretch;
    font-size: 9px;
    padding: 23px 16px;
  }
  .national-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .national-section h2 {
    font-size: 65px;
  }
  .region-links a {
    font-size: 13px;
    padding: 20px 0;
  }
  .region-links a:last-child {
    margin-top: 15px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-top img {
    width: 180px;
    grid-column: 1/-1;
  }
  .footer-top .text-link {
    font-size: 10px;
  }
  .back-top {
    grid-column: 1/-1;
    margin-top: 10px;
  }
  .footer-details {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
    font-size: 9px;
  }
  .footer-wordmark {
    font-size: 29vw;
  }
  .gallery-modal {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 15px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-top {
    top: -15px;
  }
  .site-menu nav {
    padding-top: 8svh;
  }
  .site-menu nav a {
    font-size: 7.5svh;
  }
  .site-menu nav small {
    width: 35px;
  }
  .menu-top img {
    width: 145px;
  }
}
@media (max-height: 650px) and (min-width: 641px) {
  .opening-stage,
  .process-stage {
    min-height: 600px;
  }
  .hero-copy {
    bottom: 105px;
  }
  .hero-copy h1 {
    font-size: 11vw;
  }
  .hero-bottom {
    margin-top: 22px;
  }
  .hero-eyebrow {
    margin-bottom: 18px;
  }
  .process-heading {
    top: 20%;
  }
  .process h2 {
    font-size: 9vw;
  }
  .process-heading .eyebrow {
    margin-bottom: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .image-cursor {
    display: none;
  }
  .logo-fallback {
    transform: none;
  }
}
.motion-off .scroll-line:after {
  animation: none;
}
.motion-off .image-cursor {
  display: none;
}
