/* ============================================================
   HOTEL FRATELLI — Estilos globales
   ============================================================ */

:root {
  --black: #1A1A1A;
  --black-soft: #232323;
  --black-deep: #0f0f0f;
  --gold: #C9973A;
  --gold-soft: #d9ac55;
  --gold-deep: #a87d2a;
  --white: #FFFFFF;
  --grey-light: #F5F5F2;
  --grey-mid: #d6d6d1;
  --grey-text: #6b6b66;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --r: 4px;
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled,
.navbar.solid {
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,151,58,0.18);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.18em;
}
.logo-text .sub {
  color: var(--white);
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.nav-menu {
  display: flex; gap: 32px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(201,151,58,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--black); transform: translateY(-2px); }

.nav-cta { padding: 11px 22px; font-size: 12px; }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--r);
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-burger span {
  width: 18px; height: 1.5px; background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero.hero-medium { min-height: 70vh; }
.hero.hero-small { min-height: 55vh; }

.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background: var(--black);
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold);
  font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--white);
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 36px;
  max-width: 560px;
  text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 560px;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta .k {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}
.hero-meta .v {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--grey-light);
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.breadcrumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
  color: var(--grey-text);
}
.breadcrumbs li::after { content: "›"; margin-left: 10px; color: var(--gold); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--grey-text); transition: color 0.2s ease; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs li[aria-current="page"] { color: var(--black); font-weight: 600; }

/* ============ SECTION BASE ============ */
section { padding: 110px 0; position: relative; }
section.section-tight { padding: 80px 0; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-eyebrow { justify-content: center; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold);
  font-size: 11.5px; letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-wrap: balance;
}
h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-sub {
  font-size: 16.5px;
  color: var(--grey-text);
  margin: 0;
  max-width: 580px;
  text-wrap: pretty;
}
.dark .section-sub { color: rgba(255,255,255,0.65); }

/* ============ WHY US ============ */
.why { background: var(--grey-light); }
.why-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-image {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--black);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: grid; gap: 22px; }
.why-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid var(--grey-mid);
  display: grid; grid-template-columns: 52px 1fr; gap: 22px;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px -20px rgba(26,26,26,0.18);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
}
.why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.why-card p {
  margin: 0;
  color: var(--grey-text);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ ROOMS ============ */
.rooms { background: var(--black); color: var(--white); }
.rooms h2 { color: var(--white); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.room-card {
  background: var(--black-soft);
  border: 1px solid rgba(201,151,58,0.35);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--white);
}
.room-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px -24px rgba(201,151,58,0.35);
}
.room-image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.room-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-image img { transform: scale(1.05); }
.room-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 2;
}
.room-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--white);
}
.room-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.room-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.room-feats span {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 10px;
  border-radius: 2px;
}
.room-price {
  display: flex; align-items: baseline; gap: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 18px;
}
.room-price .from {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.room-price .amount {
  font-family: var(--serif);
  font-size: 28px; color: var(--gold); line-height: 1;
}
.room-price .unit { font-size: 12px; color: rgba(255,255,255,0.5); }
.room-cta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 13px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--r);
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.room-cta:hover { background: var(--gold); color: var(--black); }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
}
.service {
  background: var(--white);
  padding: 44px 32px;
  display: flex; flex-direction: column;
  transition: background 0.25s ease;
}
.service:hover { background: var(--grey-light); }
.service-icon { color: var(--gold); margin-bottom: 22px; }
.service h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.service p { margin: 0; color: var(--grey-text); font-size: 14.5px; line-height: 1.6; }

/* ============ LOCATION ============ */
.location { background: var(--grey-light); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.location address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  margin: 0 0 28px;
}
.location address strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.location-meta { display: grid; gap: 12px; margin-bottom: 32px; }
.loc-row { display: flex; align-items: flex-start; gap: 14px; font-size: 14.5px; color: var(--black); }
.loc-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.loc-row strong { display: block; font-weight: 600; margin-bottom: 2px; }
.loc-row span.muted { color: var(--grey-text); }

.map-frame {
  aspect-ratio: 4 / 3.4;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.map-frame img { width: 100%; height: 100%; object-fit: cover; }
.map-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.map-pin {
  position: absolute; left: 50%; top: 48%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}
.map-pin .dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.45);
}
.map-pin .label {
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  background: var(--black); color: var(--white);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 2px;
  white-space: nowrap;
}

/* ============ REVIEWS / CAROUSEL ============ */
.reviews {
  background: var(--grey-light);
  position: relative;
  overflow: hidden;
}
.reviews.reviews-dark {
  background: var(--black);
  color: var(--white);
}
.reviews.reviews-dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--rev-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.reviews.reviews-dark > .container { position: relative; z-index: 1; }
.reviews.reviews-dark h2 { color: var(--white); }
.reviews.reviews-dark .section-sub { color: rgba(255,255,255,0.65); }

.carousel {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 28px;
  margin: 0 -4px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 980px) {
  .carousel-card { flex-basis: calc((100% - 22px) / 2); }
}
@media (max-width: 680px) {
  .carousel-card { flex-basis: 86%; }
}

.review {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  padding: 32px 28px;
  border-radius: var(--r);
  display: flex; flex-direction: column;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.review:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -20px rgba(26,26,26,0.18);
}
.reviews-dark .review { background: var(--black-soft); border-color: rgba(255,255,255,0.12); color: var(--white); }
.reviews-dark .review:hover { border-color: var(--gold); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 16px; }
.review-text {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}
.reviews-dark .review-text { color: rgba(255,255,255,0.85); }
.review-text::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold);
  display: block;
  line-height: 0.4;
  margin-bottom: 12px;
}
.reviewer {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-mid);
}
.reviews-dark .reviewer { border-top-color: rgba(255,255,255,0.1); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.reviews-dark .avatar { background: var(--gold); color: var(--black); }
.reviewer-info .name { font-weight: 600; font-size: 14.5px; }
.reviewer-info .date { font-size: 12px; color: var(--grey-text); letter-spacing: 0.04em; }
.reviews-dark .reviewer-info .date { color: rgba(255,255,255,0.55); }
.review-source {
  margin-left: auto;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-text);
}
.reviews-dark .review-source { color: rgba(255,255,255,0.5); }

.carousel-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}
.carousel-dots {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none;
  background: var(--grey-mid);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, width 0.3s ease;
}
.carousel-dot.active { background: var(--gold); width: 26px; border-radius: 4px; }
.reviews-dark .carousel-dot { background: rgba(255,255,255,0.2); }
.reviews-dark .carousel-dot.active { background: var(--gold); }
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--grey-mid);
  background: var(--white);
  color: var(--black);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.carousel-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.reviews-dark .carousel-arrow {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.reviews-dark .carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.reviews-summary {
  display: flex; align-items: center; justify-content: center; gap: 36px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.reviews-summary .big {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
}
.reviews-summary .summary-block { text-align: left; }
.reviews-summary .stars-big { color: var(--gold); font-size: 22px; letter-spacing: 3px; }
.reviews-summary .summary-meta { font-size: 13px; color: var(--grey-text); letter-spacing: 0.04em; margin-top: 4px; }
.reviews-dark .reviews-summary .summary-meta { color: rgba(255,255,255,0.6); }

/* ============ CONTACT / RESERVE ============ */
.contact { background: var(--black); color: var(--white); }
.contact h2 { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.65); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
}
form.reserve {
  background: var(--black-soft);
  border: 1px solid rgba(201,151,58,0.3);
  padding: 40px;
  border-radius: var(--r);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 13px 14px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--r);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #0f0f0f;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { cursor: pointer; }
.field select option { background: var(--black); color: var(--white); }
.form-submit { width: 100%; margin-top: 8px; padding: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-content .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.info-content .value { font-size: 15.5px; line-height: 1.55; }
.info-content .value a { color: var(--white); transition: color 0.2s ease; }
.info-content .value a:hover { color: var(--gold); }

/* ============ FOOTER ============ */
footer {
  background: var(--black-deep);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--white);
  font-size: 16px;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 16px 0 20px;
  max-width: 320px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform 0.25s ease;
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ ROOM DETAIL PAGE ============ */
.room-detail { padding: 100px 0; }
.room-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 580px;
}
.gallery .g-main {
  grid-row: 1 / -1;
  border-radius: var(--r);
  overflow: hidden;
}
.gallery .g-thumb { border-radius: var(--r); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.room-info h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  margin: 8px 0 18px;
  letter-spacing: -0.01em;
}
.room-info h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.room-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold);
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
}
.room-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.room-info .desc { color: var(--grey-text); font-size: 16.5px; line-height: 1.7; margin: 0 0 32px; }
.room-amenities {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px;
  padding: 28px 0;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  margin-bottom: 32px;
}
.room-amenity { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.room-amenity svg { color: var(--gold); flex-shrink: 0; }
.price-card {
  background: var(--grey-light);
  border-radius: var(--r);
  padding: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.price-card .price-amount {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--black);
  line-height: 1;
}
.price-card .price-amount .currency { font-size: 18px; color: var(--gold); margin-right: 4px; }
.price-card .price-from { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 6px; }
.price-card .price-unit { font-size: 13px; color: var(--grey-text); margin-top: 4px; }
.room-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ ROOM CATALOG PAGE ============ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.catalog-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.catalog-card:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 60px -30px rgba(26,26,26,0.25);
  transform: translateY(-3px);
}
.catalog-card .cc-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.catalog-card .cc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.catalog-card:hover .cc-image img { transform: scale(1.05); }
.catalog-card .cc-body { padding: 30px; display: flex; flex-direction: column; }
.catalog-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 8px;
}
.catalog-card .cc-feats {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 14px;
}
.catalog-card .cc-feats span {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-text);
  border: 1px solid var(--grey-mid);
  padding: 4px 9px;
  border-radius: 2px;
}
.catalog-card p { color: var(--grey-text); font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.catalog-card .cc-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.catalog-card .cc-price .from { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-text); }
.catalog-card .cc-price .amount { font-family: var(--serif); font-size: 26px; color: var(--gold); line-height: 1; }
.catalog-card .cc-price .unit { font-size: 12px; color: var(--grey-text); }

/* ============ SEO LANDING ============ */
.seo-prose {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--black);
  max-width: 760px;
}
.seo-prose p { margin: 0 0 18px; }
.seo-prose h2 { margin-top: 48px; }
.seo-prose h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 32px 0 12px;
}
.seo-prose ul { padding-left: 22px; margin: 0 0 22px; }
.seo-prose li { margin-bottom: 8px; }
.seo-prose strong { color: var(--black); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
  margin: 48px 0;
}
.feature-strip .fs-item {
  background: var(--white);
  padding: 28px;
  text-align: center;
}
.feature-strip .fs-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.feature-strip .fs-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-text);
}

/* ============ RESPONSIVE ============ */

/* ── TABLET (≤ 980px) ── */
@media (max-width: 980px) {
  .why-split { grid-template-columns: 1fr; }
  .why-image { aspect-ratio: 16 / 10; max-height: 380px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-grid, .contact-grid, .room-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery { height: 460px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-card .cc-image { aspect-ratio: 16 / 10; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .carousel-card { flex-basis: calc((100% - 22px) / 2); }
}

/* ── MOBILE (≤ 680px) ── */
@media (max-width: 680px) {

  /* ─ Base ─ */
  section { padding: 68px 0; }
  section.section-tight { padding: 52px 0; }
  .container { padding: 0 18px; }

  /* ─ Botones: permitir wrap en pantallas pequeñas ─ */
  .btn { white-space: normal; text-align: center; }

  /* ─ Navbar ─ */
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(12,12,12,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 6px 18px 28px;
    gap: 0;
    border-top: 1px solid rgba(201,151,58,0.25);
    box-shadow: 0 36px 60px rgba(0,0,0,0.6);
    z-index: 98;
  }
  .nav-menu.open li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-menu.open li:last-child { border-bottom: none; }
  .nav-menu.open a {
    display: block;
    padding: 15px 2px;
    font-size: 14px;
    letter-spacing: 0.1em;
  }

  /* Botón "Reservar" dentro del menú móvil */
  .nav-reserve-mobile { display: none; }
  .nav-menu.open .nav-reserve-mobile {
    display: block;
    margin-top: 18px;
    padding: 15px !important;
    background: var(--gold);
    color: var(--black) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--r);
  }
  .nav-reserve-mobile-li { border-bottom: none !important; }

  /* Burger → animación X al abrir */
  .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ─ Hero ─ */
  .hero-inner { padding-top: 112px; padding-bottom: 52px; }
  .hero-eyebrow { font-size: 10.5px; letter-spacing: 0.2em; }
  .hero h1 { margin-bottom: 16px; }
  .hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 28px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
    margin-top: 32px;
    max-width: 100%;
    padding-top: 22px;
  }
  .hero-meta .k { font-size: 22px; }
  .hero-meta .v { font-size: 10.5px; letter-spacing: 0.14em; }

  /* ─ Títulos de sección ─ */
  .section-head { margin-bottom: 36px; }
  .section-sub { font-size: 15.5px; }

  /* ─ Por qué elegirnos ─ */
  .why-card { padding: 22px 18px; gap: 16px; }
  .why-card h3 { font-size: 19px; }

  /* ─ Habitaciones ─ */
  .rooms-grid { grid-template-columns: 1fr; }
  .room-body { padding: 22px 20px 24px; }
  .room-body h3 { font-size: 22px; }

  /* ─ Servicios: 2 columnas en móvil (ahorra espacio vertical) ─ */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service { padding: 30px 20px; }
  .service h3 { font-size: 18px; }
  .service-icon { margin-bottom: 14px; }

  /* ─ Ubicación ─ */
  .map-frame { aspect-ratio: 4 / 3.4; }

  /* ─ Reseñas / Carrusel ─ */
  .carousel-card { flex-basis: 88%; }
  .reviews-summary { gap: 20px; }
  .reviews-summary .big { font-size: 46px; }
  .carousel-controls { flex-wrap: wrap; gap: 14px; }

  /* ─ Formulario ─ */
  .form-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  form.reserve { padding: 24px 18px; }
  /* Prevenir zoom en iOS al hacer foco en inputs */
  .field input,
  .field select,
  .field textarea { font-size: 16px; }

  /* ─ Info de contacto ─ */
  .contact-info { gap: 20px; }

  /* ─ Galería (páginas de habitación) ─ */
  .gallery {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 8px;
  }
  .gallery .g-main {
    aspect-ratio: 4 / 3;
    border-radius: var(--r);
    overflow: hidden;
    height: auto;
  }
  .gallery .g-thumb {
    aspect-ratio: 16 / 9;
    border-radius: var(--r);
    overflow: hidden;
  }

  /* ─ Detalle de habitación ─ */
  .room-detail { padding-bottom: 72px; }
  .room-detail[style] { padding-top: 100px !important; }
  .room-detail .breadcrumbs[style] {
    margin-left: -18px !important;
    margin-right: -18px !important;
    margin-top: -18px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .room-info h1 { font-size: clamp(28px, 7vw, 44px); }
  .room-amenities { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .price-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .price-card .price-amount { font-size: 36px; }
  .room-cta-group { flex-direction: column; width: 100%; }
  .room-cta-group .btn { width: 100%; justify-content: center; }

  /* ─ Catálogo de habitaciones ─ */
  .catalog-card { grid-template-columns: 1fr; }
  .catalog-card .cc-image { aspect-ratio: 16 / 9; }
  .catalog-card .cc-body { padding: 22px 20px; }

  /* ─ Feature strip (SEO pages) ─ */
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip .fs-item { padding: 24px 16px; }
  .feature-strip .fs-num { font-size: 32px; }

  /* ─ SEO prose ─ */
  .seo-prose { font-size: 15.5px; }

  /* ─ Breadcrumbs ─ */
  .breadcrumbs { font-size: 12px; padding: 13px 0; }
  .breadcrumbs ol { gap: 6px; flex-wrap: wrap; }

  /* ─ Footer ─ */
  footer { padding: 52px 0 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  /* ─ Botón WhatsApp flotante ─ */
  .wa-float { right: 18px; bottom: 32px; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ── TELÉFONO PEQUEÑO (≤ 430px) ── */
@media (max-width: 430px) {
  section { padding: 56px 0; }
  section.section-tight { padding: 44px 0; }
  .container { padding: 0 16px; }

  h2 { font-size: clamp(24px, 7.5vw, 34px); }
  .section-head { margin-bottom: 28px; }
  .section-sub { font-size: 15px; }

  /* Hero */
  .hero-inner { padding-top: 100px; padding-bottom: 44px; }
  .hero-meta { gap: 14px 20px; margin-top: 26px; }
  .hero-meta .k { font-size: 20px; }

  /* Por qué: icono encima del texto */
  .why-card {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 12px;
  }
  .why-icon { width: 44px; height: 44px; }
  .why-card h3 { font-size: 18px; }

  /* Servicios: 1 columna en móviles muy pequeños */
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 26px 18px; }
  .service h3 { font-size: 17px; }

  /* Habitaciones */
  .room-body { padding: 18px 16px 20px; }
  .room-body h3 { font-size: 20px; }
  .room-price .amount { font-size: 26px; }
  .room-cta { font-size: 11px; }

  /* Feature strip */
  .feature-strip .fs-item { padding: 18px 12px; }
  .feature-strip .fs-num { font-size: 26px; }

  /* Carrusel */
  .carousel-card { flex-basis: 92%; }
  .review { padding: 22px 18px; }
  .review-text { font-size: 14px; }
  .review-text::before { font-size: 30px; }

  /* Info contacto */
  .info-icon { width: 38px; height: 38px; }
  .info-content .value { font-size: 14.5px; }

  /* Detalle habitación */
  .room-detail[style] { padding-top: 90px !important; }
  .room-detail .breadcrumbs[style] {
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .price-card { padding: 20px 18px; }
  .price-card .price-amount { font-size: 32px; }
  .room-amenity { font-size: 13.5px; }

  /* Formulario */
  form.reserve { padding: 20px 14px; }

  /* Footer */
  .footer-col h4 { font-size: 15px; margin-bottom: 14px; }
  footer { padding: 44px 0 20px; }
  .footer-grid { gap: 26px; }
  .socials a { width: 36px; height: 36px; }

  /* Breadcrumbs */
  .breadcrumbs { font-size: 11.5px; }
}
