/* ============================================================
   FAIRWAY ABC 1 — style.css
   Mobile-first, responsive, no external CSS dependencies
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ───────────────────────────────── */
:root {
  /* Background palette */
  --bg-primary:    #0b0b0b;
  --bg-secondary:  #111111;
  --bg-card:       #181818;
  --bg-card-hover: #1f1f1f;

  /* Gold accent */
  --gold:          #c9993a;
  --gold-light:    #e8b84b;
  --gold-dark:     #a07820;
  --gold-faint:    rgba(201, 153, 58, 0.12);

  /* Text */
  --text-primary:  #f0ece4;
  --text-muted:    #b0a898;
  --text-dim:      #6b6560;

  /* Borders */
  --border:        #2a2520;
  --border-light:  #3a3530;

  /* Spirit category colours */
  --bourbon-start: #5c3010;
  --bourbon-end:   #2a1205;
  --scotch-start:  #4a3000;
  --scotch-end:    #1e1400;
  --tequila-start: #2a4010;
  --tequila-end:   #111d06;
  --vodka-start:   #102a40;
  --vodka-end:     #051219;

  /* UI */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 20px rgba(201,153,58,0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w:    1200px;
  --nav-h:    70px;
  --section-pad: 5rem 0;
}

/* ── 2. RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── 3. LAYOUT UTILITIES ────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  background: var(--gold-faint);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}
.gold-text { color: var(--gold); }

/* ── 4. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #000;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-sm:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-full { width: 100%; }

/* ── 5. NAVIGATION ──────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-header.scrolled {
  background: rgba(11,11,11,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo:hover { color: var(--text-primary); }
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: #000 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(80,30,0,0.45) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,153,58,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0b0b0b 0%, #130800 50%, #0b0b0b 100%);
  padding-top: var(--nav-h);
}
/* Decorative shimmer lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(201,153,58,0.025) 80px,
    rgba(201,153,58,0.025) 82px
  );
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,11,0.3) 0%, rgba(11,11,11,0.1) 50%, rgba(11,11,11,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
}
.grand-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,153,58,0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(201,153,58,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.hero-meta-sep { opacity: 0.3; }
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.4; }
}

/* ── 7. FEATURED SPIRITS CAROUSEL ──────────────────────── */
.featured-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.car-viewport {
  flex: 1;
  overflow: hidden;
}
.car-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
}
.car-track::-webkit-scrollbar { display: none; }

/* Spirit card */
.spirit-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.spirit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-dark);
}
.card-img {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Real bottle photo */
.card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.spirit-card:hover .card-photo { transform: scale(1.07); }

/* Dark gradient overlay so badges stay readable */
.card-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 35%);
  z-index: 1;
}

/* Badges on card */
.cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  z-index: 2;
}
.badge-bourbon { background: rgba(201,100,20,0.9);  color: #fff; }
.badge-scotch  { background: rgba(180,140,0,0.9);   color: #fff; }
.badge-tequila { background: rgba(60,140,20,0.9);   color: #fff; }
.badge-vodka   { background: rgba(20,80,160,0.9);   color: #fff; }
.badge-rum     { background: rgba(160,20,80,0.9);   color: #fff; }
.badge-brandy  { background: rgba(120,60,160,0.9);  color: #fff; }
.badge-other   { background: rgba(80,80,80,0.9);    color: #fff; }

.pick-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--gold-dark);
  z-index: 2;
}
/* Card body */
.card-body { padding: 1.25rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.spirit-origin { font-size: 0.78rem; color: var(--text-dim); }

/* Carousel nav buttons */
.car-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.car-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
/* Carousel dots */
.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.car-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
}
.car-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── 8. SPECIAL OFFERS ──────────────────────────────────── */
.offers-section { background: var(--bg-primary); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-dark);
  opacity: 0;
  transition: opacity 0.3s;
}
.offer-card:hover { transform: translateY(-5px); border-color: var(--gold-dark); box-shadow: var(--shadow-md); }
.offer-card:hover::before { opacity: 1; }

.offer-featured {
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, var(--bg-card), rgba(201,153,58,0.06));
}
.offer-featured::before { opacity: 1; background: var(--gold); }

.offer-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-faint);
  border: 1px solid var(--gold-dark);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.offer-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.offer-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
}

/* ── 9. ABOUT ───────────────────────────────────────────── */
.about-section { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text .section-tag { margin-bottom: 0.8rem; }
.about-text .section-title { text-align: left; margin-bottom: 1.2rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-lbl { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

.category-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cat-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.cat-tile:hover { border-color: var(--gold-dark); transform: translateY(-3px); }
.tile-icon { font-size: 2rem; display: block; margin-bottom: 0.7rem; }
.cat-tile h4 { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.cat-tile p  { font-size: 0.82rem; color: var(--text-dim); }

/* ── 10. BEER COMING SOON BANNER ────────────────────────── */
.beer-banner {
  background: linear-gradient(135deg, #0d1a05, #0b0b0b);
  border-top: 1px solid #1e3010;
  border-bottom: 1px solid #1e3010;
  padding: 2rem 0;
}
.beer-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.beer-emoji { font-size: 2.5rem; flex-shrink: 0; }
.beer-text { flex: 1; min-width: 220px; }
.beer-text h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.4rem; }
.beer-text p  { font-size: 0.9rem; color: var(--text-muted); }

/* ── 11. HOURS & LOCATION ───────────────────────────────── */
.hours-section { background: var(--bg-primary); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: stretch;
}
.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.hours-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.hours-table td:first-child { color: var(--text-muted); width: 50%; }
.open-time   { color: var(--text-primary); font-weight: 500; }
.closed-time { color: #c44; font-weight: 600; }
.closed-row td { border-bottom: none; }

.store-address {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.store-address a { color: var(--gold); }

.map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 380px;
}
.map-card iframe {
  width: 100%; height: 100%;
  min-height: 380px;
  display: block;
  filter: grayscale(20%) brightness(0.85);
}

/* ── 12. SOCIAL MEDIA ───────────────────────────────────── */
.social-section { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin-inline: auto;
}
.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.social-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.social-icon { transition: transform 0.3s; }
.social-card:hover .social-icon { transform: scale(1.1); }
.social-card h3 { font-family: var(--font-display); font-size: 1.4rem; }
.social-card p  { font-size: 0.9rem; color: var(--text-muted); }

.fb-card { color: var(--text-primary); }
.fb-card .social-icon { color: #1877f2; }
.fb-card:hover { border-color: #1877f2; box-shadow: 0 8px 24px rgba(24,119,242,0.2); color: var(--text-primary); }
.fb-card h3 { color: var(--text-primary); }

.ig-card { color: var(--text-primary); }
.ig-card .social-icon { color: #e1306c; }
.ig-card:hover { border-color: #e1306c; box-shadow: 0 8px 24px rgba(225,48,108,0.2); color: var(--text-primary); }
.ig-card h3 { color: var(--text-primary); }

.social-follow-btn {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

/* ── 13. CONTACT ────────────────────────────────────────── */
.contact-section { background: var(--bg-primary); border-top: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.ci-item strong { display: block; color: var(--text-primary); font-size: 0.9rem; margin-bottom: 0.3rem; }
.ci-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.ci-item a { color: var(--gold); }

/* Form */
form .form-group { margin-bottom: 1.25rem; }
form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.req { color: var(--gold); }
form input,
form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
form input::placeholder,
form textarea::placeholder { color: var(--text-dim); }
form input:focus,
form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,153,58,0.15);
}
form input.input-err,
form textarea.input-err { border-color: #c44; }
form textarea { resize: vertical; min-height: 120px; }

.field-err {
  display: block;
  font-size: 0.8rem;
  color: #e05555;
  margin-top: 0.3rem;
  min-height: 1em;
}
.char-count {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.form-success { background: rgba(40,160,40,0.12); border: 1px solid rgba(40,160,40,0.3); color: #6ecf6e; }
.form-error   { background: rgba(200,40,40,0.1);  border: 1px solid rgba(200,40,40,0.3);  color: #e08080; }

/* ── 14. FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.footer-links h4,
.footer-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }

.footer-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.6rem; }
.footer-info a { color: var(--text-muted); }
.footer-info a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.disclaimer { font-size: 0.8rem; }

/* ── 15. RESPONSIVE ─────────────────────────────────────── */

/* Tablet — ≤ 900px */
@media (max-width: 900px) {
  :root { --section-pad: 3.5rem 0; }

  .spirit-card { flex: 0 0 calc(50% - 0.75rem); }
  .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .hours-grid  { grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

/* Mobile — ≤ 640px */
@media (max-width: 640px) {
  :root { --section-pad: 2.75rem 0; }

  /* Nav */
  .hamburger   { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem 1.25rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { text-align: center; padding: 0.65rem 1.25rem !important; }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-meta-sep { display: none; }
  .hero-meta { flex-direction: column; gap: 0.3rem; text-align: center; }

  /* Carousel */
  .spirit-card { flex: 0 0 85%; }
  .car-btn { width: 36px; height: 36px; font-size: 1rem; }

  /* Offers */
  .offers-grid { grid-template-columns: 1fr; }

  /* About tiles */
  .category-tiles { grid-template-columns: 1fr 1fr; }

  /* Beer banner */
  .beer-banner-inner { flex-direction: column; text-align: center; }

  /* Social */
  .social-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom{ flex-direction: column; text-align: center; }
}

/* Extra small — ≤ 400px */
@media (max-width: 400px) {
  .category-tiles { grid-template-columns: 1fr; }
  .about-stats    { justify-content: space-around; }
}
