/* ============================================
   GOUNDED COFFEEHOUSE — CUSTOM STYLES
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-terracotta: #B8572D;
  --color-terracotta-dark: #9A4520;
  --color-terracotta-light: #D4784F;
  --color-sand: #F5EDE3;
  --color-sand-light: #FDF8F3;
  --color-sand-dark: #E8DDD0;
  --color-charcoal: #1E1E1E;
  --color-charcoal-light: #2E2E2E;
  --color-text: #2C2420;
  --color-text-light: #6B5B50;
  --color-text-muted: #9A8878;
  --color-white: #FFFFFF;
  --color-overlay: rgba(30, 22, 18, 0.65);

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(30, 22, 18, 0.08), 0 1px 2px rgba(30, 22, 18, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 22, 18, 0.1), 0 2px 4px rgba(30, 22, 18, 0.06);
  --shadow-lg: 0 12px 40px rgba(30, 22, 18, 0.14), 0 4px 12px rgba(30, 22, 18, 0.08);
  --shadow-xl: 0 24px 60px rgba(30, 22, 18, 0.18);

  --transition-fast: 0.2s ease;
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-sand-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font: inherit; cursor: pointer; border: none; background: none; }

ul, ol { list-style: none; }

address { font-style: normal; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 20px;
}
.section-title--light { color: var(--color-white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-title--light + .section-sub,
.section-title--light ~ .section-sub { color: rgba(253, 248, 243, 0.75); }

.text-accent { color: var(--color-terracotta); }
.section-title--light .text-accent { color: var(--color-terracotta-light); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-terracotta-dark);
  border-color: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(253, 248, 243, 0.5);
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  background: rgba(253, 248, 243, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 87, 45, 0.1);
  transition: all var(--transition-med);
}
.site-header.scrolled {
  background: rgba(253, 248, 243, 0.97);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--color-charcoal);
}
.logo--light { color: var(--color-white); }

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--color-terracotta);
}

.logo-text { font-weight: 400; }
.logo-accent { color: var(--color-terracotta); font-style: italic; }
.logo--light .logo-accent { color: var(--color-terracotta-light); }

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 2px;
  transition: width var(--transition-fast);
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--color-terracotta); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 22, 18, 0.88) 0%,
    rgba(30, 22, 18, 0.72) 50%,
    rgba(30, 22, 18, 0.55) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(184, 87, 45, 0.2);
  border: 1px solid rgba(184, 87, 45, 0.4);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-terracotta-light);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-terracotta-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(253, 248, 243, 0.78);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(253, 248, 243, 0.1);
  border: 1px solid rgba(253, 248, 243, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}
.stat-card:hover {
  background: rgba(253, 248, 243, 0.16);
  border-color: rgba(253, 248, 243, 0.25);
  transform: translateY(-4px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: var(--color-terracotta-light);
  margin-bottom: 14px;
}
.stat-icon svg { width: 100%; height: 100%; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(253, 248, 243, 0.6);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 248, 243, 0.4);
  z-index: 1;
}
.hero-scroll svg { animation: scroll-bounce 2s ease-in-out infinite; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  padding: 100px 0;
  background: var(--color-sand-light);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0 32px;
  border-bottom: 1px solid var(--color-sand-dark);
  padding-bottom: 0;
}

.tab-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tab-btn:hover { color: var(--color-terracotta); }
.tab-btn.active {
  color: var(--color-terracotta);
  border-bottom-color: var(--color-terracotta);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
}
.menu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body { padding: 24px; }

.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.menu-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-charcoal);
}

.menu-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  background: rgba(184, 87, 45, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-xl);
}

.menu-card-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  padding: 100px 0;
  background: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 87, 45, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }

.story-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--color-charcoal);
  box-shadow: var(--shadow-lg);
}
.story-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.story-divider {
  width: 60px;
  height: 3px;
  background: var(--color-terracotta);
  border-radius: 3px;
  margin: 28px 0;
}

.story-content p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(253, 248, 243, 0.72);
  margin-bottom: 18px;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(184, 87, 45, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta-light);
}
.value-icon svg { width: 22px; height: 22px; }

.value-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}
.value-item span {
  font-size: 0.88rem;
  color: rgba(253, 248, 243, 0.55);
  line-height: 1.6;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
  padding: 100px 0;
  background: var(--color-sand);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  border: 1px solid transparent;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(184, 87, 45, 0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(184, 87, 45, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit-section {
  padding: 100px 0;
  background: var(--color-charcoal);
  position: relative;
}
.visit-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 87, 45, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.visit-divider {
  width: 60px;
  height: 3px;
  background: var(--color-terracotta);
  border-radius: 3px;
  margin: 28px 0;
}

.visit-details { margin-bottom: 32px; }

.visit-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.visit-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(184, 87, 45, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta-light);
}
.visit-icon svg { width: 20px; height: 20px; }

.visit-row strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracotta-light);
  margin-bottom: 4px;
}
.visit-row span,
.visit-row a {
  font-size: 0.95rem;
  color: rgba(253, 248, 243, 0.78);
  line-height: 1.7;
}
.visit-row a:hover { color: var(--color-terracotta-light); text-decoration: underline; }

.visit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-xl);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--color-sand);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-top: 20px;
  max-width: 440px;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-sand-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-sand-light);
  transition: all var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-terracotta);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(184, 87, 45, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  color: #15803d;
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success svg { flex-shrink: 0; color: #15803d; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(253, 248, 243, 0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253, 248, 243, 0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong,
.footer-hours strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta-light);
  margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.9rem;
  color: rgba(253, 248, 243, 0.6);
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--color-white); }

.footer-contact span,
.footer-hours span {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(253, 248, 243, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(30, 22, 18, 0.5);
  backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }

.nav-mobile {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--color-sand-light);
  z-index: 1001;
  padding: 88px 32px 32px;
  transition: right var(--transition-med);
  box-shadow: var(--shadow-xl);
}
.nav-mobile.active { right: 0; }

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-sand-dark);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.nav-mobile a:hover { color: var(--color-terracotta); padding-left: 8px; }
.nav-mobile .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-stats { max-width: 400px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img-accent { width: 160px; height: 160px; right: -16px; bottom: -16px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; }
  .contact-inner { grid-template-columns: 1fr; }
}

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

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-bg { position: absolute; inset: 0; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .menu-grid { grid-template-columns: 1fr; }

  .menu-tabs { gap: 4px; }
  .tab-btn { padding: 8px 16px; font-size: 0.82rem; }

  .features-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .visit-actions { flex-direction: column; }
  .visit-actions .btn { width: 100%; justify-content: center; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .menu-card:hover { transform: none; }
  .feature-card:hover { transform: none; }
  .stat-card:hover { transform: none; }
}
