:root {
  --bg: #e8e5e1;
  --panel: #f7f5f2;
  --card: #ffffff;
  --text: #2f312b;
  --muted: #63665e;
  --line: #dbd8d2;
  --olive: #757d5c;
  --olive-dark: #646b4c;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow: 0 12px 36px rgba(30, 24, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  color: var(--text);
  background: #000;
}

body.has-cookie-modal {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #111;
  color: #fff;
  padding: 0.65rem 0.9rem;
  z-index: 2000;
}

.skip-link:focus {
  left: 0.6rem;
  top: 0.6rem;
}

.site-shell {
  width: min(1360px, calc(100% - 2rem));
  margin: 0.9rem auto 1.5rem;
  background: var(--panel);
  border: 1px solid #d7d4ce;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.top-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.7rem;
}

.top-inner {
  position: relative;
  min-height: 108px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.1rem;
}

.brand-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.logo {
  width: auto;
  max-width: none;
  height: auto;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.72rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}

.btn-whatsapp {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}

.btn-outline {
  background: #fff;
  border-color: #c8c5be;
  color: #393c35;
}

.btn-form {
  background: #1a1a1a;
  color: #fff;
}

.hero {
  background: #f2f0eb;
}

.hero-slider {
  position: relative;
  min-height: 640px;
}

.hero-slides {
  position: relative;
  min-height: 640px;
}

.hero-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  left: 5.6%;
  top: 10%;
  width: min(520px, 43%);
  background: linear-gradient(90deg, rgba(248, 247, 243, 0.9) 0%, rgba(248, 247, 243, 0.78) 65%, rgba(248, 247, 243, 0.12) 100%);
  padding: 1.45rem 1.25rem;
  border-radius: 14px;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 5.2rem);
  line-height: 0.97;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-copy p {
  margin: 0.95rem 0 0;
  max-width: 38ch;
  color: #474942;
  font-size: 1.55rem;
  line-height: 1.35;
}

.hero-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-thumbs-wrap {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: min(760px, 84%);
  background: #fff;
  border: 1px solid #ddd8cf;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  z-index: 10;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-thumb {
  border: 1px solid #d8d4cc;
  background: #fff;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  position: relative;
  color: #353830;
}

.hero-thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.hero-thumb span {
  display: block;
  text-align: center;
  font-size: 0.86rem;
  padding: 0.25rem 0.2rem 0.52rem;
}

.hero-thumb.is-active {
  border-color: var(--olive);
  box-shadow: inset 0 0 0 1px var(--olive);
}

.thumb-progress {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 2px;
  background: rgba(120, 125, 95, 0.26);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-thumb.is-active .thumb-progress {
  background: var(--olive);
  animation: thumbProgress 5s linear both;
}

main {
  padding: 4rem 1rem 1rem;
}

.section {
  margin-top: 1rem;
}

.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 400;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.benefit-card {
  background: #f8f6f2;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 0.85rem 0.9rem;
}

.benefit-card h2 {
  margin: 0;
  font-size: 1.16rem;
  color: #3d4039;
}

.benefit-card p {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  color: #61645d;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.section-head p {
  margin: 0.28rem 0 0;
  color: #696d65;
}

.section-link {
  color: #3a3c36;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alloggi-layout {
  display: grid;
  grid-template-columns: 2fr 1.03fr;
  gap: 0.9rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.room-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.room-card img {
  width: 100%;
  height: 144px;
  object-fit: cover;
}

.room-card__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.7rem 0.85rem;
}

.room-card__body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.58rem;
  font-weight: 400;
}

.room-card__body p {
  margin: 0.4rem 0 0;
  color: #5d6059;
  font-size: 1.02rem;
}

.meta {
  display: inline-block;
  margin-top: auto;
  font-size: 0.86rem;
  color: #4d5341;
  background: #f1f3ec;
  border: 1px solid #d8dec9;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
}

.wa-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(140deg, #767d5d 0%, #6e7556 100%);
  color: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1rem;
}

.wa-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
  line-height: 1.05;
  font-weight: 400;
}

.wa-panel p {
  margin: 0.55rem 0 0.95rem;
  font-size: 1.03rem;
}

.btn-full {
  width: 100%;
}

.wa-panel-main-btn {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.wa-panel-main-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.utility-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0.95rem;
}

.utility-services,
.utility-tariffe {
  background: #f8f6f2;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}

.utility-icons {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.utility-icons p {
  margin: 0;
  background: #fff;
  border: 1px solid #e4e0d8;
  border-radius: 9px;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.88rem;
}

.utility-request {
  margin-top: 0.65rem;
  border: 1px dashed #d8d3c8;
  border-radius: 9px;
  background: #fbfaf7;
  padding: 0.55rem 0.65rem;
}

.utility-request h3 {
  margin: 0;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: #4b4f46;
}

.utility-request p {
  margin: 0.22rem 0 0;
  color: #62665f;
  font-size: 0.92rem;
}

.tariffe-grid {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.tariffe-grid p {
  margin: 0;
  background: #fff;
  border: 1px solid #e4e0d8;
  border-radius: 9px;
  padding: 0.55rem;
  font-size: 0.95rem;
}

.utility-tariffe small {
  display: block;
  margin-top: 0.62rem;
  color: #71756d;
}

.arrivals-section {
  background: #f8f6f2;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.95rem;
}

.arrivals-intro {
  margin: 0.35rem 0 0.8rem;
  color: #666962;
}

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.arrival-card {
  background: #fff;
  border: 1px solid #e2dfd8;
  border-radius: 10px;
  padding: 0.72rem;
}

.arrival-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.18rem;
}

.arrival-card ul {
  margin: 0.5rem 0 0.6rem;
  padding-left: 1rem;
}

.arrival-card li {
  margin-bottom: 0.4rem;
  color: #565952;
  font-size: 0.95rem;
}

.arrival-card a {
  display: inline-block;
  color: #3a3c36;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-extra {
  margin-top: 0.9rem;
}

.quote-card {
  background: #f8f6f2;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.88rem;
}

.quote-card p {
  margin: 0;
  color: #55584f;
  font-style: italic;
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  background: #f5f3ef;
}

.signature-slot {
  width: min(1360px, calc(100% - 2rem));
  margin: 1.6rem auto 2.4rem;
  display: flex;
  justify-content: center;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 1rem;
}

.footer-contact-inline {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.35rem;
  text-align: left;
}

.footer-logo {
  width: auto;
  height: 4.55rem;
  max-height: none;
  align-self: start;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-contact-text p {
  margin: 0.28rem 0 0;
  color: #575a53;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.35;
}

.footer-contact-text p:first-child {
  margin-top: 0;
}

.footer-facebook-link {
  margin-left: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d4d1ca;
  border-radius: 999px;
  color: #4e524a;
  background: #fff;
}

.footer-facebook-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1200;
  padding: 1rem;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__panel {
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid #dedad1;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  padding: 1rem;
  text-align: center;
}

.cookie-modal__panel h2 {
  margin: 0 0 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.cookie-modal__panel p {
  margin: 0 0 0.8rem;
}

.cookie-modal__actions {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero-slider,
  .hero-slides,
  .hero-slide img {
    height: 670px;
    min-height: 670px;
  }

  .hero-copy {
    display: none;
  }

  .hero-thumbs-wrap {
    bottom: 0.5rem;
    width: calc(100% - 1rem);
    padding: 0.4rem;
  }

  .hero-thumb img {
    height: 80px;
  }

  main {
    padding-top: 1rem;
  }

  .benefits-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alloggi-layout,
  .utility-row {
    grid-template-columns: 1fr;
  }

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

  .footer-contact-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-facebook-link {
    margin-left: 0;
    align-self: center;
  }

  .footer-logo {
    height: auto;
    width: 140px;
    align-self: center;
    margin: 0 auto;
  }

  .footer-contact-text p {
    font-size: 0.98rem;
  }

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

  .room-card {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: stretch;
  }

  .room-card img {
    height: 100%;
    min-height: 170px;
  }

  .utility-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (max-width: 680px) {
  .site-shell {
    width: calc(100% - 0.6rem);
    margin-top: 0.3rem;
    border-radius: 14px;
  }

  .top-inner {
    min-height: 100px;
    padding: 0 0.65rem;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide img {
    height: 620px;
    min-height: 620px;
  }

  .thumb-grid {
    gap: 0.35rem;
  }

  .hero-thumb img {
    height: 70px;
  }

  .hero-thumb span {
    font-size: 0.72rem;
  }

  .benefit-card h2 {
    font-size: 1.04rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }

  .room-card__body h3 {
    font-size: 1.3rem;
  }

  .wa-panel h3 {
    font-size: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  .hero-thumb.is-active .thumb-progress {
    animation: none;
    transform: scaleX(1);
  }
}

@keyframes thumbProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}
