:root {
  --bg: #f7f5f2;
  --text: #2e2e2e;
  --accent: #7a8f7b;
  --accent-alt: #c46a2e;
  --dark: #1f1f1f;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1400px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  margin-top: 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-alt);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent-alt);
  color: var(--accent-alt);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 242, 0.94);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid rgba(46, 46, 46, 0.08);
}

.site-header.scrolled {
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  background: var(--bg);
  border-bottom: 1px solid rgba(46, 46, 46, 0.08);
  display: grid;
  gap: 0.7rem;
  padding: 1rem 4%;
  transform: translateY(-130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--accent-alt);
}

.site-nav a.active {
  position: relative;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-alt);
  border-radius: 2px;
}

.nav-toggle {
  border: 0;
  background: transparent;
  display: grid;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.header-cta {
  display: none;
}

.hero {
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image, url("hero-norcia.jpg"));
  background-position: center;
  background-size: cover;
  animation: ken-burns 30s linear infinite alternate;
  z-index: -1;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  min-height: 85vh;
  display: grid;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.2)
  );
}

.hero-layout {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.hero-content {
  color: var(--white);
  max-width: 700px;
  padding: 3rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero p {
  max-width: 560px;
}

.hero-rooms-preview {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.mini-room-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 9px;
  padding: 0.45rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.mini-room-card img {
  height: 72px;
  width: 90px;
  border-radius: 7px;
}

.mini-room-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.15rem;
  font-family: "Inter", Arial, sans-serif;
}

.mini-room-card p {
  margin: 0;
  color: #575757;
  font-size: 0.82rem;
}

.usp-grid,
.rooms-grid {
  display: grid;
  gap: 1.2rem;
}

.usp-card,
.room-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.usp-card {
  padding: 0.7rem 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.6rem;
  align-items: start;
}

.usp-card h2 {
  font-size: 0.84rem;
  margin: 0.2rem 0 0;
  font-family: "Inter", Arial, sans-serif;
  text-transform: uppercase;
}

.usp-card p {
  margin: 0;
  color: #666;
  font-size: 0.79rem;
  grid-column: 2;
}

.usp-icon {
  font-size: 1.25rem;
  display: inline-block;
  color: var(--accent);
}

.section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.room-card {
  overflow: hidden;
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-4px);
}

.room-card img {
  height: 230px;
  width: 100%;
}

.room-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-body > p:not(.price) {
  margin-bottom: 0.75rem;
}

.room-features {
  color: #5b5b5b;
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.room-features i {
  color: var(--accent);
  font-size: 0.95rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  margin-bottom: 0.55rem;
}

.room-body .btn {
  align-self: flex-start;
}

.availability-link {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #7a5a40;
  font-weight: 600;
}

.availability-link:hover,
.availability-link:focus-visible {
  color: var(--accent-alt);
}

.section-subtitle {
  margin: 0.35rem auto 0;
  max-width: 58ch;
  color: #666;
}

.services {
  background: linear-gradient(180deg, #f5f1eb, #f8f5f1);
  border-top: 1px solid rgba(122, 143, 123, 0.15);
  border-bottom: 1px solid rgba(122, 143, 123, 0.15);
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(122, 143, 123, 0.2);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-icon {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.service-card h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  color: #5c5c5c;
}

.experiences {
  background: radial-gradient(circle at top left, #ece6df, #f3efea 50%, #efe7dd);
}

.mb-large {
  margin-bottom: 3.5rem;
}

.experience-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.alt-surface {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.experience-copy {
  padding: 0 1rem;
  width: 100%;
}

.experience-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #7a5a40;
  background: rgba(196, 106, 46, 0.14);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.experience-copy h2 {
  margin-bottom: 0.65rem;
}

.experience-copy p {
  max-width: 45ch;
  color: #4a4a4a;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  color: #8a4c20;
  font-weight: 600;
}

.text-link::after {
  content: "->";
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.experience-image-wrapper {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.experience-image-wrapper img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.experience-block:hover .experience-image-wrapper img {
  transform: scale(1.05);
}

.gallery {
  background: #f9f6f1;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: filter 0.3s ease;
}

.gallery-grid img:hover {
  filter: brightness(1.08);
}

.js .gallery-grid img.reveal-on-scroll:nth-child(1) {
  transition-delay: 0.05s;
}

.js .gallery-grid img.reveal-on-scroll:nth-child(2) {
  transition-delay: 0.12s;
}

.js .gallery-grid img.reveal-on-scroll:nth-child(3) {
  transition-delay: 0.19s;
}

.js .gallery-grid img.reveal-on-scroll:nth-child(4) {
  transition-delay: 0.26s;
}

.js .gallery-grid img.reveal-on-scroll:nth-child(5) {
  transition-delay: 0.33s;
}

.booking-cta {
  padding-top: 2.5rem;
}

.booking-cta-inner {
  text-align: center;
  background: linear-gradient(120deg, #1f1f1f, #2b2b2b 55%, #3d4b3e);
  color: #f1f1f1;
  border-radius: 14px;
  padding: 2rem 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.booking-cta-inner .eyebrow {
  color: #b7cdb8;
}

.booking-cta-inner p {
  max-width: 62ch;
  margin: 0.5rem auto 0;
  color: #dfdfdf;
}

.booking-cta-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.booking-cta-actions .btn-secondary {
  color: #f0f0f0;
  border-color: #9eb79f;
}

.booking-cta-actions .btn-secondary:hover,
.booking-cta-actions .btn-secondary:focus-visible {
  border-color: var(--accent-alt);
  color: #ffd7bf;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal-on-scroll,
  .js .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-footer {
  background: #efe7dd;
  color: var(--text);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(122, 143, 123, 0.15);
}

.institutional-footer {
  padding: 4rem 0 2rem;
}

.footer-grid-institutional {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #555;
  max-width: 35ch;
  font-size: 0.95rem;
}

.footer-contacts h4, .footer-social h4, .footer-nav h4 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: #555;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.footer-contacts i {
  color: var(--accent);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  border: 1px solid #d4cbbd;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-form-wrap h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -0.4rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: var(--radius);
  border: 1px solid #d4cbbd;
  background: #ffffff;
  color: var(--text);
  padding: 0.8rem 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 143, 123, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.form-wrapper {
  position: relative;
}

.form-success {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #d4cbbd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.form-success.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.map-placeholder {
  min-height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e0d8cc;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
}

.map-placeholder iframe {
  filter: grayscale(0.4) contrast(1.1) sepia(0.2);
  transition: filter 0.4s ease;
}

.map-placeholder:hover iframe {
  filter: grayscale(0) contrast(1) sepia(0);
}

.route-link {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.route-link:hover,
.route-link:focus-visible {
  color: var(--accent-alt);
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(122, 143, 123, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  .usp-grid,
  .rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .footer-grid-institutional {
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }

  .header-cta {
    display: inline-block;
  }

  .usp-grid,
  .rooms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: 1fr 320px;
    gap: 2rem;
  }

  .hero-rooms-preview {
    margin-left: auto;
    margin-bottom: 3rem;
  }

  .experience-block {
    flex-direction: row;
    gap: 5rem;
    margin-bottom: 6rem;
    align-items: center;
  }

  .experience-block.reverse {
    flex-direction: row-reverse;
  }

  .experience-image-wrapper {
    width: 55%;
  }

  .experience-copy {
    width: 45%;
    margin: 0;
    padding: 0;
  }

  .experience-block.reverse .experience-copy {
    margin: 0;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid img {
    height: 100%;
  }

  .gallery-grid img:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-grid img:nth-child(4) {
    grid-column: span 2;
  }

  .booking-cta-inner {
    padding: 2.6rem 2rem;
  }
}

@media (min-width: 1240px) {
  .rooms-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .rooms-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================================================
   ROOM DETAIL PAGE — nuovo layout a due colonne
   ============================================================ */

.detail-main {
  padding: 2.5rem 0 5rem;
}

/* Breadcrumb */
.back-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #5b5b5b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--accent); }

/* Quick contact links (Email / Telefono) */
.room-contact-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.room-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease;
}
.room-contact-links a:hover { color: var(--accent-alt); }

/* Two-column wrapper */
.room-detail-wrapper {
  display: grid;
  gap: 2rem;
  align-items: start;
}

/* Left column */
.room-detail-content {}

.room-detail-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.3rem;
}

.room-detail-content .eyebrow {
  margin-bottom: 0.4rem;
}

/* Main feature image */
.room-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.8rem;
}

/* Description section */
.room-description {
  border-top: 3px solid var(--accent);
  padding-top: 1.2rem;
  margin-bottom: 1.8rem;
}
.room-description h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.room-description p {
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 0.65rem;
}
.room-description p strong {
  color: var(--text);
}
.room-promo-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent-alt);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.room-promo-link:hover { color: var(--accent); }

/* Gallery grid */
.room-gallery-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  border-top: 3px solid var(--accent);
  padding-top: 1.2rem;
  margin-bottom: 1rem;
}
.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.room-gallery-grid img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.25s ease, transform 0.25s ease;
}
.room-gallery-grid img:hover {
  filter: brightness(1.08);
  transform: scale(1.02);
}

/* Right sidebar */
.room-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid rgba(122, 143, 123, 0.22);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* Price widget */
.widget-price-from {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0.2rem;
}
.widget-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-alt);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.widget-price-note {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.widget-price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
}
.widget-price-includes li {
  font-size: 0.88rem;
  color: var(--accent);
  padding: 0.15rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.widget-price-includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.widget-cancellation {
  font-size: 0.8rem;
  color: #555;
  border-top: 1px solid rgba(122,143,123,0.15);
  padding-top: 0.8rem;
  margin-top: 0.4rem;
}
.widget-cancellation strong { color: var(--accent); }

/* Amenities widget */
.sidebar-widget h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 0 0 0.9rem;
}
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #4a4a4a;
}
.amenities-list i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* CTA widget */
.widget-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}
.widget-cta-btn:hover { background: var(--accent-alt); }

/* Extra services / cross-sell text */
.widget-text-body {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
}
.widget-text-body a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.widget-text-body a:hover { color: var(--accent-alt); }

/* Responsive */
@media (min-width: 768px) {
  .room-hero-img { height: 440px; }
  .room-gallery-grid img { height: 160px; }
}

@media (min-width: 1024px) {
  .room-detail-wrapper {
    grid-template-columns: 1fr 340px;
    gap: 3rem;
  }
  .room-detail-sidebar {
    position: sticky;
    top: 100px;
  }
  .room-hero-img { height: 420px; }
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-height: 85vh;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* ============================================================
   WordPress Menu Compatibility
   wp_nav_menu genera <ul> + <li> dentro .site-nav
   ============================================================ */

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.site-nav ul li { display: block; }

.site-nav ul li a {
  font-weight: 500;
  display: block;
}

.site-nav ul li a:hover,
.site-nav ul li a:focus-visible,
.site-nav ul li.current-menu-item > a,
.site-nav ul li.current_page_item > a {
  color: var(--accent-alt);
}

/* Footer nav WP menu */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav ul li a {
  color: #555;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav ul li a:hover { color: var(--accent); }

@media (min-width: 960px) {
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
  .site-nav ul li { display: inline-block; }
}
