/* =========================================================
   NATURÈ LANDING PAGE
   Mobile-first, pensata per traffico da QR code.
   ========================================================= */

:root {
  --cream: #f4eee3;
  --paper: #fbf8f1;
  --ink: #1d1e19;
  --muted: #68685f;
  --accent: #ef5e39;
  --lime: #3b5255;
  --line: rgba(29, 30, 25, .12);
  --white: #fff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

/* TOPBAR */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 0 6vw;
  color: var(--white);

  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}

.topbar.scrolled {
  background: rgba(251, 248, 241, .92);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.brand-mark {
  width: 54px;
  height: 54px;

  background: #ffffff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  flex-shrink: 0;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  /* Zoom sul logo all'interno del PNG 2000x2000 */
  transform: scale(1.55);

  display: block;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: .92rem;
}

.top-cta {
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 130px 6vw 90px;

  color: var(--white);
  background:
    url("images/header.png") center center / cover no-repeat,
    linear-gradient(135deg, #555, #222);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12, 13, 10, .78) 0%, rgba(12, 13, 10, .20) 58%, rgba(12, 13, 10, .18) 100%),
    linear-gradient(to right, rgba(12, 13, 10, .22), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .17em;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: var(--muted);
}

.hero h1,
.section-heading h2,
.booking-card h2,
.map-info h2,
.guest-card h2,
.wide-banner h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .98;
}

.hero h1 {
  font-size: clamp(3.1rem, 11vw, 7.8rem);
  max-width: 960px;
}

.hero h1 em {
  font-weight: 600;
}

.hero-copy {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
}

.hero-actions,
.map-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-glass {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.34);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: .78rem;
  color: rgba(255,255,255,.72);
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: 6vw;
  bottom: 42px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: none;
  place-items: center;
}

.scroll-hint span {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-2px, -2px);
}

/* =========================================================
   GOOGLE REVIEWS
   ========================================================= */

.reviews-section {
  background: var(--paper);
}


/* HEADER */

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-bottom: 50px;
}

.reviews-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.04em;
}

.reviews-header h2 em {
  font-weight: 600;
}


/* GOOGLE SCORE */

.google-score {
  display: flex;
  align-items: center;
  gap: 18px;

  width: fit-content;

  padding: 20px 24px;

  background: #fff;

  border: 1px solid var(--line);
  border-radius: 22px;
}

.google-score-number {
  font-family: "Playfair Display", serif;

  font-size: 3.7rem;
  font-weight: 600;
  line-height: 1;
}

.google-score-content {
  display: flex;
  flex-direction: column;
}

.google-stars {
  color: #fbbc04;

  font-size: 18px;
  letter-spacing: 2px;
}

.google-score-content strong {
  margin-top: 5px;

  font-size: .95rem;
}

.google-score-content span {
  color: var(--muted);

  font-size: .75rem;
}


/* GRID */

.reviews-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 18px;
}


/* CARD */

.review-card {
  display: flex;
  flex-direction: column;

  min-height: 340px;

  padding: 28px;

  background: #fff;

  border: 1px solid var(--line);
  border-radius: 24px;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.review-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}


/* UTENTE */

.review-user {
  display: flex;
  align-items: center;

  gap: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #46575b;
  color: #fff;

  font-size: .95rem;
  font-weight: 700;
}

.review-user-info strong {
  display: block;

  font-size: .95rem;
}

.review-user-info span {
  color: var(--muted);

  font-size: .72rem;
}


/* STELLE */

.review-stars {
  margin-top: 20px;

  color: #fbbc04;

  font-size: 17px;
  letter-spacing: 2px;
}


/* TESTO */

.review-text {
  margin-top: 20px;

  flex-grow: 1;

  color: #40403a;

  font-size: .95rem;
  line-height: 1.65;
}


/* FONTE */

.review-source {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-top: 24px;
  padding-top: 18px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: .72rem;
}


/* CTA GOOGLE */

.reviews-footer {
  display: flex;
  justify-content: center;

  margin-top: 38px;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding: 15px 22px;

  border: 1px solid var(--ink);
  border-radius: 999px;

  color: var(--ink);
  background: transparent;

  text-decoration: none;
  font-weight: 700;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.reviews-google-link:hover {
  background: var(--ink);
  color: #fff;

  transform: translateY(-2px);
}

.reviews-google-icon {
  font-weight: 800;
}

.reviews-arrow {
  font-size: 1.2rem;
}


/* DESKTOP */

@media (min-width: 760px) {

  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

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

}


/* GENERALI */

.section {
  padding: 94px 6vw;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
}

.section-heading code {
  font-size: .88em;
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  gap: 42px;
}

.intro-copy {
  align-self: center;
}

.intro-copy .lead {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.22;
  margin-bottom: 22px;
}

.intro-copy > p:not(.lead) {
  color: var(--muted);
  max-width: 620px;
}

.mini-stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.mini-stats span {
  color: var(--muted);
  font-size: .72rem;
}

.image-card {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  height: 100%;
  object-fit: cover;
}

/* STRIP */

.experience-strip {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 6vw;
  background: var(--lime);
  color: #ef5e39;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: .1em;
  font-size: .78rem;
}

/* DISHES */

.dishes {
  overflow: hidden;
}

.dish-swiper {
  overflow: visible;
  padding-bottom: 52px !important;
}

.dish-slide {
  position: relative;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
}
.dish-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-slide:hover img {
  transform: scale(1.035);
}

.dish-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 14px;
  border-radius: 14px;

  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
}

.dish-caption span {
  color: var(--muted);
  font-size: .72rem;
}

.dish-caption p {
  font-weight: 700;
  font-size: .9rem;
}

.swiper-pagination-bullet-active {
  background: var(--ink) !important;
}

/* BANNER */

.wide-banner {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.wide-banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.wide-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05) 70%);
}

.wide-banner-content {
  position: relative;
  z-index: 2;
  padding: 70px 6vw;
  color: var(--white);
}

.wide-banner h2 {
  font-size: clamp(3rem, 8vw, 7rem);
}

/* GUEST */

.guest-section {
  background: var(--paper);
}

.guest-card {
  display: grid;
  gap: 34px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--lime);
}

.guest-card h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 18px;
}

.guest-card p:last-child {
  max-width: 650px;
}

/* MAP */

.map-section {
  display: grid;
  background: var(--cream);
}

.map-info {
  padding: 80px 6vw;
}

.map-info h2 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.map-info > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  margin: 22px 0 30px;
}

.map-frame {
  min-height: 520px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(.8) contrast(.95);
}

/* BOOKING */

.booking-section {
  padding: 80px 6vw;
  background:#3b5255;
}

.booking-card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  padding: 70px 0;
}

.booking-card h2 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.booking-card > p:not(.eyebrow):not(.booking-note) {
  max-width: 700px;
  margin: 24px auto 34px;
  color: rgba(255,255,255,.68);
}

.booking-actions {
  justify-content: center;
}

.booking-button {
  min-width: min(100%, 280px);
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 18px;
  border-radius: 18px;
  text-decoration: none;

  background: var(--white);
  color: var(--ink);

  transition: transform .2s ease;
}

.booking-button:hover {
  transform: translateY(-3px);
}
.booking-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  background: transparent;
}

.booking-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.booking-icon img.whatsapp-logo {
  width: 48px;
  height: 48px;
}

.booking-button span:last-child {
  text-align: left;
}

.booking-button small,
.booking-button strong {
  display: block;
}

.booking-button small {
  color: var(--muted);
  font-size: .72rem;
}

.booking-button strong {
  font-size: 1rem;
}

.booking-note {
  margin-top: 24px;
  color: rgba(255,255,255,.48);
  font-size: .78rem;
}

/* FAQ */

.faq-list {
  max-width: 950px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  max-width: 700px;
  color: var(--muted);
  padding-top: 14px;
}

/* FOOTER */

footer {
  padding: 54px 6vw 110px;
  display: grid;
  gap: 34px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.footer-brand p,
.copyright {
  color: var(--muted);
  font-size: .8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  font-size: .88rem;
}

/* MOBILE CTA */

.mobile-cta {
  position: fixed;
  z-index: 1200;
  left: 12px;
  right: 12px;
  bottom: 12px;

  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8px;

  padding: 8px;
  border-radius: 20px;

  background: rgba(251,248,241,.9);
  box-shadow: 0 12px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: .88rem;
}

.mobile-cta-main {
  background: var(--accent);
  color: var(--white);
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.22,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* TABLET / DESKTOP */

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .scroll-hint {
    display: grid;
  }

  .intro-grid {
    grid-template-columns: .9fr 1.1fr;
    align-items: stretch;
  }

  .image-card {
    min-height: 560px;
  }

  .guest-card {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 58px;
  }

  .map-section {
    grid-template-columns: .85fr 1.15fr;
  }

  footer {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-bottom: 54px;
  }

  .copyright {
    grid-column: 1 / -1;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1100px) {
  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .topbar {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section,
  .experience-strip,
  .wide-banner-content,
  .booking-section,
  footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/* RIDUZIONE MOVIMENTO */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* LANGUAGE SWITCH */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  appearance: none;
  border: 1px solid currentColor;
  background: rgba(255,255,255,.08);
  color: inherit;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease;
}

.lang-switch:hover {
  transform: translateY(-1px);
}

.topbar.scrolled .lang-switch {
  background: rgba(29,30,25,.03);
}

.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.lang-label {
  font-size: .78rem;
  letter-spacing: .06em;
}
/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 759px) {

  .hero {
    min-height: 88svh;
    padding: 110px 6vw 60px;
  }

}
/* =========================================
   MOBILE OPTIMIZATION
   ========================================= */

@media (max-width: 759px) {

  /* HEADER */

  .topbar {
    height: 68px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }


  /* HERO */

  .hero {
    min-height: 88svh;
    padding: 105px 6vw 55px;
  }


  /* STRIPE */

  .experience-strip {
    width: 100%;

    padding: 16px 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 0;

    font-size: .58rem;
    letter-spacing: .05em;

    white-space: nowrap;
    overflow: hidden;
  }

  .experience-strip span {
    flex-shrink: 0;
  }

}