/* ═══════════════════════════════════════════════
   SACRED GROUNDS HEALTH SHOP — DEMO CSS
   Award-winning cannabis brand design
   ═══════════════════════════════════════════════ */

/* ── BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── GRAIN OVERLAY ───────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── CONCEPT BADGE ───────────────────────────── */
.concept-badge {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(13, 26, 13, 0.92);
  border: 1px solid rgba(212, 168, 83, 0.35);
  backdrop-filter: blur(12px);
  color: rgba(245, 237, 216, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  animation: badgeFade 1s ease 2s both;
}
@keyframes badgeFade { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7ab87a;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.7);} }

/* ── NAVIGATION ──────────────────────────────── */
#mainNav {
  background: linear-gradient(to bottom, rgba(8,12,8,0.95), rgba(8,12,8,0));
}
#mainNav.scrolled {
  background: rgba(8, 12, 8, 0.97) !important;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
  border-bottom: 1px solid rgba(212, 168, 83, 0.12);
  backdrop-filter: blur(20px);
}

.nav-logo-mark {
  transition: transform 0.3s ease;
}
.nav-logo-mark:hover { transform: rotate(15deg); }

.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #d4a853;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #d4a853; }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.35);
  color: #d4a853;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-cta:hover {
  background: rgba(212, 168, 83, 0.22);
  border-color: rgba(212, 168, 83, 0.6);
}

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(8, 12, 8, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.mobile-menu-overlay.active { display: flex; animation: menuIn 0.3s ease; }
@keyframes menuIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(245, 237, 216, 0.8);
  text-decoration: none;
  text-align: center;
  transition: color 0.25s;
}
.mobile-nav-link:hover { color: #d4a853; }

/* ── HERO ────────────────────────────────────── */
.hero-section { background: #080c08; }

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 12, 8, 0.92) 0%,
    rgba(13, 26, 13, 0.75) 40%,
    rgba(8, 12, 8, 0.3) 100%
  );
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,12,8,0.7) 100%);
}

/* Hero typography */
.text-italic-gold {
  font-style: italic;
  color: #d4a853;
}
.text-outline-green {
  -webkit-text-stroke: 1.5px rgba(122, 184, 122, 0.6);
  color: transparent;
}

/* Hero CTAs */
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #c8882a;
  color: #080c08;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(200, 136, 42, 0.35);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.hero-cta-primary:hover {
  background: #d4a853;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 136, 42, 0.5);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 237, 216, 0.9);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  border: 1px solid rgba(245, 237, 216, 0.2);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 237, 216, 0.4);
}

/* Trust chips */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 237, 216, 0.65);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 237, 216, 0.35);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212, 168, 83, 0.5), transparent);
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }

/* Hero float card */
.hero-float-card {
  position: absolute;
  right: 6%;
  bottom: 15%;
  z-index: 10;
}
@media (max-width: 1024px) { .hero-float-card { display: none; } }

.float-card-inner {
  background: rgba(13, 26, 13, 0.88);
  border: 1px solid rgba(122, 184, 122, 0.25);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  min-width: 200px;
}

.thc-badge {
  background: rgba(122, 184, 122, 0.15);
  border: 1px solid rgba(122, 184, 122, 0.3);
  color: #7ab87a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.cbd-badge {
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: #d4a853;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ── EYEBROW & HERO EYEBROW ──────────────────── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(122, 184, 122, 0.75);
}
.eyebrow-line {
  width: 32px; height: 1px;
  background: #7ab87a;
  opacity: 0.6;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(122, 184, 122, 0.8);
  margin-bottom: 0.8rem;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7ab87a;
}

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  background: #0d1a0d;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  padding: 2rem 0;
}
.stat-item {
  background: #0d1a0d;
  padding: 1.5rem 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #f5edd8;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.4);
  margin-top: 0.4rem;
}

/* ── SECTION BASE ────────────────────────────── */
.section-base { padding: 6rem 0; }
@media (min-width: 1024px) { .section-base { padding: 8rem 0; } }

.section-header { margin-bottom: 0; }

.section-watermark {
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 20vw;
  font-weight: 900;
  color: rgba(122, 184, 122, 0.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  line-height: 1;
}
.section-watermark-sm {
  position: absolute;
  right: -2rem;
  top: 20%;
  font-family: 'Playfair Display', serif;
  font-size: 16vw;
  font-weight: 900;
  color: rgba(212, 168, 83, 0.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  line-height: 1;
}

/* ── PRODUCT CARDS ───────────────────────────── */
.product-card {
  background: #132213;
  border: 1px solid rgba(122, 184, 122, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.08); }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 34, 19, 0.8) 0%, rgba(19, 34, 19, 0) 50%);
}
.product-badge-top {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
}
.product-thc {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: rgba(8, 12, 8, 0.85);
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: #d4a853;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.badge-indica {
  background: rgba(120, 80, 180, 0.2);
  border: 1px solid rgba(120, 80, 180, 0.4);
  color: #c4a0f0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.badge-sativa {
  background: rgba(255, 160, 60, 0.2);
  border: 1px solid rgba(255, 160, 60, 0.4);
  color: #ffb060;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.badge-hybrid {
  background: rgba(80, 180, 120, 0.2);
  border: 1px solid rgba(80, 180, 120, 0.4);
  color: #7ab87a;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.badge-edible {
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: #d4a853;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.product-info { padding: 1.4rem; }
.product-cat {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(122, 184, 122, 0.7);
  margin-bottom: 0.35rem;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #faf6ec;
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.82rem;
  color: rgba(245, 237, 216, 0.5);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.product-terpenes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.product-terpenes span {
  font-size: 0.65rem;
  color: rgba(245, 237, 216, 0.45);
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a853;
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease, color 0.25s ease;
}
.product-cta:hover { gap: 0.7rem; color: #e8c47a; }
.product-cta::after { content: '→'; }

/* Wide product cards */
.product-card-wide {
  background: #132213;
  border: 1px solid rgba(122, 184, 122, 0.1);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.product-card-wide:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-4px);
}
.product-wide-img {
  width: 110px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.product-wide-info {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-name-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #faf6ec;
  margin-top: 0.3rem;
}

/* ── CULTURE COLLAGE ─────────────────────────── */
.culture-collage {
  position: relative;
  height: 480px;
}
.collage-main {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
}
.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 26, 13, 0.3) 0%,
    transparent 60%,
    rgba(13, 26, 13, 0.5) 100%
  );
}
.collage-float-1 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 160px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid #0d1a0d;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.collage-float-1 img { width: 100%; height: 100%; object-fit: cover; }
.collage-badge-float {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(8, 12, 8, 0.85);
  border: 1px solid rgba(122, 184, 122, 0.25);
  backdrop-filter: blur(12px);
  padding: 1rem 1.2rem;
  border-radius: 12px;
}

/* Terpene block */
.terpene-block {
  background: rgba(19, 34, 19, 0.6);
  border: 1px solid rgba(122, 184, 122, 0.15);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
}
.terpene-header { display: flex; align-items: center; gap: 0.8rem; }
.terpene-icon { font-size: 1.8rem; }
.terpene-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.terpene-chip {
  background: rgba(122, 184, 122, 0.08);
  border: 1px solid rgba(122, 184, 122, 0.2);
  color: rgba(122, 184, 122, 0.85);
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ── REVIEWS ─────────────────────────────────── */
.rating-display {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.rating-number {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.rating-stars {
  color: #d4a853;
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.review-card {
  background: #132213;
  border: 1px solid rgba(122, 184, 122, 0.1);
  border-radius: 16px;
  padding: 1.8rem;
  transition: border-color 0.35s ease, background 0.35s ease;
}
.review-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  background: #1a2e1a;
}
.review-stars { color: #d4a853; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 1rem; }
.review-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(245, 237, 216, 0.9);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.review-author { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #243824;
  border: 1px solid rgba(122, 184, 122, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #7ab87a;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-size: 0.82rem; font-weight: 500; color: rgba(245, 237, 216, 0.85); }
.review-date { font-size: 0.7rem; color: rgba(245, 237, 216, 0.35); margin-top: 0.1rem; }
.review-response {
  background: rgba(122, 184, 122, 0.05);
  border-left: 2px solid rgba(122, 184, 122, 0.35);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1rem;
}
.response-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(122, 184, 122, 0.6);
  margin-bottom: 0.3rem;
}
.response-text { font-size: 0.78rem; color: rgba(245, 237, 216, 0.5); line-height: 1.6; }

/* Trust blocks */
.trust-block {
  background: #132213;
  border: 1px solid rgba(122, 184, 122, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
}
.trust-block:hover { border-color: rgba(212, 168, 83, 0.2); }
.trust-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.trust-title { font-size: 0.85rem; font-weight: 600; color: rgba(245, 237, 216, 0.9); margin-bottom: 0.35rem; }
.trust-desc { font-size: 0.75rem; color: rgba(245, 237, 216, 0.45); line-height: 1.5; }

/* ── STORE INFO ──────────────────────────────── */
.info-card {
  background: #132213;
  border: 1px solid rgba(122, 184, 122, 0.1);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}
.info-card:hover { border-color: rgba(212, 168, 83, 0.2); }
.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(122, 184, 122, 0.7); margin-bottom: 0.4rem; }
.info-value { font-size: 0.92rem; color: rgba(245, 237, 216, 0.85); line-height: 1.55; }
.info-day { font-size: 0.8rem; color: rgba(245, 237, 216, 0.55); }
.info-time { font-size: 0.8rem; color: rgba(245, 237, 216, 0.85); font-weight: 500; }
.info-sub { font-size: 0.72rem; color: rgba(245, 237, 216, 0.35); margin-top: 0.25rem; }
.open-indicator { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; color: rgba(122, 184, 122, 0.7); }
.open-dot-green { width: 7px; height: 7px; border-radius: 50%; background: #7ab87a; animation: pulseDot 2s ease-in-out infinite; }

.cta-call-block {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #c8882a;
  color: #080c08;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(200, 136, 42, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
  width: fit-content;
}
.cta-call-block:hover { background: #d4a853; transform: translateY(-2px); }

/* Map */
.map-frame {
  background: #0d1a0d;
  border: 1px solid rgba(122, 184, 122, 0.15);
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(122,184,122,0.04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(0deg,  rgba(122,184,122,0.04) 1px, transparent 1px) 0 0 / 40px 40px;
}
.map-content { text-align: center; position: relative; z-index: 1; }

/* Map pin animation */
.map-pin-anim { position: relative; width: 48px; height: 48px; margin: 0 auto; }
.pin-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 83, 0.4);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse { 0%,100%{transform:scale(1);opacity:0.5;} 50%{transform:scale(1.5);opacity:0;} }
.pin-inner {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #c8882a;
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.35);
  color: #d4a853;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.map-open-btn:hover { background: rgba(212, 168, 83, 0.22); }

.delivery-note {
  background: #132213;
  border: 1px solid rgba(122, 184, 122, 0.1);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── FINAL CTA SECTION ───────────────────────── */
.final-cta-section { position: relative; overflow: hidden; }
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,12,8,0.92) 0%, rgba(13,26,13,0.88) 100%);
}

.demo-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122, 184, 122, 0.08);
  border: 1px solid rgba(122, 184, 122, 0.2);
  color: rgba(122, 184, 122, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.demo-notice-dot { width: 6px; height: 6px; border-radius: 50%; background: #7ab87a; animation: pulseDot 2s ease-in-out infinite; }

.final-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #c8882a;
  color: #080c08;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 36px rgba(200,136,42,0.4);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.final-cta-primary:hover {
  background: #d4a853;
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(200,136,42,0.55);
}

.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  color: rgba(245,237,216,0.9);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  border: 1px solid rgba(245,237,216,0.2);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.final-cta-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(245,237,216,0.4);
}

.include-chip {
  background: rgba(122, 184, 122, 0.08);
  border: 1px solid rgba(122, 184, 122, 0.18);
  color: rgba(122, 184, 122, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

/* ── CONCEPT NOTE ────────────────────────────── */
.concept-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 136, 42, 0.1);
  border: 1px solid rgba(200, 136, 42, 0.3);
  color: rgba(212, 168, 83, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}
.concept-dot { width: 6px; height: 6px; border-radius: 50%; background: #c8882a; animation: pulseDot 2s ease-in-out infinite; }

/* ── PARTICLES ───────────────────────────────── */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1),
              transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ── PARTICLES ───────────────────────────────── */
@keyframes float-up {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  5%   { opacity: 0.5; }
  95%  { opacity: 0.15; }
  100% { transform: translateY(-110vh) rotate(720deg) scale(0.5); opacity: 0; }
}

/* ── RESPONSIVE TWEAKS ───────────────────────── */
@media (max-width: 768px) {
  .hero-section { min-height: 100svh; }
  .stat-item { padding: 1rem; }
  .stat-num { font-size: 2rem; }
  .culture-collage { height: 320px; }
  .collage-float-1 { display: none; }
  .section-watermark, .section-watermark-sm { display: none; }
}

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080c08; }
::-webkit-scrollbar-thumb { background: rgba(122,184,122,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,168,83,0.4); }
