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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-300: #6ee7b7;
  --emerald-200: #a7f3d0;
  --emerald-100: #d1fae5;
  --emerald-50: #ecfdf5;

  --cream-50: #fefce8;
  --cream-100: #fef9c3;
  --cream-200: #fef08a;
  --cream-300: #fde68a;
  --cream-400: #fcd34d;
  --cream-500: #d97706;
  --cream-600: #b45309;

  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', system-ui, sans-serif;

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

  --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06), 0 1px 2px rgba(6, 78, 59, 0.04);
  --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.08), 0 2px 6px rgba(6, 78, 59, 0.04);
  --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12), 0 4px 12px rgba(6, 78, 59, 0.06);
  --shadow-xl: 0 24px 60px rgba(6, 78, 59, 0.16);

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

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

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

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

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

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

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--emerald-800);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 500;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 1rem;
}

/* ===== LEAF DECORATIONS ===== */
.leaf-bg {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
}
.leaf-bg--1 {
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--emerald-500) 0%, transparent 70%);
  border-radius: 50%;
}
.leaf-bg--2 {
  bottom: 20%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cream-400) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  padding: 1rem 0;
}
.header.scrolled {
  background: rgba(254, 252, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(6, 78, 59, 0.08);
  padding: 0.6rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--emerald-800);
  transition: transform var(--transition-fast);
}
.logo:hover {
  transform: scale(1.03);
}
.logo--light .logo__text {
  color: #fff;
}
.logo__icon {
  flex-shrink: 0;
}

/* ===== NAV ===== */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}
.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald-800);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav__link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 400;
  font-size: 0.938rem;
  color: var(--stone-600);
  transition: color var(--transition-fast), background var(--transition-fast);
  letter-spacing: 0.01em;
}
.nav__link:hover,
.nav__link.active {
  color: var(--emerald-700);
  background: var(--emerald-50);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      #064e3b 0%,
      #047857 20%,
      #059669 40%,
      #10b981 55%,
      #d97706 80%,
      #b45309 100%
    );
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(251, 191, 36, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(52, 211, 153, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(6, 78, 59, 0.2) 0%, transparent 70%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 78, 59, 0.15);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 8rem 1.5rem 4rem;
  animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.813rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-300);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.hero__sub {
  font-size: clamp(1.063rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__details {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero__detail svg {
  opacity: 0.7;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  letter-spacing: 0.01em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: #fff;
  color: var(--emerald-800);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn--primary:hover {
  background: var(--cream-50);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--emerald {
  background: var(--emerald-700);
  color: #fff;
  box-shadow: 0 4px 20px rgba(4, 120, 87, 0.3);
}
.btn--emerald:hover {
  background: var(--emerald-600);
  box-shadow: 0 8px 30px rgba(4, 120, 87, 0.4);
}
.btn--full {
  width: 100%;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  padding: 5rem 0;
  background: var(--cream-50);
  position: relative;
  z-index: 1;
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.highlight-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 78, 59, 0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.highlight-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border-radius: var(--radius-md);
  color: var(--emerald-700);
}
.highlight-card__title {
  font-family: var(--font-heading);
  font-size: 1.188rem;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 0.5rem;
}
.highlight-card__text {
  font-size: 0.938rem;
  color: var(--stone-500);
  line-height: 1.7;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header__eyebrow {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.875rem;
  background: var(--emerald-50);
  border-radius: var(--radius-full);
}
.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--stone-800);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-header__desc {
  font-size: 1.063rem;
  color: var(--stone-500);
  line-height: 1.75;
}

/* ===== MENU ===== */
.menu {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--emerald-50) 50%, var(--cream-50) 100%);
  position: relative;
  z-index: 1;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.menu-tab {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--stone-500);
  background: transparent;
  border: 1.5px solid var(--stone-200);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.menu-tab:hover {
  color: var(--emerald-700);
  border-color: var(--emerald-300);
  background: var(--emerald-50);
}
.menu-tab.active {
  color: #fff;
  background: var(--emerald-700);
  border-color: var(--emerald-700);
}
.menu-panels {
  position: relative;
  min-height: 200px;
}
.menu-panel {
  display: none;
  animation: panelFade 0.4s ease;
}
.menu-panel.active {
  display: block;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 78, 59, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.menu-item__info {
  flex: 1;
}
.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1.063rem;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 0.375rem;
}
.menu-item__desc {
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 1.65;
}
.menu-item__tag {
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 0.125rem;
}
.menu-item__tag--vegetarian {
  background: var(--emerald-100);
  color: var(--emerald-700);
}
.menu-item__tag--spicy {
  background: #fef2f2;
  color: #dc2626;
}
.menu-item__tag--gluten-free {
  background: #eff6ff;
  color: #2563eb;
}
.menu-item__tag--chef {
  background: var(--cream-200);
  color: var(--cream-600);
}
.menu-item__tag--dessert {
  background: #fdf4ff;
  color: #9333ea;
}
.menu-item__tag--beverage {
  background: #fff7ed;
  color: #ea580c;
}
.menu-item__tag--signature {
  background: var(--emerald-100);
  color: var(--emerald-700);
}
.menu-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid var(--emerald-100);
  font-size: 0.875rem;
  color: var(--stone-500);
}
.menu-note svg {
  color: var(--emerald-500);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: var(--cream-50);
  position: relative;
  z-index: 1;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  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: 400px;
  object-fit: cover;
}
.about__img-stack {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  display: flex;
  gap: 1rem;
}
.about__img-stack img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-50);
}
.about__content {
  max-width: 520px;
}
.about__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--stone-800);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.about__body {
  font-size: 1rem;
  color: var(--stone-500);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-value__num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-300);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.about-value__title {
  font-family: var(--font-heading);
  font-size: 1.063rem;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 0.25rem;
}
.about-value__text {
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 1.65;
}

/* ===== VISIT ===== */
.visit {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--emerald-50) 0%, var(--cream-50) 100%);
  position: relative;
  z-index: 1;
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.visit__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--stone-800);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.visit__desc {
  font-size: 1.063rem;
  color: var(--stone-500);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.visit__details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-detail__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border-radius: var(--radius-md);
  color: var(--emerald-700);
  flex-shrink: 0;
}
.visit-detail__label {
  font-family: var(--font-heading);
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone-400);
  margin-bottom: 0.25rem;
}
.visit-detail__value {
  font-size: 1rem;
  color: var(--stone-700);
  line-height: 1.6;
}
.visit-detail__value a {
  color: var(--emerald-700);
  transition: color var(--transition-fast);
}
.visit-detail__value a:hover {
  color: var(--emerald-500);
}
.visit__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  border: 4px solid #fff;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--cream-50);
  position: relative;
  z-index: 1;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--stone-800);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.contact__desc {
  font-size: 1.063rem;
  color: var(--stone-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact__quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__quick-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 78, 59, 0.05);
  font-size: 0.938rem;
  color: var(--stone-600);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.contact__quick-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--emerald-700);
}
.contact__quick-item svg {
  color: var(--emerald-500);
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-600);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.938rem;
  color: var(--stone-700);
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-input::placeholder {
  color: var(--stone-400);
}
.form-input:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  background: var(--emerald-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--emerald-200);
  text-align: center;
  margin-top: 1rem;
  animation: panelFade 0.4s ease;
}
.form-success svg {
  color: var(--emerald-500);
}
.form-success p {
  font-size: 0.938rem;
  color: var(--emerald-800);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--emerald-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__tagline {
  font-size: 0.938rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 300px;
}
.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.938rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__links ul,
.footer__hours ul,
.footer__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__links a,
.footer__hours a,
.footer__contact a {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__links a:hover,
.footer__contact a:hover {
  color: var(--emerald-400);
  padding-left: 0.25rem;
}
.hours__day {
  display: block;
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.6);
}
.hours__time {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.125rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}
.footer__bottom a:hover {
  color: var(--emerald-400);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid,
  .visit__grid,
  .contact__inner {
    gap: 2.5rem;
  }
  .about__img-stack {
    right: -1rem;
    bottom: -1.5rem;
  }
  .about__img-stack img {
    width: 130px;
    height: 96px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(254, 252, 232, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-base);
    z-index: 100;
  }
  .nav__menu.open {
    right: 0;
  }
  .nav__link {
    font-size: 1.063rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }
  .hero__content {
    padding: 7rem 1.5rem 3rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__details {
    flex-direction: column;
    gap: 0.75rem;
  }
  .highlights__grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__images {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .about__img-stack {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    margin-top: 1rem;
  }
  .about__img-stack img {
    width: 140px;
    height: 104px;
  }
  .about__content {
    max-width: 100%;
  }
  .visit__grid {
    grid-template-columns: 1fr;
  }
  .visit__map {
    min-height: 300px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.125rem;
  }
  .hero__headline {
    font-size: 1.75rem;
  }
  .menu-tabs {
    gap: 0.375rem;
  }
  .menu-tab {
    padding: 0.5rem 1rem;
    font-size: 0.813rem;
  }
  .menu-item {
    flex-direction: column;
    gap: 0.625rem;
  }
  .menu-item__tag {
    align-self: flex-start;
  }
}
