:root {
  --bg: #1c1c1c;
  --bg-panel: #2B2B2B;   /* Charcoal — official brand kit */
  --text: #ffffff;       /* Primary White — official brand kit */
  --muted: #b8b8b8;
  --card-bg: #262626;
  --border: #3d3d3d;
  --accent: #99FF33;      /* Lime Green — official brand kit */
  --accent-text: #b6ff66; /* lighter lime for readable text/links on dark bg */
  --dark: #2B2B2B;        /* Charcoal — official brand kit */
  --forest: #1A3A1A;      /* Forest Green — official brand kit */
  --accent-contrast: #14210c;
}

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

body {
  font-family: "Baloo 2", -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

h1, h2, h3, .hero-headline, .wordmark, .hero-call-btn, .badge, .brand-tagline {
  font-family: "Baloo 2", -apple-system, "Segoe UI", Arial, sans-serif;
}

a { color: inherit; }

.site-header-outer {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28,28,28,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
}

.wordmark {
  position: relative;
}

.wordmark img {
  height: 38px;
  width: auto;
  display: block;
  animation: logoRevealScale 0.9s cubic-bezier(.34,1.56,.64,1) both,
             logoGlowPulse 2.2s ease-in-out 0.9s 1;
}

.wordmark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 42%, rgba(255,255,255,0.95) 50%, transparent 58%);
  background-size: 300% 100%;
  background-position: 150% 0;
  -webkit-mask-image: url('/images/logo.svg');
  mask-image: url('/images/logo.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  animation: logoShineSweep 1.1s ease-out 1s 1;
  pointer-events: none;
}

@keyframes logoRevealScale {
  0%   { opacity: 0; transform: scale(0.3); }
  60%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes logoGlowPulse {
  0%   { filter: drop-shadow(0 0 0px rgba(153,255,51,0)); }
  50%  { filter: drop-shadow(0 0 12px rgba(153,255,51,0.85)); }
  100% { filter: drop-shadow(0 0 0px rgba(153,255,51,0)); }
}

@keyframes logoShineSweep {
  from { background-position: 150% 0; }
  to   { background-position: -50% 0; }
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  margin-left: 1.5rem;
  color: var(--text);
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--accent);
  color: var(--accent-text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.9rem;
    display: none;
  }

  .site-nav.nav-open { display: flex; }

  .site-nav a { margin-left: 0; font-size: 1.05rem; }
  .ig-link { margin-top: 0.25rem; }
}

.ig-link {
  display: inline-flex;
  align-items: center;
  border-bottom: none !important;
  opacity: 0.85;
  transition: opacity 0.15s, color 0.15s;
}

.ig-link:hover { opacity: 1; color: var(--accent-text); }

.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;
}

/* ---- Hero crossfade ---- */
.hero {
  position: relative;
  height: min(72vh, 640px);
  min-height: 380px;
  overflow: hidden;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-crossfade 15s infinite;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,25,15,0.25) 0%, rgba(15,20,10,0.75) 100%);
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes hero-crossfade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  29%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(43,43,43,0.75);
  border: 1px solid rgba(153,255,51,0.5);
  backdrop-filter: blur(4px);
  color: var(--accent-text);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  width: fit-content;
}

.review-badge strong { color: #fff; }

.hero-headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-caption {
  font-size: 1.05rem;
  font-weight: 700;
  opacity: 0;
  animation: caption-fade 15s infinite;
}

.hero-caption span.addr {
  display: block;
  font-weight: 400;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.15rem;
}

.hero-caption:nth-of-type(1) { animation-delay: 0s; }
.hero-caption:nth-of-type(2) { animation-delay: 5s; }
.hero-caption:nth-of-type(3) { animation-delay: 10s; }

@keyframes caption-fade {
  0%   { opacity: 0; transform: translateY(6px); }
  8%   { opacity: 1; transform: translateY(0); }
  29%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-captions { position: relative; height: 3.2rem; }
.hero-captions .hero-caption { position: absolute; left: 0; bottom: 0; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-call-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  font-size: 1rem;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(153,255,51,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-call-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(153,255,51,0.5);
}

.hero-directions-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  font-size: 1rem;
  width: fit-content;
  backdrop-filter: blur(4px);
  transition: transform 0.18s ease, background 0.18s ease;
}

.hero-directions-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255,255,255,0.18);
}

/* ---- Reviews feature ---- */
.reviews-feature {
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg) 100%);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}

.reviews-feature-inner { max-width: 500px; margin: 0 auto; }

.reviews-stars {
  color: var(--accent);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 16px rgba(153,255,51,0.5);
}

.reviews-score {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.3rem;
}

.reviews-score span { font-size: 1.3rem; color: var(--muted); font-weight: 700; }

.reviews-count {
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

.reviews-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-text);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
}

.reviews-link:hover { text-decoration: underline; }

/* ---- Amenities strip ---- */
.amenities-strip {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
}

.amenities-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
}

.amenity svg { color: var(--accent-text); flex-shrink: 0; }

/* ---- Brand voice / trust strip ---- */
.trust-strip {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.trust-pill {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  border: 1.5px solid var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* ---- Location grid ---- */
.locations {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.locations h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border-color: var(--accent);
}

.location-card.pending { opacity: 0.82; }

.location-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.location-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.15rem 0;
}

.location-card a.tel {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 800;
  color: var(--accent-text);
  text-decoration: none;
}

.location-card a.directions {
  display: block;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
}

.location-card a.directions:hover { opacity: 1; color: var(--accent-text); text-decoration: underline; }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.badge-open { background: var(--accent); color: var(--accent-contrast); }
.badge-tbd { background: #3d3d3d; color: var(--muted); }
.badge-closed { background: var(--forest); color: #fff; }

.brand-tagline {
  font-weight: 800;
  color: var(--accent-text);
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

/* ---- Contact page ---- */
.contact-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.contact-main h1 {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.contact-main p.lead {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.contact-block h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.contact-block a.big {
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--accent-text);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}

.footer-links { margin-top: 0.75rem; }
.footer-links a {
  color: var(--accent-text);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-links a:hover { text-decoration: underline; }

.distance-note {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-text);
  margin-bottom: 0.3rem;
}

.status-note-live {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: none;
}

.badge-nearest {
  background: var(--accent);
  color: var(--accent-contrast);
  margin-right: 0.4rem;
}


/* ---- Mobile pass ---- */
@media (max-width: 480px) {
  .site-header { padding: 1rem; }
  .wordmark img { height: 28px; }
  .site-nav a { margin-left: 1rem; font-size: 0.92rem; }

  .hero { height: min(58vh, 460px); min-height: 320px; }
  .hero-content { padding: 1.5rem 1rem; }
  .hero-headline { font-size: 1.5rem; margin-bottom: 0.8rem; }
  .hero-caption { font-size: 0.92rem; }
  .hero-caption span.addr { font-size: 0.82rem; }
  .hero-cta-row { margin-top: 1rem; }
  .hero-call-btn, .hero-directions-btn { font-size: 0.85rem; padding: 0.6rem 1.05rem; }

  .amenities-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 1rem;
    justify-items: start;
  }
  .amenity { font-size: 0.82rem; }
  .amenity svg { width: 17px; height: 17px; flex-shrink: 0; }

  .trust-pill { font-size: 0.88rem; padding: 0.4rem 1rem; }

  .locations { padding: 2.5rem 1rem; }
  .location-grid { grid-template-columns: 1fr; }
}
