/* ============================================================
   FRIDA SUITE — Design System
   Derivato dal Figma: nWOvhTVgpWT9MY5QHBI65p
   ============================================================

   01. VARIABLES
   02. RESET & BASE
   03. LAYOUT — page-layout, sidebar, main-content
   04. MOBILE HEADER
   05. SIDEBAR
   06. HERO
   07. SECTIONS — shared
   08. PHOTO CARDS (horizontal scroll)
   09. AMENITY CHIPS
   10. AUDIENCE CARDS
   11. DESTINATIONS GRID
   12. REVIEWS GRID
   13. FOOTER
   14. FOCUS & ACCESSIBILITY
   15. SCROLL ANIMATIONS
   16. MEDIA QUERIES
   ============================================================ */


/* ============================================================
   01. VARIABLES
   ============================================================ */

:root {
  /* Palette Figma esatta */
  --terracotta:            #c37354;
  --terracotta-light:      #dcaf91;
  --terracotta-extralight: #faf3ee;
  --brown:                 #513335;
  --accent:                #fbbf69;
  --white:                 #ffffff;
  --brand-300:             #eeeeee;
  --brand-500:             #b3b3b3;
  --brand-900:             #313131;
  --bg-card:               #f7f7f7;
  --text-legal:            #aba0a1;

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-ui:      'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --sidebar-w:   300px;
  --section-px:  100px;
  --section-pt:  80px;
  --section-pb:  60px;
  --gap-section: 60px;
  --gap-card:    20px;

  /* Border radius */
  --radius-card: 24px;
  --radius-btn:  10px;
  --radius-chip: 10px;

  /* Transizioni */
  --ease: 180ms ease;
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--brand-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  background: var(--white);
  border-left: 1px solid var(--brand-300);
  border-right: 1px solid var(--brand-300);
  min-height: 100vh;
}

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

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

ul, ol {
  list-style: none;
}

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

address {
  font-style: normal;
}


/* ============================================================
   03. LAYOUT — page-layout, sidebar, main-content
   ============================================================ */

.page-layout {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
}

/* Su mobile il page-layout è un blocco normale (sidebar nascosta) */
.main-content {
  flex: 1;
  min-width: 0;
  border-left: 1px solid var(--brand-300);
}


/* ============================================================
   04. MOBILE HEADER (< 1024px)
   ============================================================ */

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  height: 64px;
  padding: 0 24px;
  background: var(--white);
  border-bottom: 1px solid var(--brand-300);
}

.mobile-header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-header__logo-icon {
  width: 32px;
  height: auto;
}

.mobile-header__logo-wordmark {
  width: 100px;
  height: auto;
}

.mobile-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-header__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-btn);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.mobile-header__wa-btn img {
  width: 16px;
  height: 16px;
}

.mobile-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.mobile-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-900);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.mobile-header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-header__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 64px 0 0;
  z-index: 190;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--brand-300);
}

.mobile-nav[hidden] { display: none; }

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.mobile-nav__link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--brown);
  border-bottom: 1px solid var(--brand-300);
  transition: color var(--ease), padding-left var(--ease);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--terracotta);
  padding-left: 8px;
}

.mobile-nav__lang {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.mobile-nav__lang a {
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid var(--brand-300);
  border-radius: 6px;
  transition: all var(--ease);
}

.mobile-nav__lang a[aria-current="true"] {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}


/* ============================================================
   05. SIDEBAR (≥ 1024px)
   ============================================================ */

.sidebar {
  display: none; /* nascosta su mobile, mostrata su desktop via media query */
  flex-direction: column;
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background: var(--white);
  scrollbar-width: none;
}

.sidebar::-webkit-scrollbar { display: none; }

/* --- Logo --- */
.sidebar-logo {
  padding: 40px 32px;
  border-bottom: 1px solid var(--brand-300);
}

.sidebar-logo__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sidebar-logo__icon {
  width: 63px;
  height: auto;
}

.sidebar-logo__wordmark {
  width: 146px;
  height: auto;
}

/* --- Nav links --- */
.sidebar-nav {
  padding: 30px 32px 0;
  border-bottom: 1px solid var(--brand-300);
}

.sidebar-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav__link {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
  white-space: nowrap;
  transition: color var(--ease);
}

.sidebar-nav__link:hover,
.sidebar-nav__link:focus-visible {
  color: var(--terracotta);
}

.sidebar-nav__link--active {
  font-weight: 500;
  color: var(--terracotta);
}

/* --- Language switcher --- */
.sidebar-lang {
  display: flex;
  gap: 8px;
  padding: 24px 0 30px;
  border-bottom: none;
}

.sidebar-lang a {
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid var(--brand-300);
  border-radius: 6px;
  transition: all var(--ease);
  text-decoration: none;
}

.sidebar-lang a[aria-current="true"] {
  background: var(--terracotta-extralight);
  color: var(--brown);
  border-color: var(--terracotta-extralight);
}

.sidebar-lang a:hover:not([aria-current="true"]) {
  background: var(--terracotta-extralight);
  border-color: var(--terracotta);
}

/* --- CTA contatti --- */
.sidebar-cta {
  padding: 30px 32px;
  border-top: none;
  border-bottom: 1px solid var(--terracotta-extralight);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta__label {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--brown);
}

.sidebar-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0;
  border-radius: var(--radius-btn);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  transition: opacity var(--ease), box-shadow var(--ease);
}

.sidebar-cta__btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-cta__btn--primary {
  background: var(--terracotta);
  color: var(--white);
}

.sidebar-cta__btn--primary:hover {
  opacity: 0.88;
  box-shadow: 0 4px 12px rgba(195, 115, 84, 0.35);
}


/* --- Social proof badges --- */
.sidebar-badges {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 10px;
  background: var(--bg-card);
  border-radius: var(--radius-btn);
  transition: opacity var(--ease);
}

.sidebar-badge:hover { opacity: 0.8; }

.sidebar-badge__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 34px;
  flex-shrink: 0;
}

.sidebar-badge__logo-wrap--booking {
  height: 34px;
}

.sidebar-badge__logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.sidebar-badge__logo-wrap--booking img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sidebar-badge__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-badge__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--brown);
  white-space: nowrap;
}

.sidebar-badge__rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--brown);
}

.sidebar-badge__rating img {
  width: 14px;
  height: 14px;
}

.sidebar-badge__sub {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--brown);
  white-space: nowrap;
}


/* ============================================================
   06. HERO
   ============================================================ */

.hero {
  position: relative;
  height: 764px;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 42.7%,
    rgba(0, 0, 0, 0.65) 99.9%
  );
}

.hero__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px var(--section-px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--terracotta-extralight);
}

.hero__location {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.48px;
  color: var(--terracotta-extralight);
  max-width: 814px;
}


/* ============================================================
   07. SECTIONS — shared
   ============================================================ */

.section {
  padding: var(--section-pt) var(--section-px) var(--section-pb);
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: var(--gap-section);
}

.section__heading {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.576px;
  color: var(--terracotta);
  white-space: nowrap;
}

.section__intro {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.196px;
  color: var(--brand-900);
  max-width: 840px;
}


/* ============================================================
   08. PHOTO CARDS — horizontal scroll
   ============================================================ */

.section--features {
  /* sezione senza padding-right per permettere scroll a tutto schermo */
  padding-right: 0;
}

.section--features .section__header {
  padding-right: var(--section-px);
}

.photo-cards-scroll {
  display: flex;
  gap: var(--gap-card);
  overflow-x: auto;
  overflow-y: visible;
  padding-right: var(--section-px);
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-300) transparent;
}

.photo-cards-scroll::-webkit-scrollbar {
  height: 4px;
}

.photo-cards-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.photo-cards-scroll::-webkit-scrollbar-thumb {
  background: var(--brand-300);
  border-radius: 2px;
}

.photo-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-card);
  flex-shrink: 0;
  width: 320px;
  scroll-snap-align: start;
}

.photo-card__img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 400px;
  flex-shrink: 0;
}

.photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.photo-card:hover .photo-card__img {
  transform: scale(1.03);
}

.photo-card__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.374px;
  color: var(--brand-900);
}

.photo-card__text strong {
  font-weight: 600;
}


/* ============================================================
   09. AMENITY CHIPS
   ============================================================ */

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-card);
  align-items: flex-start;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--brand-300);
  border-radius: var(--radius-chip);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.374px;
  color: var(--brand-900);
  white-space: nowrap;
  background: var(--white);
}

.chip span {
  font-size: 17px;
  line-height: 1;
}


/* ============================================================
   10. AUDIENCE CARDS
   ============================================================ */

.audience-grid {
  display: flex;
  gap: var(--gap-card);
  align-items: flex-start;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-card);
  flex: 1 0 0;
  min-width: 0;
  align-items: flex-start;
  justify-content: flex-start;
}

.audience-card__img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.audience-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.audience-card:hover .audience-card__img {
  transform: scale(1.03);
}

.audience-card__text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.374px;
  color: var(--brand-900);
}


/* ============================================================
   11. DESTINATIONS GRID
   ============================================================ */

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-card);
  align-items: flex-start;
  margin-bottom: var(--gap-section);
}

.destination-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  width: 324px;
  border-bottom: 1px solid var(--brand-300);
}

.destination-item__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.destination-item__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.374px;
  color: var(--brand-900);
  white-space: nowrap;
}

.destination-item__dist {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.374px;
  color: var(--brand-500);
  white-space: nowrap;
}

/* Bottone pill secondario */
.btn-pill-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--terracotta-extralight);
  border-radius: var(--radius-btn);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--brown);
  white-space: nowrap;
  transition: opacity var(--ease);
}

.btn-pill-secondary:hover { opacity: 0.8; }


/* ============================================================
   12. REVIEWS GRID
   ============================================================ */

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-card);
  align-items: flex-start;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-card);
  width: 324px;
}

.review-card__avatar-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
}

.review-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.374px;
  color: var(--brand-900);
}

.review-card__text strong {
  font-weight: 600;
}


/* ============================================================
   13. FOOTER
   ============================================================ */

.footer {
  background: var(--terracotta-extralight);
  border-top: 1px solid var(--brand-300);
}

/* CTA block */
.footer-cta {
  padding: var(--section-pt) var(--section-px) var(--gap-section);
  display: flex;
  flex-direction: column;
  gap: var(--gap-card);
}

.footer-cta__heading {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.576px;
  color: var(--terracotta);
  white-space: nowrap;
}

.footer-cta__body {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.196px;
  color: var(--brand-900);
  max-width: 840px;
}

.footer-cta__actions {
  display: flex;
  gap: var(--gap-card);
  align-items: center;
  padding-top: 10px;
  flex-wrap: wrap;
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 20px;
  border-radius: var(--radius-btn);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  transition: opacity var(--ease), box-shadow var(--ease);
}

.footer-cta__btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-cta__btn--primary {
  background: var(--terracotta);
  color: var(--white);
}

.footer-cta__btn--primary:hover {
  opacity: 0.88;
  box-shadow: 0 4px 12px rgba(195, 115, 84, 0.35);
}

.footer-cta__btn--secondary {
  background: var(--terracotta-extralight);
  color: var(--brown);
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid rgba(81, 51, 53, 0.15);
}

.footer-cta__btn--secondary:hover { opacity: 0.8; }

/* Links grid */
.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 0 var(--section-px) var(--gap-section);
}

.footer-links__brand {
  display: flex;
  flex-direction: column;
  gap: var(--gap-card);
  flex-shrink: 0;
}

.footer-links__brand-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--brown);
  white-space: nowrap;
}

.footer-links__brand-sub {
  font-weight: 400;
}

.footer-links__address {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--brown);
}

.footer-links__cin {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--brown);
}

.footer-links__col-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--brown);
  margin-bottom: 10px;
}

.footer-links__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links__list a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--brown);
  white-space: nowrap;
  transition: color var(--ease);
}

.footer-links__list a:hover { color: var(--terracotta); }

.footer-links__logo-mark {
  flex-shrink: 0;
  align-self: flex-end;
  margin-left: auto;
}

.footer-links__logo-mark img {
  width: 42px;
  height: auto;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--brand-300);
  padding: 20px var(--section-px) 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom__legal {
  display: flex;
  gap: 30px;
}

.footer-bottom__legal a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--text-legal);
  transition: color var(--ease);
}

.footer-bottom__legal a:hover { color: var(--brown); }

.footer-bottom__copyright {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--text-legal);
}


/* ============================================================
   14. FOCUS & ACCESSIBILITY
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================================
   15. INNER PAGES — componenti condivisi pagine interne
   ============================================================ */

/* Hero compatto (no immagine full-bleed) */
.page-hero {
  padding: var(--section-pt) var(--section-px) var(--section-pb);
  background: var(--terracotta-extralight);
  border-bottom: 1px solid var(--brand-300);
}

.page-hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--brown);
  margin-bottom: 20px;
  max-width: 720px;
}

.page-hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--brown);
  opacity: 0.8;
  max-width: 600px;
}

/* Testo corpo sezione (più piccolo del section__intro) */
.section-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--brand-900);
  max-width: 720px;
}

.section-body + .section-body { margin-top: 16px; }

.section-body strong { font-weight: 600; }

/* Link a Google Maps — stile testuale */
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity var(--ease);
}

.maps-link:hover { opacity: 0.7; }

.maps-link__icon {
  font-size: 12px;
  line-height: 1;
}

/* Card trasporto (aeroporti) */
.transport-cards {
  display: flex;
  gap: var(--gap-card);
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.transport-card {
  flex: 1 1 300px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--brand-300);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.transport-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 12px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.transport-card__name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-900);
}

.transport-card__meta {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.01em;
}

.transport-card__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--brand-900);
  flex: 1;
}

/* Tabella distanze */
.distances-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.distances-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.distances-table thead th {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand-500);
  padding: 0 24px 14px 0;
  text-align: left;
  border-bottom: 1px solid var(--brand-300);
}

.distances-table thead th:last-child { padding-right: 0; }

.distances-table tbody td {
  padding: 14px 24px 14px 0;
  border-bottom: 1px solid var(--brand-300);
  font-size: 15px;
  line-height: 1.4;
  color: var(--brand-900);
  vertical-align: middle;
}

.distances-table tbody td:last-child { padding-right: 0; }

.distances-table tbody tr:last-child td { border-bottom: none; }

.distances-table .dest-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.distances-table .dest-arrow {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.distances-table .dist-cell {
  color: var(--brand-900);
  font-weight: 500;
  white-space: nowrap;
}

.distances-table .time-cell {
  color: var(--brand-500);
  font-weight: 400;
  white-space: nowrap;
}

.distances-table tfoot td {
  padding-top: 16px;
  font-size: 13px;
  color: var(--brand-500);
  font-style: italic;
  border-top: 1px solid var(--brand-300);
}

/* Embed mappa */
.map-embed {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--brand-300);
  aspect-ratio: 16 / 6;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ============================================================
   16. SCROLL ANIMATIONS
   ============================================================ */

.anim-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-ready.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .anim-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   17. HOST PAGE
   ============================================================ */

.host-sections {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  padding: var(--section-pt) var(--section-px) var(--section-pb);
}

.host-photo-circle {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}

.host-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.host-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.host-section__heading {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.576px;
  color: var(--terracotta);
  line-height: 1.2;
}

.host-narrative {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.196px;
  color: var(--brand-900);
  max-width: 840px;
}

.host-narrative p + p {
  margin-top: 24px;
}

.host-narrative strong {
  font-weight: 600;
}


/* ============================================================
   18. NOCI E VALLE D'ITRIA PAGE
   ============================================================ */

.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-card);
}

.place-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--brand-300);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.place-card__photo-wrap {
  overflow: hidden;
}

.place-card__photo {
  aspect-ratio: 4 / 3;
  background: #e8dfd3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.place-card:hover .place-card__photo {
  transform: scale(1.03);
}

.place-card--noci {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.place-card--noci:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.place-card--noci:hover .place-card__photo {
  transform: none;
}

.place-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.place-card__photo-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-500);
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.place-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.place-card__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-900);
  line-height: 1.3;
}

.place-card__distance {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.01em;
}

.place-card__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--brand-900);
  margin-top: 4px;
}

.restaurants-placeholder {
  border: 1.5px dashed var(--terracotta);
  background: var(--terracotta-extralight);
  border-radius: var(--radius-card);
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.restaurants-placeholder__heading {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
}

.restaurants-placeholder__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--brand-900);
  max-width: 520px;
}

/* Dove mangiare — lista editoriale */
.restaurant-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.restaurant-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 0;
  border-bottom: 1px solid #e8dfd3;
}

.restaurant-item:last-child {
  border-bottom: none;
}

.restaurant-item__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.restaurant-item__identity {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.restaurant-item__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: #2a2520;
  line-height: 1.3;
  white-space: nowrap;
}

.restaurant-item__dot {
  color: var(--terracotta-light);
  font-size: 16px;
  padding: 0 8px;
  flex-shrink: 0;
}

.restaurant-item__type {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  color: var(--brand-500);
  line-height: 1.4;
}

.restaurant-item__maps-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--terracotta);
  white-space: nowrap;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity var(--ease);
}

.restaurant-item__maps-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.restaurant-item__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #6b5f54;
}


/* ============================================================
   19. LEGAL PAGES — Privacy & Cookie Policy
   ============================================================ */

.legal-body {
  padding: var(--section-pt) var(--section-px) var(--section-pb);
}

.legal-meta {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--brand-500);
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--brand-300);
  max-width: 720px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1.25;
  margin-top: 48px;
  margin-bottom: 20px;
  max-width: 720px;
}

.legal-body h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-900);
  margin-top: 28px;
  margin-bottom: 12px;
  max-width: 720px;
}

.legal-body p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--brand-900);
  max-width: 720px;
  margin-bottom: 16px;
}

.legal-body p:last-child { margin-bottom: 0; }

.legal-body ul {
  padding-left: 24px;
  margin-bottom: 20px;
  max-width: 720px;
}

.legal-body li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--brand-900);
  margin-bottom: 8px;
}

.legal-body strong { font-weight: 600; }

.legal-body a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity var(--ease);
}

.legal-body a:hover { opacity: 0.8; }

.legal-table-wrap {
  max-width: 720px;
  overflow-x: auto;
  margin: 24px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.legal-table th {
  text-align: left;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 10px 16px;
  border-bottom: 2px solid var(--brand-300);
}

.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--brand-300);
  vertical-align: top;
  color: var(--brand-900);
}

.legal-table tr:last-child td { border-bottom: none; }


/* ============================================================
   16. MEDIA QUERIES
   ============================================================ */

/* —— Tablet: 768px – 1023px —— */
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --section-px: 40px;
    --section-pt: 60px;
    --section-pb: 48px;
    --gap-section: 48px;
  }

  .hero__title {
    font-size: 52px;
    letter-spacing: -1px;
  }

  .section__heading {
    font-size: 36px;
    white-space: normal;
  }

  .section__intro {
    font-size: 22px;
  }

  .footer-cta__heading {
    font-size: 36px;
    white-space: normal;
  }

  .footer-cta__body {
    font-size: 22px;
  }

  .chips-grid {
    gap: 12px;
  }

  .chip {
    font-size: 15px;
    padding: 12px 14px;
  }

  .audience-grid {
    flex-wrap: wrap;
  }

  .audience-card {
    flex: 0 0 calc(50% - 10px);
  }

  .destination-item {
    width: 280px;
  }

  .review-card {
    width: calc(50% - 10px);
  }

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

  .footer-links__logo-mark {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .host-section__heading {
    font-size: 36px;
  }

  .host-narrative {
    font-size: 20px;
  }
}

/* —— Desktop: ≥ 1024px —— */
@media (min-width: 1024px) {

  /* Mostra sidebar, nascondi mobile header */
  .mobile-header { display: none; }
  .mobile-nav    { display: none !important; }

  .sidebar { display: flex; }

  .page-layout {
    /* Sidebar sticky a sinistra, main occupa il resto */
  }

  /* Section heading non va a capo su desktop */
  .section__heading {
    white-space: nowrap;
  }

  /* Hero */
  .hero {
    height: 764px;
  }

  .hero__title {
    font-size: 74px;
  }
}

/* —— Large desktop: ≥ 1280px —— */
@media (min-width: 1280px) {
  :root {
    --section-px: 100px;
  }
}

/* —— Solo mobile: < 768px —— */
@media (max-width: 767px) {
  :root {
    --section-px: 20px;
    --section-pt: 48px;
    --section-pb: 40px;
    --gap-section: 40px;
    --gap-card:    16px;
  }

  .page-layout {
    /* Su mobile non c'è sidebar, il main è a piena larghezza */
  }

  .main-content {
    border-left: none;
  }

  .hero {
    height: 480px;
  }

  .hero__text {
    padding: 32px var(--section-px);
    gap: 8px;
  }

  .hero__location {
    font-size: 13px;
  }

  .hero__title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .section__heading {
    font-size: 28px;
    letter-spacing: -0.3px;
    white-space: normal;
  }

  .section__intro {
    font-size: 17px;
  }

  /* Photo cards: scrollabili */
  .section--features {
    padding-right: 0;
  }

  .photo-card {
    width: 260px;
  }

  .photo-card__img-wrap {
    height: 320px;
  }

  /* Chips */
  .chip {
    font-size: 14px;
    padding: 10px 14px;
    white-space: nowrap;
  }

  /* Audience: 1 colonna */
  .audience-grid {
    flex-direction: column;
  }

  .audience-card {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .audience-card__img-wrap {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    aspect-ratio: auto;
  }

  /* Destinations: 1 colonna */
  .destination-item {
    width: 100%;
  }

  /* Reviews: 1 colonna */
  .review-card {
    width: 100%;
  }

  /* Footer CTA */
  .footer-cta__heading {
    font-size: 28px;
    white-space: normal;
    letter-spacing: -0.3px;
  }

  .footer-cta__body {
    font-size: 17px;
  }

  .footer-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta__btn {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-links__logo-mark {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .host-photo-circle {
    width: 160px;
    height: 160px;
  }

  .host-section__heading {
    font-size: 28px;
    letter-spacing: -0.3px;
  }

  .host-narrative {
    font-size: 17px;
  }

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

  .restaurants-placeholder {
    padding: 32px 20px;
  }

  .restaurant-item {
    padding: 28px 0;
    gap: 12px;
  }

  .restaurant-item__name {
    font-size: 20px;
    white-space: normal;
  }

  .restaurant-item__type {
    font-size: 14px;
  }

  .restaurant-item__desc {
    font-size: 16px;
  }

  .restaurant-item__row {
    flex-wrap: wrap;
    gap: 4px 16px;
  }

  .legal-body h2 {
    font-size: 22px;
    margin-top: 36px;
  }

  .legal-body p,
  .legal-body li {
    font-size: 16px;
  }
}

/* —— Tra 1024px e 1279px: sezione-px ridotto —— */
@media (min-width: 1024px) and (max-width: 1279px) {
  :root {
    --section-px: 60px;
  }

  .hero__title {
    font-size: 58px;
  }

  .section__heading {
    font-size: 40px;
  }

  .footer-cta__heading {
    font-size: 40px;
  }

  .destination-item {
    width: 280px;
  }

  .review-card {
    width: 280px;
  }

  .host-section__heading {
    font-size: 40px;
  }
}
