/* ---------- Base / Variables ---------- */
:root {
  --dark: #1a1d23;
  --dark-2: #23262e;
  --orange: #e2872f;
  --orange-dark: #c96f1e;
  --orange-soft: #fbe6cf;

  --bg: #ffffff;
  --light: #f7f5f2;
  --card: #ffffff;
  --text: #23262a;
  --heading: #1a1d23;
  --grey: #6b7076;
  --border: #e7e3dd;

  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1180px;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Poppins', 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 4px 14px rgba(20, 20, 25, .06);
  --shadow-md: 0 14px 32px rgba(20, 20, 25, .1);
  --shadow-lg: 0 30px 60px rgba(10, 10, 15, .22);
}

:root[data-theme="dark"] {
  --dark: #14161b;
  --dark-2: #1c1f26;
  --orange: #f0973d;
  --orange-dark: #ffab5c;
  --orange-soft: rgba(240, 151, 61, .16);

  --bg: #0e1013;
  --light: #16181d;
  --card: #1a1d23;
  --text: #d8d9dc;
  --heading: #f5f5f6;
  --grey: #9a9da4;
  --border: #2a2d34;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .3);
  --shadow-md: 0 14px 32px rgba(0, 0, 0, .38);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, .5);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .25s ease, color .25s ease;
  
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
  display: inline-block;
}

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: 36px; color: var(--heading); }
.section-sub { margin-top: 14px; color: var(--grey); font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  border: 2px solid transparent;
  transition: all .22s ease;
  cursor: pointer;
}
button#viewAllBtn {
    color: #000000;
}
.btn-solid { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -8px rgba(226, 135, 47, .55); }
.btn-solid:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(226, 135, 47, .6); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn-ghost-light { color: #fff; }
.btn-ghost-light:hover { color: var(--orange); }
.btn-ghost-dark { border-color: var(--border); color: var(--heading); }
.btn-ghost-dark:hover { background: var(--heading); border-color: var(--heading); color: var(--bg); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1eb857; transform: translateY(-2px); }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  margin-left: 6px;
}
.theme-toggle:hover { background: rgba(255,255,255,.14); }
.theme-icon { font-size: 17px; line-height: 1; position: absolute; transition: opacity .2s ease, transform .2s ease; }
.theme-icon-moon { opacity: 1; transform: scale(1); }
.theme-icon-sun { opacity: 0; transform: scale(.5); }
[data-theme="dark"] .theme-icon-moon { opacity: 0; transform: scale(.5); }
[data-theme="dark"] .theme-icon-sun { opacity: 1; transform: scale(1); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(20,22,27,.96);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  background: #fff;
  padding: 8px 14px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
}
.logo img { height: 32px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right .22s ease;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a:hover::after { right: 0; }
.header-cta { display: flex; gap: 14px; align-items: center; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
  background: #12141a;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 85% 15%, rgba(226,135,47,.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 90%, rgba(226,135,47,.08), transparent 55%),
    linear-gradient(160deg, rgba(20,22,28,.78) 0%, rgba(27,30,38,.62) 55%, rgba(20,22,28,.82) 100%);
}
.hero-backdrop::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 40px;
}

.hero-copy h1 { font-size: 50px; margin-bottom: 22px; }
.hero-sub { max-width: 540px; color: #c7c8cd; font-size: 17px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges span {
  font-size: 12.5px;
  font-weight: 600;
  color: #e4e5e8;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 14px;
  border-radius: 999px;
}


.hero-stats { position: relative; z-index: 1; background: rgba(0,0,0,.32); border-top: 1px solid rgba(255,255,255,.1); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 24px;
}
.stat { text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--font-display); font-size: 23px; font-weight: 700; color: var(--orange); }
.stat-label { font-size: 13px; color: #c7c8cd; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.service-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft);
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-icon .material-symbols-outlined {
  font-size: 26px;
  color: var(--orange);
}
.service-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--heading); }
.service-card p { color: var(--grey); font-size: 14px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-copy h2 { font-size: 33px; color: var(--heading); margin-bottom: 18px; }
.about-copy p { color: var(--grey); margin-bottom: 14px; }
.about-list { margin: 20px 0 26px; }
.about-list li { padding-left: 24px; position: relative; margin-bottom: 10px; color: var(--text); }
.about-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 2px;
}

/* ---------- Products ---------- */
.products { background: var(--light); }
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  gap: 16px;
  flex-wrap: wrap;
}
#productSearch {
  flex: 1;
  max-width: 380px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--card);
  color: var(--text);
}
.product-count { color: var(--grey); font-size: 13px; white-space: nowrap; margin-right: auto; }

.product-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-tile { cursor: pointer; }
.product-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-tile:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.product-thumb { position: relative; overflow: hidden; padding-top: 100%; }
.product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-tile:hover .product-thumb img { transform: scale(1.08); }
.product-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 65%, transparent 100%);
}
.product-info h4 { font-size: 14px; color: #fff; font-weight: 600; margin-bottom: 3px; }
.product-tag {
  display: inline-block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--orange-dark);
  background: rgba(255,255,255,.92);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.no-results { color: var(--grey); padding: 10px 24px 40px; max-width: var(--max-width); margin: 0 auto; }
.link-btn { background: none; border: none; color: var(--orange); font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; font-size: inherit; }

/* ---------- Carousel (products / gallery) ---------- */
.carousel { position: relative; display: flex; align-items: center; gap: 10px; padding: 0 24px; }
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 6px 2px 20px;
  scrollbar-width: none;
  min-width: 0;
  flex: 1 1 auto;
}
.carousel-track::-webkit-scrollbar { display: none; }
.products-track .product-tile { flex: 0 0 210px; scroll-snap-align: start; }
.carousel-arrow {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 22px;
  line-height: 1;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.carousel-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: scale(1.06); }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery-track { padding: 6px 2px 26px; }
.gallery-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--dark);
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,0));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8,9,11,.75); backdrop-filter: blur(2px); }
.modal-panel {
  position: relative;
  max-width: 1180px;
  margin: 40px auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalIn .25s ease;
  box-shadow: var(--shadow-lg);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--border); }
.modal-head h3 { font-size: 21px; color: var(--heading); }
.modal-close { background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--grey); }
.modal-close:hover { color: var(--orange); }
.modal-search { padding: 18px 28px 0; }
.modal-search input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--light);
  color: var(--text);
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  align-items: start;
  gap: 20px;
  padding: 22px 28px 34px;
  overflow-y: auto;
}
.modal-grid .product-thumb { padding-top: 125%; }
.modal-grid .product-info { padding: 44px 16px 16px; }
.modal-grid .product-info h4 { font-size: 16px; margin-bottom: 6px; }

/* ---------- Granite detail lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 2500; display: none; }
.lightbox.open { display: block; }
.lightbox-panel {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease;
  padding: 26px;
}
.lightbox-close {
  position: absolute; top: 16px; right: 16px; z-index: 6;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 22px;
  color: var(--grey);
  cursor: pointer;
}
.lightbox-close:hover { color: var(--orange); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 24px;
  color: var(--heading);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 6;
}
.lightbox-nav:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.lightbox-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-md); cursor: crosshair; touch-action: none; }
.lightbox-media img { width: 100%; height: 100%; object-fit: cover; }
.image-lens {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  pointer-events: none;
  background-repeat: no-repeat;
  display: none;
  z-index: 5;
}
.feel-hint {
  display: block;
  font-size: 12px;
  color: var(--grey);
  margin-top: 8px;
  text-align: center;
}
.lightbox-media .feel-hint {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 8px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  color: #f1f1f1;
  text-align: center;
}
.lightbox-info h3 { font-size: 27px; color: var(--heading); margin: 10px 0 12px; }
.lightbox-sub { color: var(--grey); font-size: 14px; margin-bottom: 22px; }
.lightbox-enquire { width: 100%; justify-content: center; margin-top: 22px; }

.room-visualizer { border-top: 1px solid var(--border); padding-top: 20px; }
.room-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); font-weight: 700; margin-bottom: 12px; }
.room-tabs { display: flex; gap: 10px; margin-bottom: 14px; }
.room-tab {
  flex: 1;
  padding: 9px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--light);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.room-tab.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.room-stage {
  position: relative; height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  perspective: 700px;
  cursor: grab;
  touch-action: none;
}
.room-stage:active { cursor: grabbing; }
.room-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.room-shine {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle 170px at var(--mx, 50%) var(--my, 40%), rgba(255,255,255,.65), rgba(255,255,255,0) 62%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity .25s ease;
}
.room-stage.interacting .room-shine { opacity: 1; }
.room-wall {
  position: absolute; inset: 0; height: 58%;
  background-color: #e7e3d9;
  background-size: 130px 130px;
  background-position: center;
}
.room-baseboard { position: absolute; left: 0; right: 0; top: 58%; height: 3%; background: #fdfdfc; box-shadow: 0 1px 3px rgba(0,0,0,.2); z-index: 2; }
.room-floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
  background-color: #b7b0a3;
  background-size: 70px 70px;
  clip-path: polygon(16% 0%, 84% 0%, 100% 100%, 0% 100%);
}
.room-wall::after, .room-floor::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.3) 0 2px, transparent 2px 70px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.3) 0 2px, transparent 2px 70px);
  opacity: .5;
}
.room-floor::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.22), transparent 45%);
}
.room-prop {
  position: absolute; bottom: 4%; right: 12%;
  font-size: 32px;
  filter: drop-shadow(0 8px 6px rgba(0,0,0,.35));
  z-index: 3;
  transition: right .2s ease, bottom .2s ease, top .2s ease;
}
.room-stage[data-mode="wall"] .room-wall { background-size: 170px 170px; }
.room-stage[data-mode="wall"] .room-prop { bottom: auto; top: 14%; right: 14%; font-size: 28px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.reveal-left { transform: translateX(-32px); }
.reveal.reveal-right { transform: translateX(32px); }
.reveal.in-view { opacity: 1; transform: none; }
.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.reveal-left, .reveal.reveal-right { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .product-tile, .gallery-item img, .product-thumb img { transition: none; }
}

/* ---------- Split CTA ---------- */
.split-cta { padding: 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; padding: 0; max-width: none; }
.split-card {
  padding: 74px 60px;
  background: var(--dark);
  color: #fff;
}
.split-card:nth-child(2) { background: var(--orange); }
.split-card h3 { font-size: 27px; margin-bottom: 16px; }
.split-card p { margin-bottom: 26px; opacity: .9; }
.split-card .btn-ghost-dark { border-color: rgba(255,255,255,.6); color: #fff; }
.split-card .btn-ghost-dark:hover { background: #fff; border-color: #fff; color: var(--dark); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.contact-lead { color: var(--grey); margin-bottom: 26px; }
.contact-row { margin-bottom: 18px; }
.contact-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-row a:hover { color: var(--orange); }
.contact-btns { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.contact-form { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 14px;
  background: var(--card);
  color: var(--text);
}
.form-toggle { display: flex; gap: 20px; margin-bottom: 16px; font-size: 14px; }
.form-note { margin-top: 12px; font-size: 13px; color: var(--orange-dark); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #cfcfd2; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px 40px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: #9a9ca3; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 15px; margin-bottom: 16px; font-family: var(--font-display); }
.footer-links a { display: block; margin-bottom: 10px; font-size: 14px; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: 14px; margin-bottom: 10px; color: #9a9ca3; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 13px;
  color: #7c7e85;
  text-align: center;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 999;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { padding-top: 116px; }
  .lightbox-grid { grid-template-columns: 1fr; }
  .lightbox-media { aspect-ratio: 16/10; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn-ghost-light { display: none; }
  .nav-toggle { display: flex; }
  .hero-copy h1 { font-size: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .site-header:not(.scrolled) { background: rgba(20,22,27,.96); }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--dark-2);
    padding: 20px 24px;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero-copy h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-track .product-tile { flex-basis: 150px; }
  .gallery-item { flex-basis: 220px; }
  .carousel { padding: 0 12px; gap: 4px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 18px; }
  .modal-panel { margin: 16px; max-height: calc(100vh - 32px); }
  .modal-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
  .products-toolbar { flex-direction: column; align-items: stretch; }
  .products-toolbar #viewAllBtn { width: 100%; }
  .lightbox-panel { margin: 16px; padding: 18px; max-height: calc(100vh - 32px); }
  .lightbox-nav { width: 36px; height: 36px; font-size: 18px; }
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
  .room-stage { height: 170px; }
}
