/* ============================================================
   TSK INFRA PROJECTS — style.css
   1. RESET
   2. VARIABLES
   3. TYPOGRAPHY & UTILITIES
   4. SHEET FURNITURE (frame, grid, grain, rails)
   5. PRELOADER
   6. NAVIGATION + MOBILE MENU
   7. BUTTONS
   8. HERO
   9. INTRO
  10. SERVICES
  11. REGION
  12. CINEMATIC BREAK
  13. PROJECTS
  14. CTA + NOTIFY FORM
  15. FOOTER
  16. CUSTOM CURSOR
  17. ANIMATIONS / REVEALS
  18. RESPONSIVE
  19. REDUCED MOTION
   ============================================================ */

/* ------------------------------------------------------------
   1. RESET
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; background: none; border: none; }
ul { list-style: none; }
h1, h2, h3 { font-weight: 500; }

/* ------------------------------------------------------------
   2. VARIABLES  —  change the brand look from here
   ------------------------------------------------------------ */
:root {
  /* Surfaces */
  --ink:        #0A0C0D;   /* deepest charcoal */
  --ink-2:      #101416;   /* section black */
  --slate:      #191E20;   /* raised dark surface */
  --steel:      #2A3134;   /* borders on dark */
  --bone:       #F2F0EA;   /* warm off-white */
  --bone-2:     #E7E4DC;   /* light section surface */
  --concrete:   #9DA3A2;   /* muted grey text on dark */
  --graphite:   #5C6465;   /* muted grey text on light */

  /* Accent */
  --accent:     #D0641F;   /* construction orange */
  --accent-dim: rgba(208, 100, 31, .16);
  --bronze:     #A8763E;

  /* Lines */
  --hair-dark:  rgba(242, 240, 234, .14);
  --hair-light: rgba(10, 12, 13, .14);

  /* Type */
  --display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, Menlo, monospace;

  /* Rhythm */
  --gut:  clamp(20px, 5vw, 64px);           /* page side gutter */
  --pad:  clamp(72px, 11vw, 160px);         /* vertical section padding */
  --maxw: 1440px;

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY & UTILITIES
   ------------------------------------------------------------ */
body {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--bone);
  background: var(--ink);
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.mono {
  font-family: var(--mono);
  font-size: clamp(10px, .78vw, 11.5px);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.5;
}

.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.display--dark { color: var(--ink); }
.display--outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--bone);
  text-stroke: 1px var(--bone);
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: -.01em;
}

.eyebrow { display: flex; align-items: center; gap: 14px; color: var(--concrete); }
.eyebrow__rule { width: clamp(28px, 5vw, 64px); height: 1px; background: var(--accent); display: inline-block; }

.sec-num { color: var(--accent); margin-bottom: clamp(24px, 4vw, 44px); }
.sec-head { margin-bottom: clamp(40px, 6vw, 80px); }

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block; flex: none;
  box-shadow: 0 0 0 0 var(--accent-dim);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(208,100,31,.45); }
  70%  { box-shadow: 0 0 0 8px rgba(208,100,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(208,100,31,0); }
}

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus {
  width: auto; height: auto; clip: auto;
  top: 14px; left: 14px; z-index: 999;
  background: var(--accent); color: #fff; padding: 10px 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ------------------------------------------------------------
   4. SHEET FURNITURE
   ------------------------------------------------------------ */
.sheet { position: fixed; inset: 0; pointer-events: none; z-index: 40; }

.sheet__corner { position: absolute; width: 22px; height: 22px; opacity: .55; }
.sheet__corner::before, .sheet__corner::after { content: ""; position: absolute; background: var(--bone); opacity: .5; }
.sheet__corner::before { width: 100%; height: 1px; }
.sheet__corner::after  { width: 1px; height: 100%; }
.sheet__corner--tl { top: 18px; left: 18px; }
.sheet__corner--tr { top: 18px; right: 18px; }
.sheet__corner--tr::before { right: 0; } .sheet__corner--tr::after { right: 0; }
.sheet__corner--bl { bottom: 18px; left: 18px; }
.sheet__corner--bl::before { bottom: 0; } .sheet__corner--bl::after { bottom: 0; }
.sheet__corner--br { bottom: 18px; right: 18px; }
.sheet__corner--br::before { bottom: 0; right: 0; } .sheet__corner--br::after { bottom: 0; right: 0; }

/* Blueprint grid — barely there */
.sheet__grid {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(242,240,234,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(242,240,234,.045) 1px, transparent 1px);
  background-size: clamp(60px, 8vw, 110px) clamp(60px, 8vw, 110px);
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
}

/* Film grain */
.sheet__grain {
  position: absolute; inset: -50%;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 5s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(4%, 2%); }
}

/* Mouse-following light */
.sheet__light {
  position: absolute; width: 46vmax; height: 46vmax; left: 0; top: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(208,100,31,.09), transparent 62%);
  opacity: 0; transition: opacity .6s ease;
}
body.pointer-fine .sheet__light { opacity: 1; }

/* Side rails */
.rail {
  position: fixed; top: 0; bottom: 0; width: 46px; z-index: 41;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; pointer-events: none; mix-blend-mode: difference;
}
.rail--left { left: 0; } .rail--right { right: 0; }
.rail__index { color: var(--bone); font-weight: 500; }
.rail__tick { width: 1px; height: 40px; background: var(--bone); opacity: .4; }
.rail__label {
  color: var(--bone); opacity: .65;
  writing-mode: vertical-rl; text-orientation: mixed; letter-spacing: .3em;
}
.rail--left .rail__label { transform: rotate(180deg); }
.rail__progress { width: 1px; height: 26vh; background: rgba(242,240,234,.25); position: relative; }
.rail__progress-bar {
  position: absolute; inset: 0 0 auto 0; height: 0%;
  background: var(--accent); transition: height .12s linear;
}

/* ------------------------------------------------------------
   5. PRELOADER
   ------------------------------------------------------------ */
.preloader {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: flex; align-items: flex-end; padding: var(--gut);
}
html:not(.js) .preloader { display: none; }
body.is-loading { overflow: hidden; }
.preloader.is-done { pointer-events: none; }

.preloader__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; }
.preloader__mark {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(2.4rem, 9vw, 7rem); line-height: .92; letter-spacing: -.04em;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.preloader__line {
  display: block;
  clip-path: inset(0 0 105% 0);
  transform: translateY(.14em);
  animation: unmask 1s var(--ease) .08s forwards;
}
.preloader__line--2 { color: var(--concrete); padding-left: .12em; animation-delay: .2s; }
@keyframes unmask {
  to { clip-path: inset(0 0 -12% 0); transform: translateY(0); }
}

.preloader__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  color: var(--concrete); margin-bottom: 14px;
}
.preloader__count { color: var(--bone); font-size: clamp(11px, 1vw, 13px); }
.preloader__track { height: 1px; width: 100%; background: rgba(242,240,234,.16); overflow: hidden; }
.preloader__bar { display: block; height: 100%; width: 0%; background: var(--accent); }

.preloader__curtain {
  position: absolute; inset: 0; background: var(--ink);
  transform: translateY(0); z-index: -1;
}
.preloader.is-done { transform: translateY(-100%); transition: transform 1.1s var(--ease); }

/* ------------------------------------------------------------
   6. NAVIGATION
   ------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: clamp(14px, 2vw, 24px) 0;
  transition: background-color .5s var(--ease), padding .5s var(--ease), backdrop-filter .5s;
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__rule {
  position: absolute; left: var(--gut); right: var(--gut); bottom: 0; height: 1px;
  background: var(--hair-dark); transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease);
}
.nav.is-stuck { background: rgba(10,12,13,.82); backdrop-filter: blur(14px); padding: 12px 0; }
.nav.is-stuck .nav__rule { transform: scaleX(1); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 26px; height: 26px; color: var(--bone); }
.brand__text { font-family: var(--display); line-height: 1; text-transform: uppercase; }
.brand__text strong { display: block; font-weight: 600; letter-spacing: -.02em; font-size: 15px; }
.brand__text em {
  display: block; font-style: normal; font-family: var(--mono);
  font-size: 9px; letter-spacing: .32em; color: var(--concrete); margin-top: 3px;
}

.nav__links { display: flex; gap: clamp(18px, 2.4vw, 38px); }
.nav__link {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--concrete); position: relative; padding: 6px 0; transition: color .3s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--bone); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__end { display: flex; align-items: center; gap: 18px; }
.nav__status {
  display: flex; align-items: center; gap: 8px; color: var(--concrete);
  border: 1px solid var(--steel); padding: 7px 13px;
}

.burger {
  display: none; width: 42px; height: 42px; cursor: pointer;
  border: 1px solid var(--steel); position: relative;
}
.burger span {
  position: absolute; left: 11px; width: 20px; height: 1px; background: var(--bone);
  transition: transform .45s var(--ease), opacity .3s;
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 24px; width: 13px; background: var(--accent); }
.burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); width: 20px; background: var(--bone); }

/* MOBILE MENU */
.menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink-2);
  clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease);
  display: flex; align-items: flex-end;
}
.menu[hidden] { display: none; }
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__panel { width: 100%; padding: var(--gut); padding-bottom: clamp(32px, 8vh, 64px); }
.menu__links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 48px; }
.menu__links a {
  font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 11vw, 3.4rem);
  line-height: 1.12; letter-spacing: -.03em; display: flex; align-items: baseline; gap: 14px;
  padding: 6px 0; border-bottom: 1px solid var(--steel);
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
}
.menu__links a span { color: var(--accent); font-size: 11px; }
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: .16s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .22s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: .28s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: .34s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: .40s; }
.menu__foot { display: flex; flex-direction: column; gap: 8px; color: var(--concrete); }
.menu__foot a { color: var(--bone); }

/* ------------------------------------------------------------
   7. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 26px; position: relative; overflow: hidden; cursor: pointer;
  border: 1px solid transparent; transition: color .4s var(--ease), border-color .4s var(--ease);
}
.btn svg { width: 17px; height: 17px; transition: transform .45s var(--ease); position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--bone);
  transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover svg { transform: translateX(5px); }

.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { color: var(--ink); }
.btn--ghost { border-color: var(--steel); color: var(--bone); }
.btn--ghost:hover { color: var(--ink); border-color: var(--bone); }

/* On light sections */
.projects .btn--ghost, .intro .btn--ghost { border-color: var(--hair-light); color: var(--ink); }

/* ------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: calc(var(--gut) + 60px) var(--gut) clamp(96px, 14vh, 150px);
  overflow: hidden; isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--ink-2); }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.12); opacity: 0;
  transition: opacity 1.6s ease;
  filter: grayscale(.35) contrast(1.06) brightness(.78);
}
.hero__img.is-ready { opacity: 1; animation: kenburns 26s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1.16) translate3d(1.5%, 0, 0); }
  to   { transform: scale(1.02) translate3d(-1.5%, -1%, 0); }
}
/* Fallback structural line art if the photograph fails to load */
.hero__fallback { position: absolute; inset: 0; background:
  radial-gradient(120% 90% at 20% 10%, #22282B 0%, #0E1214 55%, #08090A 100%); }
.hero__fallback svg { width: 100%; height: 100%; }
.hero__fallback { transition: opacity 1.4s ease; }
.hero__media.has-img .hero__fallback { opacity: 0; }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,12,13,.94) 0%, rgba(10,12,13,.72) 42%, rgba(10,12,13,.28) 72%, rgba(10,12,13,.55) 100%),
    linear-gradient(to top, rgba(10,12,13,.96) 0%, transparent 46%);
}
.hero__vignette { position: absolute; inset: 0; box-shadow: inset 0 0 clamp(80px,14vw,220px) rgba(0,0,0,.7); }

.hero__content { position: relative; width: 100%; max-width: var(--maxw); margin-inline: auto; }
.hero__title {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(2.7rem, 7.4vw, 7.4rem); line-height: .92; letter-spacing: -.045em;
  margin: clamp(20px, 3vw, 32px) 0 clamp(22px, 3vw, 34px); max-width: 15ch;
}
.hero__title .mask:nth-child(3) { color: var(--concrete); }
.hero__lede { color: var(--bone); opacity: .88; font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 300; max-width: 42ch; }
.hero__lede strong { font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 4vw, 44px); }

.status { margin-top: clamp(36px, 6vw, 64px); max-width: 320px; }
.status__label { color: var(--concrete); margin-bottom: 8px; }
.status__value { display: flex; align-items: center; gap: 10px; font-size: 15px; letter-spacing: .01em; }
.status__line { display: block; height: 1px; background: rgba(242,240,234,.18); margin-top: 14px; overflow: hidden; }
.status__line i { display: block; height: 100%; width: 40%; background: var(--accent); animation: sweep 3.6s var(--ease) infinite; }
@keyframes sweep {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(150%); }
  100% { transform: translateX(150%); }
}

.hero__stamp {
  position: absolute; right: var(--gut); top: clamp(96px, 16vh, 170px);
  display: flex; flex-direction: column; gap: 6px; text-align: right;
  color: var(--concrete); border-right: 1px solid var(--accent); padding-right: 14px;
}

.scroller {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--concrete); z-index: 2;
}
.scroller .mono { letter-spacing: .28em; }
.scroller__track { width: 1px; height: 56px; background: rgba(242,240,234,.2); overflow: hidden; }
.scroller__track i { display: block; width: 100%; height: 40%; background: var(--accent); animation: drop 2.6s var(--ease) infinite; }
@keyframes drop {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(250%); }
  100% { transform: translateY(250%); }
}
.scroller:hover { color: var(--bone); }

/* ------------------------------------------------------------
   9. INTRO  (light section)
   ------------------------------------------------------------ */
.intro { background: var(--bone); color: var(--ink); padding: var(--pad) 0; position: relative; }
.intro::before {
  content: ""; position: absolute; top: 0; left: var(--gut); right: var(--gut);
  height: 1px; background: var(--hair-light);
}
.intro .display { margin-bottom: clamp(36px, 5vw, 60px); }
.intro__body {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px);
  align-items: start; color: var(--graphite);
}
.intro__body .lede { color: var(--ink); }
.places {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 40px);
  margin-top: clamp(24px, 4vw, 44px); padding-top: 22px; border-top: 1px solid var(--hair-light);
  font-family: var(--mono); font-size: clamp(11px, 1vw, 12.5px); letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink);
}
.places li { display: flex; align-items: center; gap: 10px; }
.places li::before { content: ""; width: 5px; height: 5px; background: var(--accent); }

/* ------------------------------------------------------------
   10. SERVICES (dark)
   ------------------------------------------------------------ */
.services { background: var(--ink-2); padding: var(--pad) 0; }
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--steel);
}
.card {
  position: relative; padding: clamp(26px, 3vw, 40px) clamp(20px, 2vw, 32px) clamp(40px, 5vw, 64px);
  border-right: 1px solid var(--steel); border-bottom: 1px solid var(--steel);
  transition: transform .55s var(--ease), background-color .55s var(--ease);
  overflow: hidden;
}
.card:first-child { border-left: 1px solid var(--steel); }
.card__num { color: var(--accent); display: block; margin-bottom: clamp(28px, 4vw, 46px); transition: transform .55s var(--ease); }
.card__icon { width: 30px; height: 30px; color: var(--concrete); margin-bottom: 20px; transition: color .4s ease, transform .55s var(--ease); }
.card h3 {
  font-family: var(--display); text-transform: uppercase; letter-spacing: -.02em;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem); font-weight: 500; margin-bottom: 12px; line-height: 1.1;
}
.card p { color: var(--concrete); font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
.card__rule {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(208,100,31,.07));
  opacity: 0; transition: opacity .5s ease;
}
.card:hover { background: var(--slate); transform: translateY(-6px); }
.card:hover .card__rule { transform: scaleX(1); }
.card:hover .card__num { transform: translateY(-4px); }
.card:hover .card__icon { color: var(--accent); transform: translateY(-2px); }
.card:hover::after { opacity: 1; }

/* ------------------------------------------------------------
   11. REGION
   ------------------------------------------------------------ */
.region { background: var(--ink); padding: var(--pad) 0; position: relative; overflow: hidden; }
.region__lines {
  position: absolute; inset: 0; color: rgba(242,240,234,.10); pointer-events: none;
}
.region__lines svg { width: 100%; height: 100%; }
.region .display { margin-bottom: clamp(40px, 6vw, 72px); }
.region__list { border-top: 1px solid var(--steel); }
.region__list li {
  display: flex; align-items: baseline; gap: clamp(14px, 3vw, 36px);
  padding: clamp(14px, 2.4vw, 26px) 0; border-bottom: 1px solid var(--steel);
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.9rem, 6.4vw, 5.2rem); line-height: 1; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(242,240,234,.55);
  transition: color .5s var(--ease), -webkit-text-stroke-color .5s var(--ease), padding-left .5s var(--ease);
}
.region__list li span { -webkit-text-stroke: 0; color: var(--accent); font-family: var(--mono); }
.region__list li:hover {
  color: var(--bone); -webkit-text-stroke-color: transparent; padding-left: clamp(8px, 1.5vw, 24px);
}
.region__note { color: var(--concrete); max-width: 54ch; margin-top: clamp(28px, 4vw, 44px); }

/* ------------------------------------------------------------
   12. CINEMATIC BREAK
   ------------------------------------------------------------ */
.break {
  position: relative; height: clamp(360px, 74vh, 720px); overflow: hidden;
  display: grid; place-items: center; isolation: isolate;
}
.break__img {
  position: absolute; inset: -12% 0; width: 100%; height: 124%;
  object-fit: cover; z-index: -2; will-change: transform;
  filter: grayscale(.4) contrast(1.05) brightness(.7);
}
.break__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,12,13,.7), rgba(10,12,13,.45) 50%, rgba(10,12,13,.85));
}
.break__text { text-align: center; padding-inline: var(--gut); }
.break__text .display { font-size: clamp(2.6rem, 10vw, 8rem); }
.break__text .mono { color: var(--accent); margin-top: 20px; letter-spacing: .3em; }

/* ------------------------------------------------------------
   13. PROJECTS (light)
   ------------------------------------------------------------ */
.projects { background: var(--bone-2); color: var(--ink); padding: var(--pad) 0; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 28px); }
.tile { position: relative; }
.tile__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: #cfccc4; }
.tile__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.75) contrast(1.05); transform: scale(1.02);
  transition: transform 1.2s var(--ease), filter .8s ease;
}
.tile__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,13,.05), rgba(10,12,13,.42));
  transition: opacity .6s ease;
}
.tile:hover .tile__media img { transform: scale(1.08); filter: grayscale(.15) contrast(1.06); }
.tile__body {
  display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 14px;
  padding-top: 16px; border-top: 1px solid var(--hair-light); margin-top: 16px;
}
.tile__body span { color: var(--accent); }
.tile h3 {
  font-family: var(--display); text-transform: uppercase; font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: -.02em; font-weight: 500;
}
.tile__tag { display: flex; align-items: center; gap: 8px; color: var(--graphite); }

/* ------------------------------------------------------------
   14. CTA + NOTIFY
   ------------------------------------------------------------ */
.cta { background: var(--ink); padding: var(--pad) 0 clamp(64px, 8vw, 110px); position: relative; }
.cta__title { margin-bottom: clamp(18px, 2.5vw, 28px); font-size: clamp(2.6rem, 7vw, 6.6rem); font-weight: 600; }
.cta .lede { color: var(--concrete); max-width: 40ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(30px, 4vw, 48px); }

.details {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(48px, 7vw, 86px); padding-top: 26px; border-top: 1px solid var(--steel);
}
.details dt { color: var(--accent); margin-bottom: 8px; }
.details dd { font-size: clamp(14px, 1.2vw, 16px); color: var(--bone); }
.details dd a { border-bottom: 1px solid transparent; transition: border-color .3s; }
.details dd a:hover { border-color: var(--accent); }

.notify { margin-top: clamp(48px, 7vw, 86px); padding-top: 30px; border-top: 1px solid var(--steel); max-width: 640px; }
.notify__title {
  font-family: var(--display); text-transform: uppercase; letter-spacing: -.02em;
  font-size: clamp(1.1rem, 2vw, 1.55rem); font-weight: 500; margin-bottom: 18px;
}
.notify__form { display: flex; flex-wrap: wrap; gap: 10px; }
.notify__input {
  flex: 1 1 260px; padding: 15px 18px; background: var(--slate);
  border: 1px solid var(--steel); color: var(--bone);
  font-size: 15px; transition: border-color .3s ease;
}
.notify__input::placeholder { color: var(--graphite); }
.notify__input:focus { outline: none; border-color: var(--accent); }
.notify__input.is-error { border-color: #B4442F; }
.notify__btn { flex: none; }
.notify__msg { margin-top: 14px; color: var(--accent); min-height: 1.2em; }
.notify__msg.is-error { color: #E0765F; }

/* ------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------ */
.foot { background: var(--ink-2); border-top: 1px solid var(--steel); padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 44px); }
.foot__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vw, 64px);
}
.foot__logo {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1; letter-spacing: -.03em; margin-bottom: 16px;
}
.foot__logo em { font-style: normal; color: var(--concrete); }
.foot__meta { color: var(--concrete); line-height: 1.9; }
.foot__nav, .foot__social { display: flex; flex-direction: column; gap: 10px; }
.foot__nav a, .foot__social a {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--concrete); width: fit-content; position: relative; transition: color .3s;
}
.foot__nav a::after, .foot__social a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.foot__nav a:hover, .foot__social a:hover { color: var(--bone); }
.foot__nav a:hover::after, .foot__social a:hover::after { transform: scaleX(1); transform-origin: left; }

.foot__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 22px; border-top: 1px solid var(--steel); color: var(--graphite);
}
.foot__soon { display: flex; align-items: center; gap: 8px; color: var(--concrete); }

/* ------------------------------------------------------------
   16. CUSTOM CURSOR
   ------------------------------------------------------------ */
.cursor { position: fixed; inset: 0; z-index: 300; pointer-events: none; display: none; }
body.pointer-fine .cursor { display: block; }
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0; border-radius: 50%;
  transform: translate3d(-50%, -50%, 0); will-change: transform;
}
.cursor__dot { width: 6px; height: 6px; background: var(--bone); }
.cursor__ring {
  width: 38px; height: 38px; border: 1px solid rgba(242,240,234,.5);
  display: grid; place-items: center;
  transition: width .35s var(--ease), height .35s var(--ease), background-color .35s, border-color .35s;
}
.cursor__label {
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); opacity: 0; transition: opacity .25s ease; font-style: normal;
}
.cursor.is-active .cursor__ring { width: 74px; height: 74px; background: var(--accent); border-color: var(--accent); }
.cursor.is-active .cursor__label { opacity: 1; }
.cursor.is-active .cursor__dot { opacity: 0; }

/* ------------------------------------------------------------
   17. ANIMATIONS / REVEALS
   ------------------------------------------------------------ */
.mask { display: block; overflow: hidden; padding-bottom: .06em; }
.mask__line { display: block; transform: translateY(115%); transition: transform 1.15s var(--ease); }
html:not(.js) .mask__line { transform: none; }
.is-revealed .mask__line, .mask__line.is-revealed { transform: translateY(0); }

html.js .reveal { opacity: 0; transform: translateY(30px); }
html.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

/* Hero entrance is orchestrated after the preloader finishes.
   The delayed "safety" animations below are a no-JS-failure net: if the
   script never runs, the hero and preloader resolve to their final state
   anyway, so content is never left hidden. */
html.js .hero .reveal { transition-delay: 0ms; animation: safety-show 0s linear 5s forwards; }
html.js .hero .mask__line { animation: safety-line 0s linear 5s forwards; }
html.js .preloader { animation: safety-lift 0s linear 6s forwards; }
@keyframes safety-show { to { opacity: 1; transform: none; } }
@keyframes safety-line { to { transform: translateY(0); } }
@keyframes safety-lift { to { transform: translateY(-100%); visibility: hidden; } }

/* ------------------------------------------------------------
   18. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1180px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card:nth-child(3) { border-left: 1px solid var(--steel); }
  .card:first-child { border-left: 1px solid var(--steel); }
  .rail { display: none; }
}

@media (max-width: 900px) {
  .nav__links, .nav__status { display: none; }
  .burger { display: block; }
  .intro__body { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
  .details { grid-template-columns: 1fr 1fr; }
  .hero__stamp { display: none; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .tiles .tile:last-child { grid-column: 1 / -1; }
  .tiles .tile:last-child .tile__media { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .card, .card:first-child, .card:nth-child(3) { border-left: 1px solid var(--steel); }
  .card { padding-bottom: 34px; }
  .tiles { grid-template-columns: 1fr; }
  .tiles .tile:last-child .tile__media { aspect-ratio: 4 / 5; }
  .details { grid-template-columns: 1fr; }
  .hero { align-items: flex-end; padding-bottom: 110px; }
  .hero__title { max-width: 100%; }
  .btn { padding: 15px 20px; width: 100%; justify-content: space-between; }
  .notify__btn { width: auto; }
  .sheet__corner { display: none; }
  .foot__bottom { flex-direction: column; }
  .break__img { inset: 0; height: 100%; transform: none !important; }
}

@media (max-width: 400px) {
  .hero__actions { gap: 10px; }
  .status { max-width: 100%; }
}

/* Taller-than-wide phones: keep hero type from crowding the scroller */
@media (max-height: 620px) and (min-width: 641px) {
  .scroller { display: none; }
}

/* ------------------------------------------------------------
   19. REDUCED MOTION
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .mask__line { transform: none; }
  .hero__img { opacity: 1; transform: scale(1); animation: none; }
  .sheet__grain, .sheet__light { display: none; }
  .break__img { transform: none !important; }
}
