/* ============================================================
   TRIO LANDSCAPING — Home
   Ultra-modern, minimal, Apple-style liquid glass.
   ============================================================ */

/* ----------------------------- Tokens ----------------------------- */
:root {
  --bg: #F6F7F4;
  --bg-soft: #EFF2ED;
  --ink: #131B16;
  --ink-2: #55605A;
  --ink-3: #8A948E;

  --brand: #3F7D66;
  --brand-grad: linear-gradient(135deg, #5FA98B 0%, #3F7D66 52%, #2A5B49 100%);
  --logo-green: #407F68;

  --sel: rgba(63, 125, 102, 0.22);

  --shadow-soft: 0 24px 60px -30px rgba(19, 27, 22, .22);
  --shadow-card: 0 18px 44px -22px rgba(19, 27, 22, .18);
  --glow: 0 18px 40px -14px rgba(42, 91, 73, .55);

  --r-xs: 14px;
  --r-sm: 20px;
  --r-md: 28px;
  --r-lg: 36px;
  --r-pill: 999px;

  --wrap: 1360px;
  --wrap-wide: 1520px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --section: clamp(96px, 12vw, 170px);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --header-h: 84px;
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--sel); }

h1, h2, h3, h4, p, ul, blockquote, figure { margin: 0; }
ul { list-style: none; padding: 0; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed; left: 50%; top: 10px; transform: translate(-50%, -160%);
  z-index: 200; background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: var(--r-pill); transition: transform .3s var(--ease-out);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ----------------------------- Layout ----------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { width: 100%; max-width: var(--wrap-wide); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: calc(var(--section) / 2); position: relative; }

.section-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 68px); }
.section-head .sub { margin-top: 18px; }

/* ----------------------------- Atmosphere ----------------------------- */
.atmosphere {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(38vw 38vw at 12% 8%, rgba(95, 169, 139, .10), transparent 60%),
    radial-gradient(42vw 42vw at 92% 22%, rgba(63, 125, 102, .08), transparent 62%),
    radial-gradient(50vw 50vw at 70% 96%, rgba(42, 91, 73, .07), transparent 60%);
  animation: drift 34s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(0, -2.4%, 0) scale(1.08); }
}

/* ----------------------------- Typography ----------------------------- */
.display  { font-weight: 440; letter-spacing: -.035em; line-height: 1.0;  font-size: clamp(2.9rem, 7.2vw, 6.6rem); }
.title-xl { font-weight: 440; letter-spacing: -.03em;  line-height: 1.04; font-size: clamp(2.4rem, 5vw, 4.4rem); }
.title-lg { font-weight: 440; letter-spacing: -.03em;  line-height: 1.06; font-size: clamp(2rem, 3.8vw, 3.3rem); }
.title-md { font-weight: 450; letter-spacing: -.025em; line-height: 1.12; font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
.title-sm { font-weight: 450; letter-spacing: -.02em;  line-height: 1.2;  font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
.sub {
  font-size: clamp(1.02rem, 1.4vw, 1.22rem); font-weight: 400;
  color: var(--ink-2); max-width: 56ch; line-height: 1.55;
}
.accent-serif { font-weight: 300; font-style: normal; letter-spacing: -.04em; }
.on-dark, .on-dark .sub { color: #fff; }
.on-dark .sub { color: rgba(255, 255, 255, .82); }

/* ----------------------------- Glass primitives ----------------------------- */
.glass {
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .34));
  backdrop-filter: blur(26px) saturate(1.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), var(--shadow-card);
}
.glass-dark {
  position: relative;
  background: linear-gradient(155deg, rgba(18, 26, 21, .62), rgba(18, 26, 21, .40));
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), var(--shadow-soft);
  color: #fff;
}

/* Pointer specular sheen on glass containers */
[data-glass]::after,
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(180px 180px at var(--mx, -30%) var(--my, -30%), rgba(255, 255, 255, .35), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease-soft); mix-blend-mode: soft-light;
}
.glass:hover::after, [data-glass]:hover::after { opacity: 1; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: var(--pad-y) var(--pad-x); border: 1px solid rgba(255, 255, 255, .6); border-radius: var(--r-pill);
  color: var(--ink); font-weight: 450; letter-spacing: -.01em; font-size: 1rem; line-height: 1;
  background: linear-gradient(155deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .30));
  backdrop-filter: blur(20px) saturate(1.6); -webkit-backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), var(--shadow-card);
  overflow: hidden; isolation: isolate; -webkit-tap-highlight-color: transparent;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), color .3s var(--ease-soft), border-color .3s;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--brand-grad); opacity: 0; transition: opacity .4s var(--ease-soft);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120px 120px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .5), transparent 55%);
  opacity: 0; transition: opacity .35s var(--ease-soft);
}
.btn:hover, .btn:focus-visible {
  color: #fff; border-color: rgba(255, 255, 255, .28);
  transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), var(--glow);
}
.btn:hover::before, .btn:focus-visible::before { opacity: 1; }
.btn:hover::after { opacity: .7; }
.btn:active { transform: translateY(0); }

.btn-lg { --pad-y: 18px; --pad-x: 34px; font-size: 1.06rem; }
.btn-sm { --pad-y: 11px; --pad-x: 20px; font-size: .95rem; }
.btn-round { --pad-y: 0; width: 52px; height: 52px; padding: 0; border-radius: 50%; }

/* Buttons on imagery */
.btn.on-image {
  color: #fff; border-color: rgba(255, 255, 255, .38);
  background: linear-gradient(155deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 18px 40px -22px rgba(0, 0, 0, .6);
}

/* ----------------------------- Chips ----------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: .4em;
  padding: 9px 16px; border-radius: var(--r-pill); font-size: .9rem; font-weight: 450; color: var(--ink);
  background: linear-gradient(155deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, .32));
  border: 1px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: transform .4s var(--ease-out), color .3s, box-shadow .4s, border-color .3s;
}
.chip.on-image { color: #fff; border-color: rgba(255, 255, 255, .34); background: rgba(18, 26, 21, .34); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28); }
button.chip { position: relative; overflow: hidden; isolation: isolate; }
button.chip::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--brand-grad); opacity: 0; transition: opacity .4s var(--ease-soft);
}
button.chip:hover { color: #fff; transform: translateY(-1px); border-color: transparent; }
button.chip:hover::before { opacity: .9; }
button.chip.is-active { color: #fff; border-color: transparent; box-shadow: var(--glow); }
button.chip.is-active::before { opacity: 1; }

/* ----------------------------- Cards ----------------------------- */
.card { border-radius: var(--r-md); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding-top: 18px;
  transition: padding .5s var(--ease-out);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 12px 14px 12px 22px; border-radius: var(--r-pill);
  transition: box-shadow .5s var(--ease-out), background .5s;
}
.header.is-scrolled { padding-top: 10px; }
.header.is-scrolled .header__inner { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 18px 44px -26px rgba(19, 27, 22, .4); }

.header__logo { display: inline-flex; padding: 4px; border-radius: 12px; }
.logo-mark path { fill: var(--logo-green); }

.nav { display: flex; gap: clamp(6px, 1.6vw, 22px); }
.nav a {
  position: relative; padding: 9px 16px; border-radius: var(--r-pill); font-size: .98rem; font-weight: 450; color: var(--ink);
  transition: color .3s, background .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; opacity: .5;
  transition: transform .45s var(--ease-out);
}
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-current { color: #fff; background: var(--brand); box-shadow: var(--glow); }
.nav a.is-current::after { display: none; }

.header__actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .4); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 18px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease-out), opacity .3s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed; inset: 0; z-index: 99; display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(246, 247, 244, .86), rgba(239, 242, 237, .92));
  backdrop-filter: blur(30px) saturate(1.4); -webkit-backdrop-filter: blur(30px) saturate(1.4);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease-out), visibility .5s;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
.nav-overlay__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.nav-overlay__inner a { font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 440; letter-spacing: -.03em; padding: 8px 16px; opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.nav-overlay__inner a.btn { font-size: 1.1rem; margin-top: 18px; }
body.nav-open .nav-overlay__inner a { opacity: 1; transform: none; }
body.nav-open .nav-overlay__inner a:nth-child(1) { transition-delay: .08s; }
body.nav-open .nav-overlay__inner a:nth-child(2) { transition-delay: .13s; }
body.nav-open .nav-overlay__inner a:nth-child(3) { transition-delay: .18s; }
body.nav-open .nav-overlay__inner a:nth-child(4) { transition-delay: .23s; }
body.nav-open .nav-overlay__inner a:nth-child(5) { transition-delay: .28s; }
body.nav-open .nav-overlay__inner a:nth-child(6) { transition-delay: .34s; }

/* ============================================================
   HERO — scroll-scrubbed video + stacked titles
   ============================================================ */
.hero { position: relative; height: 320vh; }
.hero__pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: grid; place-items: center;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 14, .34) 0%, rgba(10, 18, 14, .12) 34%, rgba(10, 18, 14, .30) 72%, rgba(10, 18, 14, .55) 100%);
}
.hero__stage { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; text-align: center; padding-inline: var(--gutter); }
.hero__title {
  grid-area: 1 / 1; margin: 0; color: #fff; max-width: 16ch; justify-self: center;
  text-shadow: 0 20px 60px rgba(0, 0, 0, .35); will-change: opacity, transform;
}
.hero__title[data-hero-title="1"], .hero__title[data-hero-title="2"] { opacity: 0; }

/* masked line reveal */
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease-out); }
.hero.is-ready .line-mask:nth-child(1) > span { transition-delay: .15s; }
.hero.is-ready .line-mask:nth-child(2) > span { transition-delay: .28s; }
.hero.is-ready .line-mask > span { transform: translateY(0); }

.hero__hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, .8); font-size: .82rem; letter-spacing: .04em;
  transition: opacity .5s var(--ease-out);
}
.hero__hint i { width: 1px; height: 40px; background: linear-gradient(rgba(255, 255, 255, .8), transparent); position: relative; overflow: hidden; }
.hero__hint i::after { content: ""; position: absolute; inset: 0; background: #fff; animation: hint 2.2s var(--ease-soft) infinite; }
@keyframes hint { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ============================================================
   STATEMENT — cursor green spotlight
   ============================================================ */
.statement { padding-block: clamp(120px, 18vw, 240px); text-align: center; }
.statement__text {
  position: relative; display: inline-block; max-width: 20ch; margin-inline: auto;
  font-weight: 440; letter-spacing: -.035em; line-height: 1.02;
  font-size: clamp(2.3rem, 6vw, 5.2rem);
}
.statement__base { color: var(--ink); }
.statement__green {
  position: absolute; inset: 0; color: transparent;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-mask-image: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), #000 0, #000 8%, transparent 24%);
  mask-image: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), #000 0, #000 8%, transparent 24%);
  opacity: 0; transition: opacity .5s var(--ease-soft);
}
.statement__text.is-live .statement__green { opacity: 1; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(38px, 6vw, 96px); align-items: center; }
.about__media { position: relative; }
.about__media-frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5; transform-style: preserve-3d;
}
.about__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; right: -16px; bottom: 34px; border-radius: var(--r-md); padding: 20px 26px;
  display: flex; flex-direction: column; gap: 2px; text-align: left;
}
.about__badge strong { font-size: 2.4rem; font-weight: 450; letter-spacing: -.03em; line-height: 1; }
.about__badge strong span { color: var(--ink-3); }
.about__badge em { font-style: normal; color: var(--ink-2); font-size: .92rem; max-width: 12ch; }

.about__copy .sub { margin-top: 22px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 20px; margin: 40px 0; }
.stat__num { font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 440; letter-spacing: -.03em; line-height: 1; }
.stat__label { color: var(--ink-2); font-size: .96rem; margin-top: 8px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-band { padding-block: clamp(36px, 5vw, 60px); }
.marquee-band__lead { text-align: center; color: var(--ink-3); font-size: .95rem; margin-bottom: 26px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__row { display: inline-flex; align-items: center; gap: 34px; white-space: nowrap; animation: marquee 34s linear infinite; will-change: transform; }
.marquee__row span { font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 430; letter-spacing: -.02em; color: var(--ink); opacity: .8; }
.marquee__row i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); opacity: .5; }
.marquee:hover .marquee__row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   FEATURED COVER — parallax
   ============================================================ */
.cover { position: relative; height: clamp(560px, 88vh, 900px); overflow: hidden; display: flex; align-items: flex-end; }
.cover__img { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; will-change: transform; }
.cover__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 14, 11, .72) 0%, rgba(8, 14, 11, .34) 42%, rgba(8, 14, 11, .05) 74%, transparent 100%), linear-gradient(0deg, rgba(8, 14, 11, .4), transparent 40%); }
.cover__inner { position: relative; z-index: 2; padding-bottom: clamp(48px, 8vw, 100px); }
.cover__meta { max-width: 560px; }
.cover__meta .sub { margin: 16px 0 30px; }

/* ============================================================
   PROJECTS
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(30px, 4vw, 46px); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 34px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 34px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.2vw, 30px); }

.project { position: relative; overflow: hidden; background: var(--bg-soft); box-shadow: var(--shadow-card); transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out); }
.project__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.project__tag { position: absolute; top: 14px; left: 14px; }
.project__body { padding: 22px 24px 26px; }
.project__meta { color: var(--ink-2); font-size: .95rem; margin-top: 8px; }
.project:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.project:hover .project__media img { transform: scale(1.06); }

/* filter animation */
.filter-item { transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.filter-item.is-hidden { display: none; }
.filter-item.is-filtering { opacity: 0; transform: scale(.94); }

.projects__cta { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 64px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.slider { position: relative; }
.slider__viewport { overflow: hidden; border-radius: var(--r-lg); }
.slider__track { display: flex; will-change: transform; }
.slider__slide { flex: 0 0 100%; padding: 6px; }
.testimonial { padding: clamp(34px, 5vw, 64px); border-radius: var(--r-lg); }
.testimonial__quote { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 440; letter-spacing: -.03em; line-height: 1.22; max-width: 30ch; }
.testimonial__by { margin-top: 30px; display: flex; flex-direction: column; gap: 2px; }
.testimonial__name { font-weight: 500; }
.testimonial__role { color: var(--ink-2); font-size: .96rem; }

.slider__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.slider__dots { display: flex; gap: 9px; }
.slider__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: var(--ink-3); opacity: .4; transition: opacity .3s, transform .3s, background .3s; }
.slider__dots button.is-active { opacity: 1; transform: scale(1.25); background: var(--ink); }

/* ============================================================
   AWARDS
   ============================================================ */
.award { padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column; min-height: 260px; }
.award__desc { color: var(--ink-2); font-size: .98rem; margin-top: 14px; }
.award__year { margin-top: auto; padding-top: 22px; font-size: 1.7rem; font-weight: 300; letter-spacing: -.02em; color: var(--ink); }

/* ============================================================
   CUSTOMISER — interactive layout
   ============================================================ */
.customiser__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(38px, 6vw, 84px); align-items: center; }
.customiser__controls { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.customiser__count { font-size: 1.1rem; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.customiser__count span { color: var(--ink); font-weight: 500; }
.customiser__count i { font-style: normal; color: var(--ink-3); margin: 0 4px; }

.customiser__stage { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 9; padding: 10px; }
.customiser__layout {
  position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px);
  object-fit: cover; border-radius: calc(var(--r-lg) - 10px);
  opacity: 0; transform: scale(1.04); transition: opacity .8s var(--ease-out), transform 1s var(--ease-out);
}
.customiser__layout.is-active { opacity: 1; transform: scale(1); }
.customiser__scan {
  position: absolute; inset: 10px; border-radius: calc(var(--r-lg) - 10px); pointer-events: none; opacity: 0;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, .5) 50%, transparent 60%);
  background-size: 250% 100%;
}
.customiser__stage.is-switching .customiser__scan { opacity: 1; animation: scan .8s var(--ease-soft); }
@keyframes scan { from { background-position: 130% 0; } to { background-position: -130% 0; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; padding-block: clamp(96px, 13vw, 190px); overflow: hidden; }
.contact__bg { position: absolute; inset: 0; background: url("../assets/web/contact.jpg") center/cover no-repeat; transform: scale(1.05); }
.contact__scrim { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8, 14, 11, .72), rgba(8, 14, 11, .42) 60%, rgba(8, 14, 11, .55)); }
.contact__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 6vw, 88px); align-items: center; }
.contact__intro .sub { margin: 18px 0 34px; }
.contact__facts { display: flex; flex-direction: column; gap: 16px; }
.contact__facts li { color: rgba(255, 255, 255, .9); font-size: 1.02rem; }
.contact__facts span { display: block; color: rgba(255, 255, 255, .55); font-size: .82rem; letter-spacing: .04em; margin-bottom: 3px; }

.contact__form { padding: clamp(26px, 3.4vw, 42px); border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 18px; position: relative; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field--split > div { display: flex; flex-direction: column; gap: 8px; }
.contact__form label { font-size: .86rem; color: rgba(255, 255, 255, .7); letter-spacing: .02em; }
.contact__form input, .contact__form select, .contact__form textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: #fff; padding: 14px 16px;
  border-radius: var(--r-sm); border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color .3s, background .3s, box-shadow .3s; resize: vertical;
}
.contact__form input::placeholder, .contact__form textarea::placeholder { color: rgba(255, 255, 255, .45); }
.contact__form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ffffff' stroke-opacity='.6' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; }
.contact__form option { color: #131B16; }
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  outline: none; border-color: rgba(95, 169, 139, .8); background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 3px rgba(63, 125, 102, .28);
}
.contact__submit { margin-top: 6px; align-self: flex-start; }

.contact__success {
  position: absolute; inset: 0; border-radius: var(--r-lg); display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-align: center; padding: 40px; color: var(--ink);
}
.contact__success[hidden] { display: none; }
.contact__success svg { color: var(--ink); }
.contact__success p { max-width: 32ch; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-block: clamp(56px, 7vw, 100px) 40px; margin-top: clamp(40px, 6vw, 90px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(30px, 4vw, 60px); padding-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 12px; font-size: 1.25rem; font-weight: 450; letter-spacing: -.02em; }
.footer__tag { color: var(--ink-2); margin: 18px 0 24px; max-width: 34ch; }
.footer__col h4 { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: var(--ink-2); margin-bottom: 12px; transition: color .3s; }
.footer__col a:hover { color: var(--ink); }
.footer__base { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 30px; border-top: 1px solid rgba(19, 27, 22, .1); color: var(--ink-3); font-size: .9rem; }
.footer__base-links { display: flex; gap: 20px; }
.footer__base-links a:hover { color: var(--ink); }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); will-change: opacity, transform; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(.94); }
[data-reveal].is-in { opacity: 1; transform: none; }

.floaty { animation: floaty 6s var(--ease-soft) infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media-frame { aspect-ratio: 16 / 11; }
  .about__badge { right: 16px; }
  .customiser__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero { height: 280vh; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .field--split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; align-items: flex-start; }
  .header__actions .btn-sm { display: none; }
  .about__badge { right: 12px; bottom: 12px; padding: 16px 20px; }
  .about__badge strong { font-size: 2rem; }
  .hero { height: 240vh; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .atmosphere { animation: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .line-mask > span { transform: none !important; }
  .hero { height: auto; }
  .hero__pin { position: relative; height: 100vh; }
  .hero__title[data-hero-title="1"], .hero__title[data-hero-title="2"] { display: none; }
  .marquee__row { animation: none; }
  .hero__hint { display: none; }
}
