/* ============================================
   SCHLOPPY'S ALBERTA BAR — STYLESHEET
   Classic & Elegant · Emerald + Cream
   ============================================ */

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

:root {
  --emerald-950: #042f2e;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50:  #fefdf8;
  --cream-100: #fdf8ef;
  --cream-200: #faf3e0;
  --cream-300: #f5e6c8;
  --gold-400:  #d4a853;
  --gold-500:  #c49a3c;
  --gold-600:  #b08930;
  --text-dark:  #1a1a1a;
  --text-mid:   #3d3d3d;
  --text-light: #6b6b6b;
  --text-on-dark: #f5f0e8;
  --text-on-dark-muted: #a8a090;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--emerald-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--emerald-500);
}

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

/* ---------- SECTION LABELS ---------- */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--emerald-900);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--cream-50);
  border-color: var(--emerald-800);
}

.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  color: var(--cream-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(254, 253, 248, 0.5);
}

.btn-secondary:hover {
  background: rgba(254, 253, 248, 0.1);
  border-color: var(--cream-50);
  color: var(--cream-50);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-map {
  margin-top: 24px;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 47, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(254, 253, 248, 0.08);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream-50);
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-400);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.nav-menu a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-menu a:hover {
  color: var(--cream-50);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold-500);
  color: var(--emerald-950) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--gold-400);
  color: var(--emerald-950) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4, 47, 46, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
}

.nav-overlay.active {
  display: flex;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-overlay-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cream-200);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-overlay-link:hover {
  color: var(--gold-400);
}

.nav-overlay-cta {
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--gold-400) !important;
  border: 1px solid var(--gold-400);
  padding: 12px 32px;
  border-radius: var(--radius-md);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 47, 46, 0.92) 0%,
    rgba(6, 78, 59, 0.85) 40%,
    rgba(6, 95, 70, 0.7) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-asym {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.hero-tagline {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream-50);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-400);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-on-dark-muted);
  max-width: 480px;
  margin-bottom: 36px;
}

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

/* Hero sidebar */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-sidebar-card {
  background: rgba(254, 253, 248, 0.07);
  border: 1px solid rgba(254, 253, 248, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.sidebar-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  display: block;
  margin-bottom: 8px;
}

.sidebar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--emerald-400);
  margin-bottom: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.sidebar-hours {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.hero-sidebar-quote {
  background: rgba(212, 168, 83, 0.08);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px;
}

.hero-sidebar-quote svg {
  color: var(--gold-500);
  margin-bottom: 12px;
  opacity: 0.7;
}

.hero-sidebar-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream-200);
  line-height: 1.7;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0;
  background: var(--cream-50);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(6, 78, 59, 0.15);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--emerald-800);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about-content {
  padding: 20px 0;
}

.about-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-300);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--emerald-800);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- DRINKS ---------- */
.drinks {
  padding: 120px 0;
  background: var(--emerald-900);
  position: relative;
}

.drinks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--emerald-600), var(--gold-500));
}

.drinks-header {
  text-align: center;
  margin-bottom: 64px;
}

.drinks-header .section-label {
  color: var(--gold-400);
}

.drinks-header .section-title {
  color: var(--cream-50);
}

.drinks-header .section-subtitle {
  color: var(--text-on-dark-muted);
  margin: 0 auto;
}

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

.drink-card {
  background: rgba(254, 253, 248, 0.05);
  border: 1px solid rgba(254, 253, 248, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.drink-card:hover {
  background: rgba(254, 253, 248, 0.08);
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
}

.drink-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.drink-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream-50);
  margin-bottom: 12px;
}

.drink-card p {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

/* ---------- ATMOSPHERE / GALLERY ---------- */
.atmosphere {
  padding: 120px 0;
  background: var(--cream-100);
}

.atmosphere-header {
  text-align: center;
  margin-bottom: 64px;
}

.atmosphere-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(4, 47, 46, 0.85), transparent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream-50);
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item--tall {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.gallery-item--wide {
  grid-column: 8 / 13;
  grid-row: 2;
}

/* ---------- VISIT ---------- */
.visit {
  padding: 120px 0;
  background: var(--cream-50);
}

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

.visit-info {
  padding: 20px 0;
}

.visit-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--emerald-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.visit-detail strong {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-800);
  display: block;
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--emerald-700);
}

.visit-detail a:hover {
  color: var(--emerald-500);
  text-decoration: underline;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.12);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 0;
  background: var(--emerald-900);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--emerald-600), var(--gold-500));
}

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

.contact-content .section-label {
  color: var(--gold-400);
}

.contact-content .section-title {
  color: var(--cream-50);
}

.contact-content .section-subtitle {
  color: var(--text-on-dark-muted);
  margin-bottom: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-200);
  font-size: 1rem;
}

.contact-info-item svg {
  color: var(--gold-400);
  min-width: 18px;
}

.contact-info-item a {
  color: var(--cream-200);
  text-decoration: none;
  border-bottom: 1px solid rgba(254, 253, 248, 0.2);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.contact-info-item a:hover {
  color: var(--gold-400);
  border-color: var(--gold-400);
}

/* Contact form */
.contact-form-wrap {
  background: rgba(254, 253, 248, 0.05);
  border: 1px solid rgba(254, 253, 248, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(254, 253, 248, 0.06);
  border: 1px solid rgba(254, 253, 248, 0.15);
  border-radius: var(--radius-md);
  color: var(--cream-50);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-on-dark-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  background: rgba(254, 253, 248, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a853' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--emerald-900);
  color: var(--cream-50);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  color: var(--emerald-400);
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.form-success svg {
  min-width: 20px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--emerald-950);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.footer-brand p {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream-50);
}

.footer-logo-mark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-400);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-sm);
}

.footer-logo span:last-child {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links strong,
.footer-contact strong {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cream-50);
}

.footer-contact address {
  font-style: normal;
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-contact p {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  opacity: 0.7;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-asym {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-sidebar {
    flex-direction: row;
  }

  .about-grid {
    gap: 48px;
  }

  .drinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 240px;
  }

  .gallery-item--tall {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .gallery-item--wide {
    grid-column: 2;
    grid-row: 2;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-container {
    padding: 80px 24px 60px;
  }

  .hero-sidebar {
    flex-direction: column;
  }

  .hero-sidebar-card,
  .hero-sidebar-quote {
    width: 100%;
  }

  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap img {
    height: 360px;
  }

  .about-stats {
    gap: 24px;
  }

  .drinks {
    padding: 80px 0;
  }

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

  .atmosphere {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 240px;
  }

  .visit {
    padding: 80px 0;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visit-map {
    min-height: 300px;
  }

  .visit-map iframe {
    min-height: 300px;
  }

  .contact {
    padding: 80px 0;
  }

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

  .contact-form-wrap {
    padding: 28px;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .gallery-item img {
    transition: none;
  }

  .gallery-item:hover img {
    transform: none;
  }

  .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: none;
  }
}
