/* Exalt Infra Main CSS - v2 - SEO Optimized */
/* HIDE SCROLLBARS EVERYWHERE */
* { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; width: 0; height: 0; background: transparent; }
html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
body { scrollbar-width: none; -ms-overflow-style: none; overflow-x: hidden;}
body::-webkit-scrollbar { display: none; width: 0; height: 0; }
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --white:   #FFFFFF;
  --canvas:  #F7F8F6;
  --canvas2: #F0F2EE;
  --slate:   #1D2B2A;
  --mid:     #5A6B68;
  --muted:   #8A9A97;
  --border:  #E2E8E6;
  --border2: #CDD8D5;

  /* Division accent colours */
  --green:   #2D7A4F;  --green-lt:  #E8F5EE;  --green-dk:  #1A5533;
  --gold:    #8B6914;  --gold-lt:   #F5EDD9;  --gold-dk:   #6B5010;
  --red:     #C84B2A;  --red-lt:    #FAEAE5;  --red-dk:    #A33820;
  --blue:    #1A5FA8;  --blue-lt:   #E6EFF9;  --blue-dk:   #0F3D70;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Fraunces', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Active accent — overridden per page */
  --accent:    var(--green);
  --accent-lt: var(--green-lt);
  --accent-dk: var(--green-dk);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
img { display: block; max-width: 100%; }

/* ═══ SKIP NAVIGATION LINK ═══ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--slate);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  z-index: 1000;
  transition: top 0.3s;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.skip-link:focus {
  top: 0;
}

/* ═══════════════════════════════════════════════════════
   PAGE ROUTER — SPA SYSTEM
═══════════════════════════════════════════════════════ */
.page {
  position: absolute;
  top: 0; left: 0; right: 0;
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transform: translateX(28px);
  will-change: opacity, transform;
}
.page.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.page.exit-left  { transform: translateX(-28px); opacity: 0; }
.page.exit-right { transform: translateX(28px);  opacity: 0; }
#app { position: relative; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 68px;
  background: rgba(255,255,255,0);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
#nav.dark-hero {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  transition: filter 0.3s;
}
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: background 0.3s;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.06em;
  color: var(--slate);
  transition: color 0.3s;
}
#nav.dark-hero .nav-logo-text { color: #fff; }
#nav.dark-hero .nav-logo-mark { background: rgba(255,255,255,0.15); }
#nav.dark-hero .nav-logo-img {
  filter: brightness(0) invert(1);
}

.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-item {
  position: relative;
  padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--mid);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  cursor: pointer; border: none; background: none;
}
.nav-item:hover { color: var(--slate); background: var(--canvas); }
.nav-item.active { color: var(--slate); font-weight: 600; }
.nav-item.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px;
  right: 14px; height: 2px;
  background: var(--active-color, var(--green));
  border-radius: 1px;
}
#nav.dark-hero .nav-item { color: rgba(255,255,255,0.75); }
#nav.dark-hero .nav-item:hover { color: #fff; background: rgba(255,255,255,0.1); }
#nav.dark-hero .nav-item.active { color: #fff; }

/* Division badge in nav */
.nav-division-badge {
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s;
  margin-left: 4px;
}

.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-btn {
  padding: 9px 20px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.nav-btn-quote {
  background: var(--green); color: #fff; border: none;
}
.nav-btn-quote:hover { background: var(--green-dk); transform: translateY(-1px); }
#nav.dark-hero .nav-btn-quote {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}

/* Hamburger for mobile — Premium */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 502;
}
.nav-hamburger .ham-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate);
  border-radius: 1px;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: absolute;
}
.nav-hamburger .ham-line:nth-child(1) { transform: translateY(-6px); }
.nav-hamburger .ham-line:nth-child(2) { opacity: 1; }
.nav-hamburger .ham-line:nth-child(3) { transform: translateY(6px); }
/* Animate to X when open */
.nav-hamburger.open .ham-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  background: #fff;
}
.nav-hamburger.open .ham-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-hamburger.open .ham-line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  background: #fff;
}
#nav.dark-hero .nav-hamburger .ham-line { background: #fff; }

/* Mobile nav drawer — Full screen premium */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(18, 28, 26, 0.97);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 32px 48px;
  overflow-y: auto;
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}
.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 501;
}
.drawer-close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: rotate(90deg);
}
.drawer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 400px;
}
.drawer-item {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  padding: 14px 20px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: center;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease), letter-spacing 0.35s;
  position: relative;
}
.drawer-item::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.4s var(--ease);
}
.drawer-item:hover,
.drawer-item.active {
  color: #fff;
  transform: scale(1.05);
  letter-spacing: 0.1em;
}
.drawer-item:hover::after,
.drawer-item.active::after {
  transform: translateX(-50%) scaleX(1);
}
.drawer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px 0;
}
.drawer-footer {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.drawer-footer-link {
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.drawer-footer-link:hover {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .drawer-item {
    font-size: 22px;
    padding: 12px 16px;
  }
}

/* ═══════════════════════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  border-radius: 2px;
}
.section-h {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.12; font-weight: 300;
  color: var(--slate); letter-spacing: -0.01em;
}
.section-h em { font-style: italic; }
.section-h strong { font-weight: 500; }
.section-body { font-size: 15px; color: var(--mid); line-height: 1.8; max-width: 560px; }

.reveal {
  opacity: 0; transform: translateY(40px) scale(0.98);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
.reveal.vis { opacity: 1; transform: translateY(0) scale(1); }
.d1{transition-delay:0.10s} .d2{transition-delay:0.20s}
.d3{transition-delay:0.30s} .d4{transition-delay:0.40s}
.d5{transition-delay:0.50s} .d6{transition-delay:0.60s}

/* Enhanced reveal variants */
.reveal-up {
  opacity: 0; transform: translateY(60px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal-up.vis { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal-scale.vis { opacity: 1; transform: scale(1); }

.reveal-blur {
  opacity: 0; transform: translateY(30px);
  filter: blur(8px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal-blur.vis { opacity: 1; transform: translateY(0); filter: blur(0px); }

/* Shared card / photo patterns */
.photo-abs {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.shade-top { background: linear-gradient(to top, rgba(10,20,18,0.9) 0%, transparent 60%); }

/* Section padding */
.sec { padding: 80px 56px; }
.sec-canvas { background: var(--canvas); }
.sec-white  { background: var(--white); }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
}
.stat-block {
  padding: 44px 0; text-align: center;
  border-right: 1px solid var(--border);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.stat-block:last-child { border-right: none; }
.stat-block.vis { opacity: 1; transform: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 54px; line-height: 1; letter-spacing: 0.01em;
}
.stat-unit { font-size: 26px; opacity: 0.5; }
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-top: 6px;
}

/* Process alternating */
.proc-alt { }
.proc-step {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.proc-step.flip { direction: rtl; }
.proc-step.flip > * { direction: ltr; }
.proc-visual { overflow: hidden; position: relative; }
.proc-visual .img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.proc-step:hover .proc-visual .img { transform: scale(1.04); }
.proc-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 56px; background: var(--canvas);
}
.proc-step:nth-child(even) .proc-copy { background: var(--white); }
.proc-num {
  font-family: var(--font-display); font-size: 88px; line-height: 1;
  color: var(--border); margin-bottom: -16px; display: block;
}
.proc-title {
  font-family: var(--font-serif); font-size: 30px; font-weight: 300;
  color: var(--slate); margin-bottom: 16px; line-height: 1.2;
}
.proc-title em { font-style: italic; }
.proc-body { font-size: 14px; color: var(--mid); line-height: 1.85; margin-bottom: 24px; }
.proc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.proc-tag {
  padding: 5px 12px; border-radius: 999px;
  border: 1.5px solid var(--border2);
  font-size: 11px; font-weight: 600; color: var(--mid);
}

/* Project grid */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.proj-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s; cursor: pointer;
}
.proj-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.proj-card.big { grid-column: span 2; }
.proj-img { height: 240px; overflow: hidden; position: relative; }
.proj-card.big .proj-img { height: 320px; }
.proj-img .ph { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.proj-card:hover .proj-img .ph { transform: scale(1.04); }
.proj-body { padding: 18px 20px 20px; }
.proj-chips { display: flex; gap: 5px; margin-bottom: 9px; flex-wrap: wrap; }
.chip {
  padding: 3px 9px; border-radius: 999px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.proj-name { font-size: 15px; font-weight: 700; color: var(--slate); margin-bottom: 6px; line-height: 1.3; }
.proj-meta { font-size: 11px; color: var(--muted); display: flex; gap: 12px; flex-wrap: wrap; }

/* Enquiry layout */
.enq-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.form-input {
  padding: 13px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 14px; font-family: var(--font-body); color: var(--slate);
  background: var(--canvas); outline: none; width: 100%;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent, var(--green)); }
.form-input::placeholder { color: var(--muted); }
.enq-form { display: flex; flex-direction: column; gap: 11px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit {
  padding: 14px 28px; border: none; border-radius: var(--radius);
  background: var(--accent, var(--green)); color: #fff;
  font-size: 14px; font-weight: 700; font-family: var(--font-body);
  transition: filter 0.2s, transform 0.15s; align-self: flex-start;
}
.form-submit:hover { filter: brightness(0.88); transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--muted); }
.trust-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 48px; max-width: 1080px;
}
.trust-pt {
  padding: 22px 26px; display: flex; gap: 12px;
  border-right: 1px solid var(--border);
}
.trust-pt:last-child { border-right: none; }
.trust-icon { font-size: 20px; flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.trust-tit { font-size: 13px; font-weight: 700; color: var(--slate); margin-bottom: 2px; }
.trust-sub { font-size: 11px; color: var(--mid); line-height: 1.5; }

/* Certification bar */
/* ── TICKER BAR (infinite auto-scroll) ────────────── */
.ticker-bar {
  background: var(--slate);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
  height: 52px;
}
.ticker-bar::before, .ticker-bar::after {
  content: '';
  position: absolute; top: 0; bottom: 0; z-index: 2; width: 80px;
  pointer-events: none;
}
.ticker-bar::before { left: 0; background: linear-gradient(to right, var(--slate) 0%, transparent 100%); }
.ticker-bar::after  { right: 0; background: linear-gradient(to left,  var(--slate) 0%, transparent 100%); }
.ticker-track {
  display: flex; align-items: center;
  height: 100%;
  width: max-content;
  animation: ticker-scroll 48s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex; align-items: center; gap: 6px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap; flex-shrink: 0; height: 100%;
}
.ticker-item:last-child { border-right: none; }
.ticker-code {
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: 0.07em; color: #fff;
}
.ticker-label {
  font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.18); flex-shrink: 0; margin: 0 4px;
}
/* Category separators get a coloured dot */
.ticker-item.cat-sports  .ticker-code { color: #6FD49A; }
.ticker-item.cat-interiors .ticker-code { color: #C4A870; }
.ticker-item.cat-paints  .ticker-code { color: #F0A080; }
.ticker-item.cat-build   .ticker-code { color: #8DC8F0; }

/* Surface tabs */
.stab-row { display: flex; background: var(--canvas); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; width: fit-content; flex-shrink: 0; }
.stab { padding: 10px 20px; font-size: 12px; font-weight: 600; background: none; border: none; color: var(--muted); transition: all 0.2s; white-space: nowrap; }
.stab.on { background: var(--slate); color: #fff; }
.stab:not(.on):hover { color: var(--slate); }
.spanel { display: none; }
.spanel.on { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.surf-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 300px; cursor: pointer; box-shadow: var(--shadow-sm); }
.surf-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.65) saturate(0.85); transition: transform 0.55s var(--ease), filter 0.4s; }
.surf-card:hover .bg { transform: scale(1.05); filter: brightness(0.52); }
.surf-card .sc { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: linear-gradient(to top,rgba(10,22,18,0.92) 0%,transparent 60%); }
.surf-cert { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.92); border-radius: 4px; padding: 2px 8px; font-size: 8px; font-weight: 800; letter-spacing: 0.1em; color: var(--slate); text-transform: uppercase; }
.surf-sport { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.surf-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.surf-spec { font-size: 11px; color: rgba(255,255,255,0.48); line-height: 1.4; opacity: 0; transform: translateY(4px); transition: all 0.3s; }
.surf-card:hover .surf-spec { opacity: 1; transform: none; }
.surf-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.surf-tag { padding: 2px 7px; border-radius: 999px; font-size: 8px; font-weight: 700; text-transform: uppercase; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); }

/* ═══ SPORTS SHOWCASE - Bento Grid + Featured Project ═══ */
.sports-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: 200px 200px 200px 200px;
  gap: 10px;
  margin-bottom: 40px;
}

.bento-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
  border: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
  display: block;
}

.bento-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  transition: background 0.4s;
}

.bento-tile:hover {
  transform: translateY(-4px);
}

.bento-tile:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
}

.bento-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.bento-tile:hover .bento-image {
  transform: scale(1.08);
}

.bento-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.bento-cert {
  align-self: flex-start;
  background: rgba(255,255,255,0.95);
  color: var(--slate);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: var(--radius);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.bento-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  font-weight: 600;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}

.bento-tile.featured .bento-title {
  font-size: 42px;
}

.bento-tile.featured .bento-label {
  font-size: 11px;
}

.bento-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  max-width: 280px;
}

.bento-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}

.bento-tile:hover .bento-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Large/featured tile */
.bento-tile.featured {
  grid-column: span 1;
  grid-row: span 2;
}

/* ═══ FEATURED PROJECT SECTION ═══ */
.featured-project {
  background: var(--slate);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
  margin-bottom: 24px;
}

.fp-image {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.fp-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, transparent 70%, rgba(29,43,42,0.6) 100%);
}

.fp-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}

.fp-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fp-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fp-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green);
}

.fp-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #fff;
}

.fp-location {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.fp-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}

.fp-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.fp-spec-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.fp-spec-num em {
  font-size: 16px;
  color: var(--green);
  font-style: normal;
}

.fp-spec-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ═══ PROJECT STATS ROW ═══ */
.proj-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 60px;
}

.proj-stat {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s;
}

.proj-stat:hover {
  background: var(--canvas);
}

.proj-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.proj-stat-num em {
  font-size: 22px;
  color: var(--green);
  font-style: normal;
}

.proj-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.proj-stat-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ═══ BENTO RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .sports-showcase {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 240px repeat(5, 180px);
  }
  .bento-tile.featured {
    grid-column: span 3;
    grid-row: auto;
  }
  .proj-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .sports-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px repeat(7, 160px);
  }
  .bento-tile.featured {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .sports-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: 220px repeat(14, 140px);
    gap: 8px;
    margin-bottom: 32px;
  }
  .bento-tile.featured {
    grid-column: auto;
  }
  .bento-content {
    padding: 14px;
  }
  .bento-title {
    font-size: 20px;
  }
  .bento-tile.featured .bento-title {
    font-size: 30px;
  }
  .bento-desc {
    font-size: 11px;
    max-width: 100%;
  }
  .bento-arrow {
    width: 30px;
    height: 30px;
    top: 14px;
    right: 14px;
  }
  .proj-stats {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
  }
  .proj-stat {
    padding: 20px 16px;
  }
  .proj-stat-num {
    font-size: 32px;
  }
  .proj-stat-num em {
    font-size: 16px;
  }
}

/* ═══ SURFACE ANATOMY VISUALIZER ═══ */
.anatomy-section {
  background: var(--slate);
  color: #fff;
  padding: 80px 24px;
}

.anatomy-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.anatomy-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.anatomy-header .eyebrow {
  color: var(--green) !important;
}

.anatomy-header .section-h {
  color: #fff;
}

.anatomy-header .section-h em {
  color: var(--green);
}

.anatomy-header .section-body {
  color: rgba(255,255,255,0.6);
  max-width: 440px;
}

/* Surface tabs */
.anatomy-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow-x: auto;
  scrollbar-width: none;
}

.anatomy-tabs::-webkit-scrollbar { display: none; }

.anatomy-tab {
  padding: 14px 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
}

.anatomy-tab:hover {
  color: rgba(255,255,255,0.9);
}

.anatomy-tab.on {
  color: #fff;
  border-bottom-color: var(--green);
}

/* Main grid: info left, diagram right */
.anatomy-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: stretch;
}

/* Left: layer list */
.anatomy-info {
  display: flex;
  flex-direction: column;
}

.anatomy-subtitle {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
}

.anatomy-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.anatomy-layers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anatomy-layer {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.anatomy-layer:hover,
.anatomy-layer.active {
  background: rgba(255,255,255,0.08);
  border-left-color: var(--green);
  transform: translateX(4px);
}

.anatomy-layer-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  line-height: 1.5;
  min-width: 24px;
  flex-shrink: 0;
}

.anatomy-layer.active .anatomy-layer-num {
  color: var(--green);
}

.anatomy-layer-info {
  flex: 1;
  min-width: 0;
}

.anatomy-layer-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.anatomy-layer-spec {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.anatomy-layer-depth {
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1.5;
}

.anatomy-layer.active .anatomy-layer-depth {
  color: var(--green);
}

/* Right: visual cross-section */
.anatomy-visual {
  background: linear-gradient(180deg, #4a8bb5 0%, #8fbde0 15%, #c8dfee 25%);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.anatomy-stack {
  position: absolute;
  top: 10%;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.anatomy-visual-layer {
  position: relative;
  border-radius: 3px;
  transition: flex 0.4s var(--ease), opacity 0.3s, transform 0.3s, filter 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 12px;
  overflow: hidden;
  filter: saturate(1);
  background-size: cover;
  background-position: center;
}

.avl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.02) 60%);
  pointer-events: none;
}

.anatomy-visual-layer.dimmed {
  opacity: 0.4;
  filter: saturate(0.4);
}

.anatomy-visual-layer.highlighted {
  transform: scale(1.025);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 2;
  filter: saturate(1.1);
}

.avl-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* Bottom summary */
.anatomy-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.anatomy-sum-item {
  display: flex;
  flex-direction: column;
}

.anatomy-sum-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.anatomy-sum-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}

.anatomy-sum-value em {
  font-size: 18px;
  color: var(--green);
  font-style: normal;
}

.anatomy-sum-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ═══ ANATOMY RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .anatomy-grid {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }
  .anatomy-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .anatomy-section {
    padding: 48px 16px;
  }
  .anatomy-header {
    margin-bottom: 32px;
  }
  .anatomy-tabs {
    gap: 0;
  }
  .anatomy-tab {
    padding: 12px 14px;
    font-size: 11px;
  }
  .anatomy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .anatomy-subtitle {
    font-size: 22px;
  }
  .anatomy-tag {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .anatomy-visual {
    min-height: 360px;
    order: -1;
  }
  .anatomy-layer {
    padding: 12px 14px;
    gap: 12px;
  }
  .anatomy-layer-name {
    font-size: 13px;
  }
  .anatomy-layer-spec {
    font-size: 10px;
  }
  .anatomy-layer-depth {
    font-size: 13px;
  }
  .anatomy-summary {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
  }
  .anatomy-sum-value {
    font-size: 24px;
  }
  .anatomy-sum-value em {
    font-size: 14px;
  }
  .avl-label {
    font-size: 9px;
  }
}

/* ═══ SPORTS SURFACES (Products We Install) ═══ */
.ssurfaces-section {
  background: var(--slate);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.ssurfaces-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,212,154,0.15) 30%, rgba(196,168,112,0.15) 70%, transparent);
}
.ssurfaces-head {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.ssurfaces-head .eyebrow { color: var(--green) !important; }
.ssurfaces-head .eyebrow::before { background: var(--green); }
.ssurfaces-head .section-h { color: #fff; }
.ssurfaces-head .section-h em { color: var(--gold); }
.ssurfaces-head .section-body {
  max-width: 420px;
  color: rgba(255,255,255,0.55);
}

/* Category filter tabs */
.ssurfaces-tabs {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ssurfaces-tab {
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ssurfaces-tab:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.ssurfaces-tab.on {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.ssurfaces-tab-count {
  font-family: var(--font-display);
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  padding: 2px 7px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  letter-spacing: 0.06em;
}
.ssurfaces-tab:not(.on) .ssurfaces-tab-count {
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}

/* Ticker shell + track */
.ssurfaces-shell {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ssurfaces-scroll {
  display: flex;
  gap: 16px;
  padding: 0 0 4px;
  width: max-content;
  animation: tickerSlide 70s linear infinite;
  will-change: transform;
}
.ssurfaces-shell:hover .ssurfaces-scroll {
  animation-play-state: paused;
}

/* Each surface card */
.surface-card {
  flex: 0 0 280px;
  min-width: 0;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease), opacity 0.3s, box-shadow 0.4s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.surface-card[hidden] {
  display: none;
}
.surface-card.fade-out {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}
.surface-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.surface-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 35%, rgba(0,0,0,0.75) 100%);
  transition: background 0.3s;
}
.surface-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 20%, rgba(0,0,0,0.88) 100%);
}

.surface-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.surface-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tc);
}

.surface-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 2;
  color: #fff;
}
.surface-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.surface-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.surface-spec {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.surface-cert {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 8px;
  background: rgba(196,168,112,0.1);
  border: 1px solid rgba(196,168,112,0.2);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

@media (max-width: 640px) {
  .ssurfaces-section { padding: 56px 0; }
  .ssurfaces-head { margin-bottom: 24px; padding: 0 16px; }
  .ssurfaces-tabs { padding: 0 16px; margin-bottom: 24px; }
  .ssurfaces-tab { padding: 8px 14px; font-size: 11px; }
  .surface-card { flex: 0 0 240px; height: 340px; }
  .surface-card-link { flex: 0 0 240px; }
  .surface-name { font-size: 17px; }
}

/* ═══ NEW COMPACT PROCESS - Sports Page ═══ */
.process-compact {
  background: var(--white);
  padding: 80px 24px;
}

.process-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.process-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.process-head .section-body {
  max-width: 380px;
}

/* Step grid - compact horizontal cards */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

/* Connecting line behind cards */
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
  z-index: 0;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--green);
}

.process-card:hover .process-num-circle {
  background: var(--green);
  color: #fff;
}

.process-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-lt);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s var(--ease);
}

.process-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-step-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 12px;
}

.process-step-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-lt);
  padding: 4px 10px;
  border-radius: 99px;
}

/* Outcome strip below */
.process-outcomes {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.process-outcomes-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.process-outcomes-headline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.process-outcome-stat {
  text-align: left;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 24px;
}

.process-outcome-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.process-outcome-num em {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  margin-left: 2px;
}

.process-outcome-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.process-cta-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.process-cta-btn:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .process-outcomes {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .process-outcomes-headline {
    grid-column: span 2;
  }
  .process-outcome-stat:first-of-type {
    border-left: none;
    padding-left: 0;
  }
  .process-cta-btn {
    grid-column: span 2;
    justify-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .process-compact {
    padding: 48px 16px;
  }
  .process-head {
    margin-bottom: 28px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .process-card {
    padding: 16px 12px 18px;
  }
  .process-num-circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .process-step-title {
    font-size: 13px;
  }
  .process-step-desc {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .process-step-tag {
    font-size: 8px;
    padding: 3px 8px;
  }
  .process-outcomes {
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .process-outcomes-headline {
    font-size: 18px;
  }
  .process-outcome-stat {
    padding-left: 16px;
  }
  .process-outcome-num {
    font-size: 22px;
  }
  .process-outcome-num em {
    font-size: 13px;
  }
  .process-outcome-label {
    font-size: 10px;
  }
}

/* ═══════════════════════════════════════════════════════
   INTERIORS — All new sections
═══════════════════════════════════════════════════════ */

/* ─── 1. MATERIALS LIBRARY ─── */
.materials-section {
  background: var(--canvas);
  padding: 80px 0 80px 0;
  overflow: hidden;
}
.materials-head {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
}
.materials-head .section-body {
  max-width: 380px;
}
.materials-shell {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.materials-scroll {
  display: flex;
  gap: 16px;
  padding: 0 0 4px;
  width: max-content;
  animation: tickerSlide 60s linear infinite;
  will-change: transform;
}
.materials-shell:hover .materials-scroll {
  animation-play-state: paused;
}
@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.surface-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 0 0 280px;
  min-width: 0;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-family: var(--font-body);
}
.scroll-arrow:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}
.scroll-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.scroll-arrow.prev {
  left: 12px;
}
.scroll-arrow.next {
  right: 12px;
}
.scroll-arrow.dark {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}
.scroll-arrow.dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.material-card {
  flex: 0 0 200px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
}
.material-card:hover {
  transform: translateY(-4px);
}
.material-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.85) 100%);
  transition: background 0.3s;
}
.material-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(0,0,0,0.9) 100%);
}
.material-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 2;
  color: #fff;
}
.material-cat {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.material-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}
.material-spec {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ─── 2. SPACES WE DESIGN ─── */
.spaces-section {
  background: var(--white);
  padding: 80px 24px;
}
.spaces-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.spaces-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.spaces-head .section-body {
  max-width: 380px;
}
.spaces-filter {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--canvas);
  padding: 4px;
  border-radius: var(--radius-lg);
  width: fit-content;
}
.space-filter-btn {
  padding: 9px 18px;
  background: none;
  border: none;
  color: var(--mid);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.space-filter-btn:hover {
  color: var(--slate);
}
.space-filter-btn.on {
  background: var(--white);
  color: var(--slate);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.space-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease), opacity 0.3s;
}
.space-card.hidden {
  display: none;
}
.space-card.feature {
  grid-column: span 2;
  grid-row: span 2;
}
.space-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
  transition: background 0.3s;
}
.space-card:hover {
  transform: translateY(-3px);
}
.space-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(0,0,0,0.9) 100%);
}
.space-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 2;
  color: #fff;
}
.space-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 3px 8px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.space-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}
.space-card.feature .space-name {
  font-size: 32px;
}

/* ─── 3. DETAILS THAT SELL ─── */
.details-section {
  background: #0F1716;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.details-head {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}
.details-head .eyebrow {
  color: var(--gold) !important;
  justify-content: center;
}
.details-head .section-h {
  color: #fff;
}
.details-head .section-h em {
  color: var(--gold);
}
.details-head .section-body {
  max-width: 520px;
  margin: 12px auto 0;
  color: rgba(255,255,255,0.6);
}
.details-scroll {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 0 0 4px;
  position: relative;
}
.details-scroll-inner {
  display: flex;
  gap: 12px;
  animation: detailsTicker 40s linear infinite;
  will-change: transform;
}
.details-scroll:hover .details-scroll-inner {
  animation-play-state: paused;
}
@keyframes detailsTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.details-shell {
  position: relative;
  max-width: 100%;
}
.detail-card {
  flex: 0 0 320px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
}
.detail-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.92) 100%);
}
.detail-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #fff;
}
.detail-num {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.detail-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  color: #fff;
}

/* ─── 4. INTERIORS COMPACT PROCESS ─── */
.int-process {
  background: var(--slate);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.int-process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,212,154,0.2) 30%, rgba(196,168,112,0.2) 70%, transparent);
}
.int-process-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.int-process-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.int-process-head .eyebrow {
  color: var(--gold) !important;
}
.int-process-head .section-h {
  color: #fff;
}
.int-process-head .section-h em {
  color: var(--gold);
}
.int-process-head .section-body {
  max-width: 380px;
  color: rgba(255,255,255,0.5);
}
.int-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-bottom: 56px;
  position: relative;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.int-process-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(196,168,112,0.35) 15%, rgba(196,168,112,0.35) 85%, transparent 95%);
  z-index: 2;
  pointer-events: none;
}
.int-process-card {
  background: rgba(255,255,255,0.02);
  padding: 36px 28px 40px;
  text-align: left;
  position: relative;
  z-index: 1;
  transition: background 0.4s var(--ease);
  border-right: 1px solid rgba(255,255,255,0.04);
}
.int-process-card:last-child {
  border-right: none;
}
.int-process-card:hover {
  background: rgba(255,255,255,0.05);
}
.int-process-card:hover .int-step-title {
  color: var(--gold);
}
.int-num-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,112,0.45);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  transition: all 0.3s var(--ease);
}
.int-process-card:hover .int-num-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--slate);
}
.int-step-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.int-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}
.int-step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 12px;
  border-radius: 99px;
  transition: all 0.3s;
}
.int-process-card:hover .int-step-tag {
  border-color: rgba(196,168,112,0.3);
  color: var(--gold);
}

/* Trust strip below process */
.int-trust {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  align-items: center;
  gap: 32px;
}
.int-trust-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.int-trust-headline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}
.int-trust-stat {
  text-align: left;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 24px;
}
.int-trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.int-trust-num em {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  margin-left: 2px;
}
.int-trust-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.int-trust-cta {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.int-trust-cta:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
}

/* ─── 5. SIGNATURE EXPAND ─── */
.sig-card-new {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 480px;
  transition: all 0.4s var(--ease);
}
.sig-card-new .sig-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transition: filter 0.5s, transform 0.7s var(--ease);
}
.sig-card-new:hover .sig-photo {
  filter: brightness(0.4);
  transform: scale(1.05);
}
.sig-card-new .sig-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.sig-num-new {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.sig-name-new {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.sig-desc-new {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.sig-card-new:hover .sig-desc-new {
  max-height: 100px;
  opacity: 1;
  margin-bottom: 16px;
}
.sig-palette-new {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.sig-col-new {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}
.sig-cta-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  width: fit-content;
}
.sig-card-new:hover .sig-cta-new {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .spaces-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .space-card.feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .int-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }
  .int-process-steps::before {
    display: none;
  }
  .int-process-card {
    padding: 28px 22px 32px;
    border-right: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .int-process-card:nth-child(3n) {
    border-right: none;
  }
  .int-process-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .int-trust {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .int-trust-headline { grid-column: span 2; }
  .int-trust-stat:first-of-type { border-left: none; padding-left: 0; }
  .int-trust-cta { grid-column: span 2; justify-self: stretch; }
}

@media (max-width: 640px) {
  .materials-section, .spaces-section, .details-section, .int-process {
    padding: 48px 0;
  }
  .materials-head, .spaces-head, .int-process-head {
    padding: 0 16px;
    margin-bottom: 24px;
  }
  .materials-scroll {
    padding: 0 16px 16px;
  }
  .material-card {
    flex: 0 0 160px;
    height: 230px;
  }
  .material-name {
    font-size: 16px;
  }
  .spaces-section {
    padding: 48px 16px;
  }
  .spaces-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .space-card.feature {
    grid-column: span 2;
    grid-row: span 1;
  }
  .space-info {
    padding: 12px;
  }
  .space-name {
    font-size: 16px;
  }
  .space-card.feature .space-name {
    font-size: 22px;
  }
  .details-head {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  .details-scroll {
    overflow: hidden;
    padding: 0;
  }
  .details-scroll-inner {
    animation: detailsTicker 32s linear infinite;
  }
  .detail-card {
    flex: 0 0 260px;
    height: 340px;
  }
  .detail-title {
    font-size: 16px;
  }
  .int-process {
    padding: 56px 16px;
  }
  .int-process-head {
    margin-bottom: 32px;
  }
  .int-process-steps {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-bottom: 32px;
  }
  .int-process-card {
    padding: 24px 20px 28px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 16px;
    text-align: left;
    align-items: start;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .int-process-card:last-child {
    border-bottom: none;
  }
  .int-num-circle {
    width: 36px;
    height: 36px;
    font-size: 12px;
    margin: 0;
    grid-row: 1 / span 3;
    align-self: start;
  }
  .int-step-title { font-size: 15px; margin-bottom: 4px; grid-column: 2; }
  .int-step-desc { font-size: 13px; line-height: 1.5; margin-bottom: 8px; grid-column: 2; color: rgba(255,255,255,0.4); }
  .int-step-tag { font-size: 9px; padding: 4px 10px; grid-column: 2; justify-self: start; }
  .int-trust {
    padding: 28px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
  }
  .int-trust-headline { font-size: 22px; grid-column: span 2; color: #fff; }
  .int-trust-label { font-size: 9px; color: var(--gold); }
  .int-trust-stat { padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.08); }
  .int-trust-stat:first-of-type { border-left: none; padding-left: 0; }
  .int-trust-num { font-size: 28px; color: #fff; }
  .int-trust-num em { font-size: 13px; color: var(--gold); }
  .int-trust-stat-label { font-size: 10px; color: rgba(255,255,255,0.45); }
  .int-trust-cta { grid-column: span 2; justify-self: stretch; padding: 14px 20px; font-size: 13px; }
  .sig-name-new { font-size: 28px; }
  .sig-card-new .sig-overlay { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════
   BUILD — Project Types, Packages, Process
═══════════════════════════════════════════════════════ */

/* ─── PROJECT TYPES ─── */
.btypes-section {
  background: var(--white);
  padding: 80px 24px;
}
.btypes-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.btypes-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.btypes-head .section-body {
  max-width: 380px;
}
.btypes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.btype-card {
  position: relative;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
}
.btype-card:hover {
  transform: translateY(-4px);
}
.btype-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.92) 100%);
  transition: background 0.3s;
}
.btype-card:hover::after {
  background: linear-gradient(180deg, rgba(26,95,168,0.2) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95) 100%);
}
.btype-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.btype-tag {
  align-self: flex-start;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: var(--radius);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}
.btype-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.btype-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 14px;
}
.btype-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.btype-price-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-right: 4px;
}
.btype-price-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.btype-price-num em {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  margin-left: 2px;
}

/* ─── CONSTRUCTION PACKAGES ─── */
.packages-section {
  background: var(--canvas);
  padding: 80px 24px;
}
.packages-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.packages-head {
  text-align: center;
  margin-bottom: 24px;
}
.packages-head .eyebrow {
  color: var(--blue) !important;
  justify-content: center;
}
.packages-head .section-body {
  max-width: 540px;
  margin: 12px auto 0;
}
.packages-toggle {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: var(--radius-lg);
  width: fit-content;
  margin: 0 auto 40px;
}
.pkg-toggle-btn {
  padding: 9px 18px;
  background: none;
  border: none;
  color: var(--mid);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.pkg-toggle-btn:hover { color: var(--slate); }
.pkg-toggle-btn.on {
  background: var(--blue);
  color: #fff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.pkg-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 12px 40px rgba(26,95,168,0.12);
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.pkg-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
}
.pkg-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.pkg-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-bottom: 8px;
}
.pkg-tagline {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
  margin-bottom: 24px;
}
.pkg-price-block {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pkg-price-currency {
  font-size: 16px;
  color: var(--mid);
  font-weight: 600;
}
.pkg-price-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--slate);
  line-height: 1;
  letter-spacing: 0.01em;
}
.pkg-price-unit {
  font-size: 13px;
  color: var(--muted);
  margin-left: 6px;
}
.pkg-price-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pkg-feat {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}
.pkg-feat-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.pkg-cta {
  width: 100%;
  padding: 14px 20px;
  background: var(--white);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
}
.pkg-card.featured .pkg-cta {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.pkg-cta:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.pkg-card.featured .pkg-cta:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
}

/* What's included strip */
.pkg-included {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
.pkg-included-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.3;
}
.pkg-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
}
.pkg-included-item {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--mid);
}
.pkg-included-item::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
}

/* ─── BUILD COMPACT PROCESS ─── */
.bld-process {
  background: var(--white);
  padding: 80px 24px;
}
.bld-process-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.bld-process-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.bld-process-head .section-body {
  max-width: 380px;
}
.bld-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}
.bld-process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
  z-index: 0;
}
.bld-process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.bld-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--blue);
}
.bld-process-card:hover .bld-num-circle {
  background: var(--blue);
  color: #fff;
}
.bld-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s var(--ease);
}
.bld-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
}
.bld-step-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 12px;
}
.bld-step-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lt);
  padding: 4px 10px;
  border-radius: 99px;
}

.bld-trust {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  align-items: center;
  gap: 32px;
}
.bld-trust-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.bld-trust-headline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}
.bld-trust-stat {
  text-align: left;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 24px;
}
.bld-trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.bld-trust-num em {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  margin-left: 2px;
}
.bld-trust-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.bld-trust-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.bld-trust-cta:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
}

/* ─── BUILD RESPONSIVE ─── */
@media (max-width: 1024px) {
  .btypes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .pkg-included {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pkg-included-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bld-process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .bld-process-steps::before { display: none; }
  .bld-trust {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .bld-trust-headline { grid-column: span 2; }
  .bld-trust-stat:first-of-type { border-left: none; padding-left: 0; }
  .bld-trust-cta { grid-column: span 2; justify-self: stretch; }
}

@media (max-width: 640px) {
  .btypes-section, .packages-section, .bld-process {
    padding: 48px 16px;
  }
  .btypes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .btype-card { height: 280px; }
  .btype-content { padding: 18px; }
  .btype-name { font-size: 22px; }
  .btype-desc { font-size: 11px; }
  .btype-price-num { font-size: 18px; }
  
  .packages-toggle {
    margin-bottom: 28px;
  }
  .pkg-toggle-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
  .pkg-card { padding: 24px 20px; }
  .pkg-name { font-size: 22px; }
  .pkg-price-num { font-size: 32px; }
  .pkg-included {
    padding: 20px;
  }
  .pkg-included-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .bld-process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .bld-process-card {
    padding: 16px 12px 18px;
  }
  .bld-num-circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .bld-step-title { font-size: 13px; }
  .bld-step-desc { font-size: 11px; }
  .bld-trust {
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .bld-trust-headline { font-size: 18px; }
  .bld-trust-stat { padding-left: 16px; }
  .bld-trust-num { font-size: 22px; }
  .bld-trust-num em { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════
   PAINTS — Color of the Year, Inspiration, Palettes, Textures, Process
═══════════════════════════════════════════════════════ */

/* ─── COLOR OF THE YEAR FEATURE ─── */
.coty-section {
  background: #F8F8F5;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.coty-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.coty-content {
  position: relative;
  z-index: 2;
}
.coty-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.coty-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
}
.coty-pantone-code {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mid);
  margin-bottom: 12px;
}
.coty-name {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 84px);
  font-style: italic;
  font-weight: 300;
  color: var(--slate);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.coty-name strong {
  font-style: normal;
  font-weight: 400;
}
.coty-year {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--mid);
  margin-bottom: 28px;
}
.coty-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--red);
}
.coty-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.coty-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.coty-meta-item {
  display: flex;
  flex-direction: column;
}
.coty-meta-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.coty-meta-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}

.coty-visual {
  position: relative;
  aspect-ratio: 1 / 1.15;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #F8F8F5;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  transition: background 0.6s var(--ease);
}
.coty-swatch {
  position: absolute;
  inset: 0;
  transition: background 0.6s var(--ease);
}
.coty-swatch-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  padding: 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.coty-swatch-hex {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-bottom: 4px;
}
.coty-swatch-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.coty-corner-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ─── 10-YEAR HISTORY RIBBON ─── */
.coty-history {
  grid-column: 1 / -1;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.coty-history-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.coty-history-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.coty-history-ribbon {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
}
.coty-chip {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  transition: transform 0.25s var(--ease);
}
.coty-chip:hover {
  transform: translateY(-4px);
}
.coty-chip-swatch {
  height: 56px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.coty-chip.active .coty-chip-swatch {
  height: 72px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
  outline: 2px solid var(--slate);
  outline-offset: 3px;
}
.coty-chip-year {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  transition: color 0.3s;
}
.coty-chip.active .coty-chip-year {
  color: var(--slate);
  font-weight: 700;
}
.coty-chip-name {
  font-size: 9px;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.3s;
  font-style: italic;
}
.coty-chip.active .coty-chip-name,
.coty-chip:hover .coty-chip-name {
  opacity: 1;
}

/* ─── TRENDING PALETTES ─── */
.palettes-section {
  background: var(--white);
  padding: 80px 24px;
}
.palettes-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.palettes-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.palettes-head .section-body {
  max-width: 380px;
}
.palettes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.palette-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.palette-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--red);
}
.palette-swatches {
  display: flex;
  height: 220px;
}
.palette-swatch {
  flex: 1;
  position: relative;
  transition: flex 0.3s var(--ease);
  cursor: pointer;
}
.palette-card:hover .palette-swatch:hover {
  flex: 2;
}
.palette-swatch-hex {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.25s;
  white-space: nowrap;
}
.palette-swatch:hover .palette-swatch-hex {
  opacity: 1;
}
.palette-swatch.dark .palette-swatch-hex {
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.3);
}
.palette-match-hint {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.7;
  transition: all 0.25s var(--ease);
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.palette-swatch:hover .palette-match-hint {
  opacity: 1;
  transform: scale(1.1);
  background: var(--red);
  color: #fff;
}
.palette-info {
  padding: 18px 20px;
}
.palette-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 4px;
}
.palette-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.55;
}

/* ─── COLOR MATCH MODAL ─── */
.match-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.match-modal.on {
  display: flex;
  animation: fadeIn 0.25s var(--ease);
}
.match-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
}
.match-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  animation: slideUpFade 0.3s var(--ease);
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.match-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border: none;
  font-size: 20px;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.match-close:hover {
  background: #fff;
}
.match-hero {
  height: 180px;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.match-hero-info {
  position: absolute;
  bottom: 20px;
  left: 28px;
  right: 28px;
  color: #fff;
}
.match-hero-info.dark { color: var(--slate); }
.match-hero-info.dark .match-hex {
  color: rgba(0,0,0,0.7);
  background: rgba(255,255,255,0.4);
}
.match-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 6px;
}
.match-hex {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}
.match-body {
  padding: 28px 32px 28px;
}
.match-intro {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.match-intro strong {
  color: var(--slate);
  font-weight: 600;
}
.match-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.match-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s;
}
.match-item:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateX(4px);
}
.match-swatch-preview {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.match-brand-info { min-width: 0; }
.match-brand-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.match-shade {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.3;
}
.match-code {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.06em;
  background: var(--red-lt);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.match-cta {
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--slate);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.match-cta-text {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
.match-cta-text strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 400;
}
.match-cta-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.match-cta-btn:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
}
.match-note {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 640px) {
  .match-body { padding: 20px 20px 24px; }
  .match-hero-info { left: 20px; right: 20px; }
  .match-name { font-size: 22px; }
  .match-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
  .match-swatch-preview { width: 40px; height: 40px; }
  .match-code {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
    font-size: 10px;
  }
  .match-cta { flex-direction: column; align-items: stretch; }
  .match-cta-btn { width: 100%; }
}

/* ─── INSPIRATION GALLERY ─── */
.insp-section {
  background: var(--canvas);
  padding: 80px 24px;
}
.insp-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.insp-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.insp-head .section-body {
  max-width: 380px;
}
.insp-filter {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--white);
  padding: 4px;
  border-radius: var(--radius-lg);
  width: fit-content;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.insp-filter-btn {
  padding: 9px 16px;
  background: none;
  border: none;
  color: var(--mid);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.insp-filter-btn:hover { color: var(--slate); }
.insp-filter-btn.on {
  background: var(--red);
  color: #fff;
}

.insp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
}
.insp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.insp-card.hidden { display: none; }
.insp-card.feature {
  grid-column: span 2;
  grid-row: span 2;
}
.insp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  transition: background 0.3s;
}
.insp-card:hover {
  transform: translateY(-3px);
}
.insp-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(0,0,0,0.92) 100%);
}
.insp-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  z-index: 2;
  color: #fff;
}
.insp-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 3px 8px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.insp-color-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
}
.insp-card.feature .insp-color-name {
  font-size: 26px;
}
.insp-brand {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.insp-swatch-dot {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ─── TEXTURE & FINISH ─── */
.tex-section {
  background: var(--slate);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.tex-head {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.tex-head .eyebrow {
  color: var(--red) !important;
}
.tex-head .section-h {
  color: #fff;
}
.tex-head .section-h em {
  color: var(--red);
}
.tex-head .section-body {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-top: 12px;
}
.tex-shell {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.tex-scroll {
  display: flex;
  gap: 14px;
  padding: 0 0 4px;
  width: max-content;
  animation: tickerSlide 55s linear infinite;
  will-change: transform;
}
.tex-shell:hover .tex-scroll {
  animation-play-state: paused;
}
.tex-scroll::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}
.tex-card {
  flex: 0 0 220px;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.tex-card:hover {
  transform: translateY(-4px);
}
.tex-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.92) 100%);
}
.tex-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 2;
  color: #fff;
}
.tex-num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.tex-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.tex-spec {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ─── PAINTS COMPACT PROCESS ─── */
.pnt-process {
  background: var(--white);
  padding: 80px 24px;
}
.pnt-process-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.pnt-process-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.pnt-process-head .section-body {
  max-width: 380px;
}
.pnt-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}
.pnt-process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
  z-index: 0;
}
.pnt-process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.pnt-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--red);
}
.pnt-process-card:hover .pnt-num-circle {
  background: var(--red);
  color: #fff;
}
.pnt-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-lt);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s var(--ease);
}
.pnt-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
}
.pnt-step-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 12px;
}
.pnt-step-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-lt);
  padding: 4px 10px;
  border-radius: 99px;
}

.pnt-trust {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  align-items: center;
  gap: 32px;
}
.pnt-trust-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.pnt-trust-headline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}
.pnt-trust-stat {
  text-align: left;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 24px;
}
.pnt-trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.pnt-trust-num em {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  margin-left: 2px;
}
.pnt-trust-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.pnt-trust-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.pnt-trust-cta:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
}

/* ─── PAINTS RESPONSIVE ─── */
@media (max-width: 1024px) {
  .coty-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .coty-visual {
    aspect-ratio: 1.4 / 1;
  }
  .palettes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pnt-process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .pnt-process-steps::before { display: none; }
  .pnt-trust {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .pnt-trust-headline { grid-column: span 2; }
  .pnt-trust-stat:first-of-type { border-left: none; padding-left: 0; }
  .pnt-trust-cta { grid-column: span 2; justify-self: stretch; }
}

@media (max-width: 640px) {
  .coty-section, .palettes-section, .insp-section, .tex-section, .pnt-process {
    padding: 48px 16px;
  }
  .tex-section { padding: 48px 0; }
  .tex-head { padding: 0 16px; }
  .tex-scroll { padding: 0 16px 4px; }
  
  .coty-name { font-size: 44px; }
  .coty-quote { font-size: 15px; }
  .coty-meta { gap: 20px; flex-wrap: wrap; }
  .coty-visual { aspect-ratio: 1.1 / 1; }
  .coty-history { margin-top: 40px; padding-top: 24px; }
  .coty-history-ribbon {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .coty-chip-swatch { height: 44px; }
  .coty-chip.active .coty-chip-swatch { height: 54px; }
  .coty-chip-year { font-size: 10px; }
  .coty-chip-name { font-size: 8px; }
  
  .palettes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .palette-swatches { height: 160px; }
  
  .insp-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
  }
  .insp-filter-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
  .insp-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .insp-card.feature {
    grid-column: span 2;
    grid-row: span 1;
  }
  .insp-info { padding: 12px; }
  .insp-color-name { font-size: 14px; }
  .insp-card.feature .insp-color-name { font-size: 18px; }
  .insp-brand { font-size: 10px; }
  
  .tex-card { flex: 0 0 180px; height: 260px; }
  .tex-name { font-size: 15px; }
  
  .pnt-process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .pnt-process-card { padding: 16px 12px 18px; }
  .pnt-num-circle { width: 36px; height: 36px; font-size: 14px; }
  .pnt-step-title { font-size: 13px; }
  .pnt-step-desc { font-size: 11px; }
  .pnt-trust {
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pnt-trust-headline { font-size: 18px; }
  .pnt-trust-stat { padding-left: 16px; }
  .pnt-trust-num { font-size: 22px; }
  .pnt-trust-num em { font-size: 13px; }
}

/* ─── HOME ENQUIRY — Real conversation starter ─── */
.home-enquiry {
  background: var(--canvas);
  padding: 120px 24px;
  position: relative;
}
.he-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* LEFT — Editorial copy */
.he-left {
  position: sticky;
  top: 120px;
}
.he-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.he-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green);
}
.he-head {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--slate);
  margin-bottom: 24px;
}
.he-head strong {
  font-weight: 500;
  font-style: normal;
}
.he-head em {
  font-style: italic;
  color: var(--green);
}
.he-desc {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 420px;
}
.he-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 380px;
}
.he-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.he-meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.he-meta-text {
  flex: 1;
  min-width: 0;
}
.he-meta-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.he-meta-value {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}
.he-meta-value a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.he-meta-value a:hover { color: var(--green); }

/* RIGHT — The form */
.he-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 44px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.he-form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.he-form-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(45,122,79,0.15);
  animation: hePulse 2s ease-in-out infinite;
}
@keyframes hePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(45,122,79,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(45,122,79,0.05); }
}

/* Division picker */
.he-divisions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.he-div-chip {
  padding: 14px 18px;
  background: var(--canvas);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
}
.he-div-chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dc);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.he-div-chip-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}
.he-div-chip:hover {
  background: var(--white);
  border-color: var(--dc);
}
.he-div-chip.on {
  background: var(--white);
  border-color: var(--dc);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.he-div-chip.on .he-div-chip-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dc) 20%, transparent);
}

/* Form rows */
.he-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.he-field {
  position: relative;
}
.he-input, .he-textarea {
  width: 100%;
  background: var(--canvas);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate);
  transition: all 0.25s;
  resize: none;
}
.he-input::placeholder, .he-textarea::placeholder {
  color: var(--muted);
}
.he-input:focus, .he-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45,122,79,0.08);
}
.he-textarea {
  min-height: 100px;
  margin-bottom: 24px;
}

/* Submit row */
.he-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.he-submit-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.he-submit-note strong {
  color: var(--slate);
  font-weight: 600;
}
.he-submit {
  background: var(--slate);
  color: #fff;
  border: none;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.he-submit:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.he-submit svg { transition: transform 0.25s; }
.he-submit:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .home-enquiry { padding: 80px 24px; }
  .he-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .he-left {
    position: static;
  }
  .he-form { padding: 32px 28px; }
  .he-row { grid-template-columns: 1fr; }
  .he-submit-row { flex-direction: column; align-items: stretch; }
  .he-submit { justify-content: center; }
}
@media (max-width: 640px) {
  .home-enquiry { padding: 64px 16px; }
  .he-head { font-size: 36px; }
  .he-desc { font-size: 15px; }
  .he-divisions { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — Full-Bleed Editorial Hero
═══════════════════════════════════════════════════════ */
.exalt-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 900px;
  overflow: hidden;
  background: var(--slate);
  color: #fff;
}

/* Background image stack */
.eh-bg-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.eh-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s var(--ease), transform 8s ease-out;
  will-change: opacity, transform;
  overflow: hidden;
}
.eh-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.eh-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Gradient veils for readability */
.eh-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(29,43,42,0.45) 0%, rgba(29,43,42,0.15) 35%, rgba(29,43,42,0.85) 100%),
    linear-gradient(90deg, rgba(29,43,42,0.5) 0%, rgba(29,43,42,0) 50%);
}

/* Cinematic vignette overlay */
.eh-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(10,18,16,0.55) 100%);
  mix-blend-mode: multiply;
}

/* Accessibility: respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  .eh-slide video { display: none; }
  .eh-slide[data-div="sports"]   { background: url('poster_sports.jpg') center/cover no-repeat; }
  .eh-slide[data-div="interiors"] { background: url('poster_interiors.jpg') center/cover no-repeat; }
  .eh-slide[data-div="paints"]    { background: url('poster_paints.jpg') center/cover no-repeat; }
  .eh-slide[data-div="build"]     { background: url('poster_build.jpg') center/cover no-repeat; }
}

/* Content block — centered vertically, left-aligned */
.eh-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 140px 72px 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  pointer-events: none;
}
.eh-content > * { pointer-events: auto; }

.eh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  width: fit-content;
  opacity: 0;
  animation: ehIn 0.9s 0.2s var(--ease) forwards;
}
.eh-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.55);
}

.eh-headline {
  font-family: var(--font-serif);
  font-size: clamp(60px, 8vw, 128px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 900px;
  opacity: 0;
  animation: ehIn 1s 0.35s var(--ease) forwards;
}
.eh-headline strong {
  font-weight: 400;
  font-style: normal;
  display: block;
}
.eh-headline em {
  font-style: italic;
  font-weight: 300;
  display: block;
  color: rgba(255,255,255,0.96);
}

.eh-tagline {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 20px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: ehIn 1s 0.5s var(--ease) forwards;
}

.eh-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: ehIn 1s 0.65s var(--ease) forwards;
}
.eh-cta-primary {
  background: #fff;
  color: var(--slate);
  border: none;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eh-cta-primary:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.eh-cta-secondary {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
  padding: 14.5px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s;
}
.eh-cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* Division strip — pinned to bottom */
.eh-divisions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(15,23,22,0.6);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.eh-div-tile {
  position: relative;
  padding: 24px 28px 26px;
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 148px;
}
.eh-div-tile:last-child { border-right: none; }
.eh-div-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--dc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.eh-div-tile:hover,
.eh-div-tile.active {
  background: rgba(255,255,255,0.05);
}
.eh-div-tile.active::before {
  transform: scaleX(1);
}
.eh-div-tile:hover::before {
  transform: scaleX(1);
}

.eh-div-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px;
}
.eh-div-num {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
}
.eh-div-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dc);
  box-shadow: 0 0 8px var(--dc);
  opacity: 0;
  transition: opacity 0.25s;
}
.eh-div-tile.active .eh-div-dot {
  opacity: 1;
}

.eh-div-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.eh-div-desc {
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.eh-div-arrow {
  position: absolute;
  bottom: 22px;
  right: 26px;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s var(--ease);
  font-size: 14px;
}
.eh-div-tile:hover .eh-div-arrow {
  color: var(--dc);
  transform: translateX(4px);
}

/* Scroll cue */
.eh-scroll-cue {
  position: absolute;
  top: 50%;
  right: 32px;
  z-index: 2;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
  opacity: 0;
  animation: ehIn 1s 1.2s var(--ease) forwards;
}

@keyframes ehIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

/* Enhanced hero headline letter animation */
.eh-headline .eh-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotateX(15deg);
  animation: ehWordIn 1.1s var(--ease) forwards;
}
@keyframes ehWordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}
.eh-headline .eh-word:nth-child(1) { animation-delay: 0.30s; }
.eh-headline .eh-word:nth-child(2) { animation-delay: 0.42s; }
.eh-headline .eh-word:nth-child(3) { animation-delay: 0.54s; }

/* Hero background ken-burns on load */
.eh-slide.active {
  animation: ehKenBurns 12s ease-out forwards;
}
@keyframes ehKenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .exalt-hero {
    min-height: 640px;
    height: 92vh;
  }
  .eh-content {
    padding: 120px 40px 220px;
  }
  .eh-divisions {
    grid-template-columns: 1fr 1fr;
  }
  .eh-div-tile {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .eh-div-tile:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .eh-div-tile:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .eh-scroll-cue { display: none; }
}

@media (max-width: 640px) {
  .exalt-hero {
    height: auto;
    min-height: 600px;
    max-height: none;
  }
  .eh-content {
    padding: 96px 20px 48px;
    position: relative;
    inset: auto;
    min-height: 92vh;
  }
  .eh-headline {
    font-size: 44px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .eh-tagline {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.55;
    max-width: 100%;
  }
  .eh-eyebrow { font-size: 9px; letter-spacing: 0.2em; margin-bottom: 20px; }
  .eh-eyebrow::before { width: 20px; }
  .eh-ctas { flex-direction: column; align-items: stretch; }
  .eh-cta-primary, .eh-cta-secondary { justify-content: center; }
  .eh-divisions {
    position: relative;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .eh-div-tile {
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    min-height: 90px;
    padding: 16px 18px 18px;
  }
  .eh-div-tile:nth-child(2) { border-right: none; }
  .eh-div-tile:nth-last-child(-n+2) { border-bottom: none; }
  .eh-div-name { font-size: 14px; }
  .eh-div-desc { font-size: 10px; }
  .eh-div-num { font-size: 9px; }
  .eh-div-arrow { display: none; }
}

/* ─── Division Band Section (merged Why Exalt + Hero Tiles) ─── */
.div-band-section {
  background: var(--slate);
  color: #fff;
}

/* Intro strip above the bands */
.div-band-intro {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.db-intro-left { }
.db-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.db-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green);
}
.db-head {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}
.db-head strong {
  font-weight: 500;
  font-style: normal;
}
.db-head em {
  font-style: italic;
  color: var(--green);
}
.db-intro-p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

/* The photo wall */
.div-band-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 580px;
  position: relative;
  overflow: hidden;
}
.db-band {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex 0.5s var(--ease);
}
.db-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bc);
  mix-blend-mode: multiply;
  opacity: 0.65;
  transition: opacity 0.5s var(--ease);
  z-index: 1;
}
.db-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
  transition: opacity 0.5s var(--ease);
}
.db-band:hover::before { opacity: 0.35; }
.db-band:hover::after { opacity: 0.5; }

.db-band-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.db-band-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.db-band-num {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
}
.db-band-phase {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius);
}
.db-band-bottom { }
.db-band-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}
.db-band-desc {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
  margin-bottom: 18px;
  max-width: 200px;
}
.db-band-stat {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.db-band-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 48px);
  color: #fff;
  line-height: 1;
  font-weight: 400;
}
.db-band-stat-num em {
  font-size: 0.5em;
  font-style: normal;
  color: rgba(255,255,255,0.7);
  margin-left: 3px;
  letter-spacing: 0.04em;
}
.db-band-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* Caption band */
.div-band-caption {
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.db-caption-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  max-width: 880px;
  margin: 0 auto 12px;
  letter-spacing: -0.01em;
}
.db-caption-text em {
  color: var(--green);
  font-style: italic;
}
.db-caption-text strong {
  font-style: normal;
  font-weight: 500;
}
.db-caption-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}
.db-caption-sub strong {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .div-band-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 32px 48px;
  }
  .div-band-wall {
    grid-template-columns: 1fr 1fr;
    height: 880px;
  }
  .db-band-content { padding: 28px 24px; }
}
@media (max-width: 640px) {
  .div-band-intro { padding: 40px 20px 28px; }
  .db-head { font-size: 32px; }
  .db-intro-p { font-size: 14px; }
  .div-band-wall {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    height: auto;
  }
  .db-band { height: 200px; }
  .db-band-content { padding: 20px 16px; }
  .db-band-label { font-size: 9px; }
  .db-band-head { font-size: 18px; }
  .db-band-desc { font-size: 11px; }
  .div-band-caption { padding: 28px 20px; }
  .db-caption-text { font-size: 18px; }
}

/* Bottom stats — confident credential strip */
.eh-stats-bar {
  background: var(--slate);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.eh-stats-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #6FD49A, #C4A870, #F0A080, #8DC8F0);
}
.eh-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 36px 56px 36px 60px;
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  align-items: center;
  gap: 48px;
}
.eh-stats-lead {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.eh-stats-lead-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.eh-stats-lead-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.eh-stats-lead-title strong {
  font-style: normal;
  font-weight: 500;
  color: var(--green);
}
.eh-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  border: none;
  transition: transform 0.3s var(--ease);
}
.eh-stat:hover {
  transform: translateY(-3px);
}
.eh-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 400;
  display: flex;
  align-items: baseline;
}
.eh-stat-num em {
  font-size: 20px;
  color: var(--green);
  font-style: normal;
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.eh-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eh-stat-label::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .eh-stats-inner {
    grid-template-columns: 1fr 1fr;
    padding: 28px 32px 28px 36px;
    gap: 28px;
  }
  .eh-stats-lead {
    grid-column: span 2;
    padding-right: 0;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .eh-stat-num { font-size: 36px; }
  .eh-stat-num em { font-size: 16px; }
}
@media (max-width: 640px) {
  .eh-stats-inner { padding: 24px 20px 24px 24px; gap: 22px; }
  .eh-stats-lead-title { font-size: 17px; }
  .eh-stat-num { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — New sections (Pillars, Bento, Integration, Projects)
═══════════════════════════════════════════════════════ */

/* ─── B: WHY EXALT — Split Photo ─── */
.pillars-section {
  background: var(--slate);
  color: #fff;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.pillars-head {
  max-width: 820px;
  margin: 0 auto 72px;
  padding: 0 40px;
  text-align: center;
}
.pillars-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.pillars-eyebrow::before,
.pillars-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green);
}
.pillars-hero-h {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}
.pillars-hero-h strong {
  font-weight: 500;
  font-style: normal;
}
.pillars-hero-h em {
  font-style: italic;
  color: var(--green);
}
.pillars-manifest-p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* The split photo wall — 4 vertical bands */
.split-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 560px;
  position: relative;
  overflow: hidden;
}

.split-band {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex 0.5s var(--ease);
}

/* Colored tint overlay — each division has its signature color */
.split-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bc);
  mix-blend-mode: multiply;
  opacity: 0.65;
  transition: opacity 0.5s var(--ease);
  z-index: 1;
}

/* Darker gradient for text readability */
.split-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.75) 100%);
  z-index: 2;
  transition: opacity 0.5s var(--ease);
}

.split-band:hover::before {
  opacity: 0.4;
}
.split-band:hover::after {
  opacity: 0.6;
}

/* Content inside each band */
.split-band-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.split-band-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.split-band-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
}
.split-band-phase {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius);
}

.split-band-bottom { }
.split-band-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 400;
}
.split-band-stat {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.3);
}
.split-band-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 52px);
  color: #fff;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 6px;
}
.split-band-stat-num em {
  font-size: 0.5em;
  font-style: normal;
  color: rgba(255,255,255,0.7);
  margin-left: 3px;
  letter-spacing: 0.04em;
}
.split-band-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Center caption strip overlaid on the photo wall */
.split-caption {
  background: var(--slate);
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- Merged flow sub-block (replaces standalone Integration section) --- */
.split-flow {
  background: var(--slate);
  padding: 64px 40px 72px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.split-flow-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.split-flow-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.split-flow-label::before,
.split-flow-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.split-flow-label strong {
  color: var(--green);
  font-weight: 700;
}

.split-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 0;
}
.sf-step {
  padding: 0 8px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.sf-step:hover { transform: translateY(-4px); }

.sf-step-num {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.sf-step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sc);
  margin-bottom: 14px;
  box-shadow: 0 0 0 4px rgba(255,255,255,0);
  transition: box-shadow 0.3s;
}
.sf-step:hover .sf-step-dot {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sc) 25%, transparent);
}
.sf-step-name {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 6px;
}
.sf-step-outcome {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.25;
}
.sf-step-outcome strong {
  font-style: normal;
  font-weight: 500;
  color: var(--sc);
}

.sf-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 18px;
  font-weight: 300;
  align-self: center;
  padding-top: 22px;
}

/* Final arrow → Exalt marker at end */
.sf-end {
  padding-left: 24px;
  padding-top: 22px;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.sf-end-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
}
.sf-end-mark {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--green);
  line-height: 1;
}
.sf-end-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  font-family: var(--font-serif);
}

@media (max-width: 900px) {
  .split-flow { padding: 48px 24px 56px; }
  .split-flow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
  .sf-arrow { display: none; }
  .sf-end {
    grid-column: span 2;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 0 0;
    margin-top: 8px;
  }
}
@media (max-width: 640px) {
  .split-flow-steps { grid-template-columns: 1fr; gap: 24px; }
  .sf-end { grid-column: span 1; }
}

.split-caption-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  max-width: 880px;
  margin: 0 auto 14px;
  letter-spacing: -0.01em;
}
.split-caption-text em {
  color: var(--green);
  font-style: italic;
}
.split-caption-text strong {
  font-style: normal;
  font-weight: 500;
}
.split-caption-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}
.split-caption-sub strong {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .pillars-head { padding: 0 24px; margin-bottom: 56px; }
  .split-wall {
    grid-template-columns: 1fr 1fr;
    height: 880px;
  }
  .split-band-content { padding: 28px 24px; }
}

@media (max-width: 640px) {
  .pillars-section { padding: 72px 0 0; }
  .pillars-head { padding: 0 20px; margin-bottom: 40px; }
  .pillars-hero-h { font-size: 42px; }
  .pillars-manifest-p { font-size: 16px; }
  .split-wall {
    grid-template-columns: 1fr;
    height: auto;
  }
  .split-band {
    height: 280px;
  }
  .split-band-content { padding: 24px 20px; }
  .split-caption { padding: 36px 24px; }
  .split-caption-text { font-size: 20px; }
}

/* ─── A: EDITORIAL BENTO DIVISIONS ─── */
.divisions-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(3, 220px);
  gap: 14px;
}
.div-bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.div-bento-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.div-bento-content {
  pointer-events: none;
}
.div-bento-arrow {
  pointer-events: auto;
  position: relative;
  z-index: 3;
}
.div-bento-card.featured {
  grid-column: 1;
  grid-row: 1 / span 3;
}
.div-bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.92) 100%);
  transition: background 0.3s;
}
.div-bento-card:hover {
  transform: translateY(-4px);
}
.div-bento-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.95) 100%);
}
.div-bento-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.div-bento-card.featured .div-bento-content { padding: 40px 40px; }
.div-bento-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.div-bento-tag {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: var(--radius);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.div-bento-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}
.div-bento-body { }
.div-bento-eyebrow {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.2;
  margin-bottom: 6px;
}
.div-bento-card.featured .div-bento-eyebrow {
  font-size: 20px;
  margin-bottom: 8px;
}
.div-bento-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.div-bento-card.featured .div-bento-name {
  font-size: 48px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.div-bento-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 320px;
  margin-bottom: 16px;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.div-bento-card:hover .div-bento-desc {
  opacity: 1;
  max-height: 80px;
}
.div-bento-card.featured .div-bento-desc {
  opacity: 1;
  max-height: none;
  font-size: 14px;
  max-width: 440px;
  line-height: 1.65;
}
.div-bento-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
  width: fit-content;
}
.div-bento-arrow span {
  transition: transform 0.25s var(--ease);
}
.div-bento-card:hover .div-bento-arrow span {
  transform: translateX(4px);
}

/* ─── C: INTEGRATION — Linear Journey ─── */
.integration-section {
  background: var(--canvas);
  color: var(--slate);
  padding: 120px 24px;
}
.integration-wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.integration-head {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}
.integration-head .eyebrow {
  justify-content: center;
  color: var(--green) !important;
}
.integration-head .section-h {
  color: var(--slate);
  margin-bottom: 20px;
}
.integration-head .section-h em {
  color: var(--green);
}
.integration-head .section-body {
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

/* The journey flow */
.int-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}

/* Step */
.int-step {
  position: relative;
  padding: 0 20px;
  cursor: pointer;
  transition: transform 0.35s var(--ease);
}
.int-step:hover {
  transform: translateY(-8px);
}

/* Connecting arrow (between cards) */
.int-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 120px;
  right: -14px;
  z-index: 3;
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  background: var(--canvas);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, transform 0.3s;
}
.int-step:hover:not(:last-child)::after {
  color: var(--sc);
  transform: translateX(4px);
}

/* Image/photo block for each step */
.int-step-img {
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: box-shadow 0.35s;
}
.int-step:hover .int-step-img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.int-step-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.75) 100%);
}

/* Phase number inside image */
.int-step-phase {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  color: var(--slate);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: var(--radius);
}

/* Division tag inside image — solid colored pill */
.int-step-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sc);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 7px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.int-step-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255,255,255,0.7);
}

/* Text below image */
.int-step-outcome {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.int-step-outcome strong {
  font-style: normal;
  font-weight: 500;
  color: var(--sc);
}
.int-step-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* Bottom commitment — kept simple */
.integration-bottom {
  background: var(--slate);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.integration-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #8DC8F0, #C4A870, #F0A080, #6FD49A);
}
.int-bottom-text strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.int-bottom-text strong em {
  color: var(--green);
  font-style: italic;
  font-weight: 300;
}
.int-bottom-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  max-width: 540px;
  display: block;
}
.integration-bottom-cta {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.integration-bottom-cta:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .int-journey {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .int-step:nth-child(2)::after { display: none; }
  .int-step:nth-child(4)::after { display: none; }
}
@media (max-width: 640px) {
  .integration-section { padding: 72px 16px; }
  .int-journey {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .int-step { padding: 0; }
  .int-step::after { display: none !important; }
  .int-step-img { height: 200px; }
  .integration-bottom {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    text-align: center;
    gap: 20px;
  }
}

/* cleanup leftover old classes */
.integration-flow { display: none; }
.int-timeline { display: none; }

/* ─── D: FEATURED PROJECTS TICKER ─── */
.home-projects {
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}
.home-projects-head {
  max-width: 1300px;
  margin: 0 auto 48px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
}
.home-projects-head .section-body {
  max-width: 420px;
}
.home-proj-shell {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.home-proj-track {
  display: flex;
  gap: 16px;
  padding: 0 0 4px;
  width: max-content;
  animation: tickerSlide 70s linear infinite;
  will-change: transform;
}
.home-proj-shell:hover .home-proj-track {
  animation-play-state: paused;
}
.home-proj-card {
  flex: 0 0 320px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.home-proj-card:hover {
  transform: translateY(-6px);
}
.home-proj-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.88) 100%);
}
.home-proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 2;
  color: #fff;
}
.home-proj-top {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.home-proj-div {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.home-proj-loc {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
}
.home-proj-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
}
.home-proj-spec {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .divisions-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px 280px;
  }
  .div-bento-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .integration-flow {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
  }
  .integration-flow::before { display: none; }
  .integration-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .integration-section {
    padding: 56px 16px;
  }
  .home-projects { padding: 56px 0; }
  .home-projects-head { padding: 0 16px; margin-bottom: 32px; }
  .divisions-bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
    gap: 10px;
  }
  .div-bento-card.featured {
    grid-column: auto;
  }
  }
  .div-bento-content { padding: 20px !important; }
  .div-bento-tag { font-size: 8px; padding: 4px 8px; }
  .div-bento-num { font-size: 10px; }
  .div-bento-eyebrow { font-size: 13px; margin-bottom: 4px; }
  .div-bento-card.featured .div-bento-eyebrow { font-size: 13px; }
  .div-bento-name { font-size: 20px; margin-bottom: 6px; }
  .div-bento-card.featured .div-bento-name { font-size: 22px; margin-bottom: 8px; }
  .div-bento-desc { display: none; }
  .div-bento-card.featured .div-bento-desc { display: none; }
  .div-bento-arrow { font-size: 10px; }
  
  .integration-flow {
    grid-template-columns: 1fr;
    row-gap: 36px;
    margin-bottom: 32px;
  }
  .int-node-circle {
    width: 80px;
    height: 80px;
    font-size: 12px;
    margin-bottom: 16px;
  }
  .int-node-name { font-size: 18px; }
  .integration-bottom {
    padding: 20px;
  }
  .integration-bottom-text { font-size: 16px; }
  
  .home-proj-card {
    flex: 0 0 260px;
    height: 340px;
  }
  .home-proj-name { font-size: 18px; }
}

/* ═══ Sport Selector Component ═══ */
.sport-cat-tabs {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 24px;
}
.sport-cat {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.sport-cat.on {
  background: var(--green);
  color: #fff;
}
.sport-cat:not(.on):hover {
  color: var(--slate);
  background: var(--canvas);
}
.sport-panel {
  display: none;
}
.sport-panel.on {
  display: block;
}
.sport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.sport-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: left;
}
.sport-btn:hover {
  background: var(--canvas);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.sport-btn.on {
  background: var(--green);
  border-color: var(--green);
}
.sport-btn.on .sport-name,
.sport-btn.on .sport-cert,
.sport-btn.on .sport-arrow {
  color: #fff;
}
.sport-btn.on .sport-icon {
  background: rgba(255,255,255,0.2);
}
.sport-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.25s;
}
.sport-info {
  flex: 1;
  min-width: 0;
}
.sport-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 2px;
  transition: color 0.25s;
}
.sport-cert {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  transition: color 0.25s;
}
.sport-arrow {
  font-size: 16px;
  color: var(--muted);
  transition: color 0.25s, transform 0.25s;
}
.sport-btn:hover .sport-arrow {
  transform: translateX(3px);
  color: var(--green);
}
.sport-detail-wrap {
  display: none;
  margin-top: 4px;
}
.sport-detail-wrap.on {
  display: block;
  animation: slideDown 0.35s var(--ease);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.sport-detail-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sport-detail-photo {
  position: relative;
  overflow: hidden;
}
.sport-detail-photo .photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.sport-detail-inner:hover .photo-bg {
  transform: scale(1.04);
}
.sport-detail-cert {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.sport-detail-content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}
.sport-detail-content h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 8px;
}
.sport-detail-content h3 em {
  font-style: italic;
  color: var(--green);
}
.sport-detail-tag {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.sport-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.sport-specs-table td {
  padding: 8px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.sport-specs-table td:first-child {
  font-weight: 600;
  color: var(--muted);
  width: 140px;
}
.sport-specs-table td:last-child {
  color: var(--slate);
}
.sport-specs-table tr:last-child td {
  border-bottom: none;
}
.sport-surface-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.sport-surface-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sport-surface-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 6px;
  flex-shrink: 0;
}
.sport-surface-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}
.sport-surface-desc {
  font-size: 12px;
  color: var(--muted);
}
.sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.sport-tags span {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--border2);
  font-size: 10px;
  font-weight: 600;
  color: var(--mid);
}
.sport-detail-cta {
  padding: 12px 24px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
  margin-top: auto;
}
.sport-detail-cta:hover {
  background: var(--green-dk);
  transform: translateY(-1px);
}

/* Perf science */
.perf-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-top: 40px; }
.perf-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; transition: box-shadow 0.2s, transform 0.2s; }
.perf-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.perf-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.perf-val { font-family: var(--font-display); font-size: 34px; letter-spacing: 0.02em; color: var(--slate); line-height: 1; }
.perf-unit { font-size: 16px; opacity: 0.5; }
.perf-label { font-size: 12px; font-weight: 600; color: var(--mid); margin-top: 5px; }
.perf-desc { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* Funnel panels */
.funnel-duo { display: grid; grid-template-columns: 1fr 1fr; }
.fp { padding: 64px 56px; display: flex; flex-direction: column; gap: 18px; }
.fp-eye { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; }
.fp-title { font-family: var(--font-serif); font-size: 30px; font-weight: 300; font-style: italic; color: #fff; line-height: 1.2; }
.fp-body { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.75; max-width: 380px; }
.fp-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fp-bullets li { font-size: 13px; color: rgba(255,255,255,0.82); display: flex; gap: 10px; }
.fp-bullets li::before { content: '✓'; font-weight: 700; color: rgba(255,255,255,0.45); flex-shrink: 0; }
.fp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: var(--radius); background: rgba(255,255,255,0.14); border: 1.5px solid rgba(255,255,255,0.28); color: #fff; font-size: 13px; font-weight: 700; transition: background 0.2s; width: fit-content; }
.fp-btn:hover { background: rgba(255,255,255,0.25); }

/* Signatures */
.sig-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.sig-card { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; position: relative; height: 500px; }
.sig-card .photo { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.48) saturate(0.65); transition: transform 0.7s var(--ease), filter 0.5s; }
.sig-card:hover .photo { transform: scale(1.05); filter: brightness(0.36); }
.sig-content { position: absolute; inset: 0; z-index: 2; padding: 26px 22px; background: linear-gradient(to top, rgba(12,8,4,0.92) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; }
.sig-swatch { width: 22px; height: 4px; border-radius: 2px; margin-bottom: 10px; }
.sig-num { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.sig-name { font-family: var(--font-serif); font-size: 26px; color: #fff; font-weight: 300; margin-bottom: 8px; line-height: 1.1; }
.sig-palette { display: flex; gap: 4px; margin-bottom: 8px; }
.sig-col { width: 13px; height: 13px; border-radius: 3px; }
.sig-desc { font-size: 12px; color: rgba(255,255,255,0.56); line-height: 1.55; opacity: 0; transform: translateY(6px); transition: all 0.35s; }
.sig-card:hover .sig-desc { opacity: 1; transform: none; }

/* Products (Paints) */
.ptab-row { display: flex; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; width: fit-content; }
.ptab { padding: 10px 22px; font-size: 12px; font-weight: 600; background: none; border: none; color: var(--muted); transition: all 0.2s; white-space: nowrap; }
.ptab.on { background: var(--slate); color: #fff; }
.ptab:not(.on):hover { color: var(--slate); }
.ppanel { display: none; }
.ppanel.on { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.prod-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; cursor: pointer; }
.prod-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.prod-swatch { height: 130px; position: relative; }
.prod-swatch-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.prod-body { padding: 18px 20px 22px; }
.prod-type { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.prod-name { font-size: 16px; font-weight: 700; color: var(--slate); margin-bottom: 8px; }
.prod-desc { font-size: 12px; color: var(--mid); line-height: 1.6; margin-bottom: 12px; }
.prod-specs { display: flex; flex-direction: column; gap: 4px; }
.prod-spec { display: flex; justify-content: space-between; font-size: 11px; padding: 4px 0; border-bottom: 1px solid var(--border); }
.prod-spec:last-child { border-bottom: none; }
.spec-key { color: var(--muted); font-weight: 500; } .spec-val { color: var(--slate); font-weight: 600; }

/* Services grid (Build) */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: box-shadow 0.3s, transform 0.3s; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.svc-name { font-size: 17px; font-weight: 700; color: var(--slate); margin-bottom: 8px; }
.svc-desc { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.svc-items { display: flex; flex-direction: column; gap: 5px; }
.svc-item { font-size: 12px; color: var(--mid); display: flex; align-items: flex-start; gap: 8px; }
.svc-item::before { content: '→'; color: var(--accent, var(--blue)); font-size: 10px; flex-shrink: 0; margin-top: 2px; }

/* Segments (Paints) */
.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.seg-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 360px; cursor: pointer; }
.seg-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.58); transition: transform 0.7s var(--ease), filter 0.4s; }
.seg-card:hover .bg { transform: scale(1.04); filter: brightness(0.45); }
.seg-content { position: absolute; inset: 0; z-index: 2; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top,rgba(10,6,2,0.9) 0%,transparent 55%); }
.seg-name { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.04em; color: #fff; margin-bottom: 8px; }
.seg-desc { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.6; max-width: 380px; }
.seg-items { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 5px; }
.seg-item { padding: 3px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); font-size: 10px; color: rgba(255,255,255,0.65); }

/* Divisions grid (Home) */
.div-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; height: 620px; }
.div-card { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.div-card:first-child { grid-row: span 2; }
.div-card .photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s var(--ease); filter: brightness(0.7) saturate(0.9); }
.div-card:hover .photo { transform: scale(1.05); filter: brightness(0.55); }
.div-card .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,30,28,0.88) 0%, transparent 55%); }
.div-card .meta { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 26px 22px; }
.div-tag { display: inline-block; padding: 3px 10px; border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 10px; width: fit-content; }
.div-name { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.04em; line-height: 1; color: #fff; margin-bottom: 6px; }
.div-card:first-child .div-name { font-size: 46px; margin-bottom: 10px; }
.div-sub { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; max-width: 300px; transform: translateY(6px); opacity: 0; transition: all 0.3s var(--ease); }
.div-card:hover .div-sub { opacity: 1; transform: none; }
.div-cta { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; font-weight: 600; transform: translateY(8px); opacity: 0; transition: all 0.3s var(--ease) 0.05s; background: none; border: none; font-family: var(--font-body); padding: 0; cursor: pointer; }
.div-cta::after { content: '→'; font-size: 14px; }
.div-card:hover .div-cta { opacity: 1; transform: none; }

/* Section header row */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 24px; }
.view-link { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: gap 0.2s; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.view-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════
   HERO (shared base)
═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative; height: 100vh; min-height: 580px;
  overflow: hidden; background: #080E0C;
  display: flex; flex-direction: column;
}
.hero-slides, .ph-bg-wrap { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 7s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide.exit { opacity: 0; transform: scale(1.04); transition: opacity 1s, transform 1s ease-in; }
.ph-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease-out;
}
.ph-bg.loaded { opacity: 1; transform: scale(1); }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(5,14,10,0.82) 0%, rgba(5,14,10,0.25) 55%, rgba(5,14,10,0) 100%),
    linear-gradient(to top,   rgba(5,14,10,0.95) 0%, rgba(5,14,10,0.4) 35%, rgba(5,14,10,0) 65%);
}
.hero-content {
  position: relative; z-index: 3; flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 72px 148px;
}
.ph-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 11px; color: rgba(255,255,255,0.5); }
.ph-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; } .ph-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.ph-breadcrumb-sep { opacity: 0.3; }
.ph-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.ph-eyebrow::before { content: ''; width: 24px; height: 2px; border-radius: 2px; display: block; }
.ph-title { font-family: var(--font-serif); font-size: clamp(48px,7vw,96px); font-weight: 300; font-style: italic; color: #fff; line-height: 1; letter-spacing: -0.02em; margin-bottom: 10px; opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease 0.1s, transform 0.8s var(--ease) 0.1s; }
.ph-title2 { font-family: var(--font-display); font-size: clamp(60px,9.5vw,130px); letter-spacing: 0.04em; line-height: 0.9; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.88); opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease 0.3s, transform 0.8s var(--ease) 0.3s; }
.ph-rule { width: 0; height: 2px; margin: 20px 0; transition: width 1s var(--ease) 0.7s; }
.ph-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.62); max-width: 480px; line-height: 1.8; opacity: 0; transform: translateY(12px); transition: opacity 0.7s ease 0.9s, transform 0.7s var(--ease) 0.9s; }
.ph-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; opacity: 0; transform: translateY(10px); transition: opacity 0.6s ease 1.1s, transform 0.6s var(--ease) 1.1s; }
.page-hero.loaded .ph-title, .page-hero.loaded .ph-title2 { opacity: 1; transform: none; }
.page-hero.loaded .ph-rule { width: 220px; }
.page-hero.loaded .ph-sub { opacity: 1; transform: none; }
.page-hero.loaded .ph-ctas { opacity: 1; transform: none; }
.ph-cta-primary { padding: 14px 36px; border: none; border-radius: var(--radius); background: #fff; color: var(--slate); font-size: 13px; font-weight: 700; letter-spacing: 0.03em; transition: filter 0.2s, transform 0.15s; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.ph-cta-primary:hover { filter: brightness(0.92); transform: translateY(-2px); }
.ph-cta-secondary { padding: 14px 22px; border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.88); font-size: 13px; font-weight: 500; transition: border-color 0.2s, background 0.2s; backdrop-filter: blur(6px); }
.ph-cta-secondary:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.14); }
.ph-stats { position: absolute; right: 72px; bottom: 100px; z-index: 3; display: flex; gap: 32px; }
.ph-stat { text-align: right; }
.ph-stat-num { font-family: var(--font-display); font-size: 40px; color: #fff; line-height: 1; }
.ph-stat-label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 3px; }

/* Hero-specific extras (home) */
.hero-aside { position: absolute; right: 72px; top: 50%; z-index: 3; transform: translateY(-50%); display: flex; flex-direction: column; gap: 4px; }
.hero-div-card { width: 175px; padding: 12px 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); backdrop-filter: blur(10px); cursor: pointer; transition: background 0.25s, border-color 0.25s, transform 0.2s; }
.hero-div-card:hover, .hero-div-card.on { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); transform: translateX(-4px); }
.hdc-label { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.hdc-name { font-size: 13px; font-weight: 600; color: #fff; }
.hdc-bar { height: 2px; margin-top: 8px; border-radius: 1px; transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.hero-div-card.on .hdc-bar { transform: scaleX(1); }
.hero-funnel { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; display: grid; grid-template-columns: 1fr 1fr; }
.funnel-tab { padding: 18px 48px; display: flex; align-items: center; justify-content: space-between; border: none; font-family: var(--font-body); text-align: left; cursor: pointer; transition: background 0.2s; }
.funnel-label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; display: block; margin-bottom: 2px; }
.funnel-title { font-size: 14px; font-weight: 600; }
.funnel-arrow { font-size: 20px; opacity: 0.6; }
.hero-progress { position: absolute; bottom: 84px; left: 72px; z-index: 5; display: flex; gap: 6px; align-items: center; }
.progress-pip { width: 26px; height: 2px; border-radius: 1px; background: rgba(255,255,255,0.28); overflow: hidden; cursor: pointer; transition: width 0.3s; }
.progress-pip.on { width: 52px; }
.progress-fill { height: 100%; width: 0%; background: #fff; border-radius: 1px; }
.progress-pip.on .progress-fill { animation: pip-fill 5.2s linear forwards; }
@keyframes pip-fill { to { width: 100%; } }
.hero-division-tag {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px; height: 20px;
}
.hero-division-tag .div-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  transition: background 0.5s;
}
.hero-division-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; white-space: nowrap;
  transition: opacity 0.4s ease;
}
.div-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tag-sports .div-dot { background: #3CB870; } .tag-sports { color: #6FD49A; }
.tag-interiors .div-dot { background: #C4A870; } .tag-interiors { color: #C4A870; }
.tag-build .div-dot { background: #7DB8F0; } .tag-build { color: #8DC8F0; }
.tag-paints .div-dot { background: #F09070; } .tag-paints { color: #F0A080; }

/* ═══════════════════════════════════════════════════════
   PARALLAX HERO - Villa Rises from Bottom (FIND Style)
═══════════════════════════════════════════════════════ */
.parallax-hero {
  position: relative;
  height: 300vh; /* Extended for logo reveal phase */
}

.plx-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.plx-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}

/* Sky gradient - darker blue to match villa */
.plx-sky {
  background: linear-gradient(180deg, 
    #4A95C7 0%,
    #5AA3D2 12%,
    #6AB0DB 25%,
    #7BBDE3 40%,
    #8FC9E9 55%,
    #A8D6F0 70%,
    #C8E8F7 85%,
    #E8F5FC 95%,
    #FFFFFF 100%
  );
}

/* Upper clouds - scattered across sky */
.plx-clouds-warm { z-index: 2; }
.cloud-warm {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}
.cloud-w1 {
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.5) 40%, transparent 70%);
  top: 8%; left: -12%;
}
.cloud-w2 {
  width: 550px; height: 280px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.45) 45%, transparent 70%);
  top: 15%; left: 55%;
}
.cloud-w3 {
  width: 450px; height: 250px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 40%, transparent 70%);
  top: 3%; right: -8%;
}

/* Mid-level clouds */
.plx-clouds-cool { z-index: 3; }
.cloud-cool {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
}
.cloud-c1 {
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.95) 0%, rgba(200,230,248,0.5) 50%, transparent 70%);
  top: -5%; right: -18%;
}
.cloud-c2 {
  width: 800px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.9) 0%, rgba(195,228,246,0.45) 50%, transparent 70%);
  top: 2%; left: -8%;
}
.cloud-c3 {
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85) 0%, rgba(205,232,248,0.4) 45%, transparent 70%);
  top: 22%; right: 10%;
}

/* Transition clouds - blend sky into villa */
.plx-transition-clouds {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.trans-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.trans-1 {
  width: 500px; height: 280px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.9) 0%, rgba(200,228,245,0.5) 45%, transparent 70%);
  top: 35%; left: -10%;
}
.trans-2 {
  width: 450px; height: 260px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.88) 0%, rgba(195,225,244,0.48) 45%, transparent 70%);
  top: 38%; right: -8%;
}
.trans-3 {
  width: 350px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.75) 0%, rgba(210,235,250,0.35) 50%, transparent 70%);
  top: 42%; left: 15%;
}
.trans-4 {
  width: 380px; height: 220px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.78) 0%, rgba(205,232,248,0.38) 50%, transparent 70%);
  top: 40%; right: 20%;
}
.trans-5 {
  width: 600px; height: 250px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85) 0%, rgba(200,228,246,0.4) 50%, transparent 70%);
  top: 48%; left: 25%;
}

/* Villa - rises from bottom */
.plx-building-wrap {
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(70%); /* Start 70% below - 30% visible */
}
.plx-building-img {
  H0%;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 3%, black 8%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 3%, black 8%, black 100%);
}

/* Front mist */
.plx-clouds-front {
  z-index: 6;
  pointer-events: none;
  transform: translateY(80%);
}
.cloud-front {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
}
.cloud-f1 {
  width: 1200px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.92) 0%, rgba(200,230,245,0.5) 40%, transparent 70%);
  bottom: -10%; left: -20%;
}
.cloud-f2 {
  width: 1000px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.88) 0%, rgba(210,235,248,0.45) 40%, transparent 70%);
  bottom: -5%; right: -15%;
}

/* Ticker - rises after logo */
.plx-ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  transform: translateY(100%);
}
.plx-ticker-wrap .ticker-bar {
  position: relative;
}

/* Content overlay */
.plx-content {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  padding-bottom: 12vh;
}

.plx-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}
.plx-headline-spaces {
  font-family: var(--font-serif);
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 300;
  font-style: italic;
  color: var(--slate);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.plx-headline-elevated {
  font-family: var(--font-display);
  font-size: clamp(58px, 12vw, 130px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--slate);
  text-stroke: 1.5px var(--slate);
  letter-spacing: 0.06em;
  line-height: 0.85;
  margin-top: -5px;
}

.plx-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 400;
  color: var(--slate);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.plx-cta {
  padding: 16px 32px;
  border-radius: 50px;
  background: var(--slate);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
}
.plx-cta:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.plx-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.plx-cta:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   EXALT LOGO REVEAL - Letter by letter
═══════════════════════════════════════════════════════ */
.plx-logo-layer {
  position: absolute;
  inset: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.plx-logo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    #4A95C7 0%,
    #6AB0DB 30%,
    #A8D6F0 60%,
    #E8F5FC 90%,
    #FFFFFF 100%
  );
  z-index: 1;
}

/* Clouds around logo */
.plx-logo-clouds {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.logo-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.lc-1 {
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.5) 50%, transparent 70%);
  bottom: 10%; left: -10%;
}
.lc-2 {
  width: 550px; height: 280px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.45) 50%, transparent 70%);
  bottom: 5%; right: -8%;
}
.lc-3 {
  width: 400px; height: 220px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.4) 50%, transparent 70%);
  bottom: 20%; left: 30%;
}
.lc-4 {
  width: 500px; height: 250px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.35) 50%, transparent 70%);
  top: 15%; right: 5%;
}
.lc-5 {
  width: 450px; height: 230px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.3) 50%, transparent 70%);
  top: 10%; left: 5%;
}

/* Logo text container */
.plx-logo-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* EXALT - Bebas Neue outlined, letter by letter */
.plx-logo-letters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.plx-logo-letter {
  font-family: var(--font-display);
  font-size: clamp(100px, 22vw, 280px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--slate);
  text-stroke: 2px var(--slate);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.plx-logo-letter.visible {
  opacity: 1;
  transform: translateY(0);
}

.plx-logo-tagline {
  font-family: var(--font-body);
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.plx-logo-divisions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.plx-logo-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  color: var(--mid);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.plx-logo-pill.sports { color: var(--green); }
.plx-logo-pill.interiors { color: var(--gold); }
.plx-logo-pill.paints { color: var(--red); }
.plx-logo-pill.build { color: var(--blue); }

@media (max-width: 768px) {
  .parallax-hero { height: 280vh; }
  .plx-headline-spaces { font-size: clamp(40px, 12vw, 72px); }
  .plx-headline-elevated { font-size: clamp(44px, 14vw, 80px); }
  .cloud-warm, .cloud-cool { transform: scale(0.5); }
  .plx-logo-letter { font-size: clamp(60px, 18vw, 120px); }
  .plx-logo-divisions { gap: 10px; }
  .plx-logo-pill { font-size: 10px; padding: 6px 12px; }
}


/* ═══════════════════════════════════════════════════════
   FOOTER (shared)
═══════════════════════════════════════════════════════ */
/* ─── SITE FOOTER — Premium Redesign ─── */
.site-footer {
  background: var(--slate);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
.foot-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 1;
}

/* CTA strip */
.foot-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.foot-cta-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 640px;
}
.foot-cta-text strong {
  font-style: normal;
  font-weight: 500;
  display: block;
  margin-top: 8px;
  font-size: 0.7em;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6);
}
.foot-cta-text em {
  color: var(--gold);
  font-style: italic;
}
.foot-cta-btn {
  background: var(--gold);
  color: var(--slate);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot-cta-btn:hover {
  background: #b89a70;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,168,112,0.25);
}
.foot-cta-btn svg { transition: transform 0.25s; }
.foot-cta-btn:hover svg { transform: translateX(3px); }

/* Main columns */
.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
}

/* Brand column */
.foot-brand { }
.foot-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.foot-brand-sub {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.foot-about {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  transition: color 0.2s;
  text-decoration: none;
}
.foot-contact-item:hover {
  color: #fff;
}
.foot-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.8;
  width: 14px;
  height: 14px;
}

/* Link columns */
.foot-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.foot-col li a, .foot-col li button {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  text-decoration: none;
  display: block;
}
.foot-col li a:hover, .foot-col li button:hover {
  color: var(--gold);
}

/* Bottom strip */
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}
.foot-copy strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 4px;
}
.foot-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.foot-socials {
  display: flex;
  gap: 10px;
}
.foot-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
  text-decoration: none;
}
.foot-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--slate);
  transform: translateY(-2px);
}
.foot-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.foot-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  text-decoration: none;
}
.foot-links a:hover { color: rgba(255,255,255,0.6); }
.foot-links-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 1024px) {
  .foot-wrap { padding: 0 32px; }
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .foot-brand { grid-column: span 2; }
  .foot-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .foot-cta-btn { justify-self: center; }
}
@media (max-width: 640px) {
  .foot-wrap { padding: 0 20px; }
  .foot-cta { padding: 36px 0; }
  .foot-cta-text { font-size: 19px; }
  .foot-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 0 32px;
  }
  .foot-brand { grid-column: span 1; }
  .foot-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
  .foot-brand { grid-column: auto; }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .foot-right {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.btt { position: fixed; bottom: 24px; right: 24px; z-index: 400; width: 42px; height: 42px; border-radius: 50%; background: var(--slate); color: #fff; border: none; font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); transition: all 0.3s; pointer-events: none; }
.btt.show { opacity: 1; transform: none; pointer-events: auto; }
.btt:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #nav { padding: 0 24px; }
  .nav-center { display: none; }
  .nav-hamburger { display: flex; }
  .nav-btn { display: none; }
  .hero-content { padding: 0 28px 148px; }
  .hero-aside { display: none; }
  .hero-progress { left: 28px; bottom: 84px; }
  .hero-funnel .funnel-tab { padding: 16px 24px; }
  .ph-stats { display: none; }
  .sec { padding: 56px 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(2) { border-right: none; }
  .div-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .div-card:first-child { grid-column: span 2; grid-row: auto; height: 300px; }
  .div-card { height: 210px; }
  .spanel.on, .ppanel.on { grid-template-columns: 1fr 1fr; }
  .perf-grid { grid-template-columns: 1fr 1fr; }
  .proc-step, .proc-step.flip { grid-template-columns: 1fr; direction: ltr; }
  .proc-visual { height: 260px; }
  .proc-copy { padding: 48px 32px; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .proj-card.big { grid-column: auto; }
  .funnel-duo { grid-template-columns: 1fr; }
  .fp { padding: 56px 32px; }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .sig-card { height: 360px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .seg-grid { grid-template-columns: 1fr; }
  .enq-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-pt { border-right: none !important; border-bottom: 1px solid var(--border); }
  .trust-pt:last-child { border-bottom: none; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  /* Sport selector responsive */
  .sport-grid { grid-template-columns: 1fr 1fr; }
  .sport-detail-inner { grid-template-columns: 1fr; }
  .sport-detail-photo { height: 220px; }
  .sport-cat-tabs { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .hero-title-display { font-size: 64px; }
  .div-grid { grid-template-columns: 1fr; }
  .div-card:first-child { grid-column: auto; }
  .spanel.on, .ppanel.on { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; }
  .sig-card { height: 300px; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .stab-row, .ptab-row { flex-wrap: wrap; border-radius: var(--radius); }
  /* Sport selector mobile */
  .sport-grid { grid-template-columns: 1fr; }
  .sport-cat-tabs { width: 100%; }
  .sport-cat { flex: 1; text-align: center; padding: 10px 12px; }
  .sport-detail-content { padding: 24px 20px; }
  .sport-detail-content h3 { font-size: 22px; }
  .calc-container { padding: 0 20px !important; }
  .calc-grid { grid-template-columns: 1fr; gap: 24px; }
  .calc-inputs { padding: 24px; }
  .calc-output { position: static; order: -1; gap: 12px; }
  .calc-result-card { padding: 24px; }
  .calc-result-price { font-size: 32px; }
  .calc-brand-showcase { margin-bottom: 12px; }
  .calc-brand-logo-wrap { padding: 16px; min-height: 60px; }
  .calc-brand-logo-wrap img { max-height: 48px; max-width: 180px; }
  .calc-addon { padding: 12px 14px; }
  .calc-addon-text { font-size: 13px; }
  .calc-includes { padding: 20px; }
  .calc-include-item { font-size: 12px; padding: 6px 0; }
  .calc-submit { padding: 14px 20px; font-size: 13px; }

}

/* ═══════════════════════════════════════════════════════
   MOBILE - Complete Rewrite for Phones
═══════════════════════════════════════════════════════ */

/* Tablet - 768px */
@media (max-width: 768px) {
  /* Page Hero */
  .page-hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-content {
    padding: 100px 24px 40px !important;
    justify-content: center !important;
  }
  .hero-veil {
    background:
      linear-gradient(to bottom, rgba(5,14,10,0.3) 0%, rgba(5,14,10,0.7) 100%),
      linear-gradient(to right, rgba(5,14,10,0.5) 0%, transparent 100%);
  }
  .ph-stats {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: flex !important;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 32px;
  }
  .ph-stat {
    text-align: left;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  /* NAV */
  #nav {
    padding: 0 16px;
    height: 60px;
  }
  .nav-logo {
    font-size: 18px;
  }
  .nav-logo-img {
    height: 28px;
  }
  
  /* PAGE HERO - Full rewrite */
  .page-hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }
  .hero-content {
    padding: 80px 20px 32px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ph-breadcrumb {
    font-size: 10px;
    margin-bottom: 12px;
    gap: 6px;
  }
  .ph-eyebrow {
    font-size: 9px;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    gap: 8px;
  }
  .ph-eyebrow span[style*="width:24px"] {
    width: 16px !important;
  }
  .ph-title {
    font-size: 36px !important;
    margin-bottom: 4px;
  }
  .ph-title2 {
    font-size: 44px !important;
    -webkit-text-stroke-width: 1px !important;
    letter-spacing: 0.02em;
  }
  .ph-rule {
    margin: 16px 0;
    height: 1px;
  }
  .page-hero.loaded .ph-rule {
    width: 80px;
  }
  .ph-sub {
    font-size: 13px;
    line-height: 1.65;
    max-width: 100%;
    color: rgba(255,255,255,0.7);
  }
  .ph-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    width: 100%;
  }
  .ph-cta-primary,
  .ph-cta-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    border-radius: 6px;
  }
  
  /* STATS - In flow on mobile */
  .ph-stats {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: flex !important;
    justify-content: space-between;
    gap: 8px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .ph-stat {
    text-align: center;
    flex: 1;
  }
  .ph-stat-num {
    font-size: 24px;
    line-height: 1;
  }
  .ph-stat-label {
    font-size: 7px;
    letter-spacing: 0.08em;
    margin-top: 4px;
    opacity: 0.5;
  }
  
  /* TICKER */
  .ticker-bar {
    padding: 8px 0;
  }
  .ticker-item {
    padding: 0 12px;
  }
  .ticker-code {
    font-size: 10px;
  }
  .ticker-label {
    font-size: 9px;
  }
  .ticker-dot {
    width: 3px;
    height: 3px;
    margin: 0 6px;
  }
  
  /* SECTIONS */
  .sec {
    padding: 40px 16px;
  }
  .sec-head {
    margin-bottom: 24px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }
  .section-h {
    font-size: 26px !important;
    line-height: 1.2;
  }
  .section-h strong {
    display: block;
  }
  .section-body {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 10px;
  }
  
  /* SPORT CATEGORY TABS */
  .sport-cat-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 20px;
    padding: 0;
  }
  .sport-cat {
    padding: 10px 6px;
    font-size: 10px;
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
  }
  
  /* SPORT BUTTONS */
  .sport-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
  .sport-btn {
    padding: 14px 16px;
    gap: 12px;
  }
  .sport-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 8px;
  }
  .sport-name {
    font-size: 14px;
  }
  .sport-cert {
    font-size: 9px;
  }
  .sport-arrow {
    font-size: 12px;
    opacity: 0.4;
  }
  
  /* SPORT DETAIL PANEL */
  .sport-detail-wrap {
    margin-top: 16px;
  }
  .sport-detail-inner {
    grid-template-columns: 1fr !important;
    border-radius: 8px;
  }
  .sport-detail-photo {
    height: 180px;
    border-radius: 8px 8px 0 0;
  }
  .sport-detail-cert {
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 8px;
  }
  .sport-detail-content {
    padding: 16px;
  }
  .sport-detail-content h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .sport-detail-tag {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .sport-specs-table {
    margin-bottom: 12px;
  }
  .sport-specs-table td {
    font-size: 10px;
    padding: 5px 0;
  }
  .sport-specs-table td:first-child {
    width: 90px;
    font-size: 9px;
  }
  .sport-surface-options {
    gap: 8px;
    margin-bottom: 12px;
  }
  .sport-surface-dot {
    width: 5px;
    height: 5px;
    margin-top: 5px;
  }
  .sport-surface-name {
    font-size: 11px;
  }
  .sport-surface-desc {
    font-size: 10px;
  }
  .sport-tags {
    gap: 4px;
    margin-bottom: 14px;
  }
  .sport-tag {
    font-size: 8px;
    padding: 3px 6px;
  }
  .sport-detail-cta {
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
    text-align: center;
    border-radius: 6px;
  }
  
  /* PROCESS STEPS */
  .proc-alt {
    gap: 0;
  }
  .proc-step {
    grid-template-columns: 1fr !important;
  }
  .proc-visual {
    height: 180px;
  }
  .proc-copy {
    padding: 24px 16px;
  }
  .proc-num {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .proc-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .proc-body {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .proc-tags {
    gap: 4px;
    flex-wrap: wrap;
  }
  .proc-tag {
    font-size: 9px;
    padding: 5px 8px;
  }
  
  /* ENQUIRY FORM */
  .enq-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .enq-form {
    gap: 10px;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .form-input {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 6px;
  }
  .form-input::placeholder {
    font-size: 13px;
  }
  .form-submit {
    width: 100%;
    padding: 14px 20px;
    font-size: 13px;
    margin-top: 6px;
  }
  .form-note {
    font-size: 10px;
    text-align: center;
    margin-top: 10px;
  }
  
  /* TRUST STRIP */
  .trust-strip {
    grid-template-columns: 1fr !important;
    gap: 0;
    margin-top: 24px;
  }
  .trust-pt {
    padding: 14px 0;
    gap: 12px;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .trust-pt:last-child {
    border-bottom: none;
  }
  .trust-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex-shrink: 0;
  }
  .trust-tit {
    font-size: 12px;
  }
  .trust-sub {
    font-size: 11px;
    line-height: 1.4;
  }
  
  /* FOOTER */
  .site-footer {
    padding: 0 0 20px;
  }
  .foot-wrap {
    padding: 0 20px;
  }
  .foot-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0 28px;
    text-align: center;
  }
  .foot-cta-text {
    font-size: 22px;
  }
  .foot-cta-text strong {
    font-size: 0.8em;
  }
  .foot-cta-btn {
    justify-self: center;
    padding: 14px 24px;
    font-size: 12px;
  }
  .foot-top {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: 36px 0 32px;
  }
  .foot-logo {
    font-size: 24px;
  }
  .foot-brand-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .foot-about {
    font-size: 12px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .foot-contact {
    gap: 10px;
  }
  .foot-contact-item {
    font-size: 12px;
  }
  .foot-col h5 {
    font-size: 9px;
    margin-bottom: 14px;
  }
  .foot-col ul {
    gap: 10px;
  }
  .foot-col a,
  .foot-col button {
    font-size: 12px;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 18px 0 16px;
  }
  .foot-copy {
    font-size: 10px;
  }
  .foot-right {
    flex-direction: column;
    gap: 14px;
  }
  .foot-links {
    gap: 16px;
  }
  .foot-links a {
    font-size: 10px;
  }

  /* TICKER */
  .ticker-bar {
    height: 42px;
  }
  .ticker-item {
    padding: 0 20px;
  }
  .ticker-code {
    font-size: 12px;
  }
  .ticker-label {
    font-size: 8px;
  }
  .ticker-track {
    animation-duration: 32s;
  }
  
  /* BACK TO TOP */
  .btt {
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  /* STATS ROW (home page) */
  .stats-row {
    grid-template-columns: 1fr 1fr !important;
    padding: 24px 16px !important;
    gap: 20px;
  }
  .stat-block {
    padding: 16px 0;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .stat-block:nth-child(2n) {
    border-right: none;
  }
  .stat-block:nth-child(n+3) {
    border-bottom: none;
  }
  .stat-num {
    font-size: 32px;
  }
  .stat-label {
    font-size: 10px;
  }
  
  /* DIVISION CARDS (home page) */
  .div-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .div-card {
    height: 200px !important;
  }
  .div-card:first-child {
    height: 240px !important;
    grid-column: auto !important;
  }
  .div-card .meta {
    padding: 16px;
  }
  .div-card h3 {
    font-size: 20px;
  }
  .div-card .tagline {
    font-size: 11px;
  }
}

/* Extra small - 360px */
@media (max-width: 360px) {
  .ph-title {
    font-size: 30px !important;
  }
  .ph-title2 {
    font-size: 36px !important;
  }
  .ph-stats {
    flex-wrap: wrap;
  }
  .ph-stat {
    flex: 0 0 calc(50% - 4px);
    margin-bottom: 8px;
  }
  .section-h {
    font-size: 22px !important;
  }
  .sport-cat-tabs {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .sport-cat {
    padding: 10px 12px;
  }
}

/* ═══ PAINT CALCULATOR — DARK ═══ */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}
.calc-inputs {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.calc-section { margin-bottom: 24px; }
.calc-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.calc-select, .calc-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  background: var(--canvas);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.calc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(29,43,42,0.4)' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.calc-select:hover, .calc-input:hover {
  border-color: var(--gold);
  background: #fff;
}
.calc-select:focus, .calc-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,168,112,0.15);
  background: #fff;
}
.calc-select option {
  background: #fff;
  color: var(--slate);
  padding: 10px;
}
.calc-addons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-addon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.calc-addon:hover {
  border-color: var(--gold);
  background: #fff;
}
.calc-addon input { display: none; }
.calc-addon-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.calc-addon:has(input:checked) .calc-addon-check {
  background: var(--gold);
  border-color: var(--gold);
}
.calc-addon-check::after {
  content: '✓';
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  opacity: 0;
  transition: opacity 0.2s;
}
.calc-addon:has(input:checked) .calc-addon-check::after { opacity: 1; }
.calc-addon-text {
  font-size: 14px;
  color: var(--slate);
}
.calc-addon-text em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}
.calc-brand-showcase {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
}
.calc-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 0;
}
.calc-brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.calc-brand-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.calc-brand-logo-wrap {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}
.calc-brand-logo-wrap img {
  max-height: 80px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
}
.calc-brand-products {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.calc-brand-products .calc-product-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.calc-brand-products .calc-product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.5;
}
.calc-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--slate);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.calc-submit:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,168,112,0.2);
}

/* OUTPUT SIDE */
.calc-output {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.calc-result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.calc-result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.calc-result-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}
.calc-result-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.calc-result-range {
  font-size: 12px;
  color: var(--mid);
  font-style: italic;
}
.calc-includes {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.calc-includes-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.calc-include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 8px 0;
  color: var(--mid);
  transition: color 0.2s;
}
.calc-include-item.yes {
  color: var(--slate);
}
.calc-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.calc-include-item.yes .calc-check {
  background: var(--gold);
  color: var(--slate);
}
.calc-include-item.no .calc-check {
  background: var(--border);
  color: var(--mid);
  border: 1px solid rgba(255,255,255,0.1);
}
.calc-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  text-align: center;
}

/* ═══ PAINT PRODUCTS ═══ */
.pcat-panel {
  display: none;
}
.pcat-panel.on {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Tier Pills */
.tier-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tier-pill {
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.25s;
}
.tier-pill:hover {
  border-color: var(--mid);
  color: var(--slate);
}
.tier-pill.on {
  background: var(--slate);
  border-color: var(--slate);
  color: white;
}

/* Brand Panel */
.brand-panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.brand-panel.on {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Brand Row */
.brand-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.2s;
}
.brand-row:last-child {
  border-bottom: none;
}
.brand-row:hover {
  background: var(--canvas);
}

/* Brand Info with Logo */
.brand-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bc);
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.brand-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--bc);
}

/* Products Wrap */
.brand-products-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Product Chip with Swatch */
.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: var(--canvas);
  border-radius: 999px;
  font-size: 13px;
  color: var(--slate);
  transition: background 0.2s, transform 0.2s;
}
.product-chip:hover {
  background: var(--border);
  transform: translateY(-1px);
}
.chip-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .tier-pills {
    gap: 6px;
  }
  .tier-pill {
    padding: 8px 16px;
    font-size: 12px;
  }
  .brand-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 20px;
  }
  .brand-info {
    gap: 12px;
  }
  .brand-logo-img {
    width: 36px;
    height: 36px;
  }
  .brand-products-wrap {
    gap: 8px;
  }
  .product-chip {
    padding: 6px 12px 6px 6px;
    font-size: 12px;
  }
  .chip-swatch {
    width: 18px;
    height: 18px;
  }
}

/* ═══ Page Hero ═══ */

/* ═══ ENQUIRY FORMS (new) ═══ */


/* ═══════════════════════════════════════════════════════
   FEATURED PROJECTS GALLERY
   ═══════════════════════════════════════════════════════ */
.projects-gallery {
  background: var(--slate);
  color: #fff;
  padding: 80px 24px;
  overflow: hidden;
  position: relative;
}
.projects-gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,168,112,0.2) 30%, rgba(196,168,112,0.2) 70%, transparent);
}
.projects-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.projects-header {
  text-align: center;
  margin-bottom: 48px;
}
.projects-header .eyebrow {
  color: var(--gold) !important;
  justify-content: center;
}
.projects-header .eyebrow::before { background: var(--gold); }
.projects-header .section-h { color: #fff; }
.projects-header .section-h em { color: var(--gold); }
.projects-header .section-body {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 12px auto 0;
}

/* Horizontal scroll track */
.projects-track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  position: relative;
}
.projects-track-inner {
  display: flex;
  gap: 16px;
  animation: projectsTicker 35s linear infinite;
  will-change: transform;
}
.projects-track:hover .projects-track-inner {
  animation-play-state: paused;
}
@keyframes projectsTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Project cards */
.project-card {
  flex: 0 0 340px;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.project-card:hover {
  transform: translateY(-6px);
}
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.85) 100%);
  transition: background 0.3s;
}
.project-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(0,0,0,0.92) 100%);
}
.project-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  color: #fff;
}
.project-card-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid rgba(196,168,112,0.25);
}
.project-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.project-card-location {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-family: var(--font-serif);
}

/* Scroll hint */
.projects-hint {
  text-align: center;
  margin-top: 28px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.projects-hint svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .project-card { flex: 0 0 300px; height: 400px; }
  .project-card-name { font-size: 20px; }
}
@media (max-width: 640px) {
  .projects-gallery { padding: 56px 16px; }
  .project-card { flex: 0 0 260px; height: 360px; }
  .project-card-info { padding: 20px; }
  .project-card-name { font-size: 18px; }
  .projects-track-inner { animation: projectsTicker 28s linear infinite; }
}

/* ═══════════════════════════════════════════════════════
   BEFORE / AFTER REVEAL SLIDER
═══════════════════════════════════════════════════════ */
.reveal-section {
  background: var(--canvas);
  padding: 80px 24px;
}
.reveal-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.reveal-head {
  text-align: center;
  margin-bottom: 48px;
}
.reveal-head .eyebrow {
  color: var(--gold) !important;
  justify-content: center;
}
.reveal-head .eyebrow::before { background: var(--gold); }
.reveal-head .section-h { color: var(--slate); }
.reveal-head .section-h em { color: var(--gold); }
.reveal-head .section-body {
  max-width: 520px;
  margin: 12px auto 0;
}

/* The slider container */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-lg);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider.dragging { cursor: grabbing; }

/* Both images */
.ba-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: clip-path;
}
.ba-img.before { z-index: 1; }
.ba-img.after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

/* Labels */
.ba-label {
  position: absolute; top: 20px; z-index: 3;
  padding: 6px 14px; border-radius: var(--radius);
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: opacity 0.3s;
}
.ba-label.before {
  left: 20px;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.9);
}
.ba-label.after {
  right: 20px;
  background: rgba(255,255,255,0.9); color: var(--slate);
}

/* The divider handle */
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: rgba(255,255,255,0.9);
  z-index: 4; transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 3px solid var(--gold);
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  pointer-events: none;
  transition: transform 0.15s var(--ease), box-shadow 0.2s;
}
.ba-slider:hover .ba-handle {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}
.ba-handle svg {
  width: 16px; height: 16px;
  color: var(--slate);
}

/* Project info below slider */
.reveal-info {
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.reveal-info-text h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-style: italic; font-weight: 300;
  color: var(--slate); margin-bottom: 6px;
}
.reveal-info-text p {
  font-size: 14px; color: var(--mid); line-height: 1.7;
  max-width: 500px;
}
.reveal-info-meta {
  display: flex; gap: 24px;
}
.reveal-meta-item {
  text-align: right;
}
.reveal-meta-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.reveal-meta-value {
  font-family: var(--font-display);
  font-size: 18px; color: var(--slate);
}

@media (max-width: 640px) {
  .reveal-section { padding: 56px 16px; }
  .ba-slider { aspect-ratio: 4/3; }
  .ba-handle { width: 40px; height: 40px; }
  .reveal-info { grid-template-columns: 1fr; gap: 16px; }
  .reveal-info-meta { justify-content: flex-start; }
  .reveal-meta-item { text-align: left; }
}




/* ═══ CALC MODAL ═══ */
.calc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.calc-modal-overlay.on {
  display: flex;
  opacity: 1;
}
.calc-modal {
  background: var(--canvas);
  border-radius: 14px;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}
.calc-modal-overlay.on .calc-modal {
  transform: translateY(0) scale(1);
}
.calc-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 0;
  position: sticky;
  top: 0;
  background: var(--canvas);
  z-index: 10;
}
.calc-modal-head h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--slate);
  margin: 0;
}
.calc-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--mid);
  transition: all 0.2s;
}
.calc-modal-close:hover {
  background: var(--slate);
  color: #fff;
  border-color: var(--slate);
}
.calc-modal-body {
  padding: 16px 28px 28px;
}
/* Force calculator visible in modal (bypass scroll-reveal) */
.calc-modal-body .reveal,
.calc-modal-body .reveal-up,
.calc-modal-body .reveal-scale,
.calc-modal-body .reveal-blur {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* ═══ FLOATING CALC ICON ═══ */
.calc-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #E05A3A);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(200,75,42,0.4);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.35s ease, box-shadow 0.3s;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
}
.calc-fab.on {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.calc-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,75,42,0.5);
}
.calc-fab svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.calc-fab-label {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background: var(--slate);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.calc-fab:hover .calc-fab-label {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
@media (max-width: 640px) {
  .calc-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .calc-fab-label { display: none; }
}
  .calc-modal-overlay { padding: 0; align-items: flex-end; }
  .calc-modal {
    border-radius: 14px 14px 0 0;
    max-height: 92vh;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .calc-modal-head { padding: 14px 16px 0; }
  .calc-modal-head h3 { font-size: 18px; }
  .calc-modal-body { padding: 10px 0 20px; }
  .calc-modal-body .calc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calc-modal-body .calc-inputs {
    padding: 16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .calc-modal-body .calc-output {
    order: 0;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .calc-modal-body .calc-select,
  .calc-modal-body .calc-input {
    font-size: 16px; /* prevent iOS zoom */
    padding: 12px 14px;
  }
  .calc-modal-body .calc-result-card {
    padding: 20px;
  }
  .calc-modal-body .calc-result-price {
    font-size: 28px;
  }
  .calc-modal-body .calc-addon {
    padding: 10px 12px;
  }
  .calc-modal-body .calc-includes {
    padding: 16px;
  }
  .calc-modal-body .calc-brand-logo-wrap {
    padding: 12px;
    min-height: 50px;
  }
  .calc-modal-body .calc-brand-logo-wrap img {
    max-height: 40px;
    max-width: 160px;
  }
}


/* ═══════════════════════════════════════════════════════
   SPORT SUB-PAGES
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.sm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 56px 80px;
  background: var(--slate);
  overflow: hidden;
}
.sm-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.sm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding-top: 180px;
}
.sm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.sm-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.sm-breadcrumb a:hover { color: #fff; }
.sm-breadcrumb-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.sm-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 16px;
}
.sm-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.sm-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}
.sm-hero-name {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.9;
  color: #fff;
  margin: 4px 0 20px;
}
.sm-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.sm-hero-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sm-cert-pill {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 99px;
  color: rgba(255,255,255,0.85);
}

/* ── Stats Bar ── */
.sm-stats {
  background: var(--slate);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 56px;
}
.sm-stats-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sm-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.sm-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ── Section Layout ── */
.sm-section {
  max-width: 1300px;
  margin: 0 auto;
}
.sm-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.sm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 14px;
}
.sm-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.sm-h {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--slate);
}
.sm-h em {
  font-style: italic;
  color: var(--accent);
}

/* ── Surfaces ── */
.sm-surfaces {
  padding: 100px 56px;
  background: var(--canvas);
}
.sm-surf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sm-surf-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.sm-surf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.sm-surf-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
.sm-surf-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.tier-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 99px;
}
.sm-surf-tier {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}
.sm-surf-body {
  padding: 24px;
}
.sm-surf-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 4px;
}
.sm-surf-cert {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.sm-surf-spec {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sm-surf-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sm-surf-price-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  background: var(--accent-lt);
  color: var(--accent);
  border-radius: 99px;
}
.sm-surf-price-unit {
  font-size: 13px;
  color: var(--muted);
}

/* ── Anatomy / Cross-Section ── */
.anatomy {
  padding: 100px 56px;
  background: var(--canvas2);
}
.anatomy-wrap {
  max-width: 1300px;
  margin: 0 auto;
}
.anatomy-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.an-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 14px;
}
.an-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.an-h {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.05;
}
.an-h em {
  font-style: italic;
  color: var(--accent);
}
.an-desc {
  font-size: 15px;
  color: var(--mid);
  max-width: 480px;
  line-height: 1.7;
}
.anatomy-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.an-left { position: sticky; top: 100px; }
.an-right { display: flex; flex-direction: column; gap: 24px; }

/* Cross-section layers */
.cs-stack {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.cs-layer {
  border-bottom: 1px solid var(--border);
}
.cs-layer:last-child { border-bottom: none; }
.cs-layer-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.cs-layer-bar:hover { background: var(--canvas); }
.cs-layer-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.cs-layer-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cs-layer-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
}
.cs-layer-thick {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.cs-layer-arrow {
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.cs-layer.open .cs-layer-arrow { transform: rotate(180deg); }
.cs-layer-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
  padding: 0 20px;
}
.cs-layer.open .cs-layer-detail {
  max-height: 300px;
  padding: 0 20px 16px;
}
.cs-layer-detail p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}
.cs-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.cs-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mid);
}
.cs-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.an-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.an-photo {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.an-photo-caption {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--mid);
  background: #fff;
  border-top: 1px solid var(--border);
}
.an-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.an-spec-cell {
  background: #fff;
  padding: 16px 20px;
}
.an-spec-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.an-spec-value {
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
}

/* ── FAQ ── */
.sm-faq {
  padding: 100px 56px;
  background: var(--canvas);
}
.sm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sm-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.sm-faq-item:hover { border-color: var(--border2); }
.sm-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--slate);
  transition: background 0.2s;
}
.sm-faq-q:hover { background: var(--canvas); }
.sm-faq-q-icon {
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.sm-faq-item.open .sm-faq-q-icon { transform: rotate(180deg); }
.sm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}
.sm-faq-item.open .sm-faq-a {
  max-height: 500px;
  padding: 0 24px 20px;
}
.sm-faq-a p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Gallery ── */
.sm-gallery {
  padding: 100px 56px;
  background: var(--canvas2);
}
.sm-gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.sm-gal-tile {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.sm-gal-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.sm-gal-tile:hover { transform: scale(1.02); }
.sm-gal-info {
  position: relative;
  z-index: 2;
}
.sm-gal-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.sm-gal-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* ── Enquiry Form ── */
.sm-enq {
  padding: 100px 56px;
  background: var(--slate);
  color: #fff;
}
.sm-enq-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.sm-enq-head {
  text-align: center;
  margin-bottom: 48px;
}
.sm-enq-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sm-enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sm-enq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sm-enq-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sm-enq-input,
.sm-enq-textarea {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.sm-enq-input::placeholder,
.sm-enq-textarea::placeholder { color: rgba(255,255,255,0.3); }
.sm-enq-input:focus,
.sm-enq-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.sm-enq-textarea { min-height: 120px; resize: vertical; }
.sm-enq-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.sm-enq-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.sm-enq-submit:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── CTA ── */
.sm-cta {
  padding: 100px 56px;
  background: var(--accent);
  color: #fff;
  text-align: center;
}
.sm-cta-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.sm-cta .sm-h {
  color: #fff;
  margin-bottom: 16px;
}
.sm-cta .sm-h em { color: var(--accent-lt); }
.sm-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}
.sm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: var(--accent);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}
.sm-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sm-hero { padding: 0 24px 60px; min-height: 90vh; }
  .sm-hero-content { padding-top: 140px; }
  .sm-stats { padding: 32px 24px; }
  .sm-stats-wrap { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .sm-surfaces, .anatomy, .sm-faq, .sm-gallery, .sm-enq, .sm-cta { padding: 60px 24px; }
  .sm-section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sm-surf-grid { grid-template-columns: 1fr; }
  .anatomy-body { grid-template-columns: 1fr; }
  .an-left { position: static; }
  .sm-gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .sm-enq-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sm-stats-wrap { grid-template-columns: 1fr 1fr; }
  .sm-gal-grid { grid-template-columns: 1fr; }
  .sm-hero-name { font-size: clamp(48px, 14vw, 80px); }
}
