/* ============ 32CHVAC — cutting-edge dark ============ */
:root {
  --bg: #07090d;
  --bg-2: #0b0e14;
  --panel: #10141c;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f4f8;
  --muted: #97a0af;
  --fire: #ff5a1f;      /* logo flame */
  --fire-2: #ff8a00;
  --ice: #2e9fff;       /* logo swoosh */
  --ice-2: #6fd3ff;
  --grad: linear-gradient(90deg, var(--fire) 0%, var(--fire-2) 35%, var(--ice-2) 65%, var(--ice) 100%);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--fire); color: #fff; }

/* ---------- Scroll temperature tint ---------- */
.heat {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  --warmO: 0.4;
  --coolO: 0;
}
.heat::before, .heat::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 0.2s linear;
}
.heat::before {
  background:
    radial-gradient(ellipse 80% 60% at 12% 20%, rgba(255, 90, 31, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 88% 80%, rgba(255, 138, 0, 0.07), transparent 60%);
  opacity: var(--warmO);
}
.heat::after {
  background:
    radial-gradient(ellipse 80% 60% at 85% 75%, rgba(46, 159, 255, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 25%, rgba(111, 211, 255, 0.06), transparent 60%);
  opacity: var(--coolO);
}

/* ---------- Thermometer scroll gauge ---------- */
.thermo {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.thermo__track {
  width: 4px;
  height: 34vh;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
.thermo__fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--fire) 0%, var(--fire-2) 40%, var(--ice-2) 75%, var(--ice) 100%);
  transform: scaleY(0);
  transform-origin: 50% 0;
}
.thermo__bulb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 14px rgba(255, 90, 31, 0.7);
}
html:not(.js) .thermo__fill { transform: scaleY(1); }
@media (max-width: 900px) { .thermo { display: none; } }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 300;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              border-color 0.25s, background 0.25s, opacity 0.3s;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--fire);
}
.cursor.is-link {
  width: 64px; height: 64px;
  background: rgba(255, 90, 31, 0.12);
  border-color: var(--fire);
}
.cursor.is-drag {
  width: 78px; height: 78px;
  background: rgba(46, 159, 255, 0.10);
  border-color: var(--ice);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 0.35s, backdrop-filter 0.35s, padding 0.35s, transform 0.45s var(--ease);
}
.nav.is-scrolled {
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  height: 46px;
  width: auto;
  border-radius: 10px;
  /* logo file has a light background — soften it on the dark UI */
  background: #fff;
  padding: 2px 10px;
}
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); }
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav__cta {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--grad);
  color: #0a0c10;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 90, 31, 0.35);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 120;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(7, 9, 13, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.6s var(--ease);
  pointer-events: none;
}
.menu.is-open { clip-path: circle(150% at calc(100% - 44px) 44px); pointer-events: auto; }
.menu__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 700;
  padding: 6px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s, transform 0.5s var(--ease), color 0.2s;
}
.menu.is-open .menu__link { opacity: 1; transform: none; }
.menu.is-open .menu__link:nth-child(1) { transition-delay: 0.15s; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: 0.22s; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: 0.29s; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: 0.36s; }
.menu__link:hover { color: var(--fire); }
.menu__contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
  will-change: transform;
}
.btn--solid {
  background: var(--grad);
  color: #0a0c10;
}
.btn--solid:hover { box-shadow: 0 10px 36px rgba(255, 110, 40, 0.4); }
.btn--line {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.25);
}
.btn--line:hover { box-shadow: inset 0 0 0 1.5px var(--ice); color: var(--ice-2); }
.btn--full { width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -10% 0;
  background: radial-gradient(ellipse 70% 55% at 50% 115%, #101826 0%, transparent 60%);
}
.hero__grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
.hero__glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 780px; max-height: 780px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.hero__glow--warm {
  background: radial-gradient(circle, var(--fire) 0%, transparent 65%);
  top: -18%; left: -14%;
  animation: drift 14s ease-in-out infinite alternate;
}
.hero__glow--cool {
  background: radial-gradient(circle, var(--ice) 0%, transparent 65%);
  bottom: -22%; right: -12%;
  animation: drift 17s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6%, 8%) scale(1.12); }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 64px) 80px;
}
.hero__eyebrow {
  overflow: hidden;
  font-size: 0.86rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.hero__eyebrow span { display: inline-block; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 34px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero__title .line__inner { display: inline-block; }
.hero__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 560px;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 42px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.hero__scroll-line {
  width: 72px; height: 1px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform: translateX(-100%);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee__track, .footer__track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee__track .dot { color: var(--fire); }

/* ---------- Statement ---------- */
.statement {
  padding: clamp(120px, 18vh, 220px) clamp(20px, 6vw, 72px);
  max-width: 1200px;
  margin: 0 auto;
}
.statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.statement__text .w {
  color: rgba(242, 244, 248, 0.16);
  transition: color 0.35s;
}
.statement__text .w.on { color: var(--text); }

/* ---------- Work (horizontal) ---------- */
.work { position: relative; }
.work__head {
  padding: 0 clamp(20px, 5vw, 64px) 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-tag {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.work__viewport { overflow: hidden; }
.work__track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: 20px clamp(20px, 5vw, 64px) 80px;
  width: max-content;
  will-change: transform;
}
.panel {
  width: clamp(300px, 34vw, 460px);
  min-height: 380px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 90, 31, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.panel:hover { border-color: rgba(255, 138, 0, 0.35); transform: translateY(-6px); }
.panel:hover::before { opacity: 1; }
.panel__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: auto;
}
.panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  margin: 26px 0 14px;
  line-height: 1.15;
}
.panel__text { color: var(--muted); font-size: 1rem; }
.panel--cta {
  background: linear-gradient(135deg, rgba(255,90,31,0.14), rgba(46,159,255,0.12)), var(--panel);
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 6px;
}
.panel--cta .btn { margin-top: 22px; }

/* ---------- Why / stats ---------- */
.why {
  padding: clamp(110px, 16vh, 200px) clamp(20px, 5vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.why__lead { margin-top: 24px; color: var(--muted); font-size: 1.1rem; max-width: 480px; }
.stats { display: grid; gap: 18px; }
.stat {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 34px;
  display: flex;
  align-items: baseline;
  gap: 24px;
  background: var(--panel);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.stat:hover { border-color: rgba(46, 159, 255, 0.4); transform: translateX(8px); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 110px;
}
.stat__label { color: var(--muted); font-weight: 500; }

/* ---------- Area ---------- */
.area {
  position: relative;
  padding: clamp(130px, 20vh, 240px) clamp(20px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.area__bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 25% 50%, rgba(255, 90, 31, 0.10), transparent 45%),
    radial-gradient(circle at 75% 50%, rgba(46, 159, 255, 0.10), transparent 45%);
}
.area__inner { position: relative; z-index: 1; }
.area__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 26px;
  margin: 18px 0 26px;
}
.area__state { transition: color 0.3s; }
.area__state:nth-child(1):hover {
  background: linear-gradient(90deg, var(--fire), var(--fire-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.area__state:nth-child(3):hover {
  background: linear-gradient(90deg, var(--ice-2), var(--ice));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.area__amp { color: var(--muted); font-weight: 400; }
.area__text { max-width: 520px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }

/* ---------- Contact ---------- */
.contact { padding: clamp(110px, 16vh, 200px) clamp(20px, 5vw, 64px); }
.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(44px, 6vw, 110px);
  align-items: start;
}
.contact__list { list-style: none; margin-top: 44px; display: grid; gap: 26px; }
.contact__k {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact__v {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  transition: color 0.2s;
}
a.contact__v:hover {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 46px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; margin-bottom: 18px; }
.field span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ice);
  background: rgba(46, 159, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(46, 159, 255, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form__hint { margin-top: 16px; text-align: center; font-size: 0.86rem; color: var(--muted); }
.form__hint--ok { color: var(--ice-2); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); overflow: hidden; }
.footer__marquee { padding: clamp(30px, 6vh, 70px) 0 0; overflow: hidden; }
.footer__track span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
}
.footer__track .dot { -webkit-text-stroke: 1px rgba(255, 90, 31, 0.4); }
.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 34px clamp(20px, 5vw, 64px) 44px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer__contact { display: flex; gap: 28px; }
.footer__contact a { font-weight: 600; color: var(--text); transition: color 0.2s; }
.footer__contact a:hover { color: var(--fire-2); }

/* ---------- Hero FX canvas ---------- */
.hero__fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

@keyframes phoneShimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* ---------- Contact big phone ---------- */
.contact__bigphone {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.01em;
  margin-top: 38px;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: phoneShimmer 6s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(46, 159, 255, 0.25));
  transition: filter 0.3s;
  width: fit-content;
}
.contact__bigphone:hover { filter: drop-shadow(0 0 30px rgba(255, 110, 40, 0.5)); }
.contact__list { margin-top: 30px; }

/* ---------- Floating call button ---------- */
.call-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 150;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--grad);
  color: #0a0c10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 34px rgba(255, 90, 31, 0.45);
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.call-fab.is-on { opacity: 1; transform: none; }
.call-fab:hover { transform: scale(1.08); }
.call-fab__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 122, 40, 0.55);
  animation: fabRing 2.4s ease-out infinite;
}
.call-fab__ring--2 { animation-delay: 1.2s; border-color: rgba(46, 159, 255, 0.5); }
@keyframes fabRing {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.9); opacity: 0; }
}

/* ---------- Ignition initial states (html.js only; GSAP animates in) ---------- */
.hero__eyebrow span { display: inline-block; }
.hero__title em { background-size: 220% 100%; }
.js .nav { opacity: 0; }
.js .hero__grid, .js .hero__fx { opacity: 0; }
.js .hero__glow { opacity: 0; }
.js .hero__eyebrow span { opacity: 0; }
.js .hero__title .line__inner { transform: translateY(115%); }
.js .hero__sub, .js .hero__actions { opacity: 0; transform: translateY(30px); }
.js .hero__scroll { opacity: 0; }
.js .area__title { opacity: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .why { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .form__row { grid-template-columns: 1fr; }

  /* Services: native swipe carousel (GSAP horizontal pin is desktop-only) */
  .work__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .work__viewport::-webkit-scrollbar { display: none; }
  .work__track { will-change: auto; }
  .panel {
    width: min(80vw, 340px);
    min-height: 340px;
    scroll-snap-align: center;
  }

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

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .statement__text .w { color: var(--text); }
  .heat { display: none; }
  .thermo__fill { transform: scaleY(1) !important; }
}
