/* ============================================
   Hometown Harvest MA — Premium Dispensary
   WCAG 2.1 AA · Mobile-First · Conversion-Optimized
   ============================================ */

:root {
  --bg: #0a1a12;
  --bg-elevated: #0e2419;
  --card: #112b1e;
  --card-hover: #163624;
  --border: rgba(255,255,255,0.10);
  --border-light: rgba(255,255,255,0.06);

  --text: #f5f5f5;
  --text-secondary: #a8b2bc;
  --text-dim: #6b7886;

  --gold: #d4a373;
  --gold-light: #e8c9a4;
  --gold-glow: rgba(212,163,115,0.15);

  --green: #84cc16;
  --green-light: #d4f5a0;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --max: 1200px;
  --nav-h: 80px;

  --sans: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--text); text-decoration: underline; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

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

.wrap { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: 0.025; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* No underlines on interactive UI elements */
.btn, .btn-outline, .nav-links a, .nav-cta, .category-card,
.age-gate__btn, .pill, .footer-col a, .footer-bottom a, .skip-link {
  text-decoration: none !important;
}

/* ============================================
   Navigation — Premium
   ============================================ */

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: #1a1a1a;
  padding: 14px 24px; border-radius: 8px;
  font-weight: 700; z-index: 10000; min-height: 48px;
  display: inline-flex; align-items: center;
}
.skip-link:focus { top: 8px; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10, 26, 18, 0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

/* Scrolled state — added by JS */
.nav.is-scrolled {
  background: rgba(10, 26, 18, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav .wrap { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  height: 50px; width: auto;
  transition: opacity 0.15s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}

/* Desktop links with animated underline */
.nav-links a {
  color: var(--text-secondary);
  font-size: 15px; font-weight: 500;
  padding: 10px 16px;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { transform: scaleX(1); }

/* CTA button — bold, premium */
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 44px; min-height: 54px;
  border-radius: var(--radius);
  background: var(--gold); color: #1a1a1a !important;
  font-weight: 800; font-size: 16px; white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(212,163,115,0.3);
  transform: translateY(-1px);
}

/* Hamburger — animated to X */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 10px;
  min-width: 48px; min-height: 48px;
  position: relative;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  margin: 6px auto;
}

/* X state when menu open */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ---- Mobile nav ---- */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    z-index: 9999;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }

  .nav-links a {
    display: flex; align-items: center;
    min-height: 56px;
    padding: 0 24px;
    font-size: 17px; font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links a::after { display: none; }
  .nav-links a:not(.nav-cta):hover,
  .nav-links a:not(.nav-cta).active {
    color: var(--text);
    background: rgba(255,255,255,0.03);
  }

  .nav-cta,
  .nav-cta:hover,
  .nav-cta:active {
    margin: 16px 24px 8px;
    justify-content: center;
    width: calc(100% - 48px);
    padding: 18px 24px; font-size: 16px;
    border-radius: var(--radius);
    background: var(--gold) !important;
    color: #1a1a1a !important;
    border-bottom: none;
    min-height: 56px;
  }
  .nav-cta:hover {
    background: var(--gold-light) !important;
  }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  appearance: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: var(--radius);
  padding: 18px 40px; min-height: 56px;
  background: var(--gold); color: #1a1a1a;
  font-weight: 700; font-size: 16px;
  cursor: pointer; font-family: var(--sans);
  transition: background 0.15s, box-shadow 0.15s;
}
.btn:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 40px rgba(212,163,115,0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(212,163,115,0.4);
  color: var(--gold-light);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-glow); box-shadow: none;
}

.btn-lg { padding: 20px 48px; font-size: 17px; min-height: 60px; }

/* ============================================
   Sections
   ============================================ */

section { position: relative; z-index: 1; }
.section-pad { padding: 100px 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 48px); font-weight: 700;
  line-height: 1.15; margin-bottom: 20px;
}
.section-header p { color: var(--text-secondary); font-size: 17px; line-height: 1.8; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-light);
  padding: 10px 18px;
  border: 1px solid rgba(132,204,22,0.2);
  border-radius: 999px;
  background: rgba(132,204,22,0.06);
  margin-bottom: 24px;
}

.dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(132,204,22,0.12);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(132,204,22,0.12); }
  50% { box-shadow: 0 0 0 12px rgba(132,204,22,0.04); }
}

.divider { border: none; height: 1px; background: var(--border-light); margin: 0; }

/* ============================================
   Hero
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 64px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(132,204,22,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212,163,115,0.05) 0%, transparent 40%);
}
.hero-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.hero-logo { width: 100%; max-width: 280px; margin: 0 auto 40px; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 72px); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 28px;
}
.hero h1 .accent { color: var(--gold-light); }

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-secondary);
  max-width: 580px; margin: 0 auto 48px; line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-info { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 56px; }

.pill {
  padding: 12px 20px; border-radius: 999px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.pill-icon { font-size: 16px; }

.countdown { display: flex; justify-content: center; gap: 16px; margin: 0 0 48px; }
.cd-item {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  text-align: center; min-width: 88px;
}
.cd-item span {
  display: block; font-family: var(--serif);
  font-size: 36px; font-weight: 700; color: var(--text);
}
.cd-item small {
  display: block; font-size: 11px; color: var(--text-dim);
  margin-top: 6px; text-transform: uppercase; letter-spacing: 0.14em;
}

/* ============================================
   Product Categories
   ============================================ */

.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.category-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 24px;
  text-align: center; color: var(--text); display: block;
  transition: background 0.2s, border-color 0.2s;
}
.category-card:hover {
  background: var(--card-hover);
  border-color: rgba(212,163,115,0.2);
}
.category-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.category-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.category-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* ============================================
   About / Features
   ============================================ */

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 700;
  line-height: 1.15; margin-bottom: 24px;
}
.about-content p { color: var(--text-secondary); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }

.about-image {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; padding: 48px;
}
.about-image img { max-width: 240px; margin: 0 auto; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.feature-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.feature-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   Visit / Location
   ============================================ */

.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.visit-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.visit-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }

.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
  font-size: 15px; color: var(--text-secondary);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text); font-weight: 600; }

.info-rows { display: grid; gap: 24px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row-icon { font-size: 20px; flex-shrink: 0; margin-top: 3px; }
.info-row-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.info-row-text strong { color: var(--text); display: block; margin-bottom: 4px; font-weight: 600; }

.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); margin-top: 32px;
}
.map-container iframe { width: 100%; height: 300px; border: none; }

/* ============================================
   Newsletter
   ============================================ */

.newsletter {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 64px 48px; text-align: center;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; margin-bottom: 16px;
}
.newsletter p {
  color: var(--text-secondary); max-width: 480px;
  margin: 0 auto 32px; font-size: 16px; line-height: 1.7;
}

.newsletter-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; border: 1px solid var(--border); background: var(--bg);
  color: white; border-radius: var(--radius-sm);
  padding: 16px 20px; min-height: 52px;
  outline: none; font-size: 15px; font-family: var(--sans);
}
.newsletter-form input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(212,163,115,0.2); outline-offset: 2px;
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter .fine { color: var(--text-dim); font-size: 13px; margin-top: 16px; }

/* ============================================
   Footer
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px; position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }

.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-secondary); margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--text-dim); font-size: 14px;
  min-height: 28px; display: inline-flex; align-items: center;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 13px; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--text); }

/* ============================================
   Age Gate
   ============================================ */

.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(4, 10, 8, 0.97);
}
.age-gate.is-hidden { display: none !important; }

.age-gate__panel {
  width: min(100%, 480px); padding: 40px 32px;
  border-radius: var(--radius-lg); background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5); text-align: center;
}
.age-gate__logo { width: 100%; max-width: 180px; margin: 0 auto 24px; display: block; height: auto; }
.age-gate__eyebrow {
  display: inline-block; margin-bottom: 16px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border);
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-light);
}
.age-gate__panel h2 {
  margin: 0 0 16px; font-family: var(--serif);
  font-size: clamp(26px, 4vw, 34px); font-weight: 700; line-height: 1.15;
}
.age-gate__copy { margin: 0 0 28px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.age-gate__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.age-gate__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 16px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px; cursor: pointer; border: 0; font-family: var(--sans);
}
.age-gate__btn--yes { background: var(--gold); color: #1a1a1a; }
.age-gate__btn--yes:hover { background: var(--gold-light); }
.age-gate__btn--no { background: var(--card); color: var(--text); border: 1px solid var(--border); }
.age-gate__fine { margin: 0; font-size: 13px; color: var(--text-dim); }

/* ============================================
   Interior Pages
   ============================================ */

.page-hero { padding: calc(var(--nav-h) + 56px) 0 56px; text-align: center; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 52px); font-weight: 700;
  line-height: 1.12; margin-bottom: 20px;
}
.page-hero p { color: var(--text-secondary); font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.menu-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.menu-tab {
  padding: 12px 24px; min-height: 48px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--sans);
  display: inline-flex; align-items: center;
}
.menu-tab:hover, .menu-tab.active {
  background: var(--gold-glow); border-color: rgba(212,163,115,0.3); color: var(--gold-light);
}

.menu-embed {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px; text-align: center;
  min-height: 400px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.menu-embed h3 { font-size: 22px; }
.menu-embed p { color: var(--text-secondary); max-width: 480px; font-size: 16px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.product-card:hover { border-color: rgba(212,163,115,0.3); }
.product-card-img {
  height: 200px; background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.product-card-body { padding: 20px; }
.product-card-body h4 { font-size: 16px; margin-bottom: 4px; }
.product-card-body .product-type {
  font-size: 12px; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.product-card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Local SEO */
.local-hero { padding: calc(var(--nav-h) + 56px) 0 56px; }
.local-hero h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 4.5vw, 44px); font-weight: 700;
  line-height: 1.12; margin-bottom: 20px;
}
.local-hero p { color: var(--text-secondary); font-size: 17px; line-height: 1.7; max-width: 680px; }

.local-content { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.local-main h2 { font-size: 24px; line-height: 1.2; margin-bottom: 16px; margin-top: 40px; }
.local-main h2:first-child { margin-top: 0; }
.local-main p { color: var(--text-secondary); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.local-main ul { color: var(--text-secondary); font-size: 16px; line-height: 2; margin-bottom: 20px; padding-left: 20px; }
.local-sidebar .visit-card { position: sticky; top: calc(var(--nav-h) + 24px); }

/* ============================================
   Responsive — Tablet
   ============================================ */

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .local-content { grid-template-columns: 1fr; }
  .local-sidebar .visit-card { position: static; }
  .section-pad { padding: 72px 0; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { max-width: 240px; }
}

/* ============================================
   Responsive — Mobile
   ============================================ */

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .wrap { width: calc(100% - 40px); }

  .hero {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 40px; min-height: auto;
  }
  .hero-logo { max-width: 180px; margin-bottom: 28px; }
  .hero h1 { font-size: clamp(30px, 8vw, 42px); margin-bottom: 20px; line-height: 1.12; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-info { margin-top: 36px; gap: 10px; }
  .pill { font-size: 13px; padding: 10px 16px; }

  .countdown { gap: 10px; margin-bottom: 36px; }
  .cd-item { padding: 14px 12px; min-width: 68px; }
  .cd-item span { font-size: 28px; }

  .section-pad { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(24px, 6vw, 32px); }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 24px 16px; }
  .category-icon { font-size: 28px; margin-bottom: 10px; }

  .features { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .feature-item { padding: 24px 20px; }

  .age-gate__actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter { padding: 36px 24px; }
  .newsletter-form { flex-direction: column; }
  .visit-card { padding: 28px; }

  .btn-lg { padding: 18px 32px; font-size: 16px; width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }

  .page-hero { padding: calc(var(--nav-h) + 32px) 0 32px; }
  .page-hero h1 { font-size: clamp(24px, 7vw, 34px); }
  .local-hero { padding: calc(var(--nav-h) + 32px) 0 32px; }
  .local-hero h1 { font-size: clamp(22px, 6vw, 30px); }
  .local-main h2 { font-size: 20px; margin-top: 28px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .hero-logo { max-width: 150px; }
  .categories-grid { grid-template-columns: 1fr; }
  .countdown { flex-wrap: wrap; }
  .cd-item { flex: 1 1 40%; }
}
