/* ============================================================
   LA CALLE 58 — Stylesheet
   Sections:
     1. Reset & Variables
     2. Base
     3. Loader
     4. Navigation
     5. Hero
     6. Marquee
     7. Shared Utilities
     8. Menu / Spotlight Cards
     9. Stats / Odometer
    10. About
    11. Contact
    12. Footer
   ============================================================ */


/* ── 1. RESET & VARIABLES ── */

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

:root {
  --bg:           #111111;
  --card:         #1C1C1C;
  --text:         #F0EDE8;
  --muted:        #888888;
  --accent:       #FF6B1A;
  --accent2:      #FF2D20;
  --accent-light: rgba(255, 107, 26, 0.08);
  --border:       #252525;
  --ease:         cubic-bezier(.16, 1, .3, 1);
}


/* ── 2. BASE ── */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.9s ease;
}

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

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

/* Noise texture overlay */
.noise-layer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
}


/* ── 3. LOADER ── */

#loader {
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.7s ease;
}

.loader-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text);
}

.loader-logo em {
  color: var(--accent);
  font-style: normal;
}

.loader-bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}

#loaderCount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}


/* ── 4. NAVIGATION ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease);
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

nav.scrolled {
  padding: 14px 40px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.nav-logo em {
  color: var(--accent);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
}

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

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--accent2) !important;
}

/* Hamburger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease, width 0.3s var(--ease);
  transform-origin: center;
}

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

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

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

/* Mobile full-screen nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 16px 24px;
  transition: color 0.2s ease;
  text-align: center;
}

.nav-mobile a:hover {
  color: var(--accent);
}

.nav-mobile .mob-cta {
  margin-top: 24px;
  font-size: 18px;
  background: var(--accent);
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-mobile .mob-cta:hover {
  background: var(--accent2);
  color: #fff;
}

.nav-mobile-footer {
  position: absolute;
  bottom: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  nav {
    padding: 16px 20px;
    /* Eliminar backdrop-filter en mobile — el canvas se redibuja 60/s y cada blur-pass
       del nav re-muestrea toda la franja superior en cada frame. Con fondo más opaco
       el resultado visual es prácticamente idéntico. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(17, 17, 17, 0.96);
  }

  nav.scrolled {
    padding: 12px 20px;
  }

  /* Eliminar backdrop-filter de los pills del hero en mobile.
     Estos elementos tienen opacity animada encima de un canvas en constante cambio:
     backdrop-filter + opacity-transition + canvas-update = 3 GPU passes por frame.
     El fondo semi-transparente rgba mantiene la legibilidad sin el coste. */
  .hero .hero-sub,
  .hero .hero-loc,
  .hero .scroll-hint {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* ── 5. HERO ── */

.hero {
  height: 200vh;
  position: relative;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
  transform: translateZ(0);
}

/* Left-side gradient for text readability — not a vignette, one directional */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.97) 0%,
    rgba(17, 17, 17, 0.82) 36%,
    rgba(17, 17, 17, 0.3) 58%,
    transparent 72%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero {
    height: 300vh;
  }

  .hero-sticky {
    justify-content: center;
  }

  .hero-overlay {
    background: rgba(17, 17, 17, 0.65);
  }
}

/* Positioning container only — no background, no border, no border-radius */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  padding-left: clamp(32px, 8vw, 120px);
  max-width: 600px;
}

@media (max-width: 767px) {
  .hero-content {
    align-items: center;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
  }
}

/* Initially hidden — GSAP animates these in on load */
.hero-badge,
.hero h1,
.hero-tagline,
.hero-actions,
.hero-features {
  opacity: 0;
}

/* Badge chip */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.28);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(52px, 10vw, 128px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .92), 0 2px 10px rgba(0, 0, 0, .75), 0 0 80px rgba(0, 0, 0, .6);
  white-space: nowrap;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.h1-dot {
  color: var(--accent);
}

.hero-tagline {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(240, 237, 232, 0.75);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 38ch;
}

/* Hero CTA row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Features strip */
.hero-features {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(240, 237, 232, 0.6);
}

.hero-feat svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-feat-sep {
  width: 1px;
  height: 14px;
  background: rgba(240, 237, 232, 0.15);
  flex-shrink: 0;
}

.hero .scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.5);
  background: rgba(10, 8, 6, 0.6);
  padding: 7px 18px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  white-space: nowrap;
}

/* Shared button styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.3s var(--ease);
  will-change: transform;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--accent2);
  color: #fff;
}

.btn-primary svg {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid rgba(240, 237, 232, 0.2);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(240, 237, 232, 0.08);
  border-color: rgba(240, 237, 232, 0.38);
  color: var(--text);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  padding: 13px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 26, 0.4);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(40px, 11vw, 80px);
    white-space: normal;
    line-height: 0.9;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 14px;
    padding: 12px 22px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero .hero-sub,
  .hero .hero-loc,
  .hero .scroll-hint {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* ── 6. MARQUEE ── */

.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  padding: 0;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  flex-shrink: 0;
  font-size: clamp(60px, 11vw, 128px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.marquee-item.fill {
  color: var(--text);
}

.marquee-item.stroke {
  color: transparent;
  -webkit-text-stroke: 2px rgba(240, 237, 232, 0.2);
}

.marquee-item .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 28px;
  flex-shrink: 0;
  vertical-align: middle;
}


/* ── 7. SHARED UTILITIES ── */

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Initial state for scroll-triggered fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
}


/* ── 8. MENU / SPOTLIGHT CARDS ── */

.menu-wrap {
  padding: 140px 40px 120px;
  max-width: 1240px;
  margin: 0 auto;
}

.menu-hd {
  text-align: center;
  margin-bottom: 72px;
}

.menu-hd .section-eyebrow {
  justify-content: center;
}

.menu-hd h2 {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
}

.menu-hd p {
  font-size: 17px;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto;
  line-height: 1.7;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.spot-card {
  background: var(--card);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Orange radial glow follows the cursor */
.spot-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(255, 107, 26, .13), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

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

.spot-card > * {
  position: relative;
  z-index: 1;
}

.spot-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.22);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 22px;
}

.spot-card h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.spot-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.spot-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spot-card .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.spot-card .price-hint {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}


/* Menu footer CTA */
.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}

.btn-menu-full {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.btn-menu-full:hover {
  border-color: var(--accent);
  background: rgba(255, 107, 26, 0.06);
  color: var(--accent);
}

.btn-menu-full svg {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.btn-menu-full:hover svg {
  transform: translateX(3px);
}

.menu-footer-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── 9. STATS / ODOMETER ── */

.stats-wrap {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.stats-hd {
  text-align: center;
  margin-bottom: 80px;
}

.stats-hd .section-eyebrow {
  justify-content: center;
}

.stats-hd h2 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-item {
  padding: 48px 24px 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
}

.stat-num-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  line-height: 1;
}

/* Prefix (+) and suffix (%) match odometer digit size so they align perfectly */
.stat-pfx,
.stat-sfx {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(48px, 6.5vw, 72px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.15;
  flex-shrink: 0;
  align-self: center;
}

.odometer {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(48px, 6.5vw, 72px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  overflow: hidden;
  height: 1.15em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.odo-digit {
  display: inline-block;
  overflow: hidden;
  height: 1.15em;
}

.odo-strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(.16, 1, .3, 1);
}

.odo-strip span {
  display: block;
  height: 1.15em;
  line-height: 1.15;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}


/* ── 10. ABOUT ── */

.about-wrap {
  padding: 160px 40px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-wrap blockquote {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 36px;
}

.about-wrap blockquote em {
  color: var(--accent);
  font-style: normal;
}

.about-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 56ch;
  margin: 0 auto 44px;
}


/* ── 11. CONTACT ── */

.contact-wrap {
  padding: 120px 40px 140px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.contact-hd {
  margin-bottom: 64px;
}

.contact-hd h2 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.c-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.c-card.full {
  grid-column: 1 / -1;
}

.c-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.c-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.c-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.c-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 107, 26, 0.25);
  border-radius: 100px;
  transition: background 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.01em;
}

.c-link:hover {
  background: rgba(255, 107, 26, 0.08);
  border-color: rgba(255, 107, 26, 0.5);
  color: var(--accent);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--text);
}

.hours-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--muted);
}

.hours-time.closed {
  color: rgba(136, 136, 136, 0.4);
}


/* ── 11b. MAP ── */

.map-wrap {
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(0.3) brightness(0.9);
}

.map-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.map-link:hover {
  color: var(--accent);
  border-color: rgba(255, 107, 26, 0.4);
}

@media (max-width: 640px) {
  .map-wrap iframe {
    height: 260px;
  }
}


/* ── 12. FOOTER ── */

.footer-v2 {
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 72px 60px 60px;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-brand {
  /* no max-width — let the grid column define the width */
}

.footer-name {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
  white-space: nowrap;
}

.footer-name em {
  color: var(--text);
  font-style: normal;
}

.footer-dot {
  color: var(--accent);
}

.footer-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-cols {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 8px;
}

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

.footer-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
  line-height: 1;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.footer-addr {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 100%;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-made {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.footer-made:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 48px;
    padding: 52px 32px 44px;
  }

  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    padding: 20px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-tag {
    display: none;
  }

  .footer-name {
    font-size: 40px;
  }
}
