/* ═══════════════════════════════════════════════════════════
   LUMIORR — Shared Design System v1.0
   Light theme only · Glassmorphism · Gold accents
   Used by ALL pages: homepage + category hubs + inner pages
═══════════════════════════════════════════════════════════ */

/* ═══ BRAND TOKENS ═══ */
:root {
  /* Typography */
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Easing */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.33, 1, .68, 1);

  /* Brand Gold */
  --gold: #C9A84C;
  --gold-bright: #FFD700;
  --gold-dim: #7A6430;
  --gold-soft: rgba(201, 168, 76, .12);
  --gold-glow: rgba(201, 168, 76, .06);
  --gold-10: rgba(201, 168, 76, .1);
  --gold-05: rgba(201, 168, 76, .05);

  /* Light Theme Colors — snow white (matches the home page #FEFDFB) */
  --bg: #FEFDFB;
  --bg2: #FCFBF8;
  --surface: #FFFFFF;
  --surface2: #FAF9F6;
  --card: #FFFFFF;
  --card2: #FCFBF8;
  --border: rgba(0, 0, 0, .06);
  --border-hover: rgba(201, 168, 76, .4);
  --divider: rgba(0, 0, 0, .05);
  --text: #1A1510;
  --text2: #6B6358;
  --text3: #A09888;
  --nav-bg: rgba(254, 253, 251, .92);
  --frosted: rgba(255, 255, 255, .7);
  --hero-gradient: linear-gradient(160deg, #FEFDFB 0%, #FCFBF8 50%, #FEFDFB 100%);
}

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }   /* clip (not hidden) kills sideways viewport drift from decorative glows while preserving position:sticky */
/* ── Mobile & cross-platform premium polish ── */
html { -webkit-tap-highlight-color: transparent; }            /* no grey tap flash on iOS (inherited) */
a, button, [role="button"], label, input, select, textarea, summary, .btn, .glow-btn { touch-action: manipulation; } /* remove 300ms tap delay + double-tap zoom on controls */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }   /* don't animate scroll for motion-sensitive users */
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;   /* no sideways scroll; clip (not hidden) keeps position:sticky working */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══ FILM GRAIN OVERLAY ═══ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .018;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══ SCROLL PROGRESS BAR ═══ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
}

/* ═══ LAYOUT CONTAINERS ═══ */
.pad { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }
.section-space { padding: clamp(80px, 12vh, 160px) 0; }
.w { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }

/* ═══ TYPOGRAPHY SCALE ═══ */
.label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #8A6D24;   /* deeper gold: passes WCAG 4.5:1 on white (bright --gold fails for small text) */
  margin-bottom: 20px;
  display: block;
}
.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.1;
  max-width: 14ch;
  text-wrap: balance;   /* even line breaks — avoids ragged 1-word lines on mobile (e.g. "Consultation"/"Pune") */
}
.headline em { font-style: italic; color: var(--gold); }
.heading-lg {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.07;
  font-size: clamp(32px, 5vw, 56px);
}
.heading-md {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.01em;
}
.heading-sm {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.29;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -.005em;
}
.body-text {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text2);
  max-width: 520px;
  line-height: 1.8;
}
.body {
  font-size: clamp(14px, 1vw, 17px);
  color: var(--text2);
  line-height: 1.6;
}
.body-lg {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 300;
  color: var(--text2);
  line-height: 1.7;
  max-width: 540px;
}
.caption {
  font-size: 12px;
  color: var(--text3);
  letter-spacing: .01em;
}
em { color: var(--gold); font-style: italic; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 48px;
  cursor: pointer;
  border: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary { background: var(--gold); color: #1A1510; }
.btn-primary:hover { color: #1A1510; }
.btn-ghost { background: none; color: var(--text); border: 1px solid var(--text3); }.btn-ghost::before{display:none}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-text {
  background: none;
  color: var(--gold);
  padding: 0;
  min-height: auto;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .05em;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-text:hover { opacity: .7; }
.btn-text .arr { transition: transform .3s var(--ease); display: inline-block; }
.btn-text:hover .arr { transform: translateX(4px); }
.btn-wa { background: #25D366; color: #fff; border: none; }
.btn-wa::before { background: #1da851; }

/* ═══ GLOW BORDER BUTTONS ═══ */
.glow-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
  z-index: 1;
}
.glow-btn::before, .glow-btn::after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 14px;
  background: linear-gradient(45deg, #C9A84C, #FFD700, #B8943C, #E8C84A, #C9A84C, #FFD700, #8B6914, #C9A84C);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: goldShift 8s linear infinite;
}
.glow-btn::after {
  filter: blur(18px);
  opacity: .5;
}
@keyframes goldShift {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
.glow-btn:hover { transform: scale(1.03); }
.glow-btn:hover::after { opacity: .7; filter: blur(24px); }

.glow-btn-primary { background: var(--gold); color: #fff; }
.glow-btn-primary::before, .glow-btn-primary::after {
  background: linear-gradient(45deg, rgba(201, 168, 76, .4), rgba(255, 215, 0, .2), rgba(201, 168, 76, .4), rgba(184, 148, 60, .2));
  background-size: 400%;
  animation: goldShift 10s linear infinite;
}
.glow-btn-primary::after { filter: blur(14px); opacity: .35; }
.glow-btn-primary:hover::after { opacity: .5; }

.glow-btn-ghost { background: #FEFDFB; color: var(--text); }
.glow-btn-ghost::before, .glow-btn-ghost::after {
  background: linear-gradient(45deg, rgba(201, 168, 76, .3), rgba(255, 215, 0, .15), rgba(201, 168, 76, .3), rgba(184, 148, 60, .15));
  background-size: 400%;
  animation: goldShift 10s linear infinite;
}
.glow-btn-ghost::after { filter: blur(12px); opacity: .3; }
.glow-btn-ghost:hover::after { opacity: .5; }

/* ═══ NAV — dark, matches footer ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 0;
  transition: padding .4s var(--ease), background .3s, border-color .3s, box-shadow .3s;
  background: rgba(248,245,240,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom:1px solid rgba(26,21,16,.05);box-shadow:0 1px 0 rgba(255,255,255,.7) inset,0 6px 20px rgba(26,21,16,.05);
}
.nav.compact {
  padding: 12px 0;
  background: rgba(248,245,240,.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom:1px solid rgba(201,168,76,.22);
  box-shadow: 0 10px 30px rgba(26,21,16,.09);
}
.nav-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; z-index: 202; margin-right: clamp(16px, 2vw, 32px); }
.nav-logo img { height: 36px; width: auto; }

/* ═══ TUBELIGHT NAV TABS ═══ */
.nav-tabs {
  display: flex;
  align-items: center;
  background:rgba(255,255,255,.85);box-shadow:0 2px 6px rgba(26,21,16,.04),0 12px 28px rgba(26,21,16,.08);
  border: 1px solid rgba(201, 168, 76, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 3px;
  list-style: none;
  gap: 0;
}
.nav-tab {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color:rgba(26,21,16,.55);padding:8px clamp(12px, 1.4vw, 20px);
  border-radius: 999px;
  cursor: pointer;
  transition: color .3s, background .3s;
  white-space: nowrap;
}
.nav-tab:hover{color:rgba(26,21,16,.92)}
.nav-tab.active { color: var(--gold); background: rgba(201, 168, 76, .08); }
/* Tubelight glow indicator */
.nav-tab.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--gold);
}
.nav-tab.active::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .2);
  filter: blur(6px);
}

/* ═══ MEGA DROPDOWN ═══ */
.nav-tab-wrap { position: relative; }
.mega-drop {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 16px 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, .1);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(26,21,16,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .25s, visibility .25s, transform .25s;
  z-index: 300;
}
.nav-tab-wrap:hover .mega-drop,
.nav-tab-wrap:focus-within .mega-drop,
.nav-tab-wrap.mega-open .mega-drop {        /* touch tap-toggle (hover:none) — see site-a11y.js */
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-drop a {
  display: block;
  padding: 8px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color:rgba(26,21,16,.6);transition:color .2s, padding-left .2s;
  letter-spacing: .02em;
}
.mega-drop a:hover { color: var(--gold); padding-left: 28px; }
.mega-drop::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
}

/* ═══ NAV SOCIAL ICONS — brand colors + macOS dock ═══ */
.nav-social {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  position: static;
  margin-left: clamp(16px, 2vw, 32px);
  padding: 4px 8px;
  border-radius: 16px;
  background:rgba(255,255,255,.75);border:1px solid rgba(201,168,76,.12);box-shadow:0 2px 10px rgba(26,21,16,.05);
}
.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), opacity .2s;
  opacity: .75;
}
.nav-social a:hover { transform: scale(1.15); opacity: 1; }
.ns-fb { color: #1877F2; }
.ns-ig { color: #E4405F; }
.ns-wa { color: #25D366; }
.ns-mail { color: #EA4335; }
.ns-phone { color: #34A853; }
.ns-search { color: rgba(26, 21, 16, .55); }
.ns-google svg { width: 16px; height: 16px; }

/* ═══ SEARCH OVERLAY ═══ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(248, 245, 240, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box { width: min(600px, 90vw); text-align: center; }
.search-box input {
  width: 100%;
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 32px);
  background: none;
  border: none;
  border-bottom: 2px solid var(--gold);
  color: var(--text);
  outline: none;
  letter-spacing: .02em;
  text-align: center;
}
.search-box input::placeholder { color: var(--text3); }
.search-box .search-hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text3);
  letter-spacing: .08em;
}
.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--text2);
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
.search-close:hover { color: var(--gold); }
.search-results {
  margin-top: 24px;
  text-align: left;
  max-height: 50vh;
  overflow-y: auto;
}
.search-results:empty { display: none; }
.sr-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--divider);
  cursor: pointer;
  transition: background .2s, padding-left .2s;
  border-radius: 8px;
}
.sr-item:hover { background: rgba(201, 168, 76, .06); padding-left: 28px; }
.sr-name { font-family: var(--serif); font-size: 16px; color: var(--text); }
.sr-cat { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.sr-no { padding: 20px; font-size: 14px; color: var(--text3); text-align: center; }

/* ═══ HAMBURGER & MOBILE MENU ═══ */
/* Compress tabs on mid-size screens so they never collide with social icons */
@media (max-width: 1920px) {
  .nav-tab { padding: 8px 9px; font-size: 10px; letter-spacing: .08em; }
  .nav-social { margin-left: 12px; }
}
@media (max-width: 1280px) {
  .nav-tabs { display: none; }
  .nav-social { display: none; }
  .hamburger { display: block !important; }
}
.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 12px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background:rgba(26,21,16,.92);position:absolute;left:12px;border-radius:2px;
  transition: all .35s var(--ease);
}
.hamburger span:nth-child(1) { top: 17px; }
.hamburger span:nth-child(2) { top: 24px; }
.hamburger span:nth-child(3) { top: 31px; }
.hamburger.open span:nth-child(1) { top: 24px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 24px; transform: rotate(-45deg); }
@media (max-width: 1100px) {
  .hamburger { display: block; }
}
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(248, 245, 240, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(6px,1.4vh,14px);
  padding: 92px 28px calc(40px + env(safe-area-inset-bottom,0px));
  overflow-y: auto;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .42s cubic-bezier(.4,0,.2,1), opacity .42s, visibility .42s;
  will-change: transform;
}
.mob-menu.open { transform: translateX(0); opacity: 1; visibility: visible; }
.mob-menu a {
  font-family: var(--serif);
  font-size: clamp(20px, 4.6vw, 28px);
  color: var(--text);
  letter-spacing: .04em;
  text-align: left;
  padding: 6px 2px;
  min-height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(26,21,16,.06);
  transition: color .3s;
}
.mob-menu a:hover { color: var(--gold); }

/* ═══ GLASSMORPHISM CARDS ═══ */
.glass {
  background: rgba(255, 252, 245, .55);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(201, 168, 76, .08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .03);
}

/* ═══ HERO — SPLIT LAYOUT ═══ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 15vh, 180px) clamp(24px, 6vw, 80px) clamp(60px, 8vh, 100px);
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(24px, 3vh, 40px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05;
  margin-bottom: clamp(20px, 3vh, 32px);
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--text2);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: clamp(32px, 4vh, 48px);
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 76, .08) 0%, transparent 70%);
  animation: glowPulse 4s ease infinite alternate;
}
@keyframes glowPulse {
  0% { opacity: .6; transform: translate(-50%, -50%) scale(.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.hero-beam {
  position: absolute;
  top: -20%;
  left: 40%;
  width: 2px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, .2), transparent);
  transform: rotate(15deg);
  animation: beamShift 8s ease infinite;
}
@keyframes beamShift {
  0%, 100% { left: 40%; opacity: .3; }
  50% { left: 55%; opacity: .6; }
}
.hero-beam-2 {
  position: absolute;
  top: -10%;
  right: 30%;
  width: 1px;
  height: 130%;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, .12), transparent);
  transform: rotate(-8deg);
  animation: beamShift2 12s ease infinite;
}
@keyframes beamShift2 {
  0%, 100% { right: 30%; opacity: .2; }
  50% { right: 20%; opacity: .5; }
}
.hero-scroll-hint {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text3);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 50vh; order: -1; }
  .hero-text { padding-top: 40px; padding-bottom: 60px; }
}

/* ═══ TRUST BAR / MARQUEE ═══ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(24px, 4vh, 40px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  position: relative;
}
.trust-item__number {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.trust-item__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text2);
  margin-top: 6px;
  display: block;
}

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-inner {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--text3);
  letter-spacing: .15em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-item .dot { color: var(--gold); margin: 0 4px; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ═══ BEAM DIVIDER ═══ */
.beam-divider {
  width: 100%;
  height: 24px;
  position: relative;
  overflow: visible;
  pointer-events: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.beam-divider__line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, .08) 8%, rgba(201, 168, 76, .5) 30%, rgba(255, 215, 0, 1) 50%, rgba(201, 168, 76, .5) 70%, rgba(201, 168, 76, .08) 92%, transparent 100%);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform, opacity;
}
.beam-divider__corona {
  position: absolute;
  top: 50%;
  left: 0;
  width: 48px;
  height: 7px;
  margin-top: -3.5px;
  background: radial-gradient(ellipse 100% 100%, rgba(255, 215, 0, .7) 0%, rgba(201, 168, 76, .25) 55%, transparent 100%);
  filter: blur(2px);
  will-change: transform, opacity;
  transform: translateX(-48px);
}

/* ═══ TEXT REVEAL ═══ */
.text-reveal {
  display: inline-block;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s cubic-bezier(.16, 1, .3, 1);
}
.text-reveal.visible { clip-path: inset(0 0 0% 0); }

/* ═══ LIGHT WIPE REVEAL ═══ */
.light-wipe { position: relative; overflow: hidden; }
.light-wipe__beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: radial-gradient(ellipse 20% 100% at 0% 50%, rgba(201, 168, 76, .16) 0%, rgba(201, 168, 76, .05) 45%, transparent 70%);
  transform: translateX(-100%);
  will-change: transform, opacity;
}
.light-wipe__inner { will-change: clip-path; }

/* ═══ PRODUCT CATEGORY CARDS ═══ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vh, 64px);
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .12);
  border-color: var(--border-hover);
}
.category-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.category-card:hover .category-card__img img { transform: scale(1.05); }
.category-card__body { padding: clamp(20px, 2vw, 28px); }
.category-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.category-card__name {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text);
  margin-bottom: 8px;
}
.category-card__desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .category-grid { grid-template-columns: 1fr; }
}

/* ═══ FEATURE / WHY LUMIORR CARDS ═══ */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.f-card {
  background: rgba(255, 252, 245, .55);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  transition: transform .34s ease, background .3s;
  border: 1px solid rgba(201, 168, 76, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
}
.f-card:hover { transform: scale(.99); border-color: var(--border-hover); }
.f-card.full {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.f-card .heading-sm { margin-bottom: 12px; }
.f-card .body { margin-bottom: 24px; }
.f-card-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.f-card-visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 767px) {
  .features { grid-template-columns: 1fr; }
  .f-card.full { grid-column: span 1; grid-template-columns: 1fr; }
}

/* ═══ WHY LUMIORR — BENTO SERVICES ═══ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  margin-top: clamp(40px, 5vh, 64px);
}
.bento-cell {
  background: rgba(255, 252, 245, .45);
  padding: clamp(32px, 3vw, 56px);
  transition: background .4s, backdrop-filter .4s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.bento-cell:hover { background: rgba(255, 252, 245, .7); }
.bento-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.bento-cell:hover::before { width: 100%; }
.bento-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.bento-cell h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  margin-bottom: 8px;
}
.bento-cell p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}
.bento-cell.featured { grid-column: span 2; }
@media (max-width: 767px) {
  .bento { grid-template-columns: 1fr; }
  .bento-cell.featured { grid-column: span 1; }
}

/* ═══ PROJECTS GRID ═══ */
.proj-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vh, 64px);
}
.proj-grid .proj-card:first-child { grid-row: span 2; }
.proj-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: auto;
  min-height: clamp(200px, 20vw, 320px);
  border-radius: 8px;
  transition: transform .5s var(--ease);
}
.proj-card:hover { transform: scale(.98); }
.proj-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45) saturate(.8);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 4, .85), transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2vw, 32px);
  transition: background .4s;
  z-index: 1;
}
.proj-card:hover .proj-overlay {
  background: linear-gradient(to top, rgba(8, 6, 4, .95), rgba(201, 168, 76, .03) 60%);
}
.proj-tag {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.proj-name {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  color: #fff;
}
.proj-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(.8);
  transition: all .4s var(--ease);
}
.proj-card:hover .proj-arrow { opacity: 1; transform: scale(1); }
@media (max-width: 767px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-grid .proj-card:first-child { grid-row: span 1; }
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 252, 245, .5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, .06);
  border-radius: 12px;
  padding: 0;
}
.testimonial-card__content { position: relative; z-index: 4; padding: clamp(24px, 3vw, 40px); }
.testimonial-card__quote {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--serif);
  font-size: 64px;
  color: rgba(201, 168, 76, .08);
  line-height: 1;
  z-index: 5;
  pointer-events: none;
}
.testimonial-card__stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card__text {
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 18px);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text);
}
.testimonial-card__author { font-size: 13px; font-weight: 600; color: var(--text); }
.testimonial-card__role { font-size: 12px; color: var(--text3); margin-top: 2px; }
@media (max-width: 767px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ═══ BLOG TEASER ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
}
.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--bg2);
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 24px; }
.blog-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}
@media (max-width: 767px) { .blog-grid { grid-template-columns: 1fr; } }

/* ═══ CTA SECTION ═══ */
.cta-section {
  text-align: center;
  padding: clamp(60px, 10vh, 120px) 0;
  position: relative;
  background: var(--bg2);
}
.cta-section .glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .05), transparent);
  pointer-events: none;
}
.cta-beacon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cta-beacon::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 60px;
  background: radial-gradient(ellipse 100% 100%, rgba(37, 211, 102, .2) 0%, transparent 70%);
  animation: beaconPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes beaconPulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

/* ═══ FOOTER ═══ */
.footer-section {
  position: relative;
  border-top: 1px solid var(--divider);
  padding: clamp(40px, 6vh, 64px) 0 20px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-section p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 260px;
}
.footer-section h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; }
.footer-section a { font-size: 13px; color: var(--text2); transition: color .2s; }
.footer-section a:hover { color: var(--gold); }
.footer-bar {
  border-top: 1px solid var(--divider);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--text3);
}
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Dark footer theme — matches the homepage footer site-wide. Pages with their
   own inline .footer-section background (homepage, category pages) keep theirs;
   pages without one (About, Contact, FAQ, Projects, Consultation, Blog) inherit this. */
.footer-section { background:#0D0B08; border-top:none; }
.footer-bar { border-top-color:rgba(255,255,255,.06); }
/* Readable footer text on the dark background (WCAG AA). Higher specificity
   (footer.footer-section …) intentionally overrides every page's inline rules,
   so contrast is fixed site-wide — homepage and category pages alike. */
footer.footer-section p, footer.footer-section li, footer.footer-section a { color:#A39A8B; }
footer.footer-section a:hover { color:var(--gold,#C9A84C); }
footer.footer-section .footer-bar, footer.footer-section .footer-bar span { color:#9A9182; }

/* Gallery mobile polish: compact chips + lightbox breathing room on phones */
@media (max-width:480px){
  .cgal-chip { font-size:10px; padding:7px 14px; min-height:40px; }
  .cgal-lb { padding:60px 0 80px; }
  .cgal-lb img { max-height:74vh; }
}

/* ═══ BREADCRUMB ═══ */
.breadcrumb {
  padding: clamp(100px, 12vh, 140px) 0 clamp(20px, 3vh, 32px);
  font-size: 12px;
  color: var(--text3);
  letter-spacing: .04em;
}
.breadcrumb a {
  color: var(--text2);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep {
  margin: 0 8px;
  opacity: .5;
}
.breadcrumb .current {
  color: var(--gold);
  font-weight: 500;
}

/* ═══ STICKY MOBILE BAR (WhatsApp + Call) ═══ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(248, 245, 240, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-soft);
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
}
.sticky-bar .s-wa { background: #25D366; color: #fff; }
.sticky-bar .s-call { background: var(--gold); color: #fff; }
@media (min-width: 901px) { .sticky-bar { display: none !important; } }
@media (max-width: 900px) { .footer-section { padding-bottom: 80px; } }

/* ═══ GOLD PARTICLES ═══ */
.gold-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.g-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: .15; }
  90% { opacity: .15; }
  100% { transform: translateY(-20vh) translateX(40px); opacity: 0; }
}

/* ═══ SECTION DOTS ═══ */
.section-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity .5s;
}
.section-dots.show { opacity: 1; }
.section-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .25);
  background: transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative;
}
.section-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, .3);
}
.section-dot:hover { border-color: var(--gold); transform: scale(1.3); }
.section-dot-label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.section-dot:hover .section-dot-label { opacity: 1; }
@media (max-width: 900px) { .section-dots { display: none; } }

/* ═══ STATS (counter section) ═══ */
.stats-section { background: var(--bg); padding: clamp(60px, 10vh, 120px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 60px); margin-top: 48px; }
.stat-block { text-align: center; position: relative; padding: clamp(24px, 4vw, 48px) 20px; }
.stat-block__number {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 108px);
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  letter-spacing: -.03em;
  position: relative;
  line-height: 1;
}
.stat-block__suffix { font-size: .45em; vertical-align: top; margin-top: .15em; display: inline-block; }
.stat-block__label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text2);
  margin-top: 12px;
}
.stat-block__divider {
  width: 1px;
  height: 60%;
  background: var(--divider);
  position: absolute;
  right: 0;
  top: 20%;
}
@media (max-width: 767px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block__divider { display: none; }
}

/* ═══ SWIPER OVERRIDES ═══ */
.hero-carousel-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vh, 80px) 0;
}
.hero-carousel-wrap .swiper { width: 100%; height: 100%; padding-bottom: 40px; }
.hero-carousel-wrap .swiper-slide {
  width: clamp(400px, 40vw, 560px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .1), 0 0 0 1px rgba(201, 168, 76, .06);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
  background: var(--card);
  position: relative;
}
.hero-carousel-wrap .swiper-slide-active {
  box-shadow: 0 32px 80px rgba(0, 0, 0, .12), 0 0 40px rgba(201, 168, 76, .12), 0 0 0 1px rgba(201, 168, 76, .15);
}
.hero-carousel-wrap .swiper-slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.hero-carousel-wrap .slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(20px, 2vw, 32px) clamp(20px, 2.5vw, 28px);
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .2) 60%, transparent 100%);
}
.hero-carousel-wrap .slide-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.hero-carousel-wrap .slide-cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-carousel-wrap .swiper-pagination-bullet { background: var(--gold); opacity: .3; width: 8px; height: 8px; }
.hero-carousel-wrap .swiper-pagination-bullet-active { opacity: 1; width: 24px; border-radius: 4px; }

/* ═══ ACCESSIBILITY ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .marquee-inner { animation: none; }
  .light-wipe__inner { clip-path: none !important; }
  .g-particle { display: none; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ═══ SKIP-TO-CONTENT (a11y, WCAG 2.4.1) — injected by js/site-a11y.js ═══ */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100000;
  background: var(--gold, #C9A84C); color: #fff;
  padding: 12px 20px; border-radius: 0 0 8px 8px; font-weight: 700;
  font-size: 14px; text-decoration: none; min-height: 44px;
  display: inline-flex; align-items: center;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* ═══ UTILITY ═══ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 12px; }
.gap-md { gap: 16px; }

/* ═══════════════════════════════════════════════════════════════════
   CATEGORY PHOTO GALLERY — filterable, big-scale, masonry + lightbox
   Used on every light-category page (Magnetic Track, Decorative, …).
   Unique .cgal-* prefix → never collides with a page's inline <style>.
   ═══════════════════════════════════════════════════════════════════ */
.cgal { padding: clamp(36px,6vh,72px) 0; }
.cgal-head { display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; gap:16px; }
.cgal-sub { font-size:clamp(13px,1.1vw,15px); color:var(--text2,#6B6358); max-width:560px; margin:14px 0 4px; }

/* filter chips */
.cgal-filters { display:flex; flex-wrap:wrap; gap:10px; margin:20px 0 30px; }
.cgal-chip { font-family:var(--sans,'Montserrat',sans-serif); font-size:11.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--text2,#6B6358); background:rgba(255,255,255,.72); border:1px solid rgba(201,168,76,.28); padding:9px 18px; min-height:44px; display:inline-flex; align-items:center; border-radius:999px; cursor:pointer; transition:color .25s,background .25s,border-color .25s,box-shadow .25s,transform .25s; white-space:nowrap; }
.cgal-chip:hover { border-color:var(--gold,#C9A84C); color:var(--gold,#C9A84C); transform:translateY(-1px); }
.cgal-chip.active { background:var(--gold,#C9A84C); border-color:var(--gold,#C9A84C); color:#fff; box-shadow:0 6px 18px rgba(201,168,76,.32); }
.cgal-chip .n { opacity:.6; font-weight:500; margin-left:7px; }
.cgal-chip.active .n { opacity:.85; }

/* sub-category pills — static, non-clickable. Shown on flat galleries (Magnetic
   Track, Architectural, Indoor, Outdoor, Custom Profile Designs) so visitors still
   see the full range even though all photos sit in one wall. */
.cgal-subcats { display:flex; flex-wrap:wrap; align-items:center; gap:9px; margin:18px 0 30px; }
.cgal-subcats .lbl { font-family:var(--sans,'Montserrat',sans-serif); font-size:10.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gold,#C9A84C); opacity:.75; margin-right:2px; }
.cgal-subcats .pill { font-family:var(--sans,'Montserrat',sans-serif); font-size:11.5px; font-weight:600; letter-spacing:.04em; color:var(--text2,#6B6358); background:rgba(255,255,255,.6); border:1px solid rgba(201,168,76,.24); padding:8px 16px; border-radius:999px; white-space:nowrap; }
[data-theme="dark"] .cgal-subcats .pill { background:rgba(255,255,255,.05); border-color:rgba(201,168,76,.18); }

/* flat gallery: no filter row, no per-tile caption (it's a pure photo wall) */
.cgal[data-flat="true"] .cgal-filters { display:none; }
.cgal[data-flat="true"] .cgal-tile figcaption { display:none; }

/* masonry grid — preserves each photo's aspect ratio (gallery-wall feel) */
.cgal-grid { columns:2 460px; column-gap:22px; }
@media(max-width:760px){ .cgal-grid{ columns:1; column-gap:0; } }
/* Tile background = the page cream. Combined with multiply on the image, any photo
   shot on a WHITE studio background blends seamlessly into the site theme — and so
   does every future client upload, with zero image processing. The full-res lightbox
   image (.cgal-lb img) is deliberately NOT blended, so it shows true colour. */
.cgal-tile { position:relative; break-inside:avoid; -webkit-column-break-inside:avoid; margin:0 0 18px; border-radius:14px; overflow:hidden; cursor:zoom-in; background:var(--bg,#F8F5F0); isolation:isolate; box-shadow:0 6px 22px rgba(0,0,0,.06); transition:box-shadow .4s var(--ease,ease); }
.cgal-tile img { width:100%; height:auto; display:block; mix-blend-mode:multiply; transition:transform .6s var(--ease,ease); }
.cgal-tile:hover { box-shadow:0 16px 46px rgba(0,0,0,.16); }
.cgal-tile:hover img { transform:scale(1.05); }
.cgal-tile figcaption { position:absolute; left:0; right:0; bottom:0; padding:34px 16px 14px; background:linear-gradient(transparent,rgba(0,0,0,.66)); color:#fff; font-family:var(--sans,'Montserrat',sans-serif); font-size:12px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; opacity:0; transform:translateY(8px); transition:opacity .3s,transform .3s; pointer-events:none; }
.cgal-tile:hover figcaption { opacity:1; transform:none; }
.cgal-tile.hide { display:none; }
.cgal-empty { color:var(--text3,#A09888); font-size:14px; padding:30px 0; }

/* lightbox */
.cgal-lb { position:fixed; inset:0; z-index:9999; background:rgba(15,12,8,.93); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:opacity .3s,visibility .3s; }
.cgal-lb.open { opacity:1; visibility:visible; }
.cgal-lb img { max-width:92vw; max-height:84vh; object-fit:contain; border-radius:8px; box-shadow:0 24px 80px rgba(0,0,0,.6); }
.cgal-lb-cap { position:absolute; bottom:20px; left:0; right:0; text-align:center; color:#fff; font-family:var(--sans,'Montserrat',sans-serif); font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; }
.cgal-lb-cap small { display:block; color:rgba(255,255,255,.5); font-size:11px; letter-spacing:.1em; margin-top:5px; }
.cgal-lb-btn { position:absolute; top:50%; transform:translateY(-50%); width:54px; height:54px; border:none; border-radius:50%; background:rgba(255,255,255,.12); color:#fff; font-size:26px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.cgal-lb-btn:hover { background:rgba(201,168,76,.92); }
.cgal-lb-prev { left:18px; } .cgal-lb-next { right:18px; }
.cgal-lb-close { position:absolute; top:18px; right:20px; width:46px; height:46px; border:none; border-radius:50%; background:rgba(255,255,255,.12); color:#fff; font-size:24px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.cgal-lb-close:hover { background:rgba(201,168,76,.92); }
@media(max-width:560px){ .cgal-lb-btn{ width:42px; height:42px; font-size:20px; } .cgal-lb-prev{left:8px} .cgal-lb-next{right:8px} }

/* AUDIT-mob-sub: indented Decorative sub-ranges in mobile menu */
.mob-menu .mob-sub{font-size:.8em;padding-top:7px;padding-bottom:7px;padding-left:42px;opacity:.72;letter-spacing:.02em}
