/* ═══════════════════════════════════════════════════════════
   IGM — International Granite & Marble
   Premium Industrial Edition · Poppins
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Core Palette ─────────────────────────── */
  --dark:       #0E1514;
  --dark-2:     #162120;
  --dark-3:     #1F302E;
  --teal:       #2A8FA3;
  --teal-lt:    #38A9BF;
  --teal-dim:   rgba(42,143,163,0.12);
  --teal-glow:  rgba(42,143,163,0.25);
  --sand:       #C9A96A;
  --sand-lt:    #D9BC85;
  --sand-dim:   rgba(201,169,106,0.10);
  --stone:      #F2EEE8;
  --stone-2:    #E8E3DA;
  --white:      #FFFFFF;

  /* ── Text ──────────────────────────────────── */
  --tx-dark:    #0E1514;
  --tx-mid:     #4A5450;
  --tx-stone:   rgba(242,238,232,0.85);
  --tx-muted:   rgba(242,238,232,0.50);
  --tx-faint:   rgba(242,238,232,0.25);

  /* ── Borders ───────────────────────────────── */
  --b-light:    rgba(255,255,255,0.07);
  --b-stone:    rgba(0,0,0,0.07);
  --b-teal:     rgba(42,143,163,0.25);

  /* ── Shadows ───────────────────────────────── */
  --sh-sm:  0 2px 20px rgba(0,0,0,0.12);
  --sh-md:  0 8px 40px rgba(0,0,0,0.18);
  --sh-lg:  0 24px 72px rgba(0,0,0,0.28);
  --sh-xl:  0 48px 120px rgba(0,0,0,0.40);

  /* ── Typography ────────────────────────────── */
  --ff: 'Poppins', -apple-system, sans-serif;

  /* ── Motion ────────────────────────────────── */
  --ease:   cubic-bezier(0.32, 0.72, 0, 1);
  --ease-2: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-3: cubic-bezier(0.76, 0, 0.24, 1);

  /* ── Layout ────────────────────────────────── */
  --max:    1340px;
  --nav-h:  84px;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--ff);
  background: var(--dark);
  color: var(--stone);
  overflow-x: hidden;
  cursor: none;
}
body.loading { overflow: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: none; }
::-webkit-scrollbar       { width: 2px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--teal); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 64px; }
@media (max-width: 1024px) { .wrap { padding: 0 40px; } }
@media (max-width: 640px)  { .wrap { padding: 0 24px; } }

/* ═══════════════════════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════════════════════ */
#cursor {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(42,143,163,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease), opacity .3s, border-color .3s;
}
#cursor.hovered       { width: 14px; height: 14px; background: var(--sand); }
#cursor-ring.hovered  { width: 56px; height: 56px; border-color: rgba(201,169,106,0.4); }
@media (pointer: coarse) {
  #cursor, #cursor-ring { display: none; }
  body   { cursor: auto; }
  button { cursor: pointer; }
}

/* ═══════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s var(--ease), visibility 1s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { text-align: center; }
.pre-logo-svg { width: 64px; margin: 0 auto 18px; color: var(--teal); animation: fadeUp .8s var(--ease-2) both; }
.pre-logo-img { height: 60px; width: auto; display: block; margin: 0 auto; mix-blend-mode: multiply; }
.pre-name {
  font-family: var(--ff); font-size: 11px; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--tx-muted); animation: fadeUp .8s .1s var(--ease-2) both;
}
.pre-bar-wrap {
  width: 140px; height: 1.5px; background: var(--dark-3);
  margin: 24px auto 0; overflow: hidden; border-radius: 2px;
  animation: fadeUp .6s .2s var(--ease-2) both;
}
.pre-bar { height: 100%; background: var(--teal); animation: preload 1.8s var(--ease) forwards; width: 0; }
@keyframes preload { 0%{width:0%} 60%{width:75%} 100%{width:100%} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }

/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  font-family: var(--ff); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 22px 14px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.38), 0 2px 8px rgba(0,0,0,0.20);
  transition: transform .35s var(--ease), box-shadow .35s;
  cursor: pointer;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 48px rgba(37,211,102,0.45); }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }
.wa-float-pulse {
  position: absolute; inset: 0;
  border-radius: 100px;
  animation: waPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%,100%  { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}
@media (max-width: 640px) {
  .wa-float { bottom: 24px; right: 20px; font-size: 0; padding: 16px; border-radius: 50%; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR — Floating glass pill
   ═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 18px 40px;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-pill {
  width: 100%; max-width: 1100px;
  display: flex; align-items: center; gap: 0;
  background: rgba(13,21,20,0.82);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--b-light);
  border-radius: 100px;
  padding: 6px 8px 6px 20px;
  pointer-events: all;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.nav-pill.scrolled {
  background: rgba(13,21,20,0.96);
  border-color: rgba(42,143,163,0.18);
  box-shadow: 0 4px 40px rgba(0,0,0,0.40);
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* pill is always cream in light theme — show natural logo */
  mix-blend-mode: multiply;
  transition: opacity .3s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.75; }
/* keep old classes inert if any remnant */
.nav-logo-icon { display: none; }
.nav-brand { display: none; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin: 0 auto; padding: 0 16px;
}
.nav-links a {
  font-family: var(--ff); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--tx-muted);
  padding: 8px 14px; border-radius: 100px;
  transition: color .25s var(--ease), background .25s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--teal); }
.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: white;
  font-family: var(--ff); font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 18px; border-radius: 100px;
  flex-shrink: 0;
  transition: background .3s, transform .25s var(--ease);
}
.nav-wa svg { width: 15px; height: 15px; }
.nav-wa:hover { background: #20c35d; transform: scale(1.03); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 4.5px;
  padding: 10px; cursor: pointer; flex-shrink: 0;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--tx-stone); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 900px) {
  #nav { padding: 14px 20px; }
  .nav-links, .nav-wa { display: none; }
  .nav-hamburger { display: flex; }
  .nav-pill { padding: 8px 8px 8px 20px; }
  .nav-brand-sub { display: none; }
}

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed;
  inset: 0; z-index: 700;
  background: rgba(13,21,20,0.97);
  backdrop-filter: blur(28px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
}
#mobile-menu.open { display: flex; }
.mob-link {
  font-family: var(--ff); font-size: 28px; font-weight: 600;
  color: var(--tx-stone); letter-spacing: -0.01em;
  padding: 12px 40px;
  transition: color .25s;
  opacity: 0; transform: translateY(20px);
}
#mobile-menu.open .mob-link {
  animation: mobIn .5s var(--ease-2) forwards;
}
#mobile-menu.open .mob-link:nth-child(1) { animation-delay: .05s; }
#mobile-menu.open .mob-link:nth-child(2) { animation-delay: .10s; }
#mobile-menu.open .mob-link:nth-child(3) { animation-delay: .15s; }
#mobile-menu.open .mob-link:nth-child(4) { animation-delay: .20s; }
#mobile-menu.open .mob-link:nth-child(5) { animation-delay: .25s; }
#mobile-menu.open .mob-link:nth-child(6) { animation-delay: .30s; }
.mob-link:hover { color: var(--teal); }
.mob-wa-btn {
  margin-top: 20px; display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  font-family: var(--ff); font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 100px;
  opacity: 0; transform: translateY(20px);
  animation: mobIn .5s .35s var(--ease-2) forwards;
}
#mobile-menu.open .mob-wa-btn { animation: mobIn .5s .35s var(--ease-2) forwards; }
@keyframes mobIn { to { opacity:1; transform:translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1s var(--ease-2), transform 1s var(--ease-2);
  transition-delay: var(--d, 0s);
}
.reveal.left  { transform: translateX(-36px); }
.reveal.right { transform: translateX(36px); }
.reveal.fade  { transform: none; }
.reveal.up    { transform: translateY(36px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ═══════════════════════════════════════════════════════════
   SHARED ATOMS
   ═══════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 1.5px;
  background: var(--teal); border-radius: 1px; flex-shrink: 0;
}
.eyebrow.sand { color: var(--sand); }
.eyebrow.sand::before { background: var(--sand); }
.eyebrow.dark-ctx { color: var(--tx-muted); }
.eyebrow.dark-ctx::before { background: var(--tx-muted); }

.section-title {
  font-family: var(--ff);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.022em;
}
.section-title em { font-style: normal; color: var(--teal); }
.section-title.sand em { color: var(--sand); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; border-radius: 100px;
  padding: 14px 32px;
  transition: transform .3s var(--ease), box-shadow .3s;
  cursor: pointer;
}
.btn:active { transform: scale(0.97) !important; }
.btn-teal {
  background: var(--teal); color: white;
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(42,143,163,0.35); }
.btn-ghost-light {
  border: 1.5px solid rgba(255,255,255,0.20); color: var(--tx-stone);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.50); color: white; transform: translateY(-2px); }
.btn-ghost-dark {
  border: 1.5px solid var(--b-stone); color: var(--tx-mid);
}
.btn-ghost-dark:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-sand {
  background: var(--sand); color: var(--dark);
}
.btn-sand:hover { background: var(--sand-lt); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,169,106,0.30); }
.btn-wa-outline {
  border: 1.5px solid #25D366; color: #25D366;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff); font-size: 12px; font-weight: 600;
  padding: 13px 28px; border-radius: 100px;
  letter-spacing: 0.05em;
  transition: background .3s, transform .3s var(--ease);
}
.btn-wa-outline:hover { background: rgba(37,211,102,0.10); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) contrast(1.08) saturate(0.9);
  transform: scale(1.04);
  transition: transform 12s ease-out;
}
#hero.loaded .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(14,21,20,0.92) 0%, rgba(14,21,20,0.55) 55%, rgba(14,21,20,0.15) 100%),
    linear-gradient(to top,    rgba(14,21,20,0.95) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 0 72px;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr;
  align-items: flex-end; gap: 0;
  padding-top: calc(var(--nav-h) + 60px);
}
.hero-text-col { max-width: 680px; padding-bottom: 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff); font-size: 9px; font-weight: 600;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 32px;
  animation: fadeUp .8s .3s var(--ease-2) both;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%; flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--ff);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.035em; color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .9s .4s var(--ease-2) both;
}
.hero-h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 16.5px; font-weight: 400; line-height: 1.78;
  color: rgba(242,238,232,0.72); max-width: 480px;
  margin-bottom: 44px;
  animation: fadeUp .8s .5s var(--ease-2) both;
}
.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .8s .6s var(--ease-2) both;
}
/* Hero right col — quick stats */
.hero-stats-col {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid var(--b-light); padding-left: 48px;
  animation: fadeUp .8s .5s var(--ease-2) both;
}
.hero-stat {
  padding: 20px 0; border-bottom: 1px solid var(--b-light);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-num {
  font-family: var(--ff); font-size: 44px; font-weight: 700;
  color: var(--white); line-height: 1; letter-spacing: -0.03em;
}
.hero-stat-num em { color: var(--teal); font-style: normal; }
.hero-stat-label {
  font-family: var(--ff); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--tx-faint); margin-top: 5px;
}
/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; text-align: center;
  animation: fadeUp .8s .9s var(--ease-2) both;
}
.hero-scroll span {
  display: block; font-family: var(--ff); font-size: 8px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--tx-faint);
  margin-bottom: 8px;
}
.scroll-line {
  width: 1px; height: 40px; background: var(--b-light);
  margin: 0 auto;
  animation: scrollAnim 2.5s var(--ease) infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0) translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  80%  { transform: scaleY(1) translateY(0); opacity: 1; }
  100% { transform: scaleY(1) translateY(0); opacity: 0; }
}
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-stats-col { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { padding: 0 40px; padding-top: calc(var(--nav-h) + 40px); }
  .hero-content { padding: 0 0 56px; }
}
@media (max-width: 640px) {
  .hero-inner { padding: 0 24px; padding-top: calc(var(--nav-h) + 32px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 0 0 44px; }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--b-light);
  border-bottom: 1px solid var(--b-light);
  overflow: hidden; padding: 14px 0; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 32px;
  animation: marqueeScroll 50s linear infinite;
}
.marquee-track span {
  font-family: var(--ff); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--tx-faint);
  white-space: nowrap;
}
.marquee-track .sep { color: var(--teal); font-size: 5px; opacity: .5; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════════
   3 PILLARS
   ═══════════════════════════════════════════════════════════ */
#pillars {
  background: var(--dark-2);
  border-bottom: 1px solid var(--b-light);
}
.pillars-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 56px 52px;
  border-right: 1px solid var(--b-light);
  position: relative;
  transition: background .4s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(42,143,163,0.05); }
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 52px; right: 52px;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: var(--ff); font-size: 52px; font-weight: 700;
  color: var(--white); line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.pillar-num em { color: var(--teal); font-style: normal; font-size: 32px; }
.pillar-title {
  font-family: var(--ff); font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.pillar-body {
  font-size: 15px; font-weight: 400; line-height: 1.75; color: var(--tx-muted);
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--b-light); padding: 40px 32px; }
  .pillar:last-child { border-bottom: none; }
  .pillar::before { left: 32px; right: 32px; }
}

/* ── Pillar counters row ──────────────────────────────────── */
.pillars-counters {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--b-light);
}
.pillar-count {
  padding: 52px 48px;
  border-right: 1px solid var(--b-light);
  position: relative;
}
.pillar-count:last-child { border-right: none; }
.pillar-count-num {
  font-family: var(--ff); font-size: 56px; font-weight: 700;
  color: var(--white); line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 2px;
}
.pillar-count-num em {
  color: var(--teal); font-style: normal; font-size: 34px;
}
.pillar-count-label {
  font-family: var(--ff); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tx-muted);
}
@media (max-width: 900px) {
  .pillars-counters { grid-template-columns: repeat(2, 1fr); }
  .pillar-count { padding: 36px 28px; border-bottom: 1px solid var(--b-light); }
  .pillar-count:nth-child(2) { border-right: none; }
  .pillar-count:nth-child(3) { border-right: 1px solid var(--b-light); border-bottom: none; }
  .pillar-count:last-child { border-bottom: none; }
  .pillar-count-num { font-size: 42px; }
}
@media (max-width: 540px) {
  .pillars-counters { grid-template-columns: repeat(2, 1fr); }
  .pillar-count { padding: 28px 20px; }
  .pillar-count-num { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS — Asymmetric Bento Grid
   ═══════════════════════════════════════════════════════════ */
#products {
  background: var(--dark);
  padding: 120px 0;
}
.section-header {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px;
}
.section-header-left {}
.section-header-right {
  font-size: 15px; font-weight: 400; color: var(--tx-muted); max-width: 340px; text-align: right; line-height: 1.7;
}
@media (max-width: 900px) {
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 40px; }
  .section-header-right { text-align: left; }
}
@media (max-width: 640px) {
  .section-header { padding: 0 24px; }
}
.bento-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 580px;
  gap: 10px;
}
/* Main card */
.bento-main {
  position: relative; overflow: hidden;
  display: block; border-radius: 3px;
  background: var(--dark-2);
}
.bento-main-img {
  position: absolute; inset: 0;
  transition: transform 9s ease-out;
}
.bento-main:hover .bento-main-img { transform: scale(1.07); }
.bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,21,20,0.92) 0%,
    rgba(14,21,20,0.35) 50%,
    rgba(14,21,20,0.10) 100%
  );
  transition: opacity .4s;
}
.bento-main:hover .bento-overlay { opacity: 0.85; }
.bento-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 44px; z-index: 2;
}
.bento-cat-n {
  font-family: var(--ff); font-size: 9px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sand); display: block; margin-bottom: 10px;
}
.bento-title {
  font-family: var(--ff);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700; color: var(--white);
  line-height: 1.06; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.bento-sub {
  font-size: 12.5px; font-weight: 400; color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em; margin-bottom: 22px; display: block;
}
.bento-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal);
  transition: gap .35s var(--ease), color .3s;
}
.bento-main:hover .bento-cta { gap: 16px; }
/* Side cards */
.bento-side {
  display: grid; grid-template-rows: repeat(3, 1fr); gap: 10px;
}
.bento-sm {
  position: relative; overflow: hidden;
  border-radius: 3px; display: block;
  background: var(--dark-2);
}
.bento-sm-img {
  position: absolute; inset: 0;
  transition: transform 8s ease-out;
}
.bento-sm:hover .bento-sm-img { transform: scale(1.10); }
.bento-sm .bento-overlay {
  background: linear-gradient(
    to top,
    rgba(14,21,20,0.88) 0%,
    rgba(14,21,20,0.20) 60%,
    transparent 100%
  );
}
.bento-sm .bento-label { padding: 24px 28px; }
.bento-sm .bento-title { font-size: clamp(18px, 1.8vw, 26px); margin-bottom: 4px; }
.bento-sm .bento-sub { display: none; }
.bento-sm .bento-cat-n { margin-bottom: 6px; }
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: 460px auto; padding: 0 40px; }
  .bento-side { grid-template-rows: auto; grid-template-columns: repeat(3, 1fr); height: 220px; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-rows: 340px auto; padding: 0 24px; gap: 8px; }
  .bento-side { grid-template-columns: 1fr; grid-template-rows: repeat(3, 160px); height: auto; }
  .bento-label { padding: 24px 28px; }
}

/* ── Products 6-card grid (3 per row, uses .stone-card from products page) ── */
.products-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Taller image — 3-col cards are wider, taller image looks proportional */
.products-grid .stone-img { height: 290px; }
/* Compact info — no desc, no cta */
.products-grid .stone-info {
  padding: 14px 18px 18px;
  flex: 0;
}
.products-grid .stone-desc {
  font-size: 13px;
  line-height: 1.55;
  /* clamp to 2 lines max */
  max-height: calc(13px * 1.55 * 2);
  overflow: hidden;
  display: block;
  margin-top: 7px;
  margin-bottom: 0;
  flex-shrink: 0;
  color: rgba(28,39,36,0.58);
}
.products-grid .stone-cta  { display: none; }
.products-cta {
  max-width: var(--max); margin: 44px auto 0; padding: 0 64px;
  display: flex; justify-content: center;
}
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
  .products-cta  { padding: 0 40px; }
  .products-grid .stone-img { height: 260px; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 16px; }
  .products-cta  { padding: 0 24px; }
  .products-grid .stone-img { height: 220px; }
}

/* ── Projects preview 3-card grid (uses .project-card from projects page) ── */
#projects-preview {
  background: var(--stone);
  padding: 100px 0;
}
.proj-mini-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Override the alternate-height rule — all 3 preview cards same height */
.proj-mini-grid .project-card { min-height: 440px; }
.proj-mini-grid .project-card:nth-child(3n+1) { min-height: 440px; }
@media (max-width: 900px) {
  .proj-mini-grid { grid-template-columns: 1fr; padding: 0 40px; }
  .proj-mini-grid .project-card,
  .proj-mini-grid .project-card:nth-child(3n+1) { min-height: 320px; }
  #projects-preview { padding: 72px 0; }
}
@media (max-width: 540px) {
  .proj-mini-grid { padding: 0 24px; gap: 16px; }
  .proj-mini-grid .project-card,
  .proj-mini-grid .project-card:nth-child(3n+1) { min-height: 280px; }
  #projects-preview { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════════════
   FEATURED PROJECT — Editorial Split
   ═══════════════════════════════════════════════════════════ */
#project-feature {
  background: var(--stone);
}
.feature-split {
  display: grid; grid-template-columns: 58% 42%;
  min-height: 620px;
}
.feature-img {
  position: relative; overflow: hidden;
}
.feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  transition: transform .9s var(--ease);
  filter: contrast(1.05) saturate(0.95);
}
#project-feature:hover .feature-img img { transform: scale(1.04); }
.feature-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(242,238,232,0.15) 100%);
}
.feature-text {
  background: var(--dark); padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--b-light);
}
.feature-text .eyebrow { color: var(--sand); }
.feature-text .eyebrow::before { background: var(--sand); }
.feature-title {
  font-family: var(--ff);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700; color: var(--white);
  line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.feature-body {
  font-size: 15.5px; font-weight: 400; line-height: 1.80;
  color: var(--tx-muted); margin-bottom: 36px;
}
.feature-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--b-light);
  border: 1px solid var(--b-light);
  border-radius: 3px; overflow: hidden;
  margin-bottom: 40px;
}
.feature-meta-item {
  padding: 20px 24px; background: var(--dark-2);
}
.feature-meta-item span {
  display: block; font-family: var(--ff); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--tx-faint); margin-bottom: 5px;
}
.feature-meta-item strong {
  font-family: var(--ff); font-size: 14px; font-weight: 600; color: var(--tx-stone);
}
@media (max-width: 1100px) {
  .feature-split { grid-template-columns: 1fr; }
  .feature-img { height: 380px; }
  .feature-img-overlay { display: none; }
  .feature-text { border-left: none; border-top: 1px solid var(--b-light); padding: 56px 40px; }
}
@media (max-width: 640px) { .feature-text { padding: 44px 24px; } }

/* ═══════════════════════════════════════════════════════════
   SERVICES — Editorial numbered list
   ═══════════════════════════════════════════════════════════ */
#services {
  background: var(--dark);
  padding: 120px 0;
  border-top: 1px solid var(--b-light);
}
.services-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start;
}
.services-left { position: sticky; top: 120px; }
.services-left .section-title { color: var(--white); margin-bottom: 20px; }
.services-left .section-title em { color: var(--teal); }
.services-left p {
  font-size: 15.5px; font-weight: 400; line-height: 1.80; color: var(--tx-muted);
  margin-bottom: 36px;
}
.services-list { display: flex; flex-direction: column; }
.svc-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--b-light);
  transition: background .3s;
  cursor: default;
}
.svc-item:first-child { border-top: 1px solid var(--b-light); }
.svc-item:hover { background: rgba(42,143,163,0.04); padding-left: 12px; padding-right: 12px; border-radius: 4px; border-color: transparent; }
.svc-n {
  font-family: var(--ff); font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; color: var(--teal); padding-top: 3px;
}
.svc-body h4 {
  font-family: var(--ff); font-size: 16px; font-weight: 600;
  color: var(--tx-stone); margin-bottom: 6px; line-height: 1.3;
}
.svc-body p {
  font-size: 15px; font-weight: 400; line-height: 1.72; color: var(--tx-muted);
}
@media (max-width: 1100px) {
  .services-inner { grid-template-columns: 1fr; gap: 56px; }
  .services-left { position: static; }
}
@media (max-width: 640px) {
  #services { padding: 80px 0; }
  .services-inner { padding: 0 24px; }
  .svc-item { grid-template-columns: 36px 1fr; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   SHOWROOM / WHY US
   ═══════════════════════════════════════════════════════════ */
#showroom {
  position: relative; min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.showroom-bg {
  position: absolute; inset: 0;
}
.showroom-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35) contrast(1.05);
}
.showroom-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,21,20,0.95) 0%, rgba(14,21,20,0.70) 55%, rgba(14,21,20,0.40) 100%);
}
.showroom-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 96px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.showroom-text .section-title { color: var(--white); margin-bottom: 20px; }
.showroom-text .section-title em { color: var(--teal); }
.showroom-text p { font-size: 15px; font-weight: 400; line-height: 1.80; color: var(--tx-muted); margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--b-light);
}
.why-item:first-child { border-top: 1px solid var(--b-light); }
.why-dash { width: 20px; height: 1.5px; background: var(--teal); flex-shrink: 0; margin-top: 11px; }
.why-item-body h5 { font-size: 14px; font-weight: 600; color: var(--tx-stone); margin-bottom: 3px; }
.why-item-body p  { font-size: 14.5px; font-weight: 400; color: var(--tx-muted); line-height: 1.65; }
@media (max-width: 1100px) {
  .showroom-content { grid-template-columns: 1fr; gap: 48px; padding: 72px 40px; }
}
@media (max-width: 640px) {
  .showroom-content { padding: 64px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT STRIP
   ═══════════════════════════════════════════════════════════ */
#contact-strip {
  background: var(--dark-2);
  padding: 100px 0;
  border-top: 1px solid var(--b-light);
}
.contact-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
}
.contact-left .section-title { color: var(--white); margin-bottom: 16px; font-size: clamp(28px, 3.2vw, 52px); }
.contact-left p { font-size: 16px; color: var(--tx-muted); line-height: 1.75; margin-bottom: 36px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-right { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 0; border-bottom: 1px solid var(--b-light);
  transition: background .3s;
}
.contact-row:first-child { border-top: 1px solid var(--b-light); }
.contact-row:hover { padding-left: 8px; padding-right: 8px; background: rgba(42,143,163,0.05); border-radius: 4px; border-color: transparent; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--b-teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.contact-row-label {
  font-family: var(--ff); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tx-faint); margin-bottom: 3px;
}
.contact-row-value {
  font-family: var(--ff); font-size: 15.5px; font-weight: 500;
  color: var(--tx-stone); transition: color .2s;
}
.contact-row a { color: var(--tx-stone); }
.contact-row a:hover { color: var(--teal); }
.map-link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff); font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--teal);
  margin-top: 28px;
  transition: gap .3s var(--ease);
}
.map-link-btn:hover { gap: 14px; }
.map-link-btn svg { width: 14px; height: 14px; }
@media (max-width: 1100px) {
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 640px) {
  #contact-strip { padding: 72px 0; }
  .contact-inner { padding: 0 24px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
#footer {
  background: #080F0E;
  border-top: 1px solid var(--b-light);
}
.footer-main {
  max-width: var(--max); margin: 0 auto; padding: 72px 64px 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-logo-img { height: 42px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-logo-icon { display: none; }
.footer-logo-text { display: none; }
.footer-tagline {
  font-family: var(--ff); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal);
  opacity: .65; margin-bottom: 14px;
}
.footer-desc { font-size: 14.5px; font-weight: 400; line-height: 1.75; color: rgba(255,255,255,0.22); }
.footer-col h5 {
  font-family: var(--ff); font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--ff); font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.28); transition: color .2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,0.26);
}
.footer-contact-item a { color: rgba(255,255,255,0.26); transition: color .2s; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-contact-item svg { width: 12px; height: 12px; opacity: .4; flex-shrink: 0; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 22px 64px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.12); }
@media (max-width: 1100px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 52px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative; min-height: 480px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  padding-top: var(--nav-h);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,21,20,0.90) 0%, rgba(14,21,20,0.40) 55%, rgba(14,21,20,0.15) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: 0 64px 60px; width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--ff); font-size: 9px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--tx-faint);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span.current { color: rgba(242,238,232,0.60); }
.page-hero-content h1 {
  font-family: var(--ff); font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 700; color: var(--white); line-height: 1.08;
  letter-spacing: -0.022em; margin-bottom: 14px;
}
.page-hero-content p { font-size: 16px; color: var(--tx-muted); max-width: 520px; line-height: 1.70; }
@media (max-width: 900px) {
  .page-hero { min-height: 360px; }
  .page-hero-content { padding: 0 40px 48px; }
}
@media (max-width: 640px) {
  .page-hero { min-height: 320px; }
  .page-hero-content { padding: 0 24px 40px; }
}

/* ═══════════════════════════════════════════════════════════
   FILTER TABS (products / projects)
   ═══════════════════════════════════════════════════════════ */
.filter-bar {
  max-width: var(--max); margin: 0 auto;
  padding: 0 64px 56px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--ff); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--tx-muted);
  padding: 10px 22px; border-radius: 100px;
  border: 1.5px solid var(--b-light);
  background: transparent;
  transition: color .25s, background .25s, border-color .25s;
  cursor: pointer; white-space: nowrap;
}
.filter-btn:hover  { color: var(--white); border-color: rgba(255,255,255,.18); }
.filter-btn.active { color: var(--dark); background: var(--teal); border-color: var(--teal); }
@media (max-width: 900px)  { .filter-bar { padding: 0 40px 48px; } }
@media (max-width: 640px)  { .filter-bar { padding: 0 24px 36px; gap: 6px; }
  .filter-btn { font-size: 11px; padding: 9px 16px; } }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE — Stone Grid
   ═══════════════════════════════════════════════════════════ */
#products-page { background: var(--dark); padding: 96px 0 120px; }
.stone-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stone-card {
  background: var(--dark-2);
  border: 1px solid var(--b-light);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
}
.stone-card:hover {
  border-color: var(--b-teal);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.stone-card[data-cat].hidden { display: none; }
.stone-img {
  position: relative; height: 240px; overflow: hidden;
}
.stone-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease-out;
}
.stone-card:hover .stone-img img { transform: scale(1.07); }
.stone-cat-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--ff); font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dark); background: var(--sand);
  padding: 5px 12px; border-radius: 100px;
}
.stone-info {
  padding: 22px 24px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.stone-name {
  font-family: var(--ff); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 4px; letter-spacing: -0.01em;
}
.stone-origin {
  font-family: var(--ff); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.stone-desc {
  font-size: 14px; font-weight: 400; line-height: 1.68;
  color: var(--tx-muted); flex: 1; margin-bottom: 18px;
}
.stone-uses {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.stone-use-tag {
  font-family: var(--ff); font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--tx-faint); background: rgba(255,255,255,0.04);
  border: 1px solid var(--b-light);
  padding: 4px 10px; border-radius: 100px;
}
.stone-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); align-self: flex-start;
  transition: gap .3s var(--ease);
}
.stone-card:hover .stone-cta { gap: 14px; }
@media (max-width: 1100px) { .stone-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; } }
@media (max-width: 640px)  { .stone-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 16px; }
  .stone-img { height: 200px; } }

/* Products intro block */
.products-intro {
  max-width: var(--max); margin: 0 auto;
  padding: 0 64px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
}
.products-intro h2 { color: var(--white); margin-bottom: 0; }
.products-intro p { font-size: 16px; line-height: 1.76; color: var(--tx-muted); }
@media (max-width: 900px) {
  .products-intro { grid-template-columns: 1fr; gap: 20px; padding: 0 40px 48px; }
}
@media (max-width: 640px) { .products-intro { padding: 0 24px 36px; } }

/* ═══════════════════════════════════════════════════════════
   PROJECTS PAGE
   ═══════════════════════════════════════════════════════════ */
#projects-page { background: var(--dark); padding: 96px 0 120px; }
.projects-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.project-card {
  position: relative; overflow: hidden; border-radius: 4px;
  display: block; background: var(--dark-2);
  min-height: 420px;
}
.project-card:nth-child(3n+1) { min-height: 500px; }
.project-card[data-cat].hidden { display: none; }
.project-img {
  position: absolute; inset: 0;
  transition: transform 9s ease-out;
}
.project-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
  transition: filter .6s;
}
.project-card:hover .project-img { transform: scale(1.05); }
.project-card:hover .project-img img { filter: brightness(0.55) contrast(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,21,20,0.95) 0%, rgba(14,21,20,0.25) 55%, transparent 100%);
}
.project-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 36px 32px; z-index: 2;
  display: flex; flex-direction: column; gap: 0;
}
.project-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px;
}
.project-tag {
  font-family: var(--ff); font-size: 9px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--sand); background: rgba(201,169,106,0.12);
  border: 1px solid rgba(201,169,106,0.25);
  padding: 4px 10px; border-radius: 100px;
}
.project-name {
  font-family: var(--ff); font-size: clamp(18px, 2vw, 26px);
  font-weight: 700; color: var(--white); letter-spacing: -0.015em;
  line-height: 1.12; margin-bottom: 6px;
}
.project-loc {
  font-family: var(--ff); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tx-muted); margin-bottom: 8px;
}
.project-desc {
  font-size: 13px; font-weight: 400; line-height: 1.60;
  color: rgba(242,238,232,0.50);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-size {
  display: inline-block;
  font-family: var(--ff); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-top: 6px;
}
.project-arrow {
  position: absolute; top: 24px; right: 24px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(42,143,163,0.15); border: 1px solid var(--b-teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  opacity: 0; transform: scale(0.8);
  transition: opacity .3s, transform .3s var(--ease);
}
.project-card:hover .project-arrow { opacity: 1; transform: scale(1); }
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; padding: 0 40px; }
  .project-card:nth-child(3n+1) { min-height: 380px; }
}
@media (max-width: 640px) {
  .projects-grid { padding: 0 24px; gap: 16px; }
  .project-card { min-height: 300px; }
  .project-card:nth-child(3n+1) { min-height: 340px; }
  .project-label { padding: 24px 20px 20px; }
}

/* Projects stats bar */
.projects-stats {
  max-width: var(--max); margin: 0 auto; padding: 0 64px 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-bottom: 1px solid var(--b-light);
  margin-bottom: 0;
}
.proj-stat {
  padding: 32px 0; border-right: 1px solid var(--b-light);
  padding-right: 32px; padding-left: 0;
}
.proj-stat:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.proj-stat-num {
  font-family: var(--ff); font-size: 40px; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 4px;
}
.proj-stat-num em { color: var(--teal); font-style: normal; }
.proj-stat-label {
  font-family: var(--ff); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tx-faint);
}
@media (max-width: 900px) {
  .projects-stats { grid-template-columns: repeat(2,1fr); padding: 0 40px 48px; }
  .proj-stat:nth-child(2) { border-right: none; }
  .proj-stat:nth-child(3) { padding-left: 0; border-right: 1px solid var(--b-light); }
  .proj-stat:nth-child(4) { padding-left: 32px; }
}
@media (max-width: 640px) {
  .projects-stats { padding: 0 24px 36px; grid-template-columns: repeat(2,1fr); }
  .proj-stat-num { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — Large service sections
   ═══════════════════════════════════════════════════════════ */
#services-page { background: var(--dark); }
.svc-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--b-light);
}
.svc-section:nth-child(even) { background: var(--dark-2); }
.svc-split {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.svc-split.reverse { direction: rtl; }
.svc-split.reverse > * { direction: ltr; }
.svc-photo {
  border-radius: 4px; overflow: hidden;
  position: relative;
  height: 440px;
}
.svc-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 9s ease-out;
  filter: brightness(0.85);
}
.svc-section:hover .svc-photo img { transform: scale(1.04); }
.svc-number {
  font-family: var(--ff); font-size: 72px; font-weight: 800;
  color: rgba(42,143,163,0.12); line-height: 1;
  letter-spacing: -0.04em; margin-bottom: -16px;
  display: block;
}
.svc-section-title {
  font-family: var(--ff); font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; line-height: 1.12;
  margin-bottom: 16px;
}
.svc-section-body {
  font-size: 15.5px; font-weight: 400; line-height: 1.78;
  color: var(--tx-muted); margin-bottom: 28px;
}
.svc-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.svc-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; font-weight: 400; color: var(--tx-stone); line-height: 1.5;
}
.svc-feature::before {
  content: '';
  width: 16px; height: 1.5px; background: var(--teal);
  flex-shrink: 0; margin-top: 10px;
}
@media (max-width: 1100px) {
  .svc-split { grid-template-columns: 1fr; gap: 40px; padding: 0 40px; direction: ltr !important; }
  .svc-split.reverse > * { direction: ltr; }
  .svc-photo { height: 320px; }
  .svc-section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .svc-split { padding: 0 24px; gap: 32px; }
  .svc-photo { height: 260px; }
  .svc-section { padding: 56px 0; }
  .svc-number { font-size: 52px; }
}

/* Services overview intro */
.services-overview {
  background: var(--dark-2);
  padding: 80px 0;
  border-bottom: 1px solid var(--b-light);
}
.services-overview-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.services-overview p { font-size: 16px; line-height: 1.78; color: var(--tx-muted); }
.svc-quick-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.svc-quick-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff); font-size: 13px; font-weight: 500;
  color: var(--tx-stone); padding: 12px 16px;
  background: rgba(42,143,163,0.06);
  border: 1px solid var(--b-teal); border-radius: 4px;
}
.svc-quick-item::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
@media (max-width: 900px) {
  .services-overview-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 40px; }
}
@media (max-width: 640px) {
  .services-overview-inner { padding: 0 24px; }
  .svc-quick-list { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
#about-page { background: var(--dark); }

.about-story {
  padding: 100px 0;
  border-bottom: 1px solid var(--b-light);
}
.about-story-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
}
.about-story-img {
  border-radius: 4px; overflow: hidden; position: relative;
  height: 520px;
}
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }
.about-story-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--dark-2); border: 1px solid var(--b-teal);
  padding: 16px 22px; border-radius: 4px;
}
.about-story-img-badge strong {
  display: block; font-family: var(--ff); font-size: 28px;
  font-weight: 800; color: var(--teal); letter-spacing: -0.02em; line-height: 1;
}
.about-story-img-badge span {
  font-family: var(--ff); font-size: 10px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--tx-faint);
}
.about-story-text .section-title { color: var(--white); margin-bottom: 24px; }
.about-story-text .section-title em { color: var(--teal); }
.about-story-text p {
  font-size: 15.5px; font-weight: 400; line-height: 1.80;
  color: var(--tx-muted); margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 40px; }
  .about-story-img { height: 360px; }
  .about-story { padding: 72px 0; }
}
@media (max-width: 640px) {
  .about-story-inner { padding: 0 24px; }
  .about-story-img { height: 280px; }
  .about-story { padding: 56px 0; }
}

/* About timeline */
.about-timeline {
  padding: 96px 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--b-light);
}
.about-timeline-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
}
.about-timeline-inner .section-title { color: var(--white); margin-bottom: 56px; }
.about-timeline-inner .section-title em { color: var(--teal); }
.timeline-list { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 40px; align-items: start;
  padding: 28px 0; border-top: 1px solid var(--b-light);
}
.timeline-item:last-child { border-bottom: 1px solid var(--b-light); }
.timeline-year {
  font-family: var(--ff); font-size: 28px; font-weight: 800;
  color: rgba(42,143,163,0.35); letter-spacing: -0.03em; padding-top: 2px;
}
.timeline-content h4 {
  font-family: var(--ff); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.timeline-content p {
  font-size: 15px; font-weight: 400; line-height: 1.70;
  color: var(--tx-muted);
}
@media (max-width: 900px) {
  .about-timeline-inner { padding: 0 40px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 24px; }
  .timeline-year { font-size: 22px; }
  .about-timeline { padding: 72px 0; }
}
@media (max-width: 640px) {
  .about-timeline-inner { padding: 0 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .timeline-year { font-size: 18px; color: var(--teal); opacity: .7; }
  .about-timeline { padding: 56px 0; }
}

/* About quarries & factory */
.about-infra {
  padding: 100px 0;
  border-bottom: 1px solid var(--b-light);
}
.about-infra-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
}
.about-infra-inner > .eyebrow { display: block; margin-bottom: 16px; }
.about-infra-inner .section-title { color: var(--white); margin-bottom: 48px; max-width: 520px; }
.about-infra-inner .section-title em { color: var(--teal); }
.infra-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.infra-card {
  background: var(--dark-2); border: 1px solid var(--b-light);
  border-radius: 4px; overflow: hidden;
  transition: border-color .35s, transform .35s var(--ease);
}
.infra-card:hover { border-color: var(--b-teal); transform: translateY(-4px); }
.infra-card-img { height: 220px; }
.infra-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.80); transition: filter .4s; }
.infra-card:hover .infra-card-img img { filter: brightness(0.90); }
.infra-card-body { padding: 28px; }
.infra-card-body h4 {
  font-family: var(--ff); font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.infra-card-body span {
  font-family: var(--ff); font-size: 10px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--teal);
  display: block; margin-bottom: 14px;
}
.infra-card-body p { font-size: 14.5px; font-weight: 400; line-height: 1.70; color: var(--tx-muted); }
@media (max-width: 1100px) {
  .infra-grid { grid-template-columns: 1fr 1fr; }
  .about-infra-inner { padding: 0 40px; }
}
@media (max-width: 640px) {
  .infra-grid { grid-template-columns: 1fr; }
  .about-infra-inner { padding: 0 24px; }
  .about-infra { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
#contact-page { background: var(--dark); }
.contact-page-inner {
  max-width: var(--max); margin: 0 auto; padding: 96px 64px 120px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-page-left .section-title { color: var(--white); margin-bottom: 14px; }
.contact-page-left .section-title em { color: var(--teal); }
.contact-page-left > p {
  font-size: 16px; line-height: 1.76; color: var(--tx-muted);
  margin-bottom: 48px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.cinfo-row {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--b-light);
}
.cinfo-row:first-child { border-top: 1px solid var(--b-light); }
.cinfo-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--b-teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
  transition: background .3s, transform .3s var(--ease);
}
.cinfo-row:hover .cinfo-icon { background: var(--teal); color: white; transform: scale(1.08); }
.cinfo-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cinfo-label {
  font-family: var(--ff); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--tx-faint); display: block; margin-bottom: 3px;
}
.cinfo-value {
  font-family: var(--ff); font-size: 16px; font-weight: 500;
  color: var(--tx-stone); transition: color .2s;
}
.cinfo-value a { color: var(--tx-stone); }
.cinfo-row:hover .cinfo-value a { color: var(--teal); }
.contact-wa-big {
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: white;
  font-family: var(--ff); font-size: 15px; font-weight: 700;
  padding: 18px 32px; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s;
  width: fit-content;
}
.contact-wa-big svg { width: 22px; height: 22px; flex-shrink: 0; }
.contact-wa-big:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,.38); }
.contact-page-right { position: sticky; top: 110px; }
.map-container {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--b-light);
  height: 420px; background: var(--dark-2);
}
.map-container iframe {
  width: 100%; height: 100%; border: none; filter: saturate(0.7) brightness(0.75);
}
.map-address-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark-2); border: 1px solid var(--b-light);
  border-top: none; border-radius: 0 0 4px 4px;
  padding: 16px 20px;
}
.map-address-bar svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.map-address-bar span { font-size: 14px; font-weight: 400; color: var(--tx-muted); }
.map-address-bar a {
  font-family: var(--ff); font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--teal);
  margin-left: auto; transition: opacity .2s; white-space: nowrap;
}
.map-address-bar a:hover { opacity: .75; }
@media (max-width: 1100px) {
  .contact-page-inner { grid-template-columns: 1fr; gap: 56px; padding: 72px 40px 96px; }
  .contact-page-right { position: static; }
  .map-container { height: 340px; }
}
@media (max-width: 640px) {
  .contact-page-inner { padding: 56px 24px 80px; }
  .map-container { height: 280px; }
  .contact-wa-big { font-size: 14px; padding: 16px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   SITEMAP PAGE
   ═══════════════════════════════════════════════════════════ */
#sitemap-page {
  background: var(--dark); padding: 80px 0 120px;
}
.sitemap-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 64px;
}
.sitemap-inner > .eyebrow { margin-bottom: 12px; }
.sitemap-inner .section-title { color: var(--white); margin-bottom: 56px; }
.sitemap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
}
.sitemap-col h3 {
  font-family: var(--ff); font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--b-light);
}
.sitemap-col ul { display: flex; flex-direction: column; gap: 0; }
.sitemap-col li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sitemap-col a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff); font-size: 15px; font-weight: 400;
  color: var(--tx-muted); padding: 12px 0;
  transition: color .2s, padding-left .2s;
}
.sitemap-col a:hover { color: var(--teal); padding-left: 6px; }
.sitemap-col a svg { width: 12px; height: 12px; opacity: 0; transition: opacity .2s; flex-shrink: 0; }
.sitemap-col a:hover svg { opacity: 1; }
.sitemap-meta {
  margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--b-light);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.sitemap-meta-item {
  padding: 24px; background: var(--dark-2); border: 1px solid var(--b-light); border-radius: 4px;
}
.sitemap-meta-item h4 {
  font-family: var(--ff); font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 8px;
}
.sitemap-meta-item p { font-size: 14px; font-weight: 400; line-height: 1.65; color: var(--tx-muted); }
@media (max-width: 1100px) { .sitemap-grid { grid-template-columns: repeat(2,1fr); }
  .sitemap-meta { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .sitemap-inner { padding: 0 40px; } }
@media (max-width: 640px) {
  .sitemap-inner { padding: 0 24px; }
  .sitemap-grid { grid-template-columns: 1fr; gap: 32px; }
  .sitemap-meta { grid-template-columns: 1fr; }
  #sitemap-page { padding: 60px 0 96px; }
}

/* ═══════════════════════════════════════════════════════════
   SHARED — CTA SECTION (used across pages)
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--dark-2);
  padding: 100px 0;
  border-top: 1px solid var(--b-light);
  text-align: center;
}
.cta-section-inner {
  max-width: 720px; margin: 0 auto; padding: 0 40px;
}
.cta-section .eyebrow { justify-content: center; margin-bottom: 20px; }
.cta-section h2 {
  font-family: var(--ff); font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.022em; line-height: 1.12;
  margin-bottom: 16px;
}
.cta-section h2 em { color: var(--teal); font-style: normal; }
.cta-section p {
  font-size: 16px; font-weight: 400; line-height: 1.75;
  color: var(--tx-muted); margin-bottom: 40px;
}
.cta-section-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-section { padding: 72px 0; }
  .cta-section-btns { flex-direction: column; align-items: center; }
  .cta-section-btns .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */

/* Container for all slides — fills the hero */
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}

/* Individual slide */
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide image — Ken Burns zoom on active */
.hero-slide-img {
  position: absolute; inset: 0;
}
.hero-slide-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.55) contrast(1.08) saturate(0.88);
  transform: scale(1.06);
  transition: transform 9s ease-out;
  will-change: transform;
}
.hero-slide.active .hero-slide-img img {
  transform: scale(1.0);
}

/* Arrow buttons */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, border-color .3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.32);
}
.hero-arrow svg { pointer-events: none; }
.hero-arrow-prev { left: 44px; }
.hero-arrow-next { right: 44px; }

/* Bottom UI bar — dots + counter */
.hero-bottom-ui {
  position: absolute; bottom: 76px; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
}

/* Pill dots */
.hero-dots {
  display: flex; align-items: center; gap: 7px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 100px;
  background: rgba(255,255,255,0.28);
  border: none; cursor: pointer; padding: 0;
  flex-shrink: 0;
  transition: width .45s cubic-bezier(0.32,0.72,0,1),
              background .45s ease;
}
.hero-dot.active {
  width: 30px;
  background: var(--teal);
}
.hero-dot:hover:not(.active) {
  background: rgba(255,255,255,0.55);
}

/* Slide counter */
.hero-slide-counter {
  font-family: var(--ff); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.38);
  white-space: nowrap;
}
.hero-slide-counter em {
  font-style: normal; color: rgba(255,255,255,0.80);
}

/* Progress bar at very bottom */
.hero-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--teal);
  z-index: 10; width: 0%;
  transition: none;
}
.hero-progress.running {
  width: 100%;
  transition: width 6s linear;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-arrow { display: none; }
  .hero-bottom-ui { bottom: 60px; }
}
@media (max-width: 640px) {
  .hero-bottom-ui { bottom: 48px; gap: 16px; }
  .hero-slide-counter { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY STRIP — Horizontal drag-scroll visual showcase
   ═══════════════════════════════════════════════════════════ */
#gallery-strip {
  background: var(--dark);
  padding: 100px 0 0;
  overflow: hidden;
}

/* Header row */
.gstrip-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 64px; margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}
.gstrip-head .section-title {
  color: var(--white); margin-bottom: 0; margin-top: 12px;
}

/* Scrollable container */
.gstrip-scroll-wrap {
  overflow-x: auto;
  padding: 0 64px 72px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* smooth momentum on iOS */
  -webkit-overflow-scrolling: touch;
}
.gstrip-scroll-wrap::-webkit-scrollbar { display: none; }
.gstrip-scroll-wrap.grabbing { cursor: grabbing; user-select: none; }

/* Track — flex row of items */
.gstrip-track {
  display: flex;
  align-items: flex-end; /* stagger via different heights */
  gap: 14px;
  width: max-content;
}

/* Each image card */
.gstrip-item {
  flex-shrink: 0;
  width: 320px; height: 460px;
  position: relative; overflow: hidden;
  border-radius: 3px;
  background: var(--dark-2);
  transition: transform .4s cubic-bezier(0.32,0.72,0,1);
}
/* Alternating heights for visual rhythm */
.gstrip-item:nth-child(even) { height: 380px; }
.gstrip-item:nth-child(3n)   { height: 520px; }

.gstrip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.90);
  transition: transform .75s cubic-bezier(0.32,0.72,0,1),
              filter .5s ease;
  will-change: transform;
}
.gstrip-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.45) saturate(1.05);
}

/* Label overlay */
.gstrip-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 52px 22px 22px;
  background: linear-gradient(
    to top,
    rgba(14,21,20,0.97) 0%,
    rgba(14,21,20,0.40) 55%,
    transparent 100%
  );
  transform: translateY(8px);
  opacity: 0.88;
  transition: transform .45s cubic-bezier(0.32,0.72,0,1),
              opacity .45s ease;
}
.gstrip-item:hover .gstrip-label {
  transform: translateY(0);
  opacity: 1;
}
.gstrip-label h4 {
  font-family: var(--ff); font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.gstrip-label span {
  font-family: var(--ff); font-size: 9px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--teal);
}

/* Responsive */
@media (max-width: 1100px) {
  .gstrip-head { padding: 0 40px; }
  .gstrip-scroll-wrap { padding: 0 40px 56px; }
  .gstrip-item { width: 280px; height: 400px; }
  .gstrip-item:nth-child(even) { height: 340px; }
  .gstrip-item:nth-child(3n)   { height: 460px; }
}
@media (max-width: 640px) {
  #gallery-strip { padding: 72px 0 0; }
  .gstrip-head { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .gstrip-head .btn { align-self: flex-start; }
  .gstrip-scroll-wrap { padding: 0 24px 48px; }
  .gstrip-item { width: 240px; height: 340px; }
  .gstrip-item:nth-child(even) { height: 290px; }
  .gstrip-item:nth-child(3n)   { height: 380px; }
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME — Warm Cream / Premium Stone Aesthetic
   Images breathe at full vibrancy. Stone sells colour & beauty.
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Global foundation ──────────────────────────────── */
body {
  background: #F8F4EF;
  color: #1C2724;
}
::-webkit-scrollbar-track { background: #EDE8E3; }

/* ── 2. Nav — warm cream glass pill ────────────────────── */
.nav-pill {
  background: rgba(249,245,240,0.90);
  border-color: rgba(28,39,36,0.10);
}
.nav-pill.scrolled {
  background: rgba(249,245,240,0.97);
  border-color: rgba(42,143,163,0.20);
  box-shadow: 0 4px 28px rgba(0,0,0,0.09);
}
.nav-brand-main { color: #1C2724; }
.nav-brand-sub  { color: rgba(28,39,36,0.36); }
.nav-links a    { color: rgba(28,39,36,0.55); }
.nav-links a:hover { color: #1C2724; background: rgba(28,39,36,0.06); }
.nav-links a.active { color: var(--teal); background: transparent; }
.nav-hamburger span { background: rgba(28,39,36,0.68); }

/* ── 3. Hero — cinematic imagery, punchy left overlay ──── */
.hero-slide-img img {
  filter: brightness(0.88) contrast(1.06) saturate(1.15);
}
.hero-overlay {
  background:
    linear-gradient(105deg, rgba(8,14,13,0.92) 0%, rgba(8,14,13,0.62) 42%, rgba(8,14,13,0.08) 100%),
    linear-gradient(to top,  rgba(8,14,13,0.95) 0%, transparent 40%);
}

/* ── 4. Pillars ─────────────────────────────────────────── */
#pillars {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(28,39,36,0.08);
}
.pillars-counters { border-bottom-color: rgba(28,39,36,0.08); }
.pillar-count { border-right-color: rgba(28,39,36,0.08); }
.pillar-count-num { color: #1C2724; }
.pillar-count-label { color: rgba(28,39,36,0.50); }
.pillar { border-right-color: rgba(28,39,36,0.08); }
.pillar:hover { background: rgba(42,143,163,0.04); }
.pillar-num  { color: #1C2724; }
.pillar-body { color: rgba(28,39,36,0.60); }
@media (max-width: 900px) {
  .pillar { border-bottom-color: rgba(28,39,36,0.08); }
  .pillar-count { border-bottom-color: rgba(28,39,36,0.08); border-right-color: rgba(28,39,36,0.08); }
  .pillar-count:nth-child(3) { border-right-color: rgba(28,39,36,0.08); }
}

/* ── 5. Products grid ───────────────────────────────────── */
/* Stone cards inside .products-grid inherit the .stone-card light overrides below */
#products { background: #F8F4EF; }
#products .section-title { color: #1C2724; }
#products .eyebrow { color: var(--teal); }

/* ── 6. Projects preview ────────────────────────────────── */
/* Project cards inside .proj-mini-grid inherit the .project-card light overrides below */
#projects-preview { background: #F0EBE4; }
#projects-preview .section-title { color: #1C2724; }
#projects-preview .eyebrow { color: var(--teal); }
#projects-preview .btn-ghost-dark {
  border-color: rgba(28,39,36,0.22); color: #1C2724;
}
#projects-preview .btn-ghost-dark:hover {
  border-color: var(--teal); color: var(--teal);
}
.gstrip-head .btn-ghost-light {
  border-color: rgba(28,39,36,0.20);
  color: rgba(28,39,36,0.65);
}
.gstrip-head .btn-ghost-light:hover {
  border-color: var(--teal); color: var(--teal); background: transparent;
}

/* ── 8. Services (home page) ───────────────────────────── */
#services {
  background: #FFFFFF;
  border-top: 1px solid rgba(28,39,36,0.08);
}
.services-left .section-title { color: #1C2724; }
.services-left p { color: rgba(28,39,36,0.60); }
.svc-item { border-bottom-color: rgba(28,39,36,0.08); }
.svc-item:first-child { border-top-color: rgba(28,39,36,0.08); }
.svc-item:hover { background: rgba(42,143,163,0.04); border-color: transparent; }
.svc-body h4 { color: #1C2724; }
.svc-body p  { color: rgba(28,39,36,0.60); }

/* ── 9. Showroom / Why IGM — stays dark (full-bleed photo) */
/* Deliberate dark section for rhythm. Slightly brighter image. */
.showroom-bg img { filter: brightness(0.42) contrast(1.06); }

/* ── 10. Contact strip ──────────────────────────────────── */
#contact-strip {
  background: #F8F4EF;
  border-top: 1px solid rgba(28,39,36,0.08);
}
.contact-left .section-title { color: #1C2724; }
.contact-left p { color: rgba(28,39,36,0.60); }
.contact-row { border-bottom-color: rgba(28,39,36,0.08); }
.contact-row:first-child { border-top-color: rgba(28,39,36,0.08); }
.contact-row:hover { background: rgba(42,143,163,0.05); }
.contact-row-label   { color: rgba(28,39,36,0.36); }
.contact-row-value,
.contact-row a       { color: #1C2724; }
.contact-row a:hover { color: var(--teal); }
.contact-actions .btn-ghost-light {
  border-color: rgba(28,39,36,0.20);
  color: rgba(28,39,36,0.65);
}
.contact-actions .btn-ghost-light:hover {
  border-color: var(--teal); color: var(--teal); background: transparent;
}

/* ── 11. Inner page backgrounds ─────────────────────────── */
#products-page,
#projects-page,
#services-page { background: #F8F4EF; }
#about-page    { background: #F8F4EF; }
#about-story   { background: #F8F4EF; }
#about-pillars { background: #FFFFFF; }
#about-infra   { background: #F8F4EF; }
#sitemap-page  { background: #F8F4EF; }
#contact-page  { background: #F8F4EF; }

/* ── 12. Projects stats bar ─────────────────────────────── */
.projects-stats { border-bottom-color: rgba(28,39,36,0.08); }
.proj-stat      { border-right-color:  rgba(28,39,36,0.08); }
.proj-stat-num  { color: #1C2724; }
.proj-stat-label { color: rgba(28,39,36,0.42); }

/* ── 13. Inner page headings (override inline styles) ────── */
#products-page .section-title,
#projects-page .section-title { color: #1C2724 !important; }

/* ── 14. Filter bar ─────────────────────────────────────── */
.filter-btn {
  color: rgba(28,39,36,0.52);
  background: rgba(28,39,36,0.06);
  border: 1px solid transparent;
}
.filter-btn:hover {
  background: rgba(28,39,36,0.11);
  color: #1C2724;
}
.filter-btn.active {
  background: #1C2724;
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(28,39,36,0.18);
}

/* ── 15. Stone product cards ────────────────────────────── */
.stone-card {
  background: #FFFFFF;
  border: 1px solid rgba(28,39,36,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.stone-card:hover { box-shadow: 0 10px 48px rgba(0,0,0,0.10); border-color: rgba(42,143,163,0.35); }
.stone-img img { filter: brightness(0.96) saturate(1.08); }
.stone-name    { color: #1C2724; }
.stone-origin  { color: var(--teal); }
.stone-type    { color: rgba(28,39,36,0.42); }
.stone-desc    { color: rgba(28,39,36,0.58); }
.stone-use-tag {
  color: rgba(28,39,36,0.70);
  background: rgba(28,39,36,0.05);
  border-color: rgba(28,39,36,0.14);
}

/* ── 16. Project cards ──────────────────────────────────── */
.project-img img {
  filter: brightness(0.82) contrast(1.04) saturate(1.08);
}

/* ── 17. Services page sections ─────────────────────────── */
.svc-section  { border-bottom-color: rgba(28,39,36,0.08); }
.svc-split-text { background: #FFFFFF; }
.svc-split-text .section-title,
.svc-split-text h2 { color: #1C2724; }
.svc-split-text p  { color: rgba(28,39,36,0.60); }
.svc-feature       { color: rgba(28,39,36,0.38); }
.svc-feature strong { color: #1C2724; }
.svc-img img       { filter: brightness(0.92) saturate(1.06); }

/* ── 18. About page ─────────────────────────────────────── */
.about-story-inner .section-title { color: #1C2724; }
.about-story-inner p { color: rgba(28,39,36,0.60); }
.about-pillar {
  background: #FFFFFF;
  border: 1px solid rgba(28,39,36,0.09);
}
.about-pillar-num   { color: #1C2724; }
.about-pillar-title { color: var(--teal); }
.about-pillar-body  { color: rgba(28,39,36,0.60); }
.infra-card {
  background: #FFFFFF;
  border: 1px solid rgba(28,39,36,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.infra-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.09); }
.infra-card-body h4 { color: #1C2724; }
.infra-card-body p  { color: rgba(28,39,36,0.60); }
.infra-card-img img { filter: brightness(0.90) saturate(1.05); }

/* ── 19. Contact page ───────────────────────────────────── */
.contact-page-left .section-title { color: #1C2724; }
.contact-page-left > p { color: rgba(28,39,36,0.60); }
.cinfo-row { border-color: rgba(28,39,36,0.08); }
.cinfo-label { color: rgba(28,39,36,0.38); }
.cinfo-value,
.cinfo-value a       { color: #1C2724; }
.cinfo-value a:hover { color: var(--teal); }

/* ── 20. Sitemap page ───────────────────────────────────── */
.sitemap-inner .section-title { color: #1C2724; }
.sitemap-col h3 { color: #1C2724; border-bottom-color: rgba(28,39,36,0.10); }
.sitemap-col a  { color: rgba(28,39,36,0.55); }
.sitemap-col a:hover { color: var(--teal); }
.sitemap-meta-item h4 { color: #1C2724; }
.sitemap-meta-item p  { color: rgba(28,39,36,0.55); }

/* ── 21. Page hero (inner pages) — keep dark, brighter img  */
.page-hero::after {
  background: linear-gradient(
    to top,
    rgba(14,21,20,0.88) 0%,
    rgba(14,21,20,0.40) 55%,
    rgba(14,21,20,0.16) 100%
  );
}

/* ── 22. Ghost button — context-aware light bg variant ───── */
.gstrip-head .btn-ghost-light,
#contact-strip .btn-ghost-light,
.contact-actions .btn-ghost-light {
  border-color: rgba(28,39,36,0.20);
  color: rgba(28,39,36,0.65);
}

/* ── 23. Shared CTA section (inner pages) ───────────────── */
/* Stays dark on purpose — final dark punch before the footer */
/* .cta-section background: var(--dark-2) — no override */

/* ── 24. Services page — full light theme fix ───────────── */
.services-overview {
  background: #F8F4EF;
  border-bottom: 1px solid rgba(28,39,36,0.08);
}
.services-overview p { color: rgba(28,39,36,0.60); }
.svc-quick-item {
  color: #1C2724;
  background: rgba(42,143,163,0.07);
  border-color: rgba(42,143,163,0.22);
}

/* Remove dark alternating — all service sections stay light */
#services-page .svc-section { background: #FFFFFF; }
#services-page .svc-section:nth-child(even) { background: #F8F4EF; }
#services-page .svc-section { border-bottom-color: rgba(28,39,36,0.08); padding: 72px 0; }

/* Fix all text inside service sections */
.svc-number { color: rgba(42,143,163,0.20); }
.svc-section-title { color: #1C2724; }
.svc-section-body  { color: rgba(28,39,36,0.62); }
.svc-feature       { color: rgba(28,39,36,0.68); }
.svc-feature::before { background: var(--teal); }

/* Eyebrow inside service sections */
#services-page .eyebrow { color: var(--teal); }

/* Photos — vibrant, not dimmed */
.svc-photo img {
  filter: brightness(0.92) contrast(1.04) saturate(1.08);
}
.svc-section:hover .svc-photo img {
  filter: brightness(0.97) contrast(1.06) saturate(1.12);
}

/* ── 25. About page — story + badge ─────────────────────── */
.about-story { border-bottom-color: rgba(28,39,36,0.08); }
.about-story-text .section-title { color: #1C2724; }
.about-story-text p { color: rgba(28,39,36,0.60); }
.about-story-img-badge {
  background: #FFFFFF;
  border-color: rgba(42,143,163,0.30);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.about-story-img-badge span { color: rgba(28,39,36,0.42); }
.about-story-img img { filter: brightness(0.94) saturate(1.05); }

/* ── 26. About pillars section ──────────────────────────── */
#about-pillars { border-bottom: 1px solid rgba(28,39,36,0.08); }
.about-pillars-inner .section-title { color: #1C2724; }

/* ── 27. About infra section ────────────────────────────── */
#about-infra { border-top: 1px solid rgba(28,39,36,0.08); }
.about-infra-inner .section-title,
.about-infra-inner h2 { color: #1C2724; }

/* ── 28. Marquee on light page — keep dark (contrast strip) */
.marquee-strip {
  background: #1C2724;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.marquee-track span { color: rgba(249,245,240,0.40); }

/* ── 29. Products intro section header ──────────────────── */
#products-page [class*="eyebrow"] { color: var(--teal); }
#projects-page [class*="eyebrow"] { color: var(--teal); }

/* ── 30. General: any btn-ghost-light on a cream/white section */
/* Hero, mobile menu, showroom, CTA (dark contexts) keep white ghost buttons.
   Light-background contexts override via specific selectors above. */

/* ═══════════════════════════════════════════════════════════
   DESIGN POLISH — Visual refinements across all sections
   ═══════════════════════════════════════════════════════════ */

/* ── Pillar counter top accent line ─────────────────────── */
.pillar-count {
  position: relative;
}
.pillar-count::before {
  content: '';
  position: absolute; top: 0; left: 48px;
  width: 40px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
}
@media (max-width: 900px) {
  .pillar-count::before { left: 28px; }
}
@media (max-width: 540px) {
  .pillar-count::before { left: 20px; }
}

/* ── Pillar (differentiator) top accent line ─────────────── */
.pillar::before {
  left: 52px; right: 52px;
}

/* ── Section eyebrow global refinement ──────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--teal); border-radius: 2px; flex-shrink: 0;
}

/* ── Products section header: centered ──────────────────── */
#products .section-header {
  flex-direction: column; align-items: center; text-align: center;
  margin-bottom: 48px;
}
#products .section-header .eyebrow { justify-content: center; }
#products .section-title { margin-bottom: 0; }

/* ── Projects preview header alignment ──────────────────── */
#projects-preview .section-header {
  margin-bottom: 48px;
}

/* ── Services section: larger, bolder numbers ───────────── */
.svc-n {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--teal); min-width: 32px;
  padding-top: 2px;
}

/* ── Stone card: teal top accent on hover ───────────────── */
.stone-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: 2;
}
.stone-card { position: relative; }
.stone-card:hover::before { transform: scaleX(1); }

/* ── Stone card image: vivid on hover ───────────────────── */
.stone-img img {
  filter: brightness(0.90) saturate(1.10) contrast(1.04);
  transition: transform 8s ease-out, filter .5s;
}
.stone-card:hover .stone-img img {
  filter: brightness(0.96) saturate(1.20) contrast(1.06);
}

/* ── Project card: slightly warmer image tone ───────────── */
.proj-mini-grid .project-img img {
  filter: brightness(0.80) contrast(1.06) saturate(1.10);
}
.proj-mini-grid .project-card:hover .project-img img {
  filter: brightness(0.88) contrast(1.08) saturate(1.14);
}

/* ── Marquee strip: slightly taller, more presence ──────── */
.marquee-strip { padding: 16px 0; }
.marquee-track span { font-size: 10px; letter-spacing: 0.28em; }

/* ── CTA buttons: rounder, more premium ─────────────────── */
.btn { border-radius: 10px; }
.btn-teal { letter-spacing: 0.02em; }

/* ── Products "View All" + Projects "View All" prominence── */
.products-cta .btn-teal {
  padding: 16px 40px; font-size: 13px; letter-spacing: 0.06em;
}
#projects-preview .btn-ghost-dark {
  font-size: 12px; padding: 12px 24px;
}

/* ── Scroll indicator: brighter on light hero ───────────── */
.hero-scroll span { color: rgba(255,255,255,0.50); }
.scroll-line { background: rgba(255,255,255,0.25); }
