/* Reset & Variabili di Design */
:root {
  --bg: oklch(12% 0.015 35);        /* Carbone caldo e scuro */
  --surface: oklch(16% 0.02 35);    /* Superficie card scura */
  --surface-hover: oklch(20% 0.025 35);
  --fg: oklch(95% 0.005 35);       /* Bianco sporco caldo */
  --muted: oklch(75% 0.015 35);    /* Testo secondario dorato-grigio */
  --border: oklch(25% 0.02 35);    /* Bordi sottili caldi */
  --accent: oklch(76% 0.14 75);    /* Oro/Ambra accento */
  --accent-rgb: 212, 163, 89;
  --accent-hover: oklch(82% 0.16 75);
  --success: oklch(72% 0.11 140);
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--bg);
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}

p {
  font-weight: 300;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  transition: var(--transition);
}

header.scrolled .nav-wrapper {
  padding: 12px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.95) sepia(0.1);
  transition: var(--transition);
}

header.scrolled .logo-img {
  height: 42px;
}

.logo-container:hover .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(212, 163, 89, 0.5));
  transform: scale(1.02);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin: 0 auto 20px;
  display: block;
  filter: brightness(0) invert(0.95) sepia(0.1);
  transition: var(--transition);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-book {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-book:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 15px rgba(212, 163, 89, 0.3);
}

/* Mobile Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--fg);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('../images/DSC_1331-Migliorato-NR.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 3.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.hero.opened .hero-bg {
  transform: scale(1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(10, 6, 8, 0.95) 30%, rgba(10, 6, 8, 0.45) 70%, rgba(10, 6, 8, 0.2) 100%),
    linear-gradient(to bottom, transparent 65%, var(--bg) 100%);
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-bg::after {
    background: 
      linear-gradient(to bottom, rgba(10, 6, 8, 0.85) 0%, rgba(10, 6, 8, 0.6) 50%, var(--bg) 100%);
  }
}

/* Curtains Opening System (Wooden Doors) */
.hero-curtains {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  overflow: hidden;
  perspective: 1800px;
  background: transparent;
}

.hero-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.2%;
  height: 100%;
  background: 
    radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(90deg, 
      #1e100a 0%, #29160e 15%, #1f110a 28%, #2e1910 40%, 
      #22130c 55%, #351e13 70%, #20110a 82%, #2c180f 92%, #180b06 100%);
  transition: transform 2.5s cubic-bezier(0.25, 1, 0.3, 1), opacity 2.2s cubic-bezier(0.25, 1, 0.3, 1);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 18px solid #140a05;
  border-top-width: 22px;
  border-bottom-width: 26px;
  box-shadow: 
    inset 0 0 60px rgba(0, 0, 0, 0.95), 
    0 15px 35px rgba(0, 0, 0, 0.7);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-curtain-left {
  left: 0;
  border-right: 10px solid #0d0603;
  transform-origin: left center;
}

.hero-curtain-right {
  right: 0;
  border-left: 10px solid #0d0603;
  transform-origin: right center;
}

.hero.opened .hero-curtain-left {
  transform: rotateY(-110deg);
  opacity: 0;
}

.hero.opened .hero-curtain-right {
  transform: rotateY(110deg);
  opacity: 0;
}

/* Door Panels */
.door-panels {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 20px;
  box-sizing: border-box;
  gap: 20px;
}

.door-panel {
  flex: 1;
  background: #190c06;
  border: 6px solid #0d0603;
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.8), 
    inset -4px -4px 8px rgba(255, 255, 255, 0.03),
    0 3px 6px rgba(0,0,0,0.5);
  border-radius: 4px;
  position: relative;
  background-image: 
    radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(90deg, #1b0e08 0%, #27140c 35%, #1f0f09 70%, #2d180f 100%);
}

.door-panel::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Handles */
.door-handle-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 130px;
  z-index: 15;
}

.hero-curtain-left .door-handle-container {
  right: 15px;
}

.hero-curtain-right .door-handle-container {
  left: 15px;
}

.door-handle {
  width: 100%;
  height: 100%;
  filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.6));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-subtitle::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero-title span {
  color: var(--accent);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 25px rgba(212, 163, 89, 0.2);
}

.btn-secondary {
  border: 1px solid var(--border);
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-image-wrapper {
  position: relative;
  opacity: 0;
  transform: scale(0.95) translateX(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.08);
}

.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-width: 220px;
}

.badge-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 6px;
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Philosophy / Highlights Section */
.philosophy {
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg), oklch(14% 0.015 35));
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.phi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 30px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.phi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.phi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 163, 89, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.phi-card:hover::before {
  transform: scaleX(1);
}

.phi-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
}

.phi-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--fg);
}

.phi-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Interactive Menu Section */
.menu-section {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(212, 163, 89, 0.2);
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .menu-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.menu-item-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
  transition: var(--transition);
  opacity: 1;
  transform: scale(1);
}

.menu-item-row.hidden {
  display: none;
}

.menu-item-row:hover {
  border-bottom-color: rgba(212, 163, 89, 0.4);
  transform: translateY(-1px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.menu-item-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}

.menu-item-title {
  font-size: 1.35rem;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.menu-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(212, 163, 89, 0.2);
  height: 1px;
  margin: 0 10px;
  align-self: flex-end;
  margin-bottom: 6px;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 300;
}

.menu-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-item-badge {
  background: rgba(212, 163, 89, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.menu-item-tags {
  display: flex;
  gap: 6px;
}

.diet-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.diet-tag.meat { border-color: rgba(255, 99, 71, 0.15); color: #ffa07a; }
.diet-tag.fish { border-color: rgba(30, 144, 255, 0.15); color: #87cefa; }
.diet-tag.veg { border-color: rgba(46, 139, 87, 0.15); color: #98fb98; }

/* Highlight Featured Section */
.featured-specialty {
  padding: 100px 0;
  background: linear-gradient(to right, var(--surface), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.featured-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.featured-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.featured-content {
  padding-right: 40px;
}

.featured-subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.featured-title {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.featured-desc {
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.featured-list {
  list-style: none;
  margin-bottom: 40px;
}

.featured-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--fg);
}

.featured-list-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* Photo Gallery Section */
.gallery-section {
  padding: 120px 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 24px;
  text-align: center;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.gallery-item-desc {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 9, 0.95);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.lightbox-caption {
  text-align: center;
  margin-top: 15px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--accent);
}

/* Location & Map Section */
.location-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg), oklch(10% 0.01 35));
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-block {
  margin-bottom: 35px;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.info-val {
  font-size: 1.2rem;
  color: var(--fg);
  font-weight: 300;
}

.info-val p {
  color: var(--fg);
  margin-bottom: 6px;
}

.hours-list {
  list-style: none;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row:last-child {
  border: none;
}

.hours-day {
  font-weight: 500;
  color: var(--fg);
}

.hours-time {
  color: var(--muted);
}

.map-frame-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  min-height: 400px;
  position: relative;
}

.map-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.1) brightness(0.9);
}

/* Booking Modal / Reservation Form Drawer */
.booking-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 480px;
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 200;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.6);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.booking-modal.active {
  right: 0;
}

.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.booking-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.booking-title {
  font-size: 2rem;
  color: var(--fg);
}

.booking-close {
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 1.5rem;
  cursor: pointer;
}

.booking-close:hover {
  color: var(--accent);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.form-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(212, 163, 89, 0.15);
}

.booking-btn {
  margin-top: 20px;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  padding: 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.booking-btn:hover {
  background: transparent;
  color: var(--accent);
}

/* Footer */
footer {
  background: #090807;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-star {
  width: 32px;
  height: 32px;
  fill: var(--accent);
  margin-bottom: 20px;
}

.footer-desc {
  max-width: 480px;
  margin: 0 auto 30px;
  font-size: 0.95rem;
}

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

.copyright {
  font-size: 0.8rem;
}

.creator-tag {
  font-size: 0.8rem;
  color: var(--muted);
}

.creator-tag a:hover {
  color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .featured-content {
    padding-right: 0;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    z-index: 100;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-modal {
    width: 100%;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions a, .hero-actions button {
    width: 100%;
    text-align: center;
  }
}
