/* ================= Tokens ================= */
:root {
  color-scheme: dark;
  --ink: #0c0a08;
  --ink-2: #16130f;
  --ink-3: #1f1a13;
  --cream: #f5efe4;
  --cream-dim: rgba(245, 239, 228, 0.72);
  --cream-faint: rgba(245, 239, 228, 0.58);
  --gold: #cda158;
  --gold-bright: #ecc978;
  --gold-dim: #7a6636;
  --line: rgba(245, 239, 228, 0.12);
  --line-strong: rgba(245, 239, 228, 0.22);
  --glass-bg: rgba(245, 239, 228, 0.05);
  --glass-bg-strong: rgba(245, 239, 228, 0.08);
  --glass-border: rgba(245, 239, 228, 0.14);
  --shadow-gold: 0 20px 60px rgba(0, 0, 0, 0.55);
  --max-width: 1220px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================= Reset ================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
section[id], .hero { scroll-margin-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: var(--space-2);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
h3 { font-size: 1.45rem; margin-bottom: var(--space-1); }
p { max-width: 60ch; color: var(--cream-dim); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  color: var(--gold);
  margin-bottom: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
body.js-anim .eyebrow.reveal-up::before,
body.js-anim .eyebrow.reveal-left::before,
body.js-anim .eyebrow.reveal-right::before {
  width: 0;
  transition: width 0.5s var(--ease-out) 0.2s;
}
body.js-anim .eyebrow.reveal-up.is-visible::before,
body.js-anim .eyebrow.reveal-left.is-visible::before,
body.js-anim .eyebrow.reveal-right.is-visible::before {
  width: 24px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1px solid var(--cream-faint);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  min-height: 44px;
  will-change: transform;
}
.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 500; }
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-ghost { background: transparent; color: var(--cream); }
.btn-ghost:hover { background: var(--glass-bg-strong); border-color: var(--cream); }
.btn-lg { padding: 16px 32px; font-size: 0.88rem; }

.btn-whatsapp {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 22px;
  line-height: 1.1;
}
.btn-whatsapp-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}
.btn-whatsapp-number {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.text-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.text-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ================= Scroll progress ================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  transition: width 0.1s linear;
}

/* ================= Custom cursor ================= */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 150;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold-bright); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-dim);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
.cursor-ring.is-active { width: 54px; height: 54px; border-color: var(--gold-bright); }
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ================= Header ================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-1) 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(12, 10, 8, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2) var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--cream);
}
.wordmark.small { font-size: 1.15rem; }

.wordmark-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  gap: 3px;
  color: var(--gold);
}
.wordmark-stack .wordmark-top,
.wordmark-stack .wordmark-bottom {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
}
.wordmark-stack .wordmark-top {
  font-size: 0.95rem;
}
.wordmark-stack .wordmark-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: var(--space-4);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.main-nav a {
  position: relative;
  padding: 4px 0;
}
.main-nav a span { position: relative; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after { width: 100%; }
.main-nav a:hover,
.main-nav a.is-active { color: var(--gold-bright); }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.2s ease;
}
.icon-link svg { position: relative; z-index: 1; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35)); }
.icon-link:hover { transform: scale(1.08); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= Hero ================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-6) var(--space-3) var(--space-5);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  filter: saturate(1) brightness(0.75);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,8,0.4) 0%, rgba(12,10,8,0.2) 35%, rgba(12,10,8,0.78) 100%),
    radial-gradient(circle at 50% 20%, rgba(12,10,8,0.05), rgba(12,10,8,0.6) 75%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--x, 50%) var(--y, 30%), rgba(205, 161, 88, 0.16), transparent 65%);
  transition: background 0.3s ease;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-title { display: flex; flex-direction: column; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.word-mask { display: inline-block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; vertical-align: top; }
.word { display: inline-block; will-change: transform; }
.hero-lede { margin: var(--space-3) auto var(--space-4); font-size: 1.18rem; color: var(--cream-dim); max-width: 56ch; }
.hero-actions { display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; }
.center-actions { justify-content: center; }

.hero-rating {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-1);
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.stars { color: var(--gold); letter-spacing: 2px; }

.scroll-cue {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  overflow: hidden;
  position: relative;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--gold-bright);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue-line::after { animation: none; display: none; } }

/* ================= Sections ================= */
.section { position: relative; padding: var(--space-6) var(--space-3); }
.section-alt { background: var(--ink-2); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section h2 { margin-bottom: var(--space-2); }
.section h2.center { margin-left: auto; margin-right: auto; }

/* Reveal utility (JS toggles .is-visible; CSS default = visible so no-JS/crawlers see full content) */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 1;
  transform: none;
}
body.js-anim .reveal-up { opacity: 0; transform: translateY(28px); }
body.js-anim .reveal-left { opacity: 0; transform: translateX(-32px); }
body.js-anim .reveal-right { opacity: 0; transform: translateX(32px); }
body.js-anim .reveal-up.is-visible,
body.js-anim .reveal-left.is-visible,
body.js-anim .reveal-right.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(340px, 52%) 1fr;
  gap: var(--space-6);
  align-items: center;
}
.founder-figure { position: relative; }
.founder-figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 82% center;
  border: 1px solid var(--line-strong);
}
.founder-tag {
  position: absolute;
  left: -1px;
  bottom: -1px;
  background: rgba(12, 10, 8, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 0 8px 0 0;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder-tag-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); }
.founder-tag-role { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); }
.founder-copy p { margin-bottom: var(--space-2); }
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: var(--space-2);
  margin-top: var(--space-3);
  max-width: 44ch;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 50%);
  gap: var(--space-6);
  align-items: center;
}
.about-grid .about-figure { order: 2; }
.about-grid .about-copy { order: 1; }
.about-figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}
.about-copy p { margin-bottom: var(--space-2); }
.about-stats {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-4);
}
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-stats .stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-bright);
}
.about-stats small { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream-faint); }

/* Clients */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.client-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}
.client-card:hover img { transform: scale(1.05); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.service-card {
  position: relative;
  padding: var(--space-4) var(--space-3) var(--space-3);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.15s ease, background 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover { border-color: var(--gold-dim); background: var(--glass-bg-strong); }
.service-index {
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--line-strong);
  line-height: 1;
}
.service-card p { max-width: none; font-size: 0.95rem; }

.brands { margin-top: var(--space-5); }
.brands-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--cream-faint);
  margin-bottom: var(--space-3);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-2) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: var(--space-5);
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream-faint);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  grid-column: span 2;
}
.gallery-item.span-2 { grid-column: span 4; }
@media (min-width: 900px) {
  .gallery-grid { grid-auto-rows: 440px; }
  .gallery-item { grid-column: span 1; }
  .gallery-item.span-2 { grid-column: span 2; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,10,8,0.85) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); filter: brightness(0.85); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }

/* Reviews */
.rating-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3);
  margin: var(--space-4) 0;
}
.rating-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: var(--space-4) var(--space-2);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(6px);
  text-align: center;
}
.rating-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold-bright); }
.rating-source { font-size: 0.85rem; color: var(--cream-faint); }

.testimonials { margin-top: var(--space-5); }
.testimonial-track {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-2);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 min(340px, 85vw);
  padding: var(--space-3);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.reviews-cta { margin-top: var(--space-4); }

/* Locations */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 280px;
  margin-top: var(--space-4);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  filter: grayscale(0.25) invert(90%) contrast(90%) brightness(0.95);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 720px) {
  .map-embed { aspect-ratio: 4 / 5; min-height: 320px; }
}

.map-stylized {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  text-decoration: none;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(205, 161, 88, 0.07) 0deg 0.6deg, transparent 0.6deg 7.5deg),
    radial-gradient(circle at 50% 50%, transparent 0%, transparent 35%, var(--ink-2) 78%),
    var(--ink-2);
  transition: background-color 0.3s ease;
}
.map-stylized:hover { background-color: var(--ink-3); }

.map-pin {
  position: relative;
  width: 40px;
  height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.map-pin-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 44px;
  color: var(--gold-bright);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}
.map-pin-pulse {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(236, 201, 120, 0.35);
  transform: translateX(-50%) scale(1);
  animation: map-pulse 2.4s ease-out infinite;
}
@keyframes map-pulse {
  0% { transform: translateX(-50%) scale(0.6); opacity: 0.9; }
  100% { transform: translateX(-50%) scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .map-pin-pulse { animation: none; opacity: 0; }
}

.map-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.map-label strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.map-label small {
  font-size: 0.78rem;
  color: var(--cream-faint);
  letter-spacing: 0.03em;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
  margin: var(--space-4) 0 var(--space-5);
}
.location-card {
  padding: var(--space-3);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(6px);
  transition: transform 0.15s ease, border-color 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
}
.location-address { color: var(--cream-dim); margin-bottom: var(--space-1); }
.location-phone { margin-bottom: var(--space-2); }
.location-phone a:hover { color: var(--gold); }

.locations-grid--single { display: flex; justify-content: center; }
.location-card--square {
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-5);
}

.hours-table {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-collapse: collapse;
}
.hours-table caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
  text-align: center;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
  color: var(--cream-dim);
}
.hours-table td { text-align: right; }
.hours-table td.closed { color: var(--gold); }

/* Contact */
.contact-section { text-align: center; overflow: hidden; }
.contact-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 50% 40%, rgba(205, 161, 88, 0.12), transparent 70%);
  pointer-events: none;
}
.contact-lede { margin: 0 auto var(--space-4); }

/* ================= Footer ================= */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-4) var(--space-3);
  text-align: center;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-inner p { margin: 6px auto; max-width: none; font-size: 0.85rem; color: var(--cream-faint); }

/* ================= Lightbox ================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 5, 4, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(90vw, 1100px); max-height: 85vh; }
.lightbox img { max-height: 75vh; width: auto; margin: 0 auto; border: 1px solid var(--glass-border); }
.lightbox figcaption {
  text-align: center;
  margin-top: var(--space-2);
  color: var(--cream-dim);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.lightbox-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  color: var(--cream);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ================= Responsive ================= */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .about-figure, .about-grid .about-copy { order: initial; }
  .founder-figure, .about-figure { max-width: 480px; margin: 0 auto; }
  .about-stats { gap: var(--space-4); flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(12, 10, 8, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: var(--space-2) var(--space-3);
    border-top: 1px solid var(--line);
  }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .gallery-item, .gallery-item.span-2 { grid-column: span 1; }
}
