/* The Bistro Theme - Main Stylesheet */

/* ============================================================
   TABLE OF CONTENTS
   1. CSS Variables & Reset
   2. Base & Typography
   3. Utilities
   4. Navigation
   5. Hero
   6. Story
   7. Menu
   8. Gallery
   9. Reservations
   10. Footer
   11. Animations
   12. Responsive
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */

:root {
  --bg:           #0d0d0d;
  --surface-1:    #141414;
  --surface-2:    #1c1c1c;
  --gold:         #c9a96e;
  --gold-light:   #e8c99a;
  --gold-muted:   rgba(201,169,110,0.15);
  --gold-border:  rgba(201,169,110,0.12);
  --gold-border-hover: rgba(201,169,110,0.35);
  --text:         #f5f0e8;
  --muted:        #8a8070;
  --dim:          #5a5040;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --transition:   0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad:  100px 5%;
  --radius:       2px;
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: var(--font-body);
}

/* Screen reader text */
.skip-link.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link.screen-reader-text:focus {
  left: 6px;
  top: 6px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  z-index: 9999;
  outline: 2px solid var(--gold-light);
}

/* ============================================================
   2. BASE & TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

p {
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   3. UTILITIES
   ============================================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn-gold:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.28);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background-color: var(--gold-muted);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.12);
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* Fade-in animation (Intersection Observer) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   4. NAVIGATION
   ============================================================ */

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

#main-nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 5%;
  box-shadow: 0 1px 0 rgba(201,169,110,0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245,240,232,0.8);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile-overlay.open {
  display: flex;
}
.nav-mobile-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  transition: color 0.25s ease;
}
.nav-mobile-overlay a:hover {
  color: var(--gold);
}

/* ============================================================
   5. HERO
   ============================================================ */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.9s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out) 0.5s forwards;
}

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

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  margin-bottom: 2.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245,240,232,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out) 1.3s forwards;
}
.hero-scroll-indicator .scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(201,169,110,0.5);
  border-bottom: 1px solid rgba(201,169,110,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ============================================================
   6. STORY
   ============================================================ */

#story {
  padding: var(--section-pad);
  background-color: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.story-text .section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
}

.story-text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.story-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.stat-badge:hover {
  background: rgba(201,169,110,0.22);
  border-color: rgba(201,169,110,0.3);
}
.stat-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.story-image-wrap {
  position: relative;
}
.story-image-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  z-index: 0;
  transition: var(--transition);
}
.story-image-wrap:hover::before {
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border-color: rgba(201,169,110,0.4);
}
.story-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ============================================================
   7. MENU
   ============================================================ */

#menu {
  padding: var(--section-pad);
  background-color: var(--surface-1);
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--gold-border);
  flex-wrap: wrap;
}

.menu-tab {
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.menu-tab:hover {
  color: var(--gold-light);
}
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-panels {
  max-width: 800px;
  margin: 0 auto;
}

.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
  animation: panelFadeIn 0.45s var(--ease-out) forwards;
}

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

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 2rem;
  row-gap: 4px;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition);
}
.menu-item:first-child {
  border-top: 1px solid var(--gold-border);
}
.menu-item:hover {
  border-bottom-color: rgba(201,169,110,0.25);
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  grid-column: 1;
  grid-row: 1;
  line-height: 1.3;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--muted);
  grid-column: 1;
  grid-row: 2;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  white-space: nowrap;
}

/* ============================================================
   8. GALLERY
   ============================================================ */

#gallery {
  padding: var(--section-pad);
  background-color: var(--bg);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
}
.gallery-item:nth-child(1) {
  grid-row: 1 / 3;
}
.gallery-item:nth-child(4) {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease-out);
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(201,169,110,0.18);
}
.gallery-item-overlay svg {
  width: 36px;
  height: 36px;
  stroke: rgba(255,255,255,0);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  transform: scale(0.7);
}
.gallery-item:hover .gallery-item-overlay svg {
  stroke: rgba(255,255,255,0.9);
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,13,13,0.6);
  border: 1px solid var(--gold-border);
  color: var(--text);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--gold);
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ============================================================
   9. RESERVATIONS
   ============================================================ */

#reservations {
  padding: var(--section-pad);
  background-color: var(--surface-1);
}

.reservations-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.reservations-form-col .section-label,
.reservations-form-col .section-title {
  text-align: left;
}

.reservation-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--surface-2);
  border: 1px solid rgba(90,80,64,0.5);
  color: var(--text);
  padding: 12px 16px;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8070' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background-color: var(--surface-2);
  color: var(--text);
}

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

.form-submit-btn {
  width: 100%;
  padding: 15px 32px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}
.form-success.show { display: block; }
.form-success p { color: var(--gold-light); }

/* Find Us column */
.find-us-col {
  padding-top: 0.5rem;
}

.find-us-col .section-label,
.find-us-col .section-title {
  text-align: left;
}

.contact-details {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-text span,
.contact-item-text a {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-item-text a:hover {
  color: var(--gold-light);
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
}
.hours-grid span { font-size: 0.9rem; color: var(--muted); }
.hours-grid span:nth-child(odd) { color: var(--text); font-weight: 500; }

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}
.map-embed iframe {
  display: block;
}

/* ============================================================
   10. FOOTER
   ============================================================ */

#footer {
  background-color: var(--surface-1);
  border-top: 1px solid var(--gold-border);
  padding: 80px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--gold-border);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand .footer-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 240px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--muted);
}
.social-link:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--gold);
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.25s ease;
}
.footer-links a:hover {
  color: var(--gold-light);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(90,80,64,0.2);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row .day { color: var(--muted); }
.footer-hours-row .time { color: var(--text); font-weight: 500; }

.footer-newsletter p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.newsletter-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}
.newsletter-form input {
  flex: 1;
  background: var(--surface-2);
  border: none;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.875rem;
  outline: none;
  min-width: 0;
}
.newsletter-form input::placeholder { color: var(--dim); }
.newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  border: none;
  color: var(--bg);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--dim);
}
.footer-copyright a {
  color: var(--muted);
  transition: color 0.25s ease;
}
.footer-copyright a:hover {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--dim);
  font-style: italic;
}

/* ============================================================
   11. ANIMATIONS
   ============================================================ */

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

/* ============================================================
   12. RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .story-grid {
    gap: 4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 80px 5%;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-image-wrap {
    order: -1;
  }
  .story-image-wrap img {
    height: 400px;
  }
  .reservations-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }
  .gallery-item:nth-child(1) {
    grid-row: auto;
  }
  .gallery-item:nth-child(4) {
    grid-row: auto;
  }
  .lightbox-prev { left: -50px; }
  .lightbox-next { right: -50px; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  #main-nav {
    padding: 18px 5%;
  }
  #main-nav.scrolled {
    padding: 14px 5%;
  }
  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery-item {
    height: 260px;
  }
  .lightbox-prev { left: -44px; }
  .lightbox-next { right: -44px; }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 60px 4%;
  }
  .menu-tab {
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  .story-stats {
    flex-direction: column;
  }
  .stat-badge {
    width: fit-content;
  }
  .lightbox-inner {
    max-width: 94vw;
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: -60px;
    transform: none;
  }
  .lightbox-prev { left: calc(50% - 52px); }
  .lightbox-next { right: calc(50% - 52px); }
}
