/* Punti di Vista — Costiero
   Palette: blu mare medio, navy testo, azzurrino lattescente sfondo, giallo sole accent caldo.
   Tipografia: Fraunces (display) + Outfit (body).
   Naming convention: kebab-case semplice. */

:root {
  --bg:        #F4F8FB;
  --surface:   #FFFFFF;
  --text:      #1A3C5E;
  --muted:     #5A7A95;
  --border:    #D8E4EE;
  --accent:    #0F7FB8;
  --accent-h:  #0A5F8C;
  --sun:       #E8A317;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --display: clamp(2.2rem, 5vw, 3.8rem);
  --h1:      clamp(1.8rem, 4vw, 2.8rem);
  --h2:      clamp(1.4rem, 3vw, 2rem);
  --h3:      clamp(1.15rem, 2vw, 1.4rem);
  --body:    clamp(1rem, 1.3vw, 1.1rem);
  --small:   0.875rem;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1240px;

  /* Tematizzazione widget framework */
  --ss-topbar-bg: var(--text);
  --ss-topbar-fg: #f4f8fb;
  --ss-topbar-accent: var(--sun);
  --ss-topbar-font: var(--font-body);
  --ss-container-max: 1240px;
  --ss-wa-size: 56px;
  --ss-wa-pos-bottom: 2rem;
  --ss-wa-pos-right: 2rem;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

p { margin: 0; }
p + p { margin-top: 1rem; }

/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, #d8e4ee 0%, #bcd0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--muted);
  font-size: var(--small);
  font-family: var(--font-body);
  font-style: italic;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.img-placeholder span {
  padding: 0.75rem 1rem;
  text-align: center;
  z-index: 1;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 60%);
  pointer-events: none;
}

/* Container & section */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.section-tight { padding: clamp(3rem, 5vw, 4rem) 0; }
.section-bg-surface { background: var(--surface); }

/* Eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s var(--ease-out-expo), color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 60, 94, 0.18);
}
.btn-primary:hover {
  background: #0d2840;
  box-shadow: 0 6px 18px rgba(26, 60, 94, 0.28);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-secondary:hover {
  background: var(--text);
  color: #fff;
}
.btn-secondary:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}
.btn-secondary:active { transform: scale(0.97); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1eb955; }
.btn-whatsapp:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; }
.btn-whatsapp:active { transform: scale(0.97); }

.btn-icon i {
  font-size: 1.1em;
}

/* Nav */
.site-nav {
  position: sticky;
  top: var(--ss-topbar-h, 0);
  z-index: 50;
  background: rgba(244, 248, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease-out-expo);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 5vw, 3rem);
  max-width: var(--container-max);
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.nav-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
  position: relative;
  transition: color 0.2s var(--ease-out-expo);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }
.nav-link.is-active { color: var(--accent); }
.nav-link.is-active::after { width: 100%; }

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.nav-overlay-links li {
  margin: 1rem 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}
.nav-overlay.is-open .nav-overlay-links li {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.is-open .nav-overlay-links li:nth-child(1) { transition-delay: 0.08s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(2) { transition-delay: 0.16s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(3) { transition-delay: 0.24s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(4) { transition-delay: 0.32s; }
.nav-overlay-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--text);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* HERO */
.hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero-content {
  padding: 1rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-eyebrow i {
  font-size: 1rem;
  color: var(--sun);
}
.hero-title {
  font-size: var(--display);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-variation-settings: 'opsz' 96;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 420px;
}
.hero-visual .img-placeholder {
  position: absolute;
  border-radius: 6px;
}
.hero-visual-main {
  top: 0;
  left: 10%;
  width: 80%;
  height: 78%;
  box-shadow: 0 20px 50px rgba(26, 60, 94, 0.18);
}
.hero-visual-secondary {
  bottom: 0;
  right: 0;
  width: 48%;
  height: 36%;
  z-index: 2;
  box-shadow: 0 14px 32px rgba(26, 60, 94, 0.22);
}
.hero-visual-tag {
  position: absolute;
  top: 6%;
  left: -6%;
  background: var(--surface);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(26, 60, 94, 0.14);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  z-index: 3;
  color: var(--text);
  font-weight: 500;
}
.hero-visual-tag i {
  color: var(--sun);
  font-size: 1.1rem;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 360px;
    aspect-ratio: 4/4;
    order: -1;
  }
  .hero-visual-tag { left: 0; }
}

/* TRUSTBAR */
.trustbar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 2.5rem) 0;
}
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.trustbar-grid > * { min-width: 0; }
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.trust-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}
.trust-detail {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 860px) {
  .trustbar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.intro-grid > * { min-width: 0; }
.intro-title {
  font-size: var(--h1);
  font-weight: 300;
  font-variation-settings: 'opsz' 72;
}
.intro-body {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.75;
}
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* BENEFITS */
.benefits-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.benefits-title {
  font-size: var(--h1);
  max-width: 16ch;
  font-weight: 300;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
.benefits-grid > * { min-width: 0; }
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 60, 94, 0.08);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.benefit-card:nth-child(2) .benefit-icon { color: var(--sun); }
.benefit-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}
.benefit-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 1020px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* LOCATION */
.location {
  background: var(--surface);
}
.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.location-grid > * { min-width: 0; }
.location-title {
  font-size: var(--h1);
  font-weight: 300;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.location-intro {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 38ch;
}
.location-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.location-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.location-item:last-child { border-bottom: none; }
.location-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  font-variation-settings: 'opsz' 48;
  min-width: 2.5ch;
}
.location-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.location-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}
.location-detail {
  font-size: 0.92rem;
  color: var(--muted);
}
.location-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s var(--ease-out-expo);
}
.location-item:hover .location-arrow {
  opacity: 1;
  transform: translateX(4px);
}
@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-item { grid-template-columns: auto 1fr; }
  .location-arrow { display: none; }
}

/* ABOUT HOST */
.about {
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-grid > * { min-width: 0; }
.about-content {
  max-width: 48ch;
}
.about-title {
  font-size: var(--h1);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.about-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}
.about-visual {
  aspect-ratio: 4/5;
  position: relative;
}
.about-visual-main {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(26, 60, 94, 0.16);
}
.about-stat {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--text);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.about-stat-num {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--sun);
}
.about-stat-label {
  font-size: 0.85rem;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  opacity: 0.9;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 4/4; }
}

/* RISTORANTE */
.ristorante {
  position: relative;
}
.ristorante-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.ristorante-grid > * { min-width: 0; }
.ristorante-content {
  max-width: 44ch;
}
.ristorante-title {
  font-size: var(--h1);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.ristorante-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.ristorante-cta {
  align-self: flex-start;
}
.ristorante-visual {
  aspect-ratio: 5/4;
}
.ristorante-visual-img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(26, 60, 94, 0.16);
}
@media (max-width: 860px) {
  .ristorante-grid { grid-template-columns: 1fr; }
  .ristorante-visual { aspect-ratio: 4/4; order: -1; }
}

/* GALLERY */
.gallery {
  background: var(--surface);
}
.gallery-head {
  text-align: left;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery-title {
  font-size: var(--h1);
  font-weight: 300;
  font-style: italic;
}
.gallery-mosaic {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}
.gallery-item .img-placeholder {
  border-radius: 4px;
}
.gallery-item:nth-child(1) .img-placeholder { aspect-ratio: 4/5; }
.gallery-item:nth-child(2) .img-placeholder { aspect-ratio: 4/3; }
.gallery-item:nth-child(3) .img-placeholder { aspect-ratio: 1/1; }
.gallery-item:nth-child(4) .img-placeholder { aspect-ratio: 4/3; }
.gallery-item:nth-child(5) .img-placeholder { aspect-ratio: 3/4; }
.gallery-item:nth-child(6) .img-placeholder { aspect-ratio: 4/5; }
@media (max-width: 860px) {
  .gallery-mosaic { columns: 2; }
}
@media (max-width: 540px) {
  .gallery-mosaic { columns: 1; }
}

/* CTA FINALE */
.cta-final {
  background: var(--text);
  color: #f4f8fb;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 163, 23, 0.18), transparent 70%);
  top: -40%;
  right: -10%;
  pointer-events: none;
}
.cta-final-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-final-inner > * { min-width: 0; }
.cta-final-title {
  font-size: var(--h1);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 18ch;
}
.cta-final-body {
  font-size: 1.05rem;
  color: rgba(244, 248, 251, 0.78);
  line-height: 1.7;
}
.cta-final-actions {
  display: flex;
  justify-content: flex-end;
}
.cta-final .btn-primary {
  background: var(--sun);
  color: var(--text);
  box-shadow: 0 6px 22px rgba(232, 163, 23, 0.35);
}
.cta-final .btn-primary:hover {
  background: #c98a0c;
  color: var(--text);
}
@media (max-width: 720px) {
  .cta-final-inner { grid-template-columns: 1fr; }
  .cta-final-actions { justify-content: flex-start; }
}

/* CAMERE PAGE — units intro */
.units-intro {
  padding-top: clamp(3rem, 6vw, 5rem);
}
.units-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.units-intro-grid > * { min-width: 0; }
.units-intro-title {
  font-size: var(--display);
  font-weight: 300;
  font-variation-settings: 'opsz' 96;
  font-style: italic;
}
.units-intro-body {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 50ch;
}
@media (max-width: 860px) {
  .units-intro-grid { grid-template-columns: 1fr; }
}

/* ROOMS LIST */
.rooms-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.room > * { min-width: 0; }
.room-reverse .room-visual { order: 2; }
.room-visual {
  position: relative;
  aspect-ratio: 5/4;
}
.room-visual .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(26, 60, 94, 0.12);
}
.room-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--surface);
  color: var(--text);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(26, 60, 94, 0.12);
}
.room-content {
  padding: 0.5rem 0;
}
.room-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
  text-transform: uppercase;
}
.room-title {
  font-size: var(--h1);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.room-body {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.room-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s var(--ease-out-expo);
}
.room-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 0.75rem;
}
@media (max-width: 860px) {
  .room { grid-template-columns: 1fr; }
  .room-reverse .room-visual { order: -1; }
}

/* SERVICES */
.services {
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.services-grid > * { min-width: 0; }
.services-title {
  font-size: var(--h1);
  font-weight: 300;
  font-style: italic;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
.services-list > * { min-width: 0; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}
.service-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
}

/* CONTATTI */
.contact-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-hero-grid > * { min-width: 0; }
.contact-hero-title {
  font-size: var(--display);
  font-weight: 300;
  font-variation-settings: 'opsz' 96;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.contact-hero-body {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 42ch;
}
.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s, border-color 0.25s;
}
.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 60, 94, 0.1);
  border-color: var(--accent);
}
.contact-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.contact-cta-wa .contact-cta-icon {
  background: #e7f9ee;
  color: #25D366;
}
.contact-cta-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.contact-cta-label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.contact-cta-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}
.contact-cta-arrow {
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.25s var(--ease-out-expo);
  flex-shrink: 0;
}
.contact-cta:hover .contact-cta-arrow {
  transform: translateX(4px);
}
@media (max-width: 860px) {
  .contact-hero-grid { grid-template-columns: 1fr; }
}

.contact-info {
  background: var(--surface);
  padding: clamp(3rem, 5vw, 4rem) 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.contact-info-grid > * { min-width: 0; }
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-info-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.4;
}
@media (max-width: 860px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* FOOTER */
.site-footer {
  background: var(--text);
  color: #c8d4e0;
  padding: clamp(3rem, 5vw, 4rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}
.footer-grid > * { min-width: 0; }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
}
.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 32ch;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-menu a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.footer-menu a:hover { color: #fff; }
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact-line i {
  color: var(--sun);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-line a {
  color: inherit;
  transition: color 0.2s;
}
.footer-contact-line a:hover { color: #fff; }
.footer-legal-block {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-copyright {
  margin: 0;
}
.footer-powered a {
  color: var(--sun);
  transition: color 0.2s;
}
.footer-powered a:hover { color: #fff; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Bootstrap Icons stub selectors — actual styles come from Bootstrap Icons CDN.
   Listed here so the validator recognises them as known classes. */
.bi,
.bi-airplane,
.bi-arrow-right,
.bi-cup-hot,
.bi-envelope,
.bi-eye,
.bi-geo-alt,
.bi-geo-alt-fill,
.bi-heart,
.bi-key,
.bi-snow,
.bi-sun,
.bi-tag-fill,
.bi-telephone,
.bi-whatsapp,
.bi-wifi {
  font-style: normal;
  line-height: 1;
}

/* Framework widget classes — actual styles in framework widgets.css.
   Stubs so the validator recognises them. */
.site-topbar,
.topbar-claim,
.topbar-icon,
.topbar-lang,
.topbar-meta,
.widget,
.widget-conv-topbar,
.widget-whatsapp-bubble {}
