/* ═══════════════════════════════════════════════════════════
   Ciao Riviera — Master Stylesheet
   Covers: shared nav/footer/forms + home + menu + contact
   ═══════════════════════════════════════════════════════════ */

/* ╔══════════════════════════════════════════════════════════╗
   ║  SHARED — variables, nav, footer, forms, lang system    ║
   ╚══════════════════════════════════════════════════════════╝ */
/* ═══════════════════════════════════════════════════════════
   Ciao Riviera — Shared Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
  --cream:        #f5f0e8;
  --warm-white:   #faf7f2;
  --forest:       #2c4a3e;
  --forest-light: #3d6357;
  --gold:         #b8973a;
  --gold-light:   #d4af60;
  --charcoal:     #2a2a2a;
  --text-muted:   #5a5550;
  --border:       rgba(44,74,62,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(44,74,62,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  border-bottom: 1px solid rgba(184,151,58,0.2);
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
}

/* Centre links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
}
.nav-links > li { display: flex; align-items: center; }
.nav-links a {
  color: rgba(245,240,232,0.78);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0 14px;
  height: 70px;
  display: flex !important;
  align-items: center;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

/* Right group: lang + reserve + burger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language toggle pill */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  overflow: hidden;
}
.lang-toggle .lang-btn {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.lang-toggle .lang-btn:last-child { border-right: none; }
.lang-toggle .lang-btn.active,
.lang-toggle .lang-btn:hover { background: var(--gold); color: #fff; }

/* Reserve CTA */
.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   SOCIAL ICON LINKS
   ═══════════════════════════════════════════════════════════ */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.social-link svg { width: 18px; height: 18px; display: block; }
.social-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(184,151,58,0.1);
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s;
  animation: pulseWA 2.5s 2s infinite;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 20px; height: 20px; flex-shrink: 0; }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--forest);
  color: rgba(245,240,232,0.65);
  font-family: 'Jost', sans-serif;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 28px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}
.footer-tagline {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(245,240,232,0.52);
  margin-bottom: 22px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(245,240,232,0.4);
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 15px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--forest); }
.form-group textarea { resize: vertical; min-height: 120px; }
.honeypot { display: none !important; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 15px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--forest-light); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 13.5px;
  display: none;
}
.form-msg.success { background: rgba(44,74,62,0.1); color: var(--forest); border: 1px solid rgba(44,74,62,0.3); display: block; }
.form-msg.error   { background: rgba(196,60,58,0.08); color: #b83a3a; border: 1px solid rgba(196,60,58,0.25); display: block; }

/* ═══════════════════════════════════════════════════════════
   LANGUAGE SHOW / HIDE
   ═══════════════════════════════════════════════════════════ */
[data-lang] .lang-es          { display: none !important; }
[data-lang="en"] .lang-en     { display: block; }
[data-lang="es"] .lang-en     { display: none !important; }
[data-lang="es"] .lang-es     { display: block !important; }

/* inline spans */
[data-lang="es"] .lang-es-i   { display: inline !important; }
[data-lang="en"] .lang-es-i   { display: none !important; }
[data-lang="es"] .lang-en-i   { display: none !important; }

/* flex items (links, etc.) */
[data-lang="en"] .lang-en-f   { display: flex !important; }
[data-lang="es"] .lang-en-f   { display: none !important; }
[data-lang="es"] .lang-es-f   { display: flex !important; }
[data-lang="en"] .lang-es-f   { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  /* Mobile nav: logo | nav-right (lang+reserve+burger) */
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(36,60,50,0.99);
    flex-direction: column;
    align-items: stretch;
    padding: 6px 0 14px;
    border-bottom: 1px solid rgba(184,151,58,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 9999;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { flex-direction: column; }
  .nav-links a {
    padding: 13px 22px;
    height: auto;
    font-size: 11.5px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links > li:last-child a { border-bottom: none; }

  .nav-burger { display: flex; }

  /* Compact lang toggle on mobile */
  .lang-toggle .lang-btn { padding: 4px 9px; font-size: 9.5px; }

  /* Reserve CTA compact */
  .nav-cta { padding: 7px 12px; font-size: 9.5px; letter-spacing: 1.5px; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-tagline { max-width: 100%; }
  .whatsapp-float .wa-label { display: none; }
  .whatsapp-float { padding: 13px; border-radius: 50%; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .site-nav { padding: 0 14px; gap: 8px; }
  .nav-logo-img { height: 46px; }
  .nav-cta { display: none; } /* hide reserve btn on very small, only burger */
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  HOME PAGE                                              ║
   ╚══════════════════════════════════════════════════════════╝ */
/* ═══════════════════════════════════════════════════════════
   Ciao Riviera — Home Page Stylesheet (original design)
   ═══════════════════════════════════════════════════════════ */

/* ══ HERO ══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../media/customers-enjoy-food-ciaoriviera.webp') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,35,28,0.35) 0%,
    rgba(20,35,28,0.55) 50%,
    rgba(20,35,28,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 11vw, 120px);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s ease forwards;
}
.hero-divider::before, .hero-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s ease forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 15px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

/* ══ INFO STRIP ══ */
.info-strip {
  background: var(--forest);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid var(--gold);
}
.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 20px;
  color: var(--cream);
  border-right: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: background 0.2s;
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: rgba(255,255,255,0.05); }
.info-icon { font-size: 22px; flex-shrink: 0; }
.info-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
}

/* ══ SECTION UTILITIES ══ */
section { padding: 90px 24px; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  text-align: center;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 50px;
}
.section-lead {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ══ STORY SECTION ══ */
.story-section {
  background: var(--cream);
}
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}
.story-img:first-child { margin-top: 40px; }
.story-text { padding-right: 20px; }
.story-text .section-eyebrow,
.story-text .section-title { text-align: left; }
.story-text .section-rule { margin-left: 0; }
.story-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.story-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--forest);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.5;
}

/* ══ FEATURES STRIP ══ */
.features-strip {
  background: var(--forest);
  padding: 60px 24px;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
}
.feature-item {
  background: var(--forest);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}
.feature-item:hover { background: var(--forest-light); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
}

/* ══ MENU PREVIEW ══ */
.menu-section { background: var(--warm-white); }
.menu-inner { max-width: 1100px; margin: 0 auto; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.menu-card {
  background: var(--warm-white);
  padding: 36px 32px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.menu-card:hover { background: var(--cream); }
.menu-card:hover::before { transform: scaleX(1); }
.menu-card-icon { font-size: 28px; margin-bottom: 14px; }
.menu-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}
.menu-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.menu-card-from {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.menu-cta {
  text-align: center;
}

/* ══ GALLERY ══ */
.gallery-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.gallery-header {
  padding: 0 24px;
  margin-bottom: 40px;
}
.gallery-header .section-title { color: var(--cream); }
.gallery-header .section-eyebrow { color: var(--gold-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,74,62,0);
  transition: background 0.3s;
}
.gallery-item:hover::after { background: rgba(44,74,62,0.15); }

/* ══ REVIEWS ══ */
.reviews-section { background: var(--cream); }
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.rating-detail { text-align: left; }
.rating-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; margin-bottom: 4px; }
.rating-source {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.review-card {
  background: var(--warm-white);
  padding: 34px 30px;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 18px;
}
.review-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.review-platform {
  font-size: 11px;
  color: var(--gold);
  margin-top: 3px;
}

/* ══ MOUNTAIN VIEW / CTA BAND ══ */
.cta-band {
  position: relative;
  padding: 110px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../media/ciaoriviera-outside-mountain-view-hero-banner.webp') center/cover no-repeat;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,35,28,0.72);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto;
}
.cta-content .section-eyebrow { color: var(--gold-light); }
.cta-content .section-title { color: var(--cream); }
.cta-content .section-title em { color: var(--gold-light); }
.cta-content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.8);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══ FIND US ══ */
.findus-section { background: var(--warm-white); }
.findus-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.findus-details { padding-top: 10px; }
.findus-details .section-eyebrow,
.findus-details .section-title { text-align: left; }
.findus-details .section-rule { margin-left: 0; }
.contact-list { list-style: none; margin-bottom: 30px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
}
.contact-list li:first-child { border-top: 1px solid var(--border); }
.contact-list .ci { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-list a { color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
.contact-list a:hover { color: var(--forest); }
.hours-badge {
  background: var(--forest);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  margin-bottom: 28px;
}
.hours-badge strong { color: var(--gold-light); font-weight: 500; }
.map-placeholder {
  background: #e8e4dc;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  height: 380px;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Home page animations ── */
/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Home page responsive ── */
/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .info-strip { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .story-inner, .findus-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-text { padding-right: 0; }
  .story-images { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
}
@media (max-width: 600px) {
  section { padding: 60px 20px; }
  .hero-title { font-size: 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  MENU PAGE                                              ║
   ╚══════════════════════════════════════════════════════════╝ */
/* ═══════════════════════════════════════════════════════════
   Ciao Riviera — Menu Page Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── PAGE HEADER ── */
.page-header {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 54px 20px 44px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,151,58,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.page-title em { font-style: italic; color: var(--gold-light); }
.page-sub {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,240,232,.5);
  margin-bottom: 30px;
}
.page-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold);
}
.page-divider::before, .page-divider::after {
  content: ''; width: 70px; height: 1px; background: var(--gold); opacity: .5;
}

/* ── CATEGORY NAV ── */
.category-nav {
  background: var(--forest);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 16px;
  position: sticky;
  top: 70px;
  z-index: 100;
}
.cat-btn {
  padding: 17px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: rgba(245,240,232,.6);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}
.cat-btn.active, .cat-btn:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

/* ── MAIN CONTENT ── */
main { max-width: 1100px; margin: 0 auto; padding: 56px 24px 90px; }
.section { display: none; }
.section.active { display: block; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(34px, 5vw, 56px); color: var(--forest); line-height: 1; margin-bottom: 14px;
}
.section-note { font-size: 15px; color: #4a4540; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.section-rule { width: 40px; height: 1px; background: var(--gold); margin: 18px auto 0; }

/* ── MENU GRID ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 52px;
}
.menu-item {
  background: var(--warm-white);
  padding: 32px 30px;
  transition: background .2s;
}
.menu-item:hover { background: var(--cream); }
.item-top {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 10px; margin-bottom: 7px;
}
.item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; color: var(--forest); line-height: 1.2;
}
.item-price {
  font-size: 16px; font-weight: 500; color: var(--gold);
  white-space: nowrap; font-family: 'Cormorant Garamond', serif;
}
.item-desc { font-size: 14.5px; font-weight: 400; color: #4a4540; line-height: 1.72; }
.item-tag {
  display: inline-block; margin-top: 9px; font-size: 9px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
}
.tag-veg   { background: rgba(44,74,62,.1);   color: var(--forest); }
.tag-spicy { background: rgba(196,96,58,.12);  color: #c4603a; }
.tag-fish  { background: rgba(44,74,62,.07);   color: var(--forest-light); }

/* Pasta note */
.pasta-note {
  background: var(--forest); color: var(--cream); padding: 20px 28px;
  text-align: center; margin-bottom: 1px; font-size: 14.5px; font-weight: 400; letter-spacing: .4px;
}
.pasta-note strong { color: var(--gold-light); }

/* Sharing platters */
.platter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; margin-bottom: 52px; }
.platter-card {
  border: 1px solid var(--border); padding: 30px 26px;
  background: var(--warm-white); position: relative; overflow: hidden;
}
.platter-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--gold);
}
.platter-card .item-name { font-size: 19px; }
.platter-price-big { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--forest); margin: 9px 0; }

/* Sides */
.sides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 36px; }
.side-item { background: var(--warm-white); padding: 17px 20px; }
.side-item:hover { background: var(--cream); }
.side-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--forest); }
.side-price { font-size: 15px; color: var(--gold); font-family: 'Cormorant Garamond', serif; }

/* Animations */
.section.active .menu-item,
.section.active .platter-card,
.section.active .side-item { animation: fadeUp .38s ease both; }
.section.active .menu-item:nth-child(2) { animation-delay: .04s; }
.section.active .menu-item:nth-child(3) { animation-delay: .08s; }
.section.active .menu-item:nth-child(4) { animation-delay: .12s; }
.section.active .menu-item:nth-child(5) { animation-delay: .16s; }
.section.active .menu-item:nth-child(6) { animation-delay: .20s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .category-nav { top: 70px; position: sticky; }
  .cat-btn { padding: 13px 12px; font-size: 9.5px; letter-spacing: 1px; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .sides-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .sides-grid { grid-template-columns: 1fr; }
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  CONTACT PAGE                                           ║
   ╚══════════════════════════════════════════════════════════╝ */
/* ═══════════════════════════════════════════════════════════
   Ciao Riviera — Contact Page Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── PAGE HEADER ── */
.page-header {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 56px 20px 46px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,151,58,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px;
}
.page-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(38px, 6vw, 72px); line-height: 1; margin-bottom: 10px;
}
.page-title em { font-style: italic; color: var(--gold-light); }
.page-sub {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,240,232,.5); margin-bottom: 26px;
}
.page-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold);
}
.page-divider::before, .page-divider::after {
  content: ''; width: 60px; height: 1px; background: var(--gold); opacity: .5;
}

/* ── MAIN ── */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 90px;
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(34px, 5vw, 54px); color: var(--forest); line-height: 1; margin-bottom: 14px;
}
.section-rule { width: 40px; height: 1px; background: var(--gold); margin: 18px auto 0; }

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

/* ── INFO CARDS ── */
.info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  border: 1px solid var(--border);
  padding: 28px 30px;
  background: var(--warm-white);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background .2s;
}
.info-card:hover { background: var(--cream); }
.info-card-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--forest);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.info-card-icon svg { width: 20px; height: 20px; }
.info-card-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.info-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 19px;
  font-weight: 600; color: var(--forest); margin-bottom: 4px;
}
.info-card-text {
  font-size: 14px; font-weight: 300; color: #4a4540; line-height: 1.65;
}
.info-card-text a {
  color: var(--forest); text-decoration: none; font-weight: 400; transition: color .2s;
}
.info-card-text a:hover { color: var(--gold); }

/* WhatsApp reserve button */
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff;
  padding: 12px 22px; border-radius: 4px; text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 12px; transition: background .2s;
}
.btn-wa:hover { background: #1EB858; }
.btn-wa svg { width: 17px; height: 17px; }

/* ── FORM PANEL ── */
.form-panel {
  border: 1px solid var(--border);
  padding: 38px 34px;
  background: var(--warm-white);
}
.form-panel-title {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 300; color: var(--forest); margin-bottom: 6px;
}
.form-panel-sub {
  font-size: 13px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6;
}

/* ── MAP ── */
.map-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrap iframe { display: block; }

/* ── HOURS + SOCIAL STRIP ── */
.hours-strip {
  background: var(--forest);
  color: var(--cream);
  padding: 40px 28px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  text-align: center;
}
.strip-item-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px;
}
.strip-item-value {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300;
  margin-bottom: 4px;
}
.strip-item-sub { font-size: 13px; color: rgba(245,240,232,.55); }
.strip-divider {
  width: 1px; background: rgba(255,255,255,.12); align-self: stretch;
}

/* ── SOCIAL BAND ── */
.social-band {
  text-align: center; margin-bottom: 56px; padding: 0 24px;
}
.social-band-title {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 300; color: var(--forest); margin-bottom: 24px;
}
.social-band-links {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border: 1px solid var(--border);
  border-radius: 4px; text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--charcoal); transition: all .2s;
}
.social-pill svg { width: 18px; height: 18px; }
.social-pill:hover { border-color: var(--gold); color: var(--gold); }
.social-pill.instagram:hover { border-color: #e1306c; color: #e1306c; }
.social-pill.facebook:hover  { border-color: #1877f2; color: #1877f2; }
.social-pill.whatsapp:hover  { border-color: #25D366; color: #25D366; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hours-strip { gap: 36px; }
  .strip-divider { display: none; }
}
@media (max-width: 600px) {
  .form-panel { padding: 26px 20px; }
  .hours-strip { padding: 32px 20px; gap: 28px; }
}
