/**
 * Nuova Santa Lucia - Complete Vanilla CSS Design System
 */

:root {
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Light Theme (Default) */
  --bg-primary: #f9f7f2;
  --bg-secondary: #ebe5d9;
  --bg-dark: #0d0d0d;
  --text-primary: #1a1a1a;
  --text-muted: rgba(26, 26, 26, 0.7);
  --accent-color: #a64b2a;
  --accent-hover: #863b20;
  --gold-color: #c5a059;
  --border-color: rgba(0, 0, 0, 0.15);
  --header-bg: rgba(249, 247, 242, 0.95);
  --header-text: #1a1a1a;
  --header-border: rgba(0, 0, 0, 0.1);
  --btn-primary-bg: #a64b2a;
  --btn-primary-text: #ffffff;
  --card-bg: #ebe5d9;
  --reviews-bg: #191714;
  --reviews-text: #f4ead7;
  --book-bg: #eee4cf;
  --book-text: #221d18;
}

html.dark {
  /* Dark Theme */
  --bg-primary: #0d0d0d;
  --bg-secondary: #151411;
  --text-primary: #e2d1b3;
  --text-muted: rgba(226, 209, 179, 0.7);
  --accent-color: #c5a059;
  --accent-hover: #dfb96f;
  --border-color: rgba(255, 255, 255, 0.15);
  --header-bg: rgba(13, 13, 13, 0.95);
  --header-text: #e2d1b3;
  --header-border: rgba(255, 255, 255, 0.1);
  --btn-primary-bg: #c5a059;
  --btn-primary-text: #000000;
  --card-bg: #151411;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

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

/* Typography Utility Classes */
.font-serif {
  font-family: var(--font-serif);
}

.eyebrow {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .eyebrow {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

.title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
}

/* Buttons */
.outline-btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border-color);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: all 0.2s ease;
}

.outline-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

html.dark .outline-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.round-btn {
  display: grid;
  height: 3rem;
  width: 3rem;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.round-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0 2rem;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Logo Component */
.logo-circle {
  height: 5.5rem;
  width: 5.5rem;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  background-color: #000000;
  display: block;
}

@media (min-width: 768px) {
  .logo-circle {
    height: 6.5rem;
    width: 6.5rem;
  }
}

.logo-circle.compact {
  height: 3.25rem;
  width: 3.25rem;
}

@media (min-width: 768px) {
  .logo-circle.compact {
    height: 4rem;
    width: 4rem;
  }
}

html.dark .logo-circle {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

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

/* Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
}

header.site-header.scrolled,
header.site-header.menu-open {
  background-color: var(--header-bg);
  color: var(--header-text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
}

.header-container {
  height: 5rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-container {
    height: 6rem;
    padding: 0 4vw;
  }
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

@media (min-width: 1280px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop button:hover {
  opacity: 0.6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 1rem;
  }
}

.lang-select {
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  text-transform: uppercase;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.lang-select option {
  color: #000000;
  background: #ffffff;
}

.theme-toggle-btn {
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
}

.header-book-btn {
  display: none;
  padding: 0 1.25rem;
  height: 3rem;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

@media (min-width: 768px) {
  .header-book-btn {
    display: block;
  }
}

.menu-burger-btn {
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
}

@media (min-width: 1280px) {
  .menu-burger-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  min-height: calc(100vh - 5rem);
  padding: 3rem 1.5rem;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links button {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  text-align: left;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: baseline;
}

.mobile-nav-links sup {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  margin-right: 1rem;
  opacity: 0.6;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100svh;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: hero 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.25rem;
  padding-bottom: 11vh;
  animation: rise 1.2s ease-out forwards;
}

.hero-title {
  font-family: var(--font-serif);
  line-height: 0.78;
  letter-spacing: -0.04em;
  font-size: clamp(3.5rem, 9.5vw, 8.5rem);
  font-weight: 400;
}

.hero-title i {
  font-style: italic;
}

.hero-tagline {
  margin-top: 2rem;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-btn-outline {
  height: 3.5rem;
  padding: 0 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

.hero-btn-filled {
  height: 3.5rem;
  padding: 0 2rem;
  background-color: #a64b2a;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-filled:hover {
  background-color: #863b20;
}

/* Animations */
@keyframes hero {
  0% { transform: scale(1.03) translateY(0); }
  100% { transform: scale(1.09) translateY(-1.5%); }
}

@keyframes rise {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Story / Ristorante Section */
.story-section {
  padding: 6rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .story-section {
    padding: 10rem 7vw;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
}

.story-img-container {
  position: relative;
}

@media (min-width: 768px) {
  .story-img-container {
    grid-column: span 7;
  }
}

.story-img-container img {
  width: 100%;
  height: 62vh;
  object-fit: cover;
}

@media (min-width: 768px) {
  .story-img-container img {
    height: 78vh;
  }
}

.story-badge {
  position: absolute;
  bottom: -1.25rem;
  right: 1.25rem;
  background-color: var(--accent-color);
  color: #ffffff;
  width: 7rem;
  height: 7rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}

html.dark .story-badge {
  color: #000000;
}

@media (min-width: 768px) {
  .story-badge {
    right: -2rem;
  }
}

.story-text-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .story-text-container {
    grid-column: span 5;
    padding-left: 1.5rem;
  }
}

.story-divider {
  width: 1px;
  height: 5rem;
  background-color: var(--border-color);
  margin: 2rem 0;
}

.story-body {
  font-size: 1rem;
  line-height: 2;
  opacity: 0.75;
  max-width: 28rem;
}

.story-btn {
  margin-top: 2rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.5rem;
  align-self: flex-start;
}

/* Signatures Section */
.signatures-section {
  background-color: var(--bg-secondary);
  padding: 6rem 0;
  transition: background-color 0.4s ease;
}

@media (min-width: 768px) {
  .signatures-section {
    padding: 9rem 0;
  }
}

.signatures-header {
  padding: 0 1.25rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .signatures-header {
    padding: 0 7vw;
  }
}

.signature-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .signature-item {
    grid-template-columns: 1fr 1fr;
  }
  .signature-item.reverse > :first-child {
    order: 2;
  }
}

.signature-item img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
}

@media (min-width: 768px) {
  .signature-item img {
    height: 75vh;
  }
}

.signature-content {
  padding: 2rem 1.25rem;
}

@media (min-width: 768px) {
  .signature-content {
    padding: 2rem 8vw;
  }
}

.signature-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  margin-top: 1.25rem;
  line-height: 1;
}

.signature-desc {
  margin-top: 1.5rem;
  opacity: 0.65;
  line-height: 1.75;
}

.signature-price {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

/* Menu Intro Section */
.menu-section {
  padding: 7rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .menu-section {
    padding: 11rem 7vw;
  }
}

.open-menu-btn {
  margin-top: 2.5rem;
  height: 3.5rem;
  padding: 0 2.5rem;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

html.dark .open-menu-btn {
  background-color: #c5a059;
  color: #000000;
}

.open-menu-btn:hover {
  opacity: 0.85;
}

/* Menu Book Modal */
.menu-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem;
  display: none;
  place-items: center;
}

.menu-modal-overlay.active {
  display: grid;
}

.menu-modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  z-index: 10;
}

.menu-modal-fs-btn {
  position: absolute;
  top: 1rem;
  right: 4rem;
  color: #ffffff;
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  z-index: 10;
}

.menu-book-container {
  position: relative;
  width: 100%;
  max-width: 48rem;
  min-height: 72vh;
  background-color: var(--book-bg);
  color: var(--book-text);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: left center;
}

@media (min-width: 768px) {
  .menu-book-container {
    min-height: 78vh;
    padding: 4rem;
  }
}

.menu-book-container.flipping {
  transform: perspective(1200px) rotateY(-12deg);
  opacity: 0.7;
}

.menu-cover-page {
  margin: auto;
  text-align: center;
}

.menu-cover-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 5rem);
  margin-top: 4rem;
}

.menu-cover-sub {
  margin-top: 4rem;
  font-size: 12px;
  letter-spacing: 0.3em;
  opacity: 0.7;
}

.menu-content-page {
  text-align: left;
}

.menu-page-header {
  font-size: 10px;
  letter-spacing: 0.28em;
  opacity: 0.6;
}

.menu-category-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.menu-item-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 1.25rem;
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .menu-item-name {
    font-size: 1.5rem;
  }
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}

.menu-item-allergens {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  opacity: 0.5;
}

.menu-book-nav {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-nav-btn {
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
}

.menu-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .gallery-section {
    padding: 10rem 0;
  }
}

.gallery-header {
  padding: 0 1.25rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .gallery-header {
    padding: 0 7vw;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 0.5rem;
  }
}

.gallery-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 768px) {
  .gallery-card.col-7 {
    grid-column: span 7;
  }
  .gallery-card.col-5 {
    grid-column: span 5;
  }
}

.gallery-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.gallery-card.h-tall img {
  height: 52vh;
}

.gallery-card.h-short img {
  height: 38vh;
}

@media (min-width: 768px) {
  .gallery-card.h-tall img,
  .gallery-card.h-short img {
    height: 68vh;
  }
}

.gallery-card:hover img {
  transform: scale(1.025);
}

/* Gallery Lightbox */
.gallery-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 1.25rem;
  display: none;
  place-items: center;
}

.gallery-lightbox-overlay.active {
  display: grid;
}

.lightbox-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  z-index: 10;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  max-width: 72rem;
  max-height: 88vh;
  object-fit: contain;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--reviews-bg);
  color: var(--reviews-text);
  padding: 7rem 1.25rem;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .reviews-section {
    padding: 11rem 12vw;
  }
}

.reviews-eyebrow {
  color: var(--gold-color);
}

.reviews-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-top: 1.25rem;
}

.reviews-quote-box {
  margin-top: 4rem;
  max-width: 64rem;
}

.reviews-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold-color);
}

.reviews-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-top: 1.75rem;
}

.reviews-author {
  margin-top: 2rem;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.reviews-controls {
  margin-top: 3rem;
  display: flex;
  gap: 0.75rem;
}

.reviews-controls .round-btn {
  border-color: rgba(244, 234, 215, 0.3);
  color: var(--reviews-text);
}

.reviews-controls .round-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Contacts & Map Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

.map-container {
  min-height: 62vh;
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 62vh;
  border: 0;
}

.contact-content {
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-content {
    padding: 2rem 8vw;
  }
}

.contact-details {
  margin-top: 2rem;
  opacity: 0.7;
  display: flex;
  gap: 0.75rem;
  line-height: 1.5;
}

.contact-phone-link {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.contact-phone-link:hover {
  opacity: 0.6;
}

.contact-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-hours-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Footer */
footer.site-footer {
  background-color: #0d0d0d;
  color: #e2d1b3;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  footer.site-footer {
    padding: 6rem 7vw;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.6;
  line-height: 1.5;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.footer-link {
  display: block;
  margin-top: 1.25rem;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.6;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer-social-link:hover {
  opacity: 0.6;
}

.footer-book-btn {
  height: 3.5rem;
  border: 1px solid var(--gold-color);
  color: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: all 0.2s ease;
  width: 100%;
}

.footer-book-btn:hover {
  background-color: var(--gold-color);
  color: #000000;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.65;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.lang-btn {
  font-size: inherit;
  text-transform: uppercase;
  letter-spacing: inherit;
  color: inherit;
}

.lang-btn.active {
  color: var(--gold-color);
  font-weight: 700;
}

/* Reservation Modal */
.reservation-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-y: auto;
  display: none;
}

.reservation-modal-overlay.active {
  display: block;
}

.reservation-close-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  z-index: 10;
}

.reservation-container {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem;
}

.reservation-inner {
  width: 100%;
  max-width: 56rem;
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.form-input {
  min-height: 3.5rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background-color: transparent;
  color: inherit;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-bottom-color: var(--accent-color);
}

textarea.form-input {
  min-height: 7rem;
  resize: none;
}

.reservation-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .reservation-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reservation-form-grid .col-span-2 {
    grid-column: span 2;
  }
}

.reservation-submit-btn {
  height: 4rem;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.reservation-submit-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.reservation-success-box {
  text-align: center;
}

.reservation-success-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
}

.reservation-success-body {
  margin-top: 1.5rem;
  opacity: 0.7;
}

/* Legal Pages (Privacy / Cookie) */
.legal-page-main {
  min-height: 100vh;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  padding: 3rem 1.25rem;
}

@media (min-width: 768px) {
  .legal-page-main {
    padding: 3rem 14vw;
  }
}

.legal-article {
  max-width: 48rem;
  padding: 7rem 0;
}

.legal-body {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  line-height: 2;
  opacity: 0.7;
}

.legal-contact {
  margin-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.6;
}

.legal-contact a {
  text-decoration: underline;
}

/* Honeypot anti-spam */
.hidden-field {
  display: none !important;
}
