/* ============================================================
   OSTERIA VALDORO — Main Stylesheet
   Warm, elegant, premium restaurant aesthetic
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Warm Color Palette */
  --cream: #F8F3EC;
  --cream-dark: #EFE7D8;
  --beige: #DDD0BA;
  --beige-dark: #C4B49A;
  --brown-light: #8B6F52;
  --brown: #5C3D2E;
  --brown-dark: #2C1810;
  --olive: #6B7C4A;
  --olive-light: #8A9B62;
  --red-muted: #8B3A3A;
  --red-warm: #A04545;
  --gold: #C9A84C;
  --gold-light: #E2C97E;

  /* Text */
  --text-primary: #1E1208;
  --text-secondary: #5C4A36;
  --text-muted: #8B7355;
  --text-light: #F8F3EC;
  --text-light-muted: #D4C4A8;

  /* Backgrounds */
  --bg-page: #F8F3EC;
  --bg-section-alt: #EFE7D8;
  --bg-dark: #1E1208;
  --bg-card: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.16);
  --shadow-xl: 0 16px 60px rgba(44, 24, 16, 0.20);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.18s;
  --dur-med: 0.32s;
  --dur-slow: 0.5s;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--brown);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.light .section-eyebrow { color: var(--gold-light); }
.section-header.light .section-title { color: var(--cream); }
.section-header.light .section-title em { color: var(--gold-light); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }
.section-eyebrow.light { color: var(--gold-light); }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur-med) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.btn-primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 243, 236, 0.6);
}

.btn-outline:hover {
  background: rgba(248, 243, 236, 0.12);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}

.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}

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

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--dur-med) var(--ease), padding var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 252, 247, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.navbar.scrolled .nav-logo { color: var(--brown-dark); }

.logo-mark {
  color: var(--gold);
  font-size: 0.8em;
  line-height: 1;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.navbar.scrolled .nav-link { color: var(--text-secondary); }

.nav-link:hover {
  color: var(--cream);
  background: rgba(248, 243, 236, 0.15);
}

.navbar.scrolled .nav-link:hover {
  color: var(--brown);
  background: var(--cream-dark);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--brown);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  transition: all var(--dur-med) var(--ease-out);
}

.nav-cta:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
}

.navbar.scrolled .hamburger span { background: var(--brown-dark); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 4, 0.45) 0%,
    rgba(20, 10, 4, 0.25) 40%,
    rgba(20, 10, 4, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 140px 24px 60px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}

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

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(248, 243, 236, 0.8);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(20, 10, 4, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(248, 243, 236, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  gap: 0;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(248, 243, 236, 0.85);
  padding: 6px 20px;
}

.info-icon { font-size: 1rem; }

.info-phone {
  color: var(--gold-light);
  font-weight: 700;
  transition: color var(--dur-fast);
}

.info-phone:hover { color: var(--cream); }

.hero-info-divider {
  width: 1px;
  height: 28px;
  background: rgba(248, 243, 236, 0.2);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(248, 243, 236, 0.6);
  font-size: 1.4rem;
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--dur-fast);
}

.hero-scroll:hover { color: var(--cream); }

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

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

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  border: 5px solid var(--bg-page);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.about-img-secondary:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 2px;
}

.about-content { padding-left: 8px; }

.about-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin: 2.5rem 0;
  padding: 24px 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}

.stat { text-align: center; flex: 1; }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- MENU ---------- */
.menu {
  padding: 100px 0;
  background: var(--bg-section-alt);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-tab {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 2px solid var(--beige);
  background: transparent;
  color: var(--text-muted);
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease);
}

.menu-tab:hover {
  border-color: var(--brown-light);
  color: var(--brown);
}

.menu-tab.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

.menu-panels { min-height: 500px; }

.menu-panel {
  display: none;
  animation: fadeIn var(--dur-med) var(--ease-out);
}

.menu-panel.active { display: block; }

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}

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

.menu-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body {
  padding: 20px;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 8px;
}

.menu-card-top h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.menu-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(107, 124, 74, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(107, 124, 74, 0.25);
}

.menu-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
}

.menu-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--brown-dark);
}

.testimonial-track {
  display: flex;
  overflow: hidden;
  position: relative;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 243, 236, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 2.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(248, 243, 236, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease);
  padding: 0;
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 100px 0;
  background: var(--bg-page);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

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

.gallery-item { aspect-ratio: 4/3; }

.gallery-item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

/* ---------- RESERVE ---------- */
.reserve {
  padding: 100px 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}

.reserve::before {
  content: '';
  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");
}

.reserve-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.reserve-content { padding-top: 8px; }

.reserve-desc {
  color: rgba(248, 243, 236, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.reserve-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reserve-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.reserve-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }

.reserve-info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reserve-info-item strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.reserve-info-item span {
  font-size: 0.9rem;
  color: rgba(248, 243, 236, 0.75);
  line-height: 1.6;
}

.reserve-info-item a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  transition: color var(--dur-fast);
}

.reserve-info-item a:hover { color: var(--gold-light); }

/* FORM */
.reserve-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.reserve-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

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

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

.form-group--full { grid-column: span 2; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-page);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  width: 100%;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(92, 61, 46, 0.12);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

.form-success {
  text-align: center;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(107, 124, 74, 0.35);
  animation: popIn 0.4s var(--ease-out);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
}

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

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brown-dark);
  padding: 72px 0 32px;
  color: var(--text-light-muted);
}

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

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: var(--cream); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  transition: all var(--dur-med) var(--ease);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  transition: color var(--dur-fast);
}

.footer-col ul li a:hover { color: var(--cream); }

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  gap: 12px;
}

.hours-list li.closed span { color: rgba(255, 255, 255, 0.35); }

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

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

.contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

.contact-list a {
  color: var(--text-light-muted);
  transition: color var(--dur-fast);
}

.contact-list a:hover { color: var(--cream); }

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

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--dur-fast);
}

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

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 540px; margin: 0 auto; }
  .about-img-secondary { right: 0; }
  .reserve-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

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

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(30, 18, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
    color: var(--cream);
  }

  .nav-cta { font-size: 1rem; padding: 14px 32px; }

  .hamburger { display: flex; z-index: 1000; position: relative; }

  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-info-strip { flex-direction: column; gap: 8px; padding: 16px; }
  .hero-info-divider { display: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; }
  .gallery-item--tall { grid-row: auto; }

  .menu-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .testimonial-card { padding: 36px 28px; }

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

  .form-row { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }

  .reserve-form-wrap { padding: 28px 20px; }

  .about-img-secondary { right: 0; bottom: -20px; }
}

@media (max-width: 500px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; aspect-ratio: 4/3; }
  .about-stats { gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
