/* ================================================================
   RANA MARBLE & BALAJI MARBLE — Professional Design System
   Enhanced v3 — All data safe, all class names preserved
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --gold: #b7892b;
  --gold-light: #d6b25e;
  --gold-pale: rgba(183, 137, 43, .12);
  --gold-glow: rgba(183, 137, 43, .22);
  --dark: #0d1117;
  --dark-card: #111827;
  --text: #1a2332;
  --text-soft: #4b5563;
  --text-muted: #6b7280;
  --bg: #f5f6fa;
  --bg-alt: #eef0f7;
  --white: #ffffff;
  --border: rgba(17, 24, 39, .10);
  --border-gold: rgba(183, 137, 43, .30);
  --shadow-sm: 0 2px 8px rgba(17, 24, 39, .07);
  --shadow-md: 0 8px 28px rgba(17, 24, 39, .11);
  --shadow-lg: 0 20px 56px rgba(17, 24, 39, .16);
  --shadow-gold: 0 8px 28px rgba(183, 137, 43, .22);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max: 1140px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ── CUSTOM SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), #f0c060);
  z-index: 99999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.55);
}

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* ── TOPBAR ─────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 2px 16px rgba(183, 137, 43, .40);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
}

.topbar__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0.5;
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

.sep {
  opacity: 0.4;
}

.topbar__txt {
  font-weight: 800;
}

.topbar__link {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.topbar__link:hover {
  opacity: 1;
}

.topbar__link--wa {
  background: rgba(0, 0, 0, .18);
  border-radius: 6px;
  padding: 2px 7px;
}

.topbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 99px;
  background: var(--dark);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.topbar__btn:hover {
  background: #1a2332;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

/* ── HEADER / NAV ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 38px;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(17, 24, 39, .13);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 900;
  font-size: 15px;
  box-shadow: var(--shadow-gold);
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.brand:hover .brand__mark {
  transform: rotate(-4deg) scale(1.08);
  box-shadow: 0 10px 32px rgba(183, 137, 43, .38);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}

.brand__sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ── NAV ────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 8px 14px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-soft);
  transition: all 0.22s var(--ease);
  position: relative;
}

.nav a:hover {
  color: var(--text);
  background: var(--bg);
}

/* Active nav link (set by JS on scroll) */
.nav a.nav--active {
  color: var(--gold) !important;
  font-weight: 800;
  background: var(--gold-pale);
}

.nav .btn {
  color: var(--dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-toggle:hover {
  background: var(--bg);
  border-color: var(--border-gold);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
  transition: all 0.28s var(--ease);
}

/* Hamburger → X animation */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 800;
  font-size: 14px;
  border: none;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease;
  border-radius: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(183, 137, 43, .38);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 18px rgba(183, 137, 43, .15);
}

.btn--ghost::after {
  display: none;
}

.btn--small {
  padding: 9px 18px;
  font-size: 13px;
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/yard-entrance.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: saturate(1.1) contrast(1.05) brightness(0.92);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 17, 23, .75) 0%,
      rgba(13, 17, 23, .52) 50%,
      rgba(13, 17, 23, .32) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  z-index: 2;
  border-radius: 0 4px 4px 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 64px;
  max-width: 720px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(183, 137, 43, .50);
  border-radius: 99px;
  background: rgba(183, 137, 43, .12);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  animation: kicker-glow 3s ease-in-out infinite;
}

@keyframes kicker-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(183, 137, 43, 0);
  }

  50% {
    box-shadow: 0 0 18px 4px rgba(183, 137, 43, .18);
  }
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(214, 178, 94, .25);
  animation: dot-pulse 2s ease-in-out infinite;
}

h1 {
  margin: 20px 0 16px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  font-weight: 900;
}

h1 .muted {
  color: rgba(255, 255, 255, .55);
}

.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, .80);
  max-width: 56ch;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}

.stat:hover {
  background: rgba(183, 137, 43, .20);
  border-color: rgba(183, 137, 43, .45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.stat__num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(183, 137, 43, .22);
  border: 1px solid rgba(183, 137, 43, .35);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.stat__txt {
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
  font-size: 14px;
}

/* ── SECTIONS ───────────────────────────────────────────────────── */
.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Scroll reveal — set by IntersectionObserver in HTML script */
.section,
.section--alt {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.section.in-view,
.section--alt.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section__head {
  margin-bottom: 40px;
}

.section__head h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 10px;
  line-height: 1.15;
}

.section__head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s var(--ease);
}

.section__head:hover h2::after {
  width: 90px;
}

.section__head p {
  color: var(--text-soft);
  max-width: 60ch;
  font-size: 16px;
  margin-top: 8px;
}

/* ── GRID / CARDS ───────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 20px;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.card h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 10px;
  transition: width 0.3s var(--ease);
}

.card:hover h3::before {
  width: 44px;
}

.card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.bullets {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}

.bullets li:hover {
  color: var(--text);
  transform: translateX(3px);
}

.bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.bullets li:hover::before {
  transform: scale(1.4);
}

/* ── COLLECTIONS ────────────────────────────────────────────────── */
.collections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.collection-tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  transition: all 0.35s var(--ease);
}

.collection-tile:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.collection-tile.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183, 137, 43, .28), var(--shadow-lg);
  transform: translateY(-4px);
}

.collection-tile img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.collection-tile:hover img,
.collection-tile.active img {
  transform: scale(1.07);
}

.collection-tile__body {
  padding: 14px 16px 16px;
}

.collection-tile__title {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.collection-tile__meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.ctile-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .50);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  transition: background 0.2s;
}

.collection-tile:hover .ctile-badge {
  background: rgba(183, 137, 43, .85);
}

.collections-filter-hint {
  text-align: center;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 4px;
  opacity: 0.9;
}

.gallery-active-filter {
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fffbf0, #fff8e1);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #5a3a00;
}

.gallery-active-filter.show {
  display: flex;
  animation: banner-in 0.3s var(--ease) forwards;
}

@keyframes banner-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-active-filter a {
  color: var(--gold);
  font-weight: 800;
}

.gallery-active-filter button {
  margin-left: auto;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.gallery-active-filter button:hover {
  background: #8a6218;
  transform: scale(1.04);
}

/* ── GALLERY SEARCH TOOLS ───────────────────────────────────────── */
.gallery-tools {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
  width: 100%;
}

.gallery-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.gallery-search {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 540px;
}

.gallery-search input {
  width: 100%;
  padding: 13px 44px 13px 46px;
  border-radius: 14px;
  border: 2px solid var(--gold);
  background: var(--white);
  color: #111;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  box-shadow: 0 2px 12px rgba(183, 137, 43, .12);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.gallery-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(183, 137, 43, .18);
}

.gallery-search input::placeholder {
  color: #999;
  font-weight: 400;
}

.gallery-search .gicon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 13px;
  pointer-events: none;
  font-size: 17px;
}

.gallery-search button.gclear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f3f3f3;
  color: #555;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}

.gallery-search button.gclear:hover {
  background: #ffe0a0;
  border-color: var(--gold);
  color: #222;
  transform: translateY(-50%) scale(1.1);
}

.gallery-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.gallery-badge {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: #fffbf0;
  color: #7a5100;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}

/* ── MARBLE NAME TAGS ───────────────────────────────────────────── */
.marble-names-section {
  margin-top: 14px;
  width: 100%;
}

.marble-names-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.marble-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.marble-tag {
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid #e0c07a;
  color: #5a3a00;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  user-select: none;
  font-family: inherit;
}

.marble-tag:hover {
  background: #fff3cc;
  border-color: var(--gold);
  color: #3d2500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(183, 137, 43, .15);
}

.marble-tag.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(183, 137, 43, .35);
  transform: translateY(-1px);
}

.gallery__item.gf-hidden {
  display: none !important;
}

/* ── SLIDER BLOCKS ──────────────────────────────────────────────── */
.slider-block {
  margin-bottom: 40px;
}

.slider-block:last-child {
  margin-bottom: 0;
}

.slider-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.slider-block__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-block__title h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0;
}

.slider-block__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.slider-block__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.slider-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 40px;
  text-align: center;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  background: var(--white);
  color: var(--gold);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
  line-height: 1;
}

.slider-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.slider-btn:disabled {
  opacity: 0.30;
  cursor: not-allowed;
  transform: none;
}

.slider-track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  gap: 14px;
  will-change: transform;
}

/* ── GALLERY ITEMS ──────────────────────────────────────────────── */
.slider-track .gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark-card);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  flex-shrink: 0;
  padding: 0;
  display: block;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
}

.slider-track .gallery__item::after {
  content: "🔍";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .44);
  border: 1px solid rgba(255, 255, 255, .22);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  font-size: 15px;
}

.slider-track .gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28), 0 0 0 2px var(--gold);
  border-color: var(--gold);
}

.slider-track .gallery__item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.slider-track .gallery__item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.35s ease;
  filter: saturate(1.02);
  pointer-events: none;
}

.slider-track .gallery__item:hover img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.04);
}

.slider-track .gallery__item .gcap {
  display: block;
  padding: 10px 12px 4px;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  background: rgba(11, 15, 22, .82);
  letter-spacing: 0.1px;
  line-height: 1.3;
}

.slider-track .gallery__item .gsub {
  display: block;
  padding: 0 12px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, .65);
  background: rgba(11, 15, 22, .82);
  font-weight: 500;
}

/* ── VIDEO ITEMS ────────────────────────────────────────────────── */
.video-item {
  flex-shrink: 0;
  position: relative;
}

.slider-block--video .video-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.slider-block--video .video-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 0 2px var(--gold);
  border-color: var(--gold);
}

.video-cap {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .95);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  z-index: 2;
  pointer-events: none;
}

video.video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
  background: var(--dark-card);
}

/* ── SPLIT LAYOUT ───────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split__text h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.split__text p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 9px 16px;
  border-radius: 99px;
  border: 1px solid var(--border-gold);
  background: var(--gold-pale);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s var(--ease);
  cursor: default;
}

.pill:hover {
  background: linear-gradient(135deg, rgba(183, 137, 43, .20), rgba(214, 178, 94, .12));
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(183, 137, 43, .22);
}

.notice {
  margin-top: 22px;
  padding: 14px 18px 14px 22px;
  border-radius: 14px;
  border: 1px solid var(--border-gold);
  background: var(--gold-pale);
  color: var(--text-soft);
  font-size: 14px;
  position: relative;
  transition: all 0.3s var(--ease);
}

.notice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}

.notice:hover {
  border-color: var(--gold);
  background: rgba(183, 137, 43, .15);
  transform: translateX(4px);
}

.notice strong {
  color: var(--gold);
}

/* ── MEDIA ──────────────────────────────────────────────────────── */
.media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all 0.45s var(--ease);
}

.media:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--gold), 0 0 50px rgba(183, 137, 43, .14);
  border-color: var(--gold);
}

.media img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.media:hover img {
  transform: scale(1.05);
}

.media figcaption {
  padding: 14px 18px;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  font-weight: 500;
  transition: color 0.2s;
}

.media:hover figcaption {
  color: var(--gold);
}

/* ── OWNERS ─────────────────────────────────────────────────────── */
.owners {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}

.owner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.owner img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(183, 137, 43, .15);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.owner:hover img {
  transform: scale(1.06);
  box-shadow: 0 0 0 5px rgba(183, 137, 43, .28), 0 8px 24px rgba(183, 137, 43, .2);
}

.owner__body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
}

.owner__body p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Owner call buttons (injected by JS) */
.owner__call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.owner__call:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.owner__call+.owner__call {
  margin-left: 8px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.quote {
  position: relative;
  padding-top: 32px !important;
  border-top: 3px solid var(--gold) !important;
}

.quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 900;
  opacity: 0.6;
}

/* Star ratings */
.quote__stars {
  display: block;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.quote p {
  color: var(--text-soft) !important;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

.quote__by {
  margin-top: 14px;
  font-weight: 800;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq__item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.faq__item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-md), 0 0 0 2px rgba(183, 137, 43, .10);
}

.faq__item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  user-select: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}

.faq__item[open] summary {
  color: var(--gold);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__body {
  padding: 0 22px 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  animation: faq-open 0.3s var(--ease) forwards;
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── QUICK QUOTE ────────────────────────────────────────────────── */
.qq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  padding: 36px !important;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2332 100%) !important;
  border: 1px solid rgba(183, 137, 43, .25) !important;
  box-shadow: var(--shadow-lg) !important;
}

.qq__left h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--white) !important;
  margin-bottom: 8px;
}

.qq__left p {
  color: rgba(255, 255, 255, .65) !important;
  font-size: 14px;
}

.qq__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qq__form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qq__form label span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.qq__form input {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.25s;
  outline: none;
}

.qq__form input:focus {
  border-color: var(--gold);
  background: rgba(183, 137, 43, .08);
  box-shadow: 0 0 0 3px rgba(183, 137, 43, .18);
}

.qq__form input::placeholder {
  color: rgba(255, 255, 255, .30);
}

/* ── CONTACT ────────────────────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact__card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact__card h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}

.contact__card .lead {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 6px;
}

.contact__card .small {
  font-size: 13px;
  color: var(--text-muted);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}

.contact__item {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.contact__item:hover {
  border-color: var(--border-gold);
  background: var(--gold-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact__item h3 {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact__item h3::before {
  display: none;
}

.contact__item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

.contact__item a {
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}

.contact__item a:hover {
  color: var(--gold);
}

.wa {
  color: #16a34a !important;
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ── MAP ────────────────────────────────────────────────────────── */
.map {
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.35s var(--ease);
}

.map:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.map__inner {
  height: 360px;
}

.map__inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map__footer {
  padding: 14px 18px;
  font-size: 13px;
  background: var(--white);
  border-top: 1px solid var(--border);
  color: var(--text-soft);
}

/* ── FABs ───────────────────────────────────────────────────────── */
.fab {
  position: fixed;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease);
  z-index: 100;
  text-align: center;
  line-height: 1;
}

.fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.fab--wa {
  bottom: 86px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(22, 163, 74, .35);
  position: relative;
}

/* WA pulse ring */
.fab--wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.35);
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  70% {
    transform: scale(1.55);
    opacity: 0;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.fab--wa:hover {
  box-shadow: 0 12px 32px rgba(22, 163, 74, .48);
}

.fab--call {
  bottom: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.fab--call:hover {
  box-shadow: 0 12px 32px rgba(183, 137, 43, .48);
}

/* ── GO TO TOP BUTTON ───────────────────────────────────────────── */
.go-top {
  position: fixed;
  bottom: 148px;
  right: 20px;
  z-index: 9998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  cursor: pointer;
  background: var(--white);
  color: var(--gold);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease,
    color 0.25s ease, box-shadow 0.25s ease;
}

.go-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.go-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.go-top svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── ENHANCED FOOTER ────────────────────────────────────────────── */
.footer {
  background: #1a1208;
  color: #c9b99a;
  font-family: inherit;
  border-top: 3px solid var(--gold);
}

.footer__top {
  padding: 60px 0 44px;
  border-bottom: 1px solid rgba(201, 185, 154, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0e6d0;
  letter-spacing: 0.03em;
  margin: 0 0 6px;
}

.footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 16px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #9a8a72;
  max-width: 320px;
  margin: 0;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: #9a8a72;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.25s;
  display: inline-block;
}

.footer__links a:hover {
  color: #f0e6d0;
  padding-left: 6px;
}

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #9a8a72;
  line-height: 1.55;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-light);
}

.footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.32);
}

.footer__wa-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #6a5c48;
}

.footer__credit {
  font-size: 0.82rem;
  color: #6a5c48;
}

/* ── LIGHTBOX ───────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, .92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: flex;
  animation: lb-in 0.25s ease forwards;
}

@keyframes lb-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox__img {
  max-width: min(90vw, 1000px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .65), 0 0 0 1px rgba(183, 137, 43, .22);
  animation: lb-img-in 0.3s var(--ease) forwards;
}

@keyframes lb-img-in {
  from {
    transform: scale(0.94);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox__caption {
  color: rgba(255, 255, 255, .80);
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.22s var(--ease);
  backdrop-filter: blur(8px);
}

.lightbox__close:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* ── UTILITIES ──────────────────────────────────────────────────── */
.muted {
  color: var(--text-muted);
}

.small {
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.professional-seal {
  display: none !important;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .media img {
    height: 320px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    z-index: 99;
  }

  .nav.is-open {
    display: flex;
    animation: nav-in 0.22s var(--ease) forwards;
  }

  @keyframes nav-in {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 15px;
  }

  .nav a:hover {
    background: var(--bg);
  }

  .nav .btn {
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .hero {
    min-height: 75vh;
  }

  h1 {
    font-size: clamp(28px, 6vw, 44px);
  }

  .hero__stats {
    flex-direction: column;
  }

  .stat {
    width: 100%;
  }

  .slider-track .gallery__item img {
    height: 155px;
  }

  video.video {
    height: 190px;
  }

  .slider-block__title h3 {
    font-size: 16px;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .qq {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .cards--3 {
    grid-template-columns: 1fr;
  }

  .owners {
    grid-template-columns: 1fr;
  }

  .owner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .owner__body h3::before {
    margin-inline: auto;
  }

  .topbar__left {
    gap: 6px;
    overflow: hidden;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-40%);
    }
  }

  .sep {
    display: none;
  }

  .header {
    top: 36px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-search {
    min-width: 200px;
    max-width: 100%;
  }

  .gallery-search-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .go-top {
    bottom: 140px;
    right: 14px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .collections {
    grid-template-columns: 1fr 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .contact__card {
    padding: 24px;
  }

  .qq {
    padding: 24px !important;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    flex-direction: column;
  }

  .marble-tags {
    gap: 6px;
  }

  .marble-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ── PRINT ──────────────────────────────────────────────────────── */
@media print {

  .topbar,
  .header,
  .fab,
  .go-top,
  .lightbox,
  #scroll-progress,
  .hero__actions,
  .gallery-tools,
  .slider-block__nav {
    display: none !important;
  }

  .section,
  .section--alt {
    opacity: 1 !important;
    transform: none !important;
    page-break-inside: avoid;
  }

  .hero {
    min-height: auto;
    padding: 32px 0;
  }

  body {
    background: #fff;
    color: #000;
  }
}


/* ================================================================
   ENHANCEMENTS v4 — PURE ADDITIONS, zero existing code modified
   All new rules appended below — safe to merge with any HTML
   ================================================================ */

/* ── SMOOTH TEXT SELECTION COLOR ─────────────────────────────────── */
::selection {
  background: rgba(183, 137, 43, .28);
  color: var(--dark);
}

/* ── KEYBOARD FOCUS VISIBILITY (accessibility) ───────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.btn:focus-visible,
.marble-tag:focus-visible,
.slider-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ── HERO GRAIN OVERLAY (tactile premium feel) ───────────────────── */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: 0.40;
}

/* Hero content must sit above grain */
.hero__content {
  z-index: 3;
}

/* ── HERO AMBIENT GOLD GLOW ORBS ─────────────────────────────────── */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 350px at 80% 20%, rgba(183, 137, 43, .09), transparent 60%),
    radial-gradient(ellipse 280px 200px at 5% 85%, rgba(183, 137, 43, .06), transparent 55%);
  pointer-events: none;
}

/* ── STAGGERED HERO ENTRANCE ANIMATIONS ─────────────────────────── */
.hero .kicker {
  animation: v4-rise 0.72s var(--ease) 0.08s both;
}

.hero h1 {
  animation: v4-rise 0.72s var(--ease) 0.22s both;
}

.hero .lead {
  animation: v4-rise 0.72s var(--ease) 0.36s both;
}

.hero .hero__actions {
  animation: v4-rise 0.72s var(--ease) 0.48s both;
}

.hero .hero__stats {
  animation: v4-rise 0.72s var(--ease) 0.60s both;
}

@keyframes v4-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── IMAGE LAZY FADE-IN (JS adds .img-loaded class) ─────────────── */
img.lazy-fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.lazy-fade.img-loaded {
  opacity: 1;
}

/* ── IMAGE LOADING SHIMMER SKELETON ─────────────────────────────── */
.gallery__item img:not([src]),
.gallery__item img[src=""] {
  background: linear-gradient(90deg, #1a2332 25%, #2e3f5c 50%, #1a2332 75%);
  background-size: 200% 100%;
  animation: v4-shimmer 1.6s infinite;
  min-height: 155px;
}

@keyframes v4-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── CARD SHINE SWEEP ON HOVER ───────────────────────────────────── */
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 55%;
  height: 100%;
  background: linear-gradient(108deg,
      transparent 38%,
      rgba(255, 255, 255, .055) 50%,
      transparent 62%);
  transition: left 0.6s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.card:hover::before {
  left: 145%;
}

/* Keep card text above shine layer */
.card>* {
  position: relative;
  z-index: 1;
}

/* ── COLLECTION TILE ACTIVE RING PULSE ───────────────────────────── */
.collection-tile.active::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  border: 2px solid rgba(183, 137, 43, .6);
  opacity: 0;
  animation: v4-tile-ring 2s ease-out infinite;
  pointer-events: none;
  z-index: 4;
}

@keyframes v4-tile-ring {
  0% {
    opacity: 0.65;
    transform: scale(1);
  }

  70% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

/* ── MARBLE TAG CLICK FEEDBACK ───────────────────────────────────── */
.marble-tag:active {
  transform: scale(0.94) translateY(0) !important;
  transition: transform 0.08s ease !important;
}

/* ── FAQ OPEN STATE ACCENT ───────────────────────────────────────── */
.faq__item[open] {
  border-left: 3px solid var(--gold);
}

.faq__item[open] summary {
  background: linear-gradient(135deg, rgba(183, 137, 43, .04), transparent);
}

/* ── TESTIMONIAL WARM HOVER ──────────────────────────────────────── */
.quote:hover {
  background: linear-gradient(160deg, rgba(183, 137, 43, .04) 0%, var(--white) 100%);
}

/* ── VIDEO ITEM PLAY BADGE ───────────────────────────────────────── */
.slider-block--video .video-item::before {
  content: "▶";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .52);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .92);
  font-size: 10px;
  padding-left: 2px;
  display: grid;
  place-items: center;
  z-index: 3;
  pointer-events: none;
  transition: background 0.2s, border-color 0.2s;
}

.slider-block--video .video-item:hover::before {
  background: var(--gold);
  border-color: transparent;
}

/* ── SECTION ALT SUBTLE DOT PATTERN ─────────────────────────────── */
.section--alt {
  position: relative;
}

.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(183, 137, 43, .055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

.section--alt>.container {
  position: relative;
  z-index: 1;
}

/* ── NAV LINK HOVER UNDERLINE DOT ────────────────────────────────── */
.nav a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 99px;
  transition: width 0.22s var(--ease);
}

.nav a:hover::after,
.nav a.nav--active::after {
  width: 18px;
}

/* ── SLIDER COUNT STYLED BADGE ───────────────────────────────────── */
.slider-count {
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 99px;
  padding: 3px 12px;
  min-width: 54px;
}

/* ── CONTACT ITEM GOLD UNDERLINE ─────────────────────────────────── */
.contact__item h3::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  margin-top: 4px;
  transition: width 0.28s var(--ease);
}

.contact__item:hover h3::after {
  width: 28px;
}

/* ── FOOTER LINK ARROW PREFIX ────────────────────────────────────── */
.footer__links li {
  position: relative;
}

/* ── LIGHTBOX ARROW KEY HINT ─────────────────────────────────────── */
.lightbox__hint {
  color: rgba(255, 255, 255, .30);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 0;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

/* ── PILL APPEAR ANIMATION ───────────────────────────────────────── */
.pill-grid .pill {
  animation: v4-pill-in 0.5s var(--ease) both;
}

.pill-grid .pill:nth-child(1) {
  animation-delay: 0.04s;
}

.pill-grid .pill:nth-child(2) {
  animation-delay: 0.09s;
}

.pill-grid .pill:nth-child(3) {
  animation-delay: 0.14s;
}

.pill-grid .pill:nth-child(4) {
  animation-delay: 0.19s;
}

.pill-grid .pill:nth-child(5) {
  animation-delay: 0.24s;
}

.pill-grid .pill:nth-child(6) {
  animation-delay: 0.29s;
}

@keyframes v4-pill-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── GALLERY BADGE COUNT TRANSITION ─────────────────────────────── */
#galleryCount {
  transition: all 0.3s var(--ease);
}

/* ── REDUCED MOTION SAFETY ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  .hero .kicker,
  .hero h1,
  .hero .lead,
  .hero .hero__actions,
  .hero .hero__stats,
  .pill-grid .pill {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .card::before,
  .hero::after,
  .section--alt::before {
    display: none !important;
  }
}

/* ── MOBILE TWEAKS ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .fab {
    width: 54px;
    height: 54px;
  }

  .hero::after {
    opacity: 0.22;
  }

  .card::before {
    display: none;
  }

  .section--alt::before {
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .pill-grid .pill {
    animation: none;
    opacity: 1;
  }
}