/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --dark:       #1A1814;
  --dark-soft:  #242018;
  --cream:      #FAF8F3;
  --cream-dark: #F0EBE0;
  --gold:       #C9A85C;
  --gold-dark:  #A8893D;
  --gold-light: #E8D5A3;
  --wine:       #7A1C2E;
  --text:       #3B3630;
  --text-light: #7D6F64;
  --light:      #E8E2D8;
  --white:      #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', -apple-system, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --max-width:  1200px;
  --transition: 0.3s ease;
  --shadow:     0 2px 20px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201,168,92,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
  transform: translateY(-1px);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section__header { text-align: center; margin-bottom: 4rem; }

.section__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

.section__title em { font-style: italic; color: var(--text-light); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(26, 24, 20, 0.97);
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; flex-direction: column; line-height: 1; }

.nav__logo-script {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.3;
}

.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Logo image variants */
.nav__logo-img {
  width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(245,235,215,0.4)) drop-shadow(0 1px 4px rgba(0,0,0,0.45));
  transition: filter 0.3s;
}
.nav.scrolled .nav__logo-img {
  filter: drop-shadow(0 0 8px rgba(245,235,215,0.35));
}

.hero__logo-img {
  display: block;
  width: clamp(260px, 42vw, 480px);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(245,235,215,0.55)) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  margin: 0 auto;
  animation: fadeIn 0.8s 0.5s both;
}

.footer__logo-img {
  width: 130px;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links li a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.nav__links li a:hover { color: var(--gold); }

.nav__cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

.nav__lang {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  margin-left: 0.75rem;
}
.nav__lang:hover { border-color: var(--gold); color: var(--gold); }
.nav.scrolled .nav__lang { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
.nav.scrolled .nav__lang:hover { border-color: var(--gold); color: var(--gold); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }

.mobile-menu__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu__close:hover { color: var(--white); }

.mobile-menu ul { text-align: center; }

.mobile-menu__link {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 2rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__link--cta {
  font-size: 1rem;
  font-family: var(--font-sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.75rem 2.5rem;
  margin-top: 1rem;
  font-weight: 600;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/gallery-innenraum.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,24,20,0.88) 0%,
    rgba(26,24,20,0.62) 50%,
    rgba(26,24,20,0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 920px;
}

.hero__script {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero__title-ristorante {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__title-davide {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 0.88;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s 0.65s forwards;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.82s forwards;
}
.hero__divider-line { display: block; width: 80px; height: 1px; background: var(--gold); opacity: 0.55; }
.hero__divider-icon { color: var(--gold); font-size: 0.75rem; }

.hero__tagline {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.95s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.05s forwards;
}

.hero__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s 1.2s forwards;
}
.hero__info-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.hero__info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__info-value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 300;
}
.hero__info-sep { width: 1px; height: 38px; background: rgba(255,255,255,0.18); }

.hero__holiday-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-top: 0.6rem;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeIn 0.8s 1.4s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s 1.5s infinite;
}
.hero__scroll:hover { color: var(--gold); }

@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--cream); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image { position: relative; }

.about__image-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about__image-frame::before {
  content: '';
  position: absolute;
  inset: -1.5rem 1.5rem 1.5rem -1.5rem;
  border: 1px solid var(--gold);
  opacity: 0.25;
  z-index: -1;
}
.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about__image-frame:hover img { transform: scale(1.04); }

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 130px;
}
.about__badge-rating {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about__badge-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; }
.about__badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  line-height: 1.4;
}

.about__divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 1.5rem 0;
}

.about__text {
  font-size: 0.975rem;
  color: var(--text-light);
  margin-bottom: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
}
.about__text em { font-style: italic; color: var(--text); }

.about__awards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.6rem 0 2rem;
  padding: 1.4rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,92,0.05);
}
.about__award {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.about__award-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.about__award strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.about__award span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
}

.about__award-glyph {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
  line-height: 1;
}

.about__award-cert {
  width: 48px;
  height: auto;
  opacity: 0.65;
  margin-left: auto;
  flex-shrink: 0;
  border: 1px solid var(--light);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}
.about__stat { display: flex; flex-direction: column; gap: 0.3rem; }
.about__stat-num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.about__stat-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--dark); padding: 5rem 0; }

.features__grid {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.feature {
  flex: 1;
  padding: 3rem 3.5rem;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.feature:last-child { border-right: none; }

.feature__sep {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0.45;
  align-self: center;
  flex-shrink: 0;
}

.feature__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.15;
}

.feature__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================
   MENU
   ============================================ */
.menu-section { background: var(--cream); }

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

.menu__tab {
  padding: 0.875rem 1.6rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.menu__tab:hover { color: var(--text); }
.menu__tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu__panel { display: none; }
.menu__panel.active { display: block; animation: fadeIn 0.35s ease; }

.menu__fish-note {
  display: flex;
  gap: 1rem;
  background: rgba(201,168,92,0.07);
  border: 1px solid rgba(201,168,92,0.22);
  border-radius: 3px;
  padding: 0.9rem 1.25rem;
  margin: -1rem 0 2.5rem;
}
.menu__fish-note-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}
.menu__fish-note-item + .menu__fish-note-item {
  border-left: 1px solid rgba(201,168,92,0.2);
  padding-left: 1rem;
}
.menu__fish-note-icon { font-size: 1rem; flex-shrink: 0; color: var(--gold); }
.menu__fish-note p {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

.menu__section-label {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--gold);
}

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

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background var(--transition);
}
.menu__item:hover { background: var(--cream-dark); }

.menu__item--special .menu__item-name::after {
  content: ' ✦';
  color: var(--gold);
  font-size: 0.65rem;
}

.menu__item-info { flex: 1; }

.menu__item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.18rem;
}

.menu__item-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.5;
}

.menu__item-price {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.1rem;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   QUOTE BANNER
   ============================================ */
.quote-banner {
  background: var(--gold);
  padding: 4.5rem 0;
  text-align: center;
}
.quote-banner__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  max-width: 820px;
  margin: 0 auto 1rem;
  line-height: 1.45;
}
.quote-banner__cite {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.55);
  font-style: normal;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--cream-dark); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 0.6rem;
}
.gallery__item { overflow: hidden; position: relative; }
.gallery__item::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.65);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item--large { grid-row: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--dark); }
.reviews .section__title { color: var(--white); }

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.reviews__stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.reviews__score {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
}
.reviews__count {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  letter-spacing: 0.07em;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review {
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  border-top: 2px solid var(--gold);
  transition: background var(--transition), transform var(--transition);
}
.review:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.review__stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.review__author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--cream); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact__block { margin-bottom: 2.5rem; }

.contact__block-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact__block-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light);
}

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--light);
  font-size: 0.875rem;
  color: var(--text);
}
.contact__hours-row:last-child { border-bottom: none; }
.contact__hours-closed { color: var(--text-light); }
.contact__hours-closed span:last-child { color: var(--wine); font-weight: 500; }
.contact__hours-note { font-size: 0.75rem; color: var(--text-light); margin-top: 0.6rem; font-style: italic; }
.footer__hours-note { font-size: 0.72rem; color: rgba(59,54,48,0.45); font-style: italic; margin-top: 0.2rem; }

.contact__details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.contact__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.contact__link svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.contact__link:hover { color: var(--gold); }

.contact__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.contact__address svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact__address p { line-height: 1.6; }

.contact__map { border: 1px solid var(--light); overflow: hidden; }
.contact__map iframe { display: block; filter: grayscale(0.25); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--cream-dark); padding: 4.5rem 0 2rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(59,54,48,0.12);
  margin-bottom: 2rem;
}

.footer__logo-script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.footer__logo-main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer__tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
}

.footer__social { margin-top: 1.2rem; }
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__social-link:hover { color: var(--wine); }
.footer__social-link svg { flex-shrink: 0; }

.footer__nav-title {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.25rem;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__nav a {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
}
.footer__nav a:hover { color: var(--text); }

.footer__contact-col p,
.footer__hours-col p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
}
.footer__contact-col a { color: var(--text-light); }
.footer__contact-col a:hover { color: var(--wine); }
.footer__closed { color: var(--wine) !important; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.73rem;
  color: rgba(59,54,48,0.4);
  font-weight: 300;
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 0.73rem;
  color: rgba(59,54,48,0.4);
  font-weight: 300;
}
.footer__legal a:hover { color: var(--wine); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 4rem; }
  .about__image-frame::before { display: none; }
  .about__badge { right: 0.5rem; bottom: -1.25rem; }

  .features__grid { flex-direction: column; }
  .feature {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .feature:last-child { border-bottom: none; }
  .feature__sep { display: none; }

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

  .menu__tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0; }
  .menu__tab { flex-shrink: 0; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

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

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero__info { gap: 1rem; flex-wrap: wrap; }
  .hero__info-sep { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about__stat-num { font-size: 1.7rem; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__script, .hero__title-ristorante, .hero__logo-img,
  .hero__divider, .hero__tagline, .hero__actions,
  .hero__info, .hero__holiday-note { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; }
}
