/* ============================================
   The Outback — Marinette Tavern & Café
   Warm · Friendly · Rounded · Teal & Slate
   ============================================ */

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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #080e1a;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.08);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-800);
  background: var(--slate-50);
  overflow-x: hidden;
}

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

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--teal-700); }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn-teal {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
}
.btn-teal:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--teal-600);
  color: var(--teal-700);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-white {
  background: var(--white);
  color: var(--teal-700);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-50);
  color: var(--teal-800);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-600);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--slate-900);
  text-decoration: none;
}
.logo:hover { color: var(--teal-600); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-600);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}
.main-nav a:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--teal-50) 50%, var(--slate-100) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  background: var(--white);
  border: 1px solid var(--teal-200);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 20px;
}
.hero-headline .text-teal {
  color: var(--teal-600);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-md);
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal-700);
  line-height: 1.2;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-200);
}

/* Hero Images */
.hero-image {
  position: relative;
}
.hero-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.hero-image-float {
  position: absolute;
  bottom: -40px;
  left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.hero-image-float img {
  width: 240px;
  height: 200px;
  object-fit: cover;
}
.float-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-700);
  box-shadow: var(--shadow-md);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-img-side {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.about-img-side img {
  width: 300px;
  height: 250px;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.6;
}
.about-content { padding: 20px 0; }
.about-text {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.feature-card:hover {
  background: var(--teal-50);
  transform: translateX(4px);
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.feature-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.feature-card span:last-child {
  font-size: 0.88rem;
  color: var(--slate-500);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  padding: 100px 0;
  background: var(--slate-50);
}
.section-header { margin-bottom: 56px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img {
  overflow: hidden;
  height: 200px;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}
.menu-card-body {
  padding: 24px;
}
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.menu-card-body p {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.link-teal {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.link-teal:hover {
  gap: 8px;
  color: var(--teal-700);
}

/* ============================================
   DRINKS
   ============================================ */
.drinks {
  padding: 100px 0;
  background: var(--white);
}
.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.drinks-content { padding: 20px 0; }
.drinks-content p {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 28px;
}
.drinks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.drinks-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--slate-700);
}
.drinks-list li strong {
  color: var(--slate-900);
}
.drinks-visual {
  position: relative;
}
.drinks-img-stack {
  position: relative;
  height: 500px;
}
.drinks-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.drinks-img-1 img {
  width: 380px;
  height: 500px;
  object-fit: cover;
}
.drinks-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.drinks-img-2 img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--slate-50) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-900);
}
.review-author span {
  font-size: 0.8rem;
  color: var(--slate-400);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border-radius: var(--radius-md);
}
.contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin: 0;
}
.contact-item a {
  color: var(--teal-600);
}
.contact-item a:hover {
  color: var(--teal-800);
  text-decoration: underline;
}
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrap {
  position: sticky;
  top: 96px;
}
.contact-form-card {
  background: var(--slate-50);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.form-note {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-800);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success svg {
  margin: 0 auto 16px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal-700);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--slate-500);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 1.05rem;
  color: var(--teal-200);
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--slate-800);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.footer-links a {
  color: var(--slate-400);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--teal-400);
  text-decoration: none;
}
.footer-links p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--slate-500);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .drinks-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image { order: -1; }
  .hero-image-main img { height: 380px; }
  .hero-image-float { left: 16px; bottom: -20px; }
  .about-img-side { right: 16px; bottom: -16px; }
  .drinks-img-stack { height: 400px; }
  .drinks-img-1 img { width: 100%; height: 400px; }
  .drinks-img-2 img { width: 220px; height: 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 24px 32px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
  .main-nav .btn {
    margin-top: 12px;
    justify-content: center;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .hero { padding: 100px 0 60px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { position: static; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-image-float { display: none; }
  .about-img-side { display: none; }
  .drinks-img-stack { height: 300px; }
  .drinks-img-1 img { height: 300px; }
  .drinks-img-2 { display: none; }
  .contact-form-card { padding: 24px; }
}
