/* ============================================================
   Il Siciliano – Espa  |  Main Stylesheet
   Light theme: white/warm backgrounds, dark text
   Accents: Burgundy #8B1A2E · Teal #2A7B6F · Gold #B8943A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Bebas+Neue&display=swap');

/* === VARIABLES === */
:root {
  --red:         #8b1232;
  --red-hover:   #a31840;
  --teal:        #2A7B6F;
  --teal-hover:  #1f5e55;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE7DB;
  --dark:        #FFFFFF;
  --mid:         #F4EFE7;
  --warm-mid:    #ECE6DA;
  --text-dark:   #1E1410;
  --text-mid:    #4A3A35;
  --text-light:  #5E4E49;
  --white:       #FFFFFF;
  --gold:        #B8943A;
  --gold-light:  #C9A84C;
  --shadow:      rgba(0,0,0,0.10);
  --shadow-light: rgba(0,0,0,0.05);
  --nav-height:  80px;
  --transition:  0.3s ease;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 3rem;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 2rem;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 90px 0;
}
.section--cream {
  background: var(--cream);
}
.section--dark {
  background: var(--dark);
}
.section--mid {
  background: var(--mid);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
}
/* Default outline: dark border/text (for light bg sections) */
.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}
.btn--outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}
/* Outline on hero (dark overlay) stays white */
.hero .btn--outline {
  color: var(--cream);
  border-color: var(--cream);
}
.hero .btn--outline:hover {
  background: var(--cream);
  color: var(--text-dark);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}
.btn--teal:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: var(--text-dark);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar.hero-top {
  background: transparent;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition);
}
.navbar.scrolled .nav-logo img {
  height: 44px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
/* Hero-top (transparent over dark image): white links */
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
/* Scrolled: dark links */
.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--red);
}
.nav-reservation {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  border: 1px solid var(--red) !important;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-reservation:hover {
  background: var(--red-hover) !important;
  border-color: var(--red-hover) !important;
}
.nav-reservation::after { display: none !important; }
/* Reservation button always white text regardless of scroll */
.navbar.scrolled .nav-reservation {
  color: var(--white) !important;
}

/* Lang switcher */
.nav-lang {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lang-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  transition: color var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  color: var(--gold);
}
.lang-sep {
  color: var(--text-light);
  font-size: 0.7rem;
}

/* Lang switcher visible on dark hero overlay */
.navbar.hero-top .lang-btn { color: rgba(255,255,255,0.8); }
.navbar.hero-top .lang-sep { color: rgba(255,255,255,0.5); }
.navbar.hero-top .lang-btn:hover,
.navbar.hero-top .lang-btn.active { color: var(--gold); }

/* Hamburger — default white (hero-top), dark when scrolled */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  transform-origin: center;
}
.navbar.scrolled .nav-hamburger span {
  background: var(--text-dark);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color var(--transition);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--red); }
.nav-mobile .nav-lang {
  display: flex;
  margin-top: 1.2rem;
  justify-content: flex-start;
  gap: 10px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #141010;
  z-index: 0;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, #2d1015 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, #0d1a18 0%, transparent 55%),
    linear-gradient(135deg, #1a0a0a 0%, #14100C 50%, #0d1410 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.hero-logo {
  width: clamp(200px, 35vw, 420px);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7));
  animation: fadeInDown 1.1s ease both;
}
.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
  animation: fadeInUp 1.1s 0.3s ease both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1.1s 0.5s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 2s 1s ease both;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(245,240,232,0.5));
  animation: scrollLine 2s 1.5s infinite ease;
}

/* === ABOUT === */
.about {
  background: var(--dark);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .overline {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 1.05rem;
}
.about-quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.about-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #8A6820;
  opacity: 1 !important;
}
.about-image {
  position: relative;
}
.about-image-frame {
  width: 100%;
  padding-bottom: 130%;
  background: var(--warm-mid);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.about-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #1c0a0e 0%, #2d1018 45%, #1a1410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-placeholder-logo {
  width: 55%;
  max-width: 180px;
  opacity: 0.75;
}
.about-image-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}
.about-image-badge .badge-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-image-badge .badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

/* === FEATURES === */
.features {
  background: var(--mid);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}
.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  background: rgba(0,0,0,0.04);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
  width: 100%;
  height: 64px;
  font-size: 2rem;
}
.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* === REVIEWS === */
.reviews {
  background: var(--dark);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--mid);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.review-quote-mark {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.15;
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}
.star {
  color: #8A6820;
  font-size: 0.9rem;
}
.review-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.review-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}
.review-ratings {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}
.review-rating-item {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-rating-item span {
  color: #8A6820;
  font-weight: 700;
}

/* === HOURS BAND === */
.hours-band {
  background: var(--red);
  padding: 60px 0;
}
.hours-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hours-band h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}
.hours-list {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.hours-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hours-day {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hours-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
}
.hours-band-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color var(--transition);
  white-space: nowrap;
}
.hours-band-link:hover { color: var(--white); }

/* === MAP SECTION === */
.map-section {
  background: var(--mid);
  padding: 0;
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.02);
}

/* === CONTACT CTA === */
.contact-cta {
  background: var(--dark);
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-cta-info h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3px;
}
.contact-detail-value {
  color: var(--text-dark);
  font-size: 1rem;
}
.contact-detail-value a:hover { color: var(--red); }
.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-link {
  width: 42px; height: 42px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.contact-cta-reservation h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.contact-cta-reservation p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.booking-widget {
  background: var(--mid);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem;
  border-radius: 2px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.booking-widget-placeholder {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* === FOOTER === */
footer {
  background: var(--cream);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-brand img {
  height: 56px;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}
.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}
.oiva-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.5rem 0.8rem;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.oiva-footer:hover { background: rgba(0,0,0,0.08); }
.oiva-footer img { height: 28px; width: auto; margin: 0; opacity: 1; }
.oiva-footer span {
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* Oiva block on contact page */
.oiva-block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.2rem;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
}
.oiva-block img { height: 60px; width: auto; flex-shrink: 0; }
.oiva-block-text { color: var(--text-dark); }
.oiva-block-text strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.oiva-block-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 0.6rem;
  color: var(--text-mid);
}
.oiva-block-text a {
  color: var(--teal);
  font-size: 0.8rem;
  text-decoration: underline;
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-dark); }
.footer-col p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.9;
}
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--text-light);
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--text-light);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--text-dark); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: var(--mid);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
}

/* === MENU PAGE === */
.menu-page {
  background: var(--dark);
  padding: 60px 0 90px;
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}
.menu-tab {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text-light);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.menu-tab:hover {
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.30);
}
.menu-tab.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.menu-category {
  display: none;
}
.menu-category.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.menu-category-title {
  font-family: 'Bebas Neue', 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 2.5rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: var(--mid);
  transition: background var(--transition);
}
.menu-item:hover {
  background: var(--warm-mid);
}
.menu-item-body {
  flex: 1;
}
.menu-item-name {
  font-family: 'Bebas Neue', 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.menu-item-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}
.menu-item-price {
  font-family: 'Bebas Neue', 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #8A6820;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-allergen-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  color: var(--text-light);
  font-size: 0.87rem;
  line-height: 1.7;
  text-align: center;
}

/* === LUNCH PAGE === */
.lunch-page { background: var(--dark); padding: 60px 0 90px; }
.lunch-note {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--teal);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 3rem;
  border-radius: 2px;
}
.lunch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
}

/* === CONTACT PAGE === */
.contact-page { background: var(--dark); padding: 60px 0 90px; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 2px;
  filter: grayscale(15%);
}
.contact-info-block {
  margin-bottom: 2rem;
}
.contact-info-block h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* === SPECIAL HOURS PAGE === */
.special-hours-page { background: var(--dark); padding: 60px 0 90px; }
.special-hours-list {
  max-width: 700px;
  margin: 0 auto;
}
.special-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--mid);
  margin-bottom: 1.5px;
  gap: 2rem;
  flex-wrap: wrap;
}
.special-hour-date {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
}
.special-hour-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 3px;
}
.special-hour-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #8A6820;
  font-weight: 600;
}
.special-closed { color: var(--red); }
.no-special {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-light);
  background: var(--mid);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* === PRIVACY PAGE === */
.privacy-page {
  background: var(--dark);
  padding: 60px 0 90px;
}
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-mid);
  line-height: 1.9;
}
.privacy-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
}
.privacy-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 0.7rem;
  letter-spacing: 0.05em;
}
.privacy-content p { margin-bottom: 1rem; }
.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-content ul li { margin-bottom: 0.4rem; }

/* ===================================================
   FLAMINGO-SPECIFIC LAYOUT
   =================================================== */


/* About section */
.flam-about {
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.flam-about-top {
  text-align: center;
  margin-bottom: 2rem;
}
.flam-about-top h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: var(--text-dark);
  margin: 0.6rem 0 1.2rem;
}
.flam-about-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--red);
  margin: 0;
  border: none;
  padding: 0;
  quotes: none;
}
.flam-about-text {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}
.flam-about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2.5rem;
}
.flam-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.flam-fact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(139,18,50,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.flam-fact div strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.flam-fact div span {
  font-size: 0.82rem;
  color: var(--text-mid);
}
.flam-fact div a { color: var(--teal); text-decoration: none; }
.flam-fact div a:hover { text-decoration: underline; }

/* Features as horizontal rows */
.flam-features {
  background: var(--mid);
}
.flam-features-header {
  margin-bottom: 2.5rem;
}
.flam-features-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin: 0;
}
.flam-features-list {
  display: flex;
  flex-direction: column;
}
.flam-feature-row {
  display: grid;
  grid-template-columns: 60px 56px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.flam-feature-row:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.flam-feature-num {
  font-family: 'Bebas Neue', 'Lato', sans-serif;
  font-size: 2.2rem;
  color: rgba(139,18,50,0.18);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}
.flam-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flam-feature-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0 0 0.3rem;
}
.flam-feature-body p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin: 0;
}

/* Teal hours band */
.flam-hours-band {
  background: var(--teal) !important;
}
.flam-hours-band h2,
.flam-hours-band .hours-day,
.flam-hours-band .hours-time,
.flam-hours-band .hours-band-link {
  color: #fff !important;
}
.flam-hours-band .hours-band-link {
  border-color: rgba(255,255,255,0.5) !important;
}
.flam-hours-band .hours-band-link:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #fff !important;
}

/* Reservation CTA strip */
.flam-cta-strip {
  background: var(--red);
  padding: 2.5rem 0;
}
.flam-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.flam-cta-strip-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 0.3rem;
}
.flam-cta-strip-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.flam-cta-strip .btn--primary {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.flam-cta-strip .btn--primary:hover {
  background: rgba(255,255,255,0.88);
}

/* Responsive — Flamingo */
@media (max-width: 900px) {
  .flam-about-facts { grid-template-columns: 1fr; gap: 1.2rem; }
  .flam-feature-row { grid-template-columns: 44px 48px 1fr; gap: 1rem; }
  .flam-cta-strip-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .flam-feature-row { grid-template-columns: 36px 40px 1fr; gap: 0.8rem; }
  .flam-feature-num { font-size: 1.6rem; }
}

/* === ANIMATIONS === */
@keyframes fadeIn       { from { opacity: 0; }                    to { opacity: 1; } }
@keyframes fadeInDown   { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp     { from { opacity: 0; transform: translateY(30px);  } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine   {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-cta-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .lunch-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav-links { display: none; }
  .nav-lang  { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hours-band-inner { flex-direction: column; text-align: center; }
  .hours-list { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .menu-tabs { gap: 0.3rem; }
  .menu-tab { font-size: 0.65rem; padding: 8px 14px; }
}

/* === ABOUT IMAGE + SHOWCASE === */
.flam-about-image {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.16);
}
.flam-about-image img { width: 100%; height: auto; display: block; }

.flam-showcase { padding-top: 0; }
.flam-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 2.4rem;
}
.flam-showcase-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.flam-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.flam-showcase-card:hover img { transform: scale(1.06); }
.flam-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.12) 45%, transparent 70%);
}
.flam-showcase-label {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@media (max-width: 760px) {
  .flam-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
  background: var(--white, #fff);
  color: var(--text-dark, #1E1410);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  font-family: 'Lato', sans-serif;
  animation: cookieUp 0.35s ease;
}
@keyframes cookieUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.cookie-banner-text { flex: 1 1 300px; margin: 0; font-size: 0.8rem; line-height: 1.5; color: var(--text-light, #5E4E49); }
.cookie-banner-link { color: var(--red, #8b1232); text-decoration: underline; }
.cookie-banner-link:hover { color: var(--red-hover, #a31840); }
.cookie-banner-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn--accept { background: var(--red, #8b1232); color: #fff; border-color: var(--red, #8b1232); }
.cookie-btn--accept:hover { background: var(--red-hover, #a31840); border-color: var(--red-hover, #a31840); }
.cookie-btn--decline { background: transparent; color: var(--text-mid, #4A3A35); border-color: rgba(0,0,0,0.22); }
.cookie-btn--decline:hover { border-color: var(--text-dark, #1E1410); color: var(--text-dark, #1E1410); }
@media (max-width: 560px) {
  .cookie-banner {
    left: 0; right: 0; bottom: 0;
    max-width: none;
    border-radius: 0;
    border-left: 0; border-right: 0; border-bottom: 0;
    padding: 0.7rem 0.9rem;
    gap: 0.55rem;
  }
  .cookie-banner-text { flex: 1 1 100%; font-size: 0.74rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 9px 8px; font-size: 0.7rem; }
}
