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

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #F5E6D3;
  --sand-light: #FBF5EE;
  --sand-dark: #E8D5BF;
  --cream: #FDF8F2;
  --charcoal: #1E1E1E;
  --charcoal-light: #3A3A3A;
  --warm-gray: #6B6560;
  --warm-gray-light: #9A9490;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(30, 30, 30, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 30, 30, 0.1);
  --shadow-lg: 0 8px 32px rgba(30, 30, 30, 0.12);
  --shadow-xl: 0 16px 48px rgba(30, 30, 30, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

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

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(192, 96, 58, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192, 96, 58, 0.35);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192, 96, 58, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--sand-dark);
}

.btn--ghost-dark:hover {
  background: var(--sand);
  border-color: var(--sand-dark);
  transform: translateY(-2px);
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.nav.scrolled .nav__logo-text {
  color: var(--charcoal);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
}

.nav__logo-text {
  color: var(--white);
  transition: var(--transition);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav__link {
  color: var(--charcoal-light);
}

.nav.scrolled .nav__link:hover {
  color: var(--terracotta);
  background: rgba(192, 96, 58, 0.08);
}

.nav__link--cta {
  background: var(--terracotta);
  color: var(--white) !important;
  font-weight: 600;
  margin-left: 4px;
}

.nav__link--cta:hover {
  background: var(--terracotta-dark);
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav__toggle-bar {
  background: var(--charcoal);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #C0603A 0%, #E8945E 30%, #D4845E 50%, #A04E2E 80%, #7A3A20 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(245, 230, 211, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(192, 96, 58, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212, 132, 94, 0.3) 0%, transparent 70%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero__accent {
  display: block;
  font-style: italic;
  font-weight: 500;
  opacity: 0.9;
  font-size: 0.85em;
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.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;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

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

.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-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.about__img-stack {
  position: absolute;
  bottom: -32px;
  right: -24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__img-stack img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.about__content {
  padding: 16px 0;
}

.about__content p {
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

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

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

.highlight__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.highlight span {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

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

.menu__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.menu__subtitle {
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.menu__categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu__cat {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--warm-gray);
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  transition: var(--transition);
}

.menu__cat:hover {
  color: var(--terracotta);
  border-color: var(--terracotta-light);
  background: rgba(192, 96, 58, 0.05);
}

.menu__cat.active {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

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

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

.menu-card__img {
  height: 200px;
  overflow: hidden;
}

.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: 20px 24px 24px;
}

.menu-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.menu-card__desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(192, 96, 58, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

.menu__note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  font-style: italic;
}

/* ===== EXPERIENCE ===== */
.experience {
  padding: 100px 0;
  background: var(--cream);
}

.experience__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

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

.exp-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.exp-card__visual {
  height: 220px;
  overflow: hidden;
}

.exp-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.exp-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exp-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
}

.exp-card__content p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: var(--sand);
}

.visit__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.visit__left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit__text {
  color: var(--warm-gray);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.visit__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.visit__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(192, 96, 58, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit__detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.visit__detail span,
.visit__detail a {
  font-size: 0.92rem;
  color: var(--warm-gray);
}

.visit__detail a:hover {
  color: var(--terracotta);
}

.visit__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.visit__map {
  min-height: 400px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

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

.contact__text {
  color: var(--warm-gray);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact__method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.contact__method-icon {
  width: 44px;
  height: 44px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__method strong {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact__method span {
  font-size: 0.92rem;
  color: var(--warm-gray);
}

/* Form */
.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form__input,
.form__textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: var(--transition);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--warm-gray-light);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(22, 101, 52, 0.06);
  border: 1px solid rgba(22, 101, 52, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #166534;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--terracotta-light);
  transform: translateX(4px);
}

.footer__hours p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer__hours-note {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 8px !important;
}

.footer__contact p {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__contact a:hover {
  color: var(--terracotta-light);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link {
    color: rgba(255, 255, 255, 0.8) !important;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav__link:hover,
  .nav__link--cta:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--white) !important;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .hero__content {
    padding: 100px 24px 80px;
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-divider {
    display: none;
  }

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

  .about__img-stack {
    position: relative;
    bottom: auto;
    right: auto;
    flex-direction: row;
    margin-top: 16px;
  }

  .about__img-stack img {
    border-width: 3px;
  }

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

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

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

  .visit__left {
    padding: 40px 28px;
  }

  .visit__map {
    min-height: 280px;
  }

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

  .contact__form {
    padding: 28px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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

  .menu__categories {
    gap: 6px;
  }

  .menu__cat {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .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;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .menu-card,
  .exp-card {
    transform: none !important;
  }
}
