@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #0D0D0D;
  --gold: #C9A84C;
  --gold-dim: rgba(201,168,76,0.4);
  --gold-glow: rgba(201,168,76,0.15);
  --card: #1A1A1A;
  --card-hover: #222;
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.6);
  --border: rgba(201,168,76,0.25);
  --radius: 2px;
  --font-heading: 'Moxa Bestine', 'Senmoly Caligan', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: #e0c06a; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--gold);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 48px 0;
}

/* =====================================================================
   NAVIGATION — Centered logo + links below (original site style)
   ===================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 48px 8px 0;
  position: relative;
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  flex-shrink: 1;
  min-width: 0;
}

.nav-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop horizontal nav links — below logo */
.nav-links {
  display: none;
}

/* ===== DRAWER ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 80px 0 40px;
  -webkit-overflow-scrolling: touch;
}
.drawer.active {
  transform: translateX(0);
}

.drawer-links {
  list-style: none;
}

.drawer-links a {
  display: block;
  padding: 18px 28px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.drawer-links a:hover,
.drawer-links a.active {
  color: var(--gold);
  background: var(--gold-glow);
  padding-left: 36px;
}

.drawer-cta {
  margin: 28px 28px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-solid {
  background: var(--gold);
  color: var(--bg);
}
.btn-solid:hover {
  background: #e0c06a;
  border-color: #e0c06a;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.95) 0%,
    rgba(13,13,13,0.85) 30%,
    rgba(13,13,13,0.6) 55%,
    rgba(13,13,13,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-title-mobile {
  display: none;
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-small {
  max-width: 200px;
  font-size: 0.68rem;
  padding: 12px 28px;
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: all 0.3s;
}

.card:hover {
  background: var(--card-hover);
  border-color: var(--gold);
}

.card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--gold);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== GRID ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid-1 {
  display: grid;
  gap: 12px;
}

.grid-4 {
  display: grid;
  gap: 12px;
}

.grid-3 {
  display: grid;
  gap: 12px;
}

/* ===== STRIP ===== */
.strip {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip h3 {
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.stat-item {
  background: var(--card);
  padding: 28px 12px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== GEMSTONE CARD ===== */
.gem-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.gem-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #111;
}

.gem-card-body {
  padding: 20px;
}

.gem-planet {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.gem-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 2px;
}

.gem-sanskrit {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-dim);
  margin-bottom: 10px;
}

.gem-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-block;
  padding: 4px 10px;
}

.gem-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

.gem-detail-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.gem-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  min-width: 52px;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== QUOTE ===== */
.quote-block {
  padding: 48px 24px;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  color: var(--gold);
}

.service-card-icon svg {
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== LOCATION CARD ===== */
.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
}

.location-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.location-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.location-card .phone {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 12px;
  display: block;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.testimonial-source {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== SOCIAL ===== */
.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

/* ===== HOURS ===== */
.hours-table {
  width: 100%;
}

.hours-table td {
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-table td:first-child {
  color: var(--text-muted);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text);
  font-family: var(--font-heading);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-locations {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-loc h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-loc p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-loc .phone {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-credit {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-credit a {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-credit-logo {
  height: 20px;
  width: auto;
  vertical-align: middle;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-credit a:hover .footer-credit-logo {
  opacity: 1;
}

/* =====================================================================
   FOOTER LEGAL LINKS
   ===================================================================== */
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* =====================================================================
   LEGAL MODALS
   ===================================================================== */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.legal-modal.active {
  opacity: 1;
  pointer-events: all;
}

.legal-modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.legal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.3s;
}

.legal-close:hover {
  color: var(--gold);
}

.legal-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.legal-updated {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.legal-body h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin: 20px 0 8px;
}

.legal-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--gold);
}

/* ===== WHATSAPP ===== */
.whatsapp-strip {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.whatsapp-strip p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 100px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.page-hero-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== LOOKBOOK ===== */
.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lookbook-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.lookbook-grid .span-2 {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ===== SECTION SCROLL OFFSET ===== */
section[id] {
  scroll-margin-top: 120px;
}

.page-hero-section {
  padding: 80px 0 32px;
  text-align: center;
}

.page-hero-section h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== MISC ===== */
.divider { height: 1px; background: var(--border); margin: 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* =====================================================================
   MOBILE FIXES — below 768px
   ===================================================================== */
@media (max-width: 767px) {
  section[id] {
    scroll-margin-top: 70px;
  }

  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 20px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }

  .section-label {
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
  }

  /* HERO */
  .hero {
    min-height: auto;
    height: 80vh;
    padding: 0 0 32px;
  }

  .hero-bg img {
    object-fit: contain;
    object-position: center 40%;
  }

  .hero-bg::after {
    background: linear-gradient(
      to top,
      rgba(13,13,13,0.95) 0%,
      rgba(13,13,13,0.7) 40%,
      rgba(13,13,13,0.3) 70%,
      rgba(13,13,13,0.15) 100%
    );
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .hero-sub {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .hero-small {
    max-width: 200px;
    font-size: 0.65rem;
    padding: 14px 32px;
  }

  /* PAGE HERO SECTIONS */
  .page-hero-section {
    padding: 70px 0 20px;
  }

  .page-hero-section h1 {
    font-size: 1.5rem;
  }

  .page-hero-sub {
    font-size: 0.75rem;
  }

  .page-hero {
    padding: 70px 0 20px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  /* GRIDS */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .grid-4, .grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .grid-2.gap-12 {
    gap: 12px;
  }

  /* CARDS */
  .card {
    padding: 24px 20px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.8rem;
  }

  /* GEMSTONE CARDS */
  .gem-card-img {
    aspect-ratio: 4/3;
  }

  .gem-card-body {
    padding: 16px;
  }

  .gem-card-body h3 {
    font-size: 1.1rem;
  }

  .gem-desc {
    font-size: 0.8rem;
    line-height: 1.7;
  }

  /* STATS */
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  /* STRIP */
  .strip {
    padding: 32px 20px;
  }

  .strip h3 {
    font-size: 1.1rem;
  }

  /* TRUST */
  .trust-strip {
    gap: 16px;
    padding: 16px 12px;
  }

  .trust-badge {
    font-size: 0.6rem;
    gap: 6px;
  }

  .trust-badge svg {
    width: 14px;
    height: 14px;
  }

  /* TIMELINE */
  .timeline {
    padding-left: 24px;
  }

  .timeline-dot {
    left: -28px;
    width: 8px;
    height: 8px;
  }

  .timeline-year {
    font-size: 1.3rem;
  }

  .timeline-text {
    font-size: 0.82rem;
  }

  /* SERVICE CARDS */
  .service-card {
    padding: 24px 20px;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.78rem;
  }

  /* PHILOSOPHY */
  .philosophy-strip {
    padding: 32px 20px;
  }

  .philosophy-strip blockquote {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .philosophy-strip cite {
    font-size: 0.65rem;
  }

  /* WHY CARDS */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .why-card p {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  /* FRAMES */
  .frames-card {
    padding: 24px 16px;
  }

  .frames-card h3 {
    font-size: 1rem;
  }

  /* LOCATION CARDS */
  .location-card {
    padding: 24px 20px;
  }

  .location-card h3 {
    font-size: 1.1rem;
  }

  .location-card p {
    font-size: 0.8rem;
  }

  .location-card .phone {
    font-size: 0.95rem;
    word-break: break-all;
  }

  .hours-table td {
    font-size: 0.78rem;
    padding: 8px 0;
  }

  /* MAPS */
  .map-embed {
    aspect-ratio: 4/3;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  /* FORM */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 14px 16px;
  }

  /* QUIZ */
  .quiz-section {
    padding: 32px 20px;
  }

  .quiz-question {
    font-size: 1.15rem;
  }

  .quiz-option {
    padding: 14px;
    font-size: 0.82rem;
  }

  /* WHATSAPP */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-float-pulse { width: 54px; height: 54px; }

  /* BACK TO TOP */
  .back-to-top {
    bottom: 20px;
    right: 82px;
    width: 40px;
    height: 40px;
  }

  /* QUICK CONNECT */
  .quick-connect-btn {
    padding: 14px 8px;
    font-size: 0.62rem;
  }

  .quick-connect-btn svg {
    width: 18px;
    height: 18px;
  }

  /* WHATSAPP STRIP */
  .whatsapp-strip {
    padding: 24px 20px;
  }

  .whatsapp-strip p {
    font-size: 0.8rem;
  }

  /* FOOTER */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-locations {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-loc h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .footer-loc p {
    font-size: 0.78rem;
  }

  .footer-loc .phone {
    font-size: 0.9rem;
    word-break: break-all;
  }

  .footer-bottom {
    font-size: 0.65rem;
  }

  .footer-legal {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .footer-legal a {
    font-size: 0.62rem;
  }

  .legal-modal-content {
    padding: 24px 20px;
    max-height: 85vh;
  }

  .legal-modal-content h2 {
    font-size: 1.2rem;
  }

  .legal-body h4 {
    font-size: 0.88rem;
  }

  .legal-body p {
    font-size: 0.78rem;
  }
}

/* =====================================================================
   TABLET — 768px+
   ===================================================================== */
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
  h4 { font-size: 1.25rem; }

  .container { padding: 0 40px; }
  section { padding: 64px 0; }
  .section-label { font-size: 0.7rem; }

  .nav-inner { padding: 0 40px; }
  .nav-logo { height: 50px; }

  .hero { padding-bottom: 64px; }
  .hero-content { padding: 0 40px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.82rem; }
  .hero-small { max-width: 220px; }

  .grid-2 { gap: 16px; }
  .grid-1 { gap: 16px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; gap: 16px; }

  .card { padding: 32px 28px; }
  .card h3 { font-size: 1.35rem; }

  .strip { padding: 56px 40px; }
  .strip h3 { font-size: 1.6rem; }

  .stat-item { padding: 36px 20px; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.65rem; }

  .gem-card-body { padding: 24px; }
  .gem-name { font-size: 1.5rem; }
  .gem-grid-responsive { grid-template-columns: 1fr 1fr; }

  .timeline-year { font-size: 1.8rem; }
  .timeline-text { font-size: 0.95rem; }

  .quote-block { padding: 64px 40px; }
  .quote-block blockquote { font-size: 1.4rem; max-width: 600px; }

  .service-card { padding: 32px 24px; }
  .service-card h3 { font-size: 1.2rem; }

  .step-content h4 { font-size: 1.1rem; }
  .step-content p { font-size: 0.85rem; }

  .location-card { padding: 32px 28px; }

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

  .page-hero, .page-hero-section { padding: 120px 0 48px; }
  .page-hero h1, .page-hero-section h1 { font-size: 2.6rem; }
  .page-hero-sub { font-size: 0.85rem; max-width: 500px; }

  .lookbook-grid { gap: 12px; }

  .footer { padding: 56px 0 32px; }
  .footer-locations { gap: 40px; }
  .footer-loc h4 { font-size: 1.05rem; }
  .footer-loc p { font-size: 0.82rem; }

  .whatsapp-strip { padding: 32px; }
  .whatsapp-strip p { font-size: 0.9rem; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .philosophy-strip blockquote { font-size: 1.4rem; }
}

/* =====================================================================
   DESKTOP — 1024px+
   ===================================================================== */
@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.6rem; }
  h3 { font-size: 1.8rem; }

  .container { padding: 0 48px; }
  section { padding: 72px 0; }

  /* NAV — centered logo, links below */
  .nav-hamburger { display: none; }

  .nav-top {
    padding: 16px 0 8px;
  }

  .nav-logo {
    height: 56px;
  }

  .nav-logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 6px 0 12px;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
  }

  .nav-cta {
    font-family: var(--font-body) !important;
    font-size: 0.62rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 6px 16px !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--bg) !important;
  }

  .drawer { display: none; }
  .drawer-overlay { display: none; }

  .hero { padding-bottom: 72px; }
  .hero-content h1 { font-size: 3rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-small { max-width: 240px; font-size: 0.72rem; padding: 14px 36px; }

  .grid-2 { gap: 20px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }

  .card { padding: 36px 32px; }
  .card-icon { width: 44px; height: 44px; margin-bottom: 20px; }
  .card h3 { font-size: 1.5rem; }
  .card p { font-size: 0.88rem; }

  .strip { padding: 64px 48px; }
  .strip h3 { font-size: 1.9rem; }

  .stat-item { padding: 44px 24px; }
  .stat-number { font-size: 2.6rem; }
  .stat-label { font-size: 0.7rem; letter-spacing: 0.2em; }

  .gem-card { display: grid; grid-template-columns: 1fr 1fr; }
  .gem-grid-responsive { grid-template-columns: repeat(3, 1fr); }
  .gem-card-img { aspect-ratio: auto; min-height: 280px; object-fit: cover; }
  .gem-card-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
  .gem-planet { font-size: 0.7rem; }
  .gem-name { font-size: 1.8rem; }
  .gem-sanskrit { font-size: 1rem; }
  .gem-tag { font-size: 0.7rem; padding: 5px 14px; }

  .timeline { padding-left: 36px; }
  .timeline-dot { left: -40px; width: 11px; height: 11px; }
  .timeline-year { font-size: 2rem; }
  .timeline-text { font-size: 1rem; }

  .quote-block blockquote { font-size: 1.6rem; max-width: 700px; }

  .service-card { padding: 36px 28px; }
  .service-card-icon { font-size: 2.4rem; }
  .service-card h3 { font-size: 1.3rem; }
  .service-card p { font-size: 0.85rem; }

  .location-card { padding: 36px 32px; }
  .location-card h3 { font-size: 1.3rem; }
  .location-card p { font-size: 0.88rem; }
  .location-card .phone { font-size: 1.2rem; }

  .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testimonial-card { padding: 36px 32px; }

  .page-hero, .page-hero-section { padding: 130px 0 56px; }
  .page-hero h1, .page-hero-section h1 { font-size: 3.2rem; }
  .page-hero-sub { font-size: 0.95rem; max-width: 600px; }

  .lookbook-grid { gap: 16px; }
  .lookbook-grid img { transition: transform 0.4s; }
  .lookbook-grid div:hover img { transform: scale(1.02); }

  .footer { padding: 64px 0 40px; }
  .footer-locations { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-loc h4 { font-size: 1.15rem; }
  .footer-loc p { font-size: 0.88rem; }
  .footer-loc .phone { font-size: 1.05rem; }
  .footer-bottom { font-size: 0.72rem; }
}

/* =====================================================================
   LARGE DESKTOP — 1280px+
   ===================================================================== */
@media (min-width: 1280px) {
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.8rem; }

  .container { padding: 0 64px; }
  .nav-inner { padding: 0 64px; }
  .hero-content { padding: 0 64px; }
  .hero-content h1 { font-size: 3.4rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-small { max-width: 260px; padding: 14px 40px; }
  .strip h3 { font-size: 2.2rem; }
  .quote-block blockquote { font-size: 1.8rem; max-width: 800px; }
  .gem-card-body { padding: 40px; }
  .gem-name { font-size: 2rem; }
  .page-hero h1, .page-hero-section h1 { font-size: 3.8rem; }

  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .why-card { padding: 32px 28px; }
  .why-card h3 { font-size: 1.2rem; }
  .philosophy-strip blockquote { font-size: 1.6rem; }
  .frames-card { padding: 32px 24px; }
}

/* =====================================================================
   CUSTOM FONT — Senmoly Caligan
   ===================================================================== */
@font-face {
  font-family: 'Senmoly Caligan';
  src: url('fonts/SenmolyCaligan.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Moxa Bestine';
  src: url('fonts/MoxaBestine.woff2') format('woff2'),
       url('fonts/MoxaBestine.woff') format('woff'),
       url('fonts/MoxaBestine.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =====================================================================
   TRUST BADGES STRIP
   ===================================================================== */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 20px 16px;
  background: rgba(201,168,76,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =====================================================================
   QUICK CONNECT BAR
   ===================================================================== */
.quick-connect {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.quick-connect-inner {
  display: flex;
  justify-content: center;
  gap: 1px;
  background: var(--border);
}

.quick-connect-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--card);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.quick-connect-btn:hover {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
}

.quick-connect-btn svg {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .quick-connect-inner { gap: 1px; }
  .quick-connect-btn { padding: 16px 20px; font-size: 0.7rem; }
}

/* =====================================================================
   WHATSAPP FLOATING BUTTON
   ===================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-float-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: wa-pulse 2s ease-out infinite;
}

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

/* =====================================================================
   BACK TO TOP BUTTON
   ===================================================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 96px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold);
}

.back-to-top:hover svg {
  stroke: var(--bg);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  transition: stroke 0.3s;
}

/* =====================================================================
   TESTIMONIAL CAROUSEL
   ===================================================================== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 8px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* =====================================================================
   GEMSTONE QUIZ
   ===================================================================== */
.quiz-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-option {
  padding: 14px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.quiz-option:hover, .quiz-option.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.quiz-result {
  text-align: center;
  padding: 32px 16px;
  display: none;
}

.quiz-result h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.quiz-result p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

.quiz-progress {
  height: 3px;
  background: rgba(201,168,76,0.15);
  border-radius: 2px;
  margin-bottom: 28px;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s;
}

/* =====================================================================
   GEMSTONE DESCRIPTIONS
   ===================================================================== */
.gem-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.gem-desc strong {
  color: var(--text);
}

/* =====================================================================
   SECTION DIVIDER
   ===================================================================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* =====================================================================
   WHY CHOOSE US
   ===================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}

.why-card-icon svg {
  width: 20px;
  height: 20px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================================================================
   PHILOSOPHY STRIP
   ===================================================================== */
.philosophy-strip {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 50%, rgba(201,168,76,0.03) 100%);
}

.philosophy-strip blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-strip cite {
  display: block;
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* =====================================================================
   ENHANCED GOLD FRAMES
   ===================================================================== */
.frames-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.frames-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.frames-card:hover::before {
  opacity: 1;
}

.frames-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.frames-card h3 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.frames-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================================================================
   CONSULTATION AVAILABILITY STRIP
   ===================================================================== */
.availability-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.availability-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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