/* ========================================
   La Mentirosa Sport Bar — Stylesheet
   ======================================== */

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

:root {
  --terracotta-50: #fdf0eb;
  --terracotta-100: #fce4d8;
  --terracotta-200: #f8c4b0;
  --terracotta-300: #f3a080;
  --terracotta-400: #eb7a52;
  --terracotta-500: #D4845A;
  --terracotta-600: #C0603A;
  --terracotta-700: #a34e2e;
  --sand-50: #fefdf8;
  --sand-100: #fdf9ee;
  --sand-200: #faf3d8;
  --cream: #FDF8F0;
  --warm: #FAF5EE;
  --text-dark: #2D1F14;
  --text-mid: #5C4033;
  --text-light: #8B7355;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(45, 31, 20, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 31, 20, 0.08);
  --shadow-lg: 0 12px 40px rgba(45, 31, 20, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* --- Typography --- */
.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-100);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta-500);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212, 132, 90, 0.3);
}

.btn-primary:hover {
  background: var(--terracotta-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 132, 90, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 132, 90, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(253, 248, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-top: -2px;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta-500);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta-600);
}

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

.nav-cta {
  background: var(--terracotta-500);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}

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

.nav-cta:hover {
  background: var(--terracotta-600);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(45, 31, 20, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active .nav-overlay-inner {
  transform: translateX(0);
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  padding: 8px;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.overlay-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--terracotta-50);
  display: block;
}

.overlay-link:hover {
  color: var(--terracotta-600);
}

.overlay-cta {
  margin-top: 16px;
  border: none;
  background: var(--terracotta-500);
  color: var(--white) !important;
  text-align: center;
  border-radius: 50px;
  padding: 14px 24px !important;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

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

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(253, 248, 240, 0.7) 0%,
    rgba(253, 248, 240, 0.4) 40%,
    rgba(253, 248, 240, 0.5) 70%,
    rgba(253, 248, 240, 0.95) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  animation: fadeUp 0.8s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--terracotta-600);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--terracotta-100);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--terracotta-500);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--terracotta-500);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--terracotta-200);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* --- About --- */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-float img {
  width: 260px;
  height: 195px;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--terracotta-100), var(--terracotta-200));
  border-radius: var(--radius-md);
  z-index: -1;
}

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

.about-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-600);
}

.about-feature strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Experience --- */
.experience {
  padding: 120px 0;
  background: var(--cream);
}

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

.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.exp-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

.exp-card:hover .exp-card-img img {
  transform: scale(1.05);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 31, 20, 0.3), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.exp-card-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-500);
  box-shadow: var(--shadow-md);
}

.exp-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 20px 24px 0;
}

.exp-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 8px 24px 24px;
}

/* --- Menu --- */
.menu-section {
  padding: 120px 0;
  background: var(--white);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.menu-cat {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--terracotta-50);
  transition: var(--transition);
}

.menu-cat:hover {
  border-color: var(--terracotta-200);
  box-shadow: var(--shadow-md);
}

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.menu-cat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-600);
}

.menu-cat h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--terracotta-100);
}

.menu-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.menu-item-name {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.menu-item-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

.menu-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.menu-cta p {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* --- Events --- */
.events {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--terracotta-50) 0%, var(--sand-50) 100%);
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.events-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.event-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.event-date {
  min-width: 72px;
  text-align: center;
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-100);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
}

.event-day {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta-400);
}

.event-name {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--terracotta-600);
  margin-top: 2px;
}

.event-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.event-info span {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

.events-visual {
  position: relative;
}

.events-img-stack {
  position: relative;
}

.events-img-stack img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.events-img-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--terracotta-300), var(--terracotta-500));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

/* --- Visit --- */
.visit {
  padding: 120px 0;
  background: var(--white);
}

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

.visit-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-600);
}

.visit-detail strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

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

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

/* --- Contact --- */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--sand-50) 0%, var(--terracotta-50) 100%);
}

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

.contact-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--terracotta-100);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta-400);
  box-shadow: 0 0 0 3px rgba(212, 132, 90, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}

.form-success.active {
  display: flex;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--terracotta-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-500);
  margin-bottom: 8px;
}

.form-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  background: linear-gradient(135deg, var(--terracotta-400), var(--terracotta-600));
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav a:hover {
  color: var(--terracotta-300);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}

.footer-contact svg {
  min-width: 16px;
  margin-top: 3px;
  color: var(--terracotta-400);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--terracotta-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--terracotta-300);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid,
  .events-layout,
  .visit-grid,
  .contact-inner {
    gap: 40px;
  }

  .about-img-float {
    right: -12px;
    bottom: -20px;
  }

  .about-img-float img {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 900px) {
  .menu-categories {
    grid-template-columns: 1fr;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 80px;
    min-height: auto;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.375rem;
  }

  .about-grid,
  .events-layout,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-images {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-img-main img {
    height: 320px;
  }

  .about-img-float {
    right: -8px;
    bottom: -16px;
  }

  .about-img-float img {
    width: 160px;
    height: 120px;
  }

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

  .events-img-stack img {
    height: 350px;
  }

  .events-img-accent {
    width: 100px;
    height: 100px;
    bottom: -16px;
    left: -16px;
  }

  .visit-map {
    height: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

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

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .container {
    padding: 0 16px;
  }

  .about,
  .experience,
  .menu-section,
  .events,
  .visit,
  .contact {
    padding: 80px 0;
  }
}
