:root {
  --navy: #0b1f3a;
  --navy-deep: #061426;
  --gold: #b98a3e;
  --gold-bright: #d4a44c;
  --gold-pale: #f6efe2;
  --ink: #23303e;
  --muted: #6b7784;
  --line: #e6e9ee;
  --gray: #f5f7f9;
  --white: #ffffff;
  --topbar-h: 2.25rem;
  --header-h: 5rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 16px rgba(11, 31, 58, 0.08);
  --shadow: 0 16px 44px rgba(11, 31, 58, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-underline-offset: 0.2em; }
a:hover { color: var(--navy); }
address { font-style: normal; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--white); padding: 0.75rem 1rem; z-index: 1000; }
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-deep); color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem; height: var(--topbar-h);
}
.topbar-inner {
  width: min(1240px, calc(100% - 1.5rem)); margin-inline: auto;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.topbar a { color: rgba(255, 255, 255, 0.85); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; }
.topbar a:hover { color: var(--gold-bright); }
.topbar-contact { display: flex; gap: 1.25rem; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-rating { color: var(--gold-bright); font-weight: 600; }
.lang-switch { display: inline-flex; gap: 0.75rem; }
.lang-switch a { opacity: 0.75; }
.lang-switch a.is-active { opacity: 1; color: var(--gold-bright); font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  width: min(1240px, calc(100% - 1.5rem));
  margin-inline: auto; height: 100%;
  display: flex; align-items: center; gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--navy); text-decoration: none; flex-shrink: 0; }
.brand img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.brand-text {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.05em;
  font-size: 1.25rem; line-height: 1.1; display: flex; flex-direction: column;
}
.brand-text em { font-style: normal; color: var(--gold); display: inline; }
.brand-text small {
  font-family: var(--font-body); font-weight: 600; font-size: 0.58rem;
  letter-spacing: 0.32em; color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav a {
  color: var(--ink); text-decoration: none;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.4rem 0; border-bottom: 2px solid transparent;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover, .nav a:focus-visible, .nav a.is-active { color: var(--gold); border-bottom-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none; width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--line); background: transparent;
  border-radius: 0.35rem; padding: 0.6rem; flex-direction: column;
  justify-content: space-between; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.85rem 1.7rem; border-radius: 0.15rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); box-shadow: 0 8px 22px rgba(185, 138, 62, 0.35); }
.btn-gold:hover { background: var(--gold-bright); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: #14355e; color: var(--white); }
.btn-ghost { background: rgba(255, 255, 255, 0.08); color: var(--white); border-color: rgba(255, 255, 255, 0.6); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: rgba(11, 31, 58, 0.35); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.78rem; }

/* ---------- Hero slider ---------- */
.hero {
  position: relative; min-height: min(88vh, 780px);
  display: flex; align-items: center; color: var(--white); overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 38, 0.55) 0%, rgba(6, 20, 38, 0.35) 45%, rgba(6, 20, 38, 0.7) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  width: min(860px, calc(100% - 2.5rem));
  margin-inline: auto; text-align: center;
  padding: 6rem 0 8rem;
  animation: heroRise 1.1s var(--ease) both;
}
@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.hero-kicker {
  margin: 0 0 1rem; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-bright);
}
.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600; line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero-tagline,
.hero-price-line {
  margin: 0 0 2rem; font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92); max-width: 36rem; margin-left: auto; margin-right: auto;
}
.hero-tagline strong,
.hero-price-line strong { color: var(--gold-bright); font-family: var(--font-display); font-size: 1.15em; }
.hero-enjoy { display: block; margin-top: 0.4rem; font-family: var(--font-display); font-style: italic; color: rgba(255, 255, 255, 0.85); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

.hero-dots {
  position: absolute; z-index: 2; left: 50%; bottom: 5.5rem; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.hero-dots button {
  width: 0.65rem; height: 0.65rem; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8); background: transparent;
  cursor: pointer; padding: 0; transition: background 0.25s, transform 0.25s;
}
.hero-dots button.is-active { background: var(--gold-bright); border-color: var(--gold-bright); transform: scale(1.25); }

/* ---------- Booking bar ---------- */
.booking-bar {
  position: relative; z-index: 5;
  width: min(1000px, calc(100% - 2rem));
  margin: -3.4rem auto 0;
  background: var(--white); border-radius: 0.25rem;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  border-top: 3px solid var(--gold);
}
.booking-bar-form { display: grid; grid-template-columns: 1fr 1fr 0.6fr auto; gap: 0.9rem; align-items: end; }
.booking-bar-form label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.booking-bar-form input, .booking-bar-form select {
  font: inherit; padding: 0.65rem 0.7rem; border: 1px solid var(--line);
  border-radius: 0.15rem; background: var(--white); color: var(--ink);
}
.booking-bar-form .btn { white-space: nowrap; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 5.75rem) 0; }
.section-gray { background: var(--gray); }
.section-dark { background: var(--navy); color: var(--white); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2, .section h1, .section h2 {
  margin: 0 0 0.6rem; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.3rem); font-weight: 600;
  line-height: 1.15; color: var(--navy);
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-head::after {
  content: ""; display: block; width: 56px; height: 3px;
  background: var(--gold); margin: 1.1rem auto 0;
}
.section-head-light h2 { color: var(--white); }
.section-head-light p { color: rgba(255, 255, 255, 0.75); }
.section-more { text-align: center; margin: 2.25rem 0 0; }
.section-more a { font-weight: 700; }

.eyebrow {
  margin: 0 0 0.5rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.lede { margin: 0 0 1.5rem; max-width: 60ch; color: var(--muted); font-size: 1.06rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; min-height: 300px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: var(--white);
}
.page-hero-tall { min-height: 420px; }
.page-hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 20, 38, 0.6), rgba(6, 20, 38, 0.75)); }
.page-hero-content { position: relative; z-index: 1; text-align: center; padding: 3rem 0; }
.page-hero-content h1 {
  margin: 0 0 0.5rem; font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 600; color: var(--white);
}
.page-hero-content p { margin: 0; color: rgba(255, 255, 255, 0.85); font-size: 1.08rem; }

/* ---------- About ---------- */
.about-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: start; }
.about-copy .lede {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  white-space: pre-line;
  margin-bottom: 1.5rem;
}
.about-media {
  position: relative;
  width: 100%;
  /* Equal frames: 68% width + ~32% horizontal overlap offset */
  padding: 0 0 32% 0;
}
.about-photo-back,
.about-photo-front {
  margin: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  width: 68%;
  box-shadow: var(--shadow);
}
.about-photo-back {
  margin-left: auto;
}
.about-photo-back img,
.about-photo-front img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.about-photo-front {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  border: 6px solid var(--white);
  box-sizing: border-box;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.22);
}
.about-copy .btn { margin-top: 1.4rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chips span {
  background: var(--gold-pale); border: 1px solid rgba(185, 138, 62, 0.3);
  color: var(--gold); font-size: 0.82rem; font-weight: 700;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}

.stats-band {
  margin-top: 3.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.9rem 0; text-align: center;
}
.stats-band strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem); color: var(--gold); line-height: 1.1;
}
.stats-band span { color: var(--muted); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- Room cards ---------- */
.room-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.room-card {
  background: var(--white); border-radius: 0.25rem; overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.room-card-media { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.room-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.room-card:hover .room-card-media img { transform: scale(1.06); }
.room-price {
  position: absolute; left: 0; top: 1rem;
  background: var(--gold); color: var(--white);
  font-size: 0.82rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 0 0.15rem 0.15rem 0;
  box-shadow: 0 6px 18px rgba(6, 20, 38, 0.3);
}
.room-price strong { font-family: var(--font-display); font-size: 1.3em; }
.room-card-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.room-card-body h3 { margin: 0; font-family: var(--font-display); font-size: 1.3rem; }
.room-card-body h3 a { color: var(--navy); text-decoration: none; }
.room-card-body h3 a:hover { color: var(--gold); }
.room-beds { margin: 0; color: var(--muted); font-size: 0.92rem; }
.room-card-foot { margin-top: auto; padding-top: 0.8rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.room-cap { color: var(--muted); font-size: 0.88rem; font-weight: 600; }

/* ---------- Services ---------- */
.service-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.service-card {
  text-align: center; padding: 2rem 1.4rem;
  border: 1px solid var(--line); border-radius: 0.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(185, 138, 62, 0.4); }
.service-icon {
  display: inline-grid; place-items: center;
  width: 4.25rem; height: 4.25rem; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  margin-bottom: 1.1rem;
}
.service-card h3 { margin: 0 0 0.45rem; font-family: var(--font-display); font-size: 1.12rem; color: var(--navy); }
.service-card p { margin: 0; color: var(--muted); font-size: 0.93rem; }

.amenity-inline {
  list-style: none; margin: 2rem 0 0; padding: 1.25rem 0 0;
  border-top: 1px dashed var(--line);
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: center;
}
.amenity-inline li { color: var(--muted); font-size: 0.92rem; font-weight: 600; position: relative; padding-left: 1.1rem; }
.amenity-inline li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Discover / place cards ---------- */
.place-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.place-cards-page { grid-template-columns: repeat(3, 1fr); }
.place-card {
  position: relative; border-radius: 0.25rem; overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.place-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.place-card > img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform 0.6s var(--ease); }
.place-card:hover > img { transform: scale(1.05); }
.place-card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.place-region {
  position: absolute; top: 0.9rem; left: 0;
  background: var(--navy); color: var(--gold-bright);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 0 0.15rem 0.15rem 0;
}
.place-card-body h3 { margin: 0; font-family: var(--font-display); font-size: 1.12rem; color: var(--navy); }
.place-card-body p { margin: 0; color: var(--muted); font-size: 0.9rem; flex: 1; }
.place-distance { color: var(--gold); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }

.section-dark .place-card { background: var(--white); }

/* ---------- Blog / post cards ---------- */
.post-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card {
  background: var(--white); border-radius: 0.25rem; overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card-media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-region {
  position: absolute; bottom: 0.9rem; left: 0.9rem;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 0.15rem;
}
.post-card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.post-card-body time { color: var(--muted); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.post-card-body h3 { margin: 0; font-family: var(--font-display); font-size: 1.18rem; line-height: 1.3; }
.post-card-body h3 a { color: var(--navy); text-decoration: none; }
.post-card-body h3 a:hover { color: var(--gold); }
.post-card-body p { margin: 0; color: var(--muted); font-size: 0.93rem; flex: 1; }
.post-more { font-weight: 700; font-size: 0.88rem; text-decoration: none; letter-spacing: 0.04em; }

/* ---------- Post detail ---------- */
.post-meta { margin: 0 0 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.post-region-badge {
  background: var(--gold); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 0.15rem;
}
.post-meta time { color: rgba(255, 255, 255, 0.8); font-size: 0.88rem; }
.post-layout { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 2.5rem; align-items: start; }
.post-body p { margin: 0 0 1.2rem; }
.post-lede { font-size: 1.15rem; color: var(--navy); font-weight: 600; }
.post-side { position: sticky; top: calc(var(--header-h) + 1rem); }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.6rem; justify-content: center; }
.filter-btn {
  appearance: none; border: 1px solid var(--line);
  background: var(--white); color: var(--navy);
  font: inherit; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.5rem 1.15rem; cursor: pointer; border-radius: 999px;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.filter-btn.is-active, .filter-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  gap: 0.6rem;
}
.gallery-item {
  appearance: none; border: 0; padding: 0; margin: 0;
  background: var(--navy-deep); cursor: zoom-in;
  overflow: hidden; border-radius: 0.2rem; position: relative;
}
.gallery-item.span-2x2 { grid-column: span 2; grid-row: span 2; }
.gallery-item.span-wide { grid-column: span 2; }
.gallery-item.span-tall { grid-row: span 2; }
.gallery-item[hidden] { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }
.g-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.6rem 0.85rem 0.65rem;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 38, 0.85));
  color: var(--white); font-size: 0.83rem; font-weight: 600; text-align: left;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.gallery-item:hover .g-cap, .gallery-item:focus-visible .g-cap { opacity: 1; transform: none; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.review-grid blockquote {
  margin: 0; padding: 1.4rem 1.4rem 1.3rem;
  background: var(--white); border-radius: 0.25rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.review-grid p { margin: 0; font-size: 0.95rem; flex: 1; }
.review-grid cite { font-style: normal; font-weight: 700; color: var(--navy); font-size: 0.88rem; }
.cite-stars { color: var(--gold-bright); letter-spacing: 0.12em; font-size: 0.9rem; }

/* ---------- Location ---------- */
.distance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; margin-bottom: 1.75rem; }
.distance-card {
  background: var(--gray); border-radius: 0.25rem; padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--gold);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.distance-card strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
.distance-card span { color: var(--muted); font-size: 0.92rem; }
.map-wrap {
  border-radius: 0.25rem; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); aspect-ratio: 16 / 7; min-height: 300px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-link-wrap { margin: 1rem 0 0; }
.map-link-wrap a { font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 0.3rem; }
.cta-band p { margin: 0; color: var(--muted); }

/* ---------- Booking form ---------- */
.booking-card {
  background: var(--white); border-radius: 0.25rem;
  box-shadow: var(--shadow); padding: 1.6rem 1.6rem 1.75rem;
  border-top: 3px solid var(--gold);
}
.booking-card h3 { margin: 0 0 0.4rem; font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); }
.booking-intro { margin: 0 0 1.1rem; color: var(--muted); font-size: 0.95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-grid label { display: flex; flex-direction: column; gap: 0.28rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.form-grid .span-2 { grid-column: span 2; }
.form-grid input, .form-grid select, .form-grid textarea {
  font: inherit; padding: 0.62rem 0.7rem;
  border: 1px solid var(--line); border-radius: 0.15rem;
  background: var(--white); color: var(--ink); resize: vertical;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus,
.booking-bar-form input:focus, .booking-bar-form select:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}
.booking-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.1rem; flex-wrap: wrap; }
.wa-inline { font-weight: 700; font-size: 0.9rem; }
.hp-field {
  position: absolute !important; left: -10000px !important; top: auto !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}
.notice { padding: 0.7rem 0.9rem; border-radius: 0.2rem; font-size: 0.95rem; margin: 0 0 1rem; }
.notice-ok { background: #e5f6ec; color: #14683a; border: 1px solid #b4e2c6; }
.notice-err { background: #fdeaea; color: #9c2020; border: 1px solid #f3c3c3; }

/* ---------- Room detail ---------- */
.room-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.room-hero-media { position: absolute; inset: 0; }
.room-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.room-hero .hero-veil { background: linear-gradient(180deg, rgba(6, 20, 38, 0.35), rgba(6, 20, 38, 0.75)); }
.room-hero-content { position: relative; z-index: 1; padding-bottom: 2.5rem; }
.room-hero h1 {
  margin: 0 0 0.5rem; font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 600; color: var(--white);
}
.room-hero-price { font-size: 1.1rem; color: rgba(255, 255, 255, 0.88); }
.room-hero-price strong { font-family: var(--font-display); font-size: 1.55rem; color: var(--gold-bright); }
.room-detail-layout { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 2.5rem; align-items: start; }
.room-info h3 { margin: 1.5rem 0 0.35rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); }
.room-info p { margin: 0; color: var(--muted); }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.45rem; }
.feature-list li { position: relative; padding-left: 1.2rem; color: var(--muted); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.room-side { position: sticky; top: calc(var(--header-h) + 1rem); }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.5rem; align-items: start; }
.contact-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1.1rem; }
.contact-list span { display: block; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.15rem; }
.contact-list a { color: var(--navy); font-size: 1.12rem; font-weight: 700; text-decoration: none; }
.contact-list a:hover { color: var(--gold); }
.contact-page .map-wrap { aspect-ratio: 4 / 3; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.72); font-size: 0.94rem; margin-top: 3rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.8fr 1.1fr 1fr;
  gap: 2.5rem; padding: 3.25rem 0 2.5rem;
}
.footer-col h4 {
  margin: 0 0 1rem; color: var(--gold-bright);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.footer-col a:hover { color: var(--gold-bright); }
.brand-footer { margin-bottom: 0.9rem; }
.brand-footer .brand-text { color: var(--white); }
.footer-about p { margin: 0 0 0.75rem; }
.footer-rating { color: var(--gold-bright); font-weight: 700; }
.footer-contact li { line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); padding: 1.1rem 0; font-size: 0.85rem; }
.footer-bottom p { margin: 0; text-align: center; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  display: grid; place-items: center;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: #25d366; color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); color: var(--white); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 20, 38, 0.93);
  display: grid; place-items: center; padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { margin: 0; text-align: center; }
.lightbox img {
  max-width: min(1100px, 92vw); max-height: 82vh;
  object-fit: contain; border-radius: 0.2rem; box-shadow: var(--shadow);
}
.lightbox figcaption { color: rgba(255, 255, 255, 0.85); margin-top: 0.7rem; font-size: 0.95rem; }
#lightboxCount { opacity: 0.6; margin-left: 0.4rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  appearance: none; border: 0;
  background: rgba(255, 255, 255, 0.12); color: var(--white);
  cursor: pointer; position: absolute;
  font-size: 1.5rem; width: 2.75rem; height: 2.75rem;
  border-radius: 50%; display: grid; place-items: center;
  transition: background 0.2s, color 0.2s;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--white); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { gap: 1rem; }
  .nav a { font-size: 0.82rem; }
  .room-cards, .post-cards { grid-template-columns: repeat(2, 1fr); }
  .place-cards { grid-template-columns: repeat(2, 1fr); }
  .place-cards-page { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .topbar-contact a:last-child { display: none; }
  .nav {
    position: fixed; inset: calc(var(--header-h)) 0 auto 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); padding: 0.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-130%); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .booking-bar-form { grid-template-columns: 1fr 1fr; }
  .booking-bar-form .btn { grid-column: span 2; }

  .about-layout, .room-detail-layout, .contact-layout, .post-layout { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; margin-inline: auto; padding-bottom: 34%; }
  .about-photo-back,
  .about-photo-front { width: 70%; }
  .stats-band { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; }
  .distance-grid { grid-template-columns: 1fr 1fr; }
  .room-side, .post-side { position: static; }
}

@media (max-width: 620px) {
  .topbar-right .topbar-rating { display: none; }
  .room-cards, .post-cards, .place-cards, .place-cards-page, .service-cards, .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery-item.span-2x2 { grid-column: span 2; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .distance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-content { padding: 4rem 0 7rem; }
  .booking-bar { margin-top: -2.5rem; }
}
