/* ==========================================================================
   VERDE — Farm-to-Table Italian Bistro
   Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --olive: #4a6741;
  --olive-dark: #3a5434;
  --olive-light: #5a7d4f;
  --cream: #faf7f0;
  --cream-dark: #f0ebe0;
  --terracotta: #c4724e;
  --terracotta-dark: #a85d3d;
  --terracotta-light: #d48a6a;
  --brown: #8b6f4e;
  --brown-light: #a6896a;
  --charcoal: #2d2d2d;
  --charcoal-light: #4a4a4a;
  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: clamp(64px, 10vw, 120px);
  --container-max: 1200px;
  --container-wide: 1400px;
  --gap: clamp(16px, 3vw, 32px);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
::selection {
  background: var(--olive);
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--charcoal-light);
  max-width: 600px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Story Section
   -------------------------------------------------------------------------- */
.story {
  padding: var(--section-padding) clamp(24px, 4vw, 80px);
  background: var(--cream);
}

.story__container {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.story__text p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.story__text p:last-child {
  margin-bottom: 0;
}

.story__divider {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 24px 0 32px;
}

.story__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.story__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(74, 103, 65, 0.15);
  border-radius: 4px;
  pointer-events: none;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.story__image:hover img {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   Menu Section
   -------------------------------------------------------------------------- */
.menu-section {
  padding: var(--section-padding) clamp(24px, 4vw, 80px);
  background: var(--cream-dark);
}

.menu-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.menu-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.menu-section__header .section-subtitle {
  margin: 0 auto;
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--brown-light);
  background: transparent;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

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

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

/* Menu Panels */
.menu-panel {
  display: none;
  animation: fadeInPanel 0.4s var(--ease);
}

.menu-panel.active {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

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

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(139, 111, 78, 0.15);
}

.menu-item:first-child {
  padding-top: 0;
}

.menu-item:last-child {
  border-bottom: none;
}

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

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
}

.menu-item__price {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--terracotta);
  white-space: nowrap;
}

.menu-item__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal-light);
}

.menu-panel__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.menu-panel__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Chef Section
   -------------------------------------------------------------------------- */
.chef {
  padding: var(--section-padding) clamp(24px, 4vw, 80px);
  background: var(--cream);
}

.chef__container {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.chef__image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.chef__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.chef__text p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.chef__quote {
  margin-top: 32px;
  padding: 24px 32px;
  background: var(--cream-dark);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 4px 4px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--charcoal);
}

.chef__quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--terracotta);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  padding: var(--section-padding) clamp(24px, 4vw, 80px);
  background: var(--olive);
  color: var(--cream);
}

.testimonials__container {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__header .section-label {
  color: var(--terracotta-light);
}

.testimonials__header .section-title {
  color: var(--cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: rgba(250, 247, 240, 0.08);
  border: 1px solid rgba(250, 247, 240, 0.12);
  border-radius: 4px;
  padding: 36px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(250, 247, 240, 0.12);
}

.testimonial-card__stars {
  color: var(--terracotta-light);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(250, 247, 240, 0.85);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 4px;
}

.testimonial-card__author span {
  font-size: 13px;
  color: rgba(250, 247, 240, 0.6);
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery {
  padding: var(--section-padding) clamp(24px, 4vw, 80px);
  background: var(--cream);
}

.gallery__container {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.gallery__header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item:nth-child(1) {
  aspect-ratio: 3/4;
  grid-row: span 2;
}

.gallery__item:nth-child(5) {
  aspect-ratio: 1/1;
}

.gallery__item:nth-child(6) {
  aspect-ratio: 3/4;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 36px;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 56px;
  cursor: pointer;
  padding: 16px;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 10;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

/* --------------------------------------------------------------------------
   Reservations
   -------------------------------------------------------------------------- */
.reservations {
  padding: var(--section-padding) clamp(24px, 4vw, 80px);
  background: var(--cream-dark);
}

.reservations__container {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.reservations__info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.reservations__info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--olive);
}

.reservations__info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reservations__info-item strong {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.reservations__info-item span {
  font-size: 15px;
  color: var(--charcoal-light);
}

/* Form Styles */
.reservations__form {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 20px;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid rgba(139, 111, 78, 0.25);
  border-radius: 2px;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b6f4e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-error {
  font-size: 13px;
  color: #c0392b;
  margin-top: 4px;
  min-height: 18px;
}

.form-group input.error,
.form-group select.error {
  border-color: #c0392b;
}

.btn--full {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--brown-light);
  text-align: center;
  margin-top: 16px;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success svg {
  color: var(--olive);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.form-success p {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  padding: var(--section-padding) clamp(24px, 4vw, 80px);
  background: var(--charcoal);
  color: var(--cream);
}

.contact__container {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
}

.contact__map {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.contact__map-placeholder {
  text-align: center;
  color: var(--brown);
  padding: 40px;
}

.contact__map-placeholder svg {
  margin-bottom: 16px;
}

.contact__map-placeholder p {
  font-size: 16px;
  line-height: 1.6;
}

.contact__details {
  padding: clamp(32px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.04);
}

.contact__details h3 {
  font-size: 28px;
  margin-bottom: 32px;
  color: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact__grid strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 12px;
}

.contact__grid p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(250, 247, 240, 0.7);
}

.contact__grid a {
  transition: color 0.2s;
}

.contact__grid a:hover {
  color: var(--terracotta-light);
}

/* --------------------------------------------------------------------------
   Press & Awards
   -------------------------------------------------------------------------- */
.press {
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 80px);
  background: var(--cream-dark);
  border-top: 1px solid rgba(139, 111, 78, 0.1);
  border-bottom: 1px solid rgba(139, 111, 78, 0.1);
}

.press__container {
  max-width: var(--container-wide);
  margin: 0 auto;
  text-align: center;
}

.press__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 24px;
}

.press__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}

.press__logo {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal-light);
  opacity: 0.55;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.press__logo:hover {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Trust Badges
   -------------------------------------------------------------------------- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 56px;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
  padding: 24px 32px;
  background: rgba(250, 247, 240, 0.06);
  border: 1px solid rgba(250, 247, 240, 0.1);
  border-radius: 8px;
  min-width: 180px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.trust-badge:hover {
  transform: translateY(-2px);
  background: rgba(250, 247, 240, 0.1);
}

.trust-badge__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.trust-badge__icon svg {
  width: 28px;
  height: 28px;
}

.trust-badge__stars {
  color: #f5c518;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.trust-badge__rating {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.trust-badge__count {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(250, 247, 240, 0.5);
}

/* --------------------------------------------------------------------------
   Instagram Feed
   -------------------------------------------------------------------------- */
.instagram {
  padding: var(--section-padding) 0 0;
  background: var(--cream);
}

.instagram__container {
  max-width: 100%;
}

.instagram__header {
  text-align: center;
  padding: 0 clamp(24px, 4vw, 80px);
  margin-bottom: 40px;
}

.instagram__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.instagram__title span {
  color: var(--terracotta);
  font-style: italic;
}

.instagram__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal-light);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram__post {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}

.instagram__post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.instagram__overlay span {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.instagram__post:hover img {
  transform: scale(1.08);
}

.instagram__post:hover .instagram__overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Gift Card Banner
   -------------------------------------------------------------------------- */
.gift-banner {
  background: var(--olive);
  padding: 16px clamp(24px, 4vw, 80px);
  text-align: center;
}

.gift-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.gift-banner p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--cream);
}

.gift-banner a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.gift-banner a:hover {
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Delivery & Reservation Partners
   -------------------------------------------------------------------------- */
.partners {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 80px);
  background: var(--cream-dark);
}

.partners__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.partners__group {
  text-align: center;
}

.partners__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 16px;
}

.partners__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(139, 111, 78, 0.3);
  border-radius: 2px;
  color: var(--charcoal-light);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.partner-badge:hover {
  border-color: var(--olive);
  color: var(--olive);
  background: rgba(74, 103, 65, 0.05);
}

.partner-badge--primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}

.partner-badge--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--cream);
}

.partners__divider {
  width: 1px;
  height: 48px;
  background: rgba(139, 111, 78, 0.2);
}

/* --------------------------------------------------------------------------
   Contact Map (Google Maps embed)
   -------------------------------------------------------------------------- */
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #1a1a1a;
  color: rgba(250, 247, 240, 0.7);
  padding: 64px clamp(24px, 4vw, 80px) 32px;
}

.footer__container {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.08);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__logo svg {
  fill: var(--olive-light);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  gap: 48px;
}

.footer__links strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--terracotta-light);
}

.footer__newsletter strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__newsletter p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.footer__newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(250, 247, 240, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.footer__newsletter-form input::placeholder {
  color: rgba(250, 247, 240, 0.4);
}

.footer__newsletter-form input:focus {
  outline: none;
  border-color: var(--olive-light);
}

.footer__newsletter-form .btn {
  padding: 10px 20px;
  font-size: 12px;
  white-space: nowrap;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 247, 240, 0.15);
  border-radius: 50%;
  transition: all 0.3s;
  color: rgba(250, 247, 240, 0.6);
}

.footer__social a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-light);
  background: rgba(196, 114, 78, 0.1);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer__bottom p {
  color: rgba(250, 247, 240, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: rgba(250, 247, 240, 0.4);
  transition: color 0.2s;
}

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

/* --------------------------------------------------------------------------
   Mobile Menu Overlay
   -------------------------------------------------------------------------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 45, 0.95);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(12px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-overlay nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--cream);
  transition: color 0.2s;
}

.mobile-overlay nav a:hover {
  color: var(--terracotta-light);
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (768px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .story__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__image {
    order: -1;
    max-height: 400px;
  }

  .chef__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chef__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .menu-panel.active {
    grid-template-columns: 1fr;
  }

  .menu-panel__image {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .gallery__item:nth-child(1) {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .reservations__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact__map {
    min-height: 200px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__links {
    gap: 40px;
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners__divider {
    width: 100%;
    height: 1px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .trust-badge {
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  /* Header */
  .header__nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero__title {
    letter-spacing: 6px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Menu */
  .menu-tabs {
    gap: 4px;
  }

  .menu-tab {
    padding: 10px 20px;
    font-size: 11px;
  }

  .menu-item__name {
    font-size: 18px;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery__item,
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    aspect-ratio: 16/10;
    grid-row: span 1;
  }

  /* Forms */
  .form-row--half {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row--half .form-group {
    margin-bottom: 20px;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Footer */
  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .footer__newsletter-form {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer__bottom-links {
    gap: 16px;
  }

  /* Instagram */
  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Press */
  .press__grid {
    gap: 16px;
  }

  .press__logo {
    font-size: 15px;
  }

  /* Partners */
  .partners__container {
    flex-direction: column;
    gap: 24px;
  }

  .partners__divider {
    width: 60px;
    height: 1px;
  }

  /* Contact map */
  .contact__map iframe {
    min-height: 280px;
  }

  /* Lightbox */
  .lightbox__prev,
  .lightbox__next {
    font-size: 36px;
  }

  .lightbox__close {
    top: 16px;
    right: 16px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .section-title {
    font-size: 28px;
  }

  .menu-tab {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .reservations__form {
    padding: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }
}