/* ===== DESIGN SYSTEM: Ristorante De Rose ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #FDFBF7;
  --bg-warm: #F5F0E8;
  --bg-dark: #1A1A1A;
  --text-primary: #2C2C2C;
  --text-secondary: #555;
  --text-light: #FDFBF7;
  --accent: #6CACE4;
  --accent-dark: #4A8DC4;
  --accent-light: #8FC4EE;
  --gold: #C4953A;
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== UTILITY ===== */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 24px 0;
  border-radius: 2px;
}

.divider-center {
  margin: 24px auto;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 172, 228, 0.35);
}

.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(108, 172, 228, 0.45);
}

.btn-cta svg {
  width: 18px;
  height: 18px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.4s;
}

.site-header.scrolled .header-logo-text {
  color: var(--text-primary);
}

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

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

.site-header.scrolled .main-nav a {
  color: var(--text-secondary);
}

.site-header.scrolled .main-nav a:hover {
  color: var(--text-primary);
}

.header-cta .btn-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

.site-header.scrolled .menu-toggle span {
  background: var(--text-primary);
}

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

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero-payoff {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.hero-scroll span {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===== FILOSOFIA ===== */
.filosofia {
  background: var(--bg-primary);
}

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

.filosofia-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

.filosofia-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(108, 172, 228, 0.2);
  border-radius: 12px;
  pointer-events: none;
}

.filosofia-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.9;
}

.filosofia-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.filosofia-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-warm);
  border-radius: 10px;
}

.filosofia-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.1rem;
}

.filosofia-feature h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.filosofia-feature p {
  font-size: 0.8rem !important;
  color: var(--text-secondary);
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

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

.menu-section .section-title,
.menu-section .section-subtitle {
  text-align: center;
}

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

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.menu-tab {
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-primary);
  color: var(--text-secondary);
  transition: all 0.3s;
}

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

.menu-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(108, 172, 228, 0.3);
}

.menu-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.menu-panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 30px 0 20px;
  width: 100%;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-primary);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.menu-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(108, 172, 228, 0.3);
}

.menu-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.menu-note {
  margin-top: 30px;
  padding: 18px 24px;
  background: var(--bg-primary);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== DISH MODAL ===== */
.dish-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.dish-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.dish-modal {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.85) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dish-modal-overlay.open .dish-modal {
  transform: scale(1) translateY(0);
}

.dish-modal-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #e8e0d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dish-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-modal-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.dish-modal-image-placeholder span:first-child {
  font-size: 3rem;
}

.dish-modal-image-placeholder span:last-child {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.dish-modal-body {
  padding: 28px 30px 30px;
}

.dish-modal-emoji {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.dish-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.dish-modal-subtitle {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dish-modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.dish-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
  z-index: 1;
}

.dish-modal-close:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.1);
}

.dish-modal-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 14px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .dish-modal {
    max-width: 100%;
  }

  .dish-modal-image {
    height: 180px;
  }

  .dish-modal-body {
    padding: 22px 24px 26px;
  }

  .dish-modal-title {
    font-size: 1.3rem;
  }
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-strip img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-strip img:hover {
  transform: scale(1.03);
}

/* ===== RECENSIONI ===== */
.recensioni {
  background: var(--bg-primary);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: left;
  transition: all 0.3s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-stars {
  color: #F4B942;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Review CTA */
.review-cta {
  text-align: center;
  margin-top: 50px;
}

.review-cta-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.review-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.review-btn-google {
  background: #4285F4;
}

.review-btn-google:hover {
  background: #3367D6;
}

.review-btn-trip {
  background: #00AF87;
}

.review-btn-trip:hover {
  background: #009974;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--accent);
  color: #fff;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .header-logo {
  margin-bottom: 16px;
}

.footer-brand .header-logo-text {
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
}

.footer-hours li .day {
  font-weight: 600;
}

.footer-hours li .time {
  color: rgba(255, 255, 255, 0.85);
}

.footer-hours li.closed .time {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-notice {
  background: rgba(0, 0, 0, 0.12);
  padding: 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 20px;
}

.footer-map {
  margin-top: 40px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  height: 300px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .filosofia-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .filosofia-image {
    order: -1;
  }

  .filosofia-image img {
    height: 300px;
  }

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

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

  .gallery-strip img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }


  .section-padding {
    padding: 70px 0;
  }

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

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

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

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

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 220px;
  }

  .filosofia-features {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   REDESIGN V4 — NUOVI STILI HOME PAGE
   Appended 2026-05-19 — non modificare i blocchi sopra
   ============================================================ */

/* ── HEADER: Logo SX, [CHIAMA][hamburger] DX ── */

/* Override header-inner: usa space-between standard (logo sx, azioni dx) */
.header-inner {
  justify-content: space-between;
}

/* Logo label stacked */
.header-logo-labels {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
}

.site-header.scrolled .header-logo-sub {
  color: var(--text-secondary);
}

/* ── PULSANTE "CHIAMA" — testo outline, accent azzurro ── */
.btn-chiama {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 9px 22px;
  border: 1.5px solid var(--accent);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-chiama:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Variante su hero scuro: bordo bianco semitrasparente */
.site-header:not(.scrolled) .btn-chiama {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.site-header:not(.scrolled) .btn-chiama:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ── DESTRA HEADER: [CHIAMA] + [hamburger] ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;   /* spazio tra CHIAMA e hamburger */
  flex-shrink: 0;
}

/* Hamburger nascosto su desktop, visibile su mobile */
.menu-toggle {
  display: none;
}

/* ── HAMBURGER X — visibile e NERA quando il menu è aperto ── */
.menu-toggle.active span {
  background: var(--text-primary) !important;
}

/* ── LOGO TESTO → NERO quando il menu mobile è aperto ── */
.site-header.menu-open .header-logo-text,
.site-header.menu-open .header-logo-sub {
  color: var(--text-primary) !important;
}

.btn-cta-hero {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 1rem;
  padding: 16px 52px;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: none;
}

.btn-cta-hero:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108, 172, 228, 0.45);
}

/* Gruppo [MENÙ][CHIAMA] affiancati nell'hero */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* CHIAMA nell'hero — variante piena (accent #6CACE4) */
.btn-cta-hero--chiama {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-cta-hero--chiama:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 30px rgba(108, 172, 228, 0.5);
}

/* H1 hero — uppercase, Playfair */
.hero h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── GALLERY PREVIEW SECTION ── */
.gallery-preview {
  background: var(--bg-warm);
}

/* Foto quadrate con gap e border-radius */
.gallery-strip--preview {
  gap: 12px;
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-strip-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 4px solid #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

/* CTA "SCOPRI LA GALLERIA" centrato sotto le foto */
.gallery-cta-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  margin-top: 60px !important;
  margin-bottom: 20px !important;
}

/* ── RATING BADGE — sezione recensioni ── */
.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 44px;
  padding: 14px 32px;
  background: var(--bg-warm);
  border-radius: 50px;
  width: fit-content;
  border: 1px solid var(--border-light);
}

.rating-stars {
  color: #F4B942;
  font-size: 1.15rem;
  letter-spacing: 3px;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.rating-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── RECENSIONI: griglia 2 colonne ── */
.reviews-grid--2col {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER: griglia 3 colonne uguali ── */
.footer-grid--equal {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-col {
  /* colonna generica — ereditano tutti gli stili dal footer esistente */
}

/* Brand logo nel footer */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 40px !important;
  padding-bottom: 10px !important;
  max-width: 300px;
}

/* Social stacked: Instagram + TikTok in colonna */
.footer-social-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-tiktok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #010101;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  width: 100%;
  box-sizing: border-box;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-tiktok:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ── FOOTER COLONNA 2: Rating + Estratti ── */
.footer-rating {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.footer-rating-score {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.footer-rating-stars {
  color: #F4B942;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin: 8px 0;
}

.footer-rating-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* Blockquote estratti recensioni */
.footer-review-excerpt {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  padding-left: 14px;
  margin-bottom: 16px;
}

.footer-review-excerpt p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 4px;
}

.footer-review-excerpt footer {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-review-excerpt footer span {
  color: #F4B942;
}

/* Link piattaforme recensioni */
.footer-review-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.footer-review-link {
  font-size: 0.82rem;
  color: var(--accent-light);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-review-link:hover {
  color: #fff;
}

/* ── FOOTER COLONNA 3: mappa dentro la colonna ── */
.footer-col-map {
  margin-top: 20px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.footer-col-map iframe {
  border-radius: 10px;
}

/* ── RESPONSIVE NUOVI STILI ── */
@media (max-width: 992px) {
  .footer-grid--equal {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .reviews-grid--2col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Header centrato su mobile: hamburger sx, logo centro, CHIAMA dx */
  .main-nav {
    display: none; /* nascosta — gestita dall'overlay */
  }

  .header-cta {
    display: flex; /* CHIAMA rimane visibile anche su mobile */
  }

  .btn-chiama {
    font-size: 0.7rem;
    padding: 7px 14px;
    letter-spacing: 1.5px;
  }

  .header-logo--center {
    gap: 6px;
  }

  .header-logo--center img {
    width: 40px;
    height: 40px;
  }

  .header-logo-text {
    font-size: 0.95rem;
  }

  .header-logo-sub {
    display: none; /* nasconde il sottotitolo su schermi molto piccoli */
  }

  /* Hero CTA ridotto su mobile */
  .btn-cta-hero {
    padding: 14px 36px;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  /* Gallery: 1 colonna su mobile */
  .gallery-strip--preview {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  /* Recensioni: 1 colonna su mobile */
  .reviews-grid--2col {
    grid-template-columns: 1fr;
  }

  /* Footer: 1 colonna su mobile */
  .footer-grid--equal {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Rating badge su mobile */
  .rating-badge {
    gap: 8px;
    padding: 12px 20px;
  }

  .rating-score {
    font-size: 1.2rem;
  }
}

/* ── HEADER left / right flex groups ── */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;          /* spazio tra [CHIAMA] e [☰] */
  flex-shrink: 0;
}

/* Hamburger nascosto su desktop, visibile su mobile */
.menu-toggle {
  display: none;
}

/* ── HAMBURGER X — visibile e NERA quando il menu è aperto ── */
.menu-toggle.active span {
  background: var(--text-primary) !important;
}

/* ── LOGO TESTO → NERO quando il menu mobile è aperto ── */
.site-header.menu-open .header-logo-text,
.site-header.menu-open .header-logo-sub {
  color: var(--text-primary) !important;
}

/* ── RESPONSIVE: mobile ── */
@media (max-width: 768px) {
  /* Mostra hamburger su mobile */
  .menu-toggle {
    display: flex;
  }
  /* La nav desktop si nasconde — usa l'overlay mobile */
  .main-nav {
    display: none;
  }
  /* Riduci leggermente il CHIAMA su schermi molto piccoli */
  .btn-chiama {
    font-size: 0.7rem;
    padding: 7px 14px;
    letter-spacing: 1.5px;
  }
  .header-logo img {
    width: 40px;
    height: 40px;
  }
  .header-logo-text {
    font-size: 0.95rem;
  }
  .header-logo-sub {
    display: none;
  }
  /* Hero CTA ridotto su mobile */
  .btn-cta-hero {
    padding: 14px 36px;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  /* Gallery: 1 colonna su mobile */
  .gallery-strip--preview {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  /* Recensioni: 1 colonna su mobile */
  .reviews-grid--2col {
    grid-template-columns: 1fr;
  }
  /* Footer: 1 colonna su mobile */
  .footer-grid--equal {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Rating badge su mobile */
  .rating-badge {
    gap: 8px;
    padding: 12px 20px;
  }
  .rating-score {
    font-size: 1.2rem;
  }
}

/* Quando il menu mobile è aperto, l'header diventa trasparente per rivelare lo sfondo crema */
.site-header.menu-open {
  background: transparent !important;
  box-shadow: none !important;
}