/* ==========================================================================
   Simo Stays — Design system
   ========================================================================== */

:root {
  --color-cream: #FAF7F2;
  --color-cream-dark: #F1EAE0;
  --color-anthracite: #2B2B2B;
  --color-anthracite-soft: #4a4a4a;
  --color-gold: #B8964A;
  --color-gold-dark: #96793a;
  --color-gold-light: #d8bd82;
  --color-sage: #8A9A7E;
  --color-sage-dark: #6f8064;
  --color-white: #ffffff;

  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-sans: 'Figtree', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1240px;
  --radius: 10px;
  --shadow-soft: 0 10px 40px rgba(43, 43, 43, 0.08);
  --shadow-strong: 0 20px 60px rgba(43, 43, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-anthracite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 560;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--color-anthracite);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }

/* Parola accento nei titoli: corsivo dorato */
h1 em, h2 em {
  font-style: italic;
  font-weight: 480;
  color: var(--color-gold);
}
.hero h1 em, .page-header h1 em, .section--anthracite h2 em { color: var(--color-gold-light); }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 0.9em;
}

/* Fregio dorato — firma ricorrente Simo Stays */
.flourish {
  position: relative;
  display: block;
  width: 120px;
  height: 9px;
  margin: 4px auto 20px;
}
.flourish::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.flourish::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--color-gold) 24%, transparent 45%,
    transparent 55%, var(--color-gold) 76%, transparent);
}
.flourish--left { margin-left: 0; margin-right: 0; }

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--cream-dark {
  background: var(--color-cream-dark);
}

.section--anthracite {
  background: var(--color-anthracite);
  color: var(--color-cream);
}
.section--anthracite h2, .section--anthracite h3 { color: var(--color-cream); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lede {
  font-size: 1.15rem;
  color: var(--color-anthracite-soft);
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 3px;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(184, 150, 74, 0.35);
}
.btn--gold:hover { background: var(--color-gold-dark); }

.btn--outline {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}
.btn--outline:hover { background: var(--color-gold); color: var(--color-white); }

.btn--outline-light {
  background: transparent;
  border-color: rgba(250, 247, 242, 0.5);
  color: var(--color-cream);
}
.btn--outline-light:hover { background: var(--color-cream); color: var(--color-anthracite); }

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

.btn--block { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* Navbar ------------------------------------------------------------------ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 43, 43, 0.06);
  transition: box-shadow 0.3s ease;
}
.navbar.is-scrolled { box-shadow: 0 8px 28px rgba(43, 43, 43, 0.1); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  transition: padding 0.3s ease;
}
.navbar.is-scrolled .navbar__inner { padding-top: 7px; padding-bottom: 7px; }

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

.navbar__logo {
  height: 54px;
  width: auto;
  display: block;
}
@media (min-width: 900px) {
  .navbar__logo { height: 60px; }
}

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

.navbar__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-anthracite-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.navbar__links a:hover, .navbar__links a.is-active { color: var(--color-gold-dark); }

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

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-anthracite);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid rgba(43,43,43,0.06);
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile a {
  padding: 12px 4px;
  font-weight: 500;
  color: var(--color-anthracite-soft);
  border-bottom: 1px solid rgba(43,43,43,0.05);
}

@media (min-width: 900px) {
  .navbar__links { display: flex; }
  .navbar__toggle { display: none; }
  .navbar__mobile { display: none !important; }
}

/* Hero --------------------------------------------------------------------*/

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -60px 0;
  background-size: cover;
  background-position: center 70%;
  transform: scale(1.08);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,14,0.55) 0%, rgba(20,18,14,0.45) 40%, rgba(20,18,14,0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 24px 80px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  width: min(340px, 74vw);
  margin: 0 auto 20px;
}
.hero__badge img { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }

.hero__content h1 {
  color: var(--color-white);
  margin-bottom: 0.35em;
}

.hero__tagline {
  font-family: var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-gold-light);
  margin-bottom: 1.4em;
  font-weight: 600;
}

.hero__lede {
  font-size: 1.1rem;
  color: rgba(250, 247, 242, 0.88);
  max-width: 560px;
  margin: 0 auto 2em;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Entrata elegante dei contenuti hero */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero__content > * { animation: fadeUp 0.9s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero__content > *:nth-child(3) { animation-delay: 0.30s; }
.hero__content > *:nth-child(4) { animation-delay: 0.42s; }
.hero__content > *:nth-child(5) { animation-delay: 0.55s; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(250,247,242,0.85);
  font-size: 1.5rem;
  line-height: 1;
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.75; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* Reveal on scroll ---------------------------------------------------------*/

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.75s cubic-bezier(0.22,0.61,0.36,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__content > * { animation: none; }
  .hero__scroll { animation: none; }
}

/* Page header (non-home pages) -------------------------------------------*/

.page-header {
  position: relative;
  color: var(--color-white);
  padding: 150px 0 70px;
  text-align: center;
  background: linear-gradient(160deg, #33301f 0%, var(--color-anthracite) 60%);
}
.page-header h1 { color: var(--color-white); }
.page-header .eyebrow { color: var(--color-gold-light); }
.page-header .lede { color: rgba(250,247,242,0.8); max-width: 620px; margin: 0 auto; }

/* Cards --------------------------------------------------------------------*/

.grid {
  display: grid;
  gap: 32px;
}
.grid--3 { grid-template-columns: repeat(1, 1fr); }
.grid--2 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 720px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }

.card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__image img { transform: scale(1.06); }

.card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(43,43,43,0.75);
  color: var(--color-cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.card__body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--color-anthracite-soft);
  margin-bottom: 14px;
}
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }

.card__body p { color: var(--color-anthracite-soft); font-size: 0.95rem; flex: 1; }

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  gap: 12px;
}

/* Icon list ---------------------------------------------------------------*/

.icon-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}
@media (min-width: 600px) {
  .icon-list { grid-template-columns: repeat(2, 1fr); }
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-anthracite-soft);
}
.icon-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* Gallery ------------------------------------------------------------------*/

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery a:nth-child(4n+1), .gallery a:nth-child(4n+4) { grid-row: span 1; }
}
.gallery a {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery a:hover img { transform: scale(1.08); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,18,14,0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: var(--shadow-strong);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(250,247,242,0.12);
  border: 1px solid rgba(250,247,242,0.3);
  color: var(--color-cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Two-column layout --------------------------------------------------------*/

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media {
  position: relative;
}
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
/* Cornice hairline interna sulle foto principali */
.split__media::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(250, 247, 242, 0.55);
  border-radius: 4px;
  pointer-events: none;
}

/* Booking widget wrapper ----------------------------------------------------*/

.booking-panel {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-strong);
}

.booking-panel--sticky {
  position: sticky;
  top: 100px;
}

/* Amenities badges ----------------------------------------------------------*/

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.4em;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-cream-dark);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-anthracite-soft);
}
.badge--sage { background: rgba(138,154,126,0.15); color: var(--color-sage-dark); }
.badge--gold { background: rgba(184,150,74,0.14); color: var(--color-gold-dark); }

.placeholder-note {
  border: 1.5px dashed var(--color-gold);
  background: rgba(184,150,74,0.08);
  color: var(--color-gold-dark);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 1.6em;
}

/* Amenities (punti di forza con icone) --------------------------------------*/

.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 720px)  { .amenities { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1020px) { .amenities { grid-template-columns: repeat(4, 1fr); } }

.amenity {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.amenity:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }

.amenity__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity h3 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.amenity p {
  font-size: 0.84rem;
  color: var(--color-anthracite-soft);
  margin: 0;
  line-height: 1.5;
}

/* Steps numerati (come funziona) --------------------------------------------*/

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 820px) {
  .steps--3 { grid-template-columns: repeat(3, 1fr); }
  .steps--4 { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(184,150,74,0.35);
}
.step h3 { font-size: 1.15rem; }
.step p { font-size: 0.92rem; color: var(--color-anthracite-soft); margin: 0; }

/* FAQ ------------------------------------------------------------------------*/

.faq details {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-anthracite-soft);
}

/* Fascia immagine full-width -------------------------------------------------*/

.band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 900px) { .band { background-attachment: scroll; } }
.band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,18,14,0.58);
}
.band::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(250, 247, 242, 0.32);
  pointer-events: none;
}
.band__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}
.band__content p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.45;
  color: var(--color-white);
  margin: 0 0 10px;
}
.band__content span {
  color: var(--color-gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Card photo slider -----------------------------------------------------------*/

.card__image img { transition: transform 0.4s ease, opacity 0.28s ease; }

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(250,247,242,0.88);
  color: var(--color-anthracite);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.slider__btn:hover { background: var(--color-gold); color: var(--color-white); }
.slider__btn--prev { left: 12px; }
.slider__btn--next { right: 12px; }
.card__image:hover .slider__btn { opacity: 1; }
@media (hover: none) { .slider__btn { opacity: 1; background: rgba(250,247,242,0.75); } }

.slider__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}
.slider__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(250,247,242,0.55);
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider__dots span.is-active {
  background: var(--color-white);
  transform: scale(1.25);
}

/* Icone inline (sostituiscono le emoji nei meta e nei badge) -----------------*/

.mi {
  width: 17px;
  height: 17px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.badge .mi { width: 16px; height: 16px; stroke: currentColor; }

/* Icona nelle card di servizio (aziende / proprietari / chi siamo) -----------*/

.card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dove siamo: elenco distanze -------------------------------------------------*/

.distances li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 2px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.09);
  font-size: 0.98rem;
}
.distances li:first-child { border-top: 1px solid rgba(43, 43, 43, 0.09); }
.distances .place { font-weight: 600; }
.distances .note { color: var(--color-anthracite-soft); font-size: 0.85rem; }
.distances .time {
  margin-left: auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--color-gold-dark);
  white-space: nowrap;
}
.distances + .form-note { margin-top: 12px; }

/* Recensioni ospiti ------------------------------------------------------------*/

.review {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.review__stars {
  color: var(--color-gold);
  letter-spacing: 4px;
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.review__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--color-anthracite);
  margin: 0;
  flex: 1;
}
.review__author {
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-anthracite-soft);
}
.review__author strong { color: var(--color-gold-dark); }

/* Forms ---------------------------------------------------------------------*/

.form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-anthracite);
}
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(43,43,43,0.14);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-anthracite);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.82rem;
  color: var(--color-anthracite-soft);
}

/* Stats row -------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-gold);
  display: block;
}
.stats__label {
  font-size: 0.85rem;
  color: var(--color-anthracite-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer ------------------------------------------------------------------ */

.footer {
  background: var(--color-anthracite);
  color: rgba(250,247,242,0.75);
  padding: 64px 0 28px;
}
.footer h4 {
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2em;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,247,242,0.12);
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer__brand {
  margin-bottom: 18px;
}
.footer__logo {
  width: 220px;
  max-width: 80%;
  height: auto;
  display: block;
}
.footer a:hover { color: var(--color-gold-light); }
.footer li { margin-bottom: 10px; font-size: 0.92rem; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.5);
}
@media (min-width: 720px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}
.footer__socials {
  display: flex;
  gap: 14px;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,242,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility -------------------------------------------------------------------*/

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
