:root {
  --bg: #f6f3ed;
  --soft: #fbfaf7;
  --ink: #193f60;
  --gold: #b1935f;
  --text: #2f2f2f;
  --muted: #5d5d5d;
  --line: rgba(25,63,96,.12);
  --shadow: 0 22px 60px rgba(28,38,51,.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 88px 0; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

.eyebrow.light { color: rgba(255,255,255,.74); }

h1, h2 {
  font-family: "Times New Roman", Georgia, serif;
  line-height: 1.08;
  letter-spacing: .01em;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,17,22,.10), rgba(15,17,22,.18));
}

.hero-nav {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10;
  display: flex;
  gap: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15,17,22,.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,.96);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.hero-nav.scrolled {
  background: rgba(15,17,22,.36);
}

.hero-nav a {
  position: relative;
  padding-bottom: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.hero-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: transparent;
  transition: background .25s ease;
}

.hero-nav a:hover::after {
  background: rgba(255,255,255,.82);
}

.hero-center {
  position: relative;
  z-index: 2;
  width: min(74vh, 900px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-1.5%);
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .66;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.10));
}

.hero-cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  color: white;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 8px 30px rgba(0,0,0,.26);
}

.hero-cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: rgba(255,255,255,.58);
}

.hero-cta span { transition: transform .2s ease; }

.hero-cta:hover span { transform: translateX(4px); }

/* CONTENT */

.intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
}

.intro p:last-child,
.split-copy p:last-child,
.location-copy p:last-child {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.card-image {
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.card-image:hover img { transform: scale(1.03); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}

.feature-card.tall { min-height: 560px; }

.text-card {
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-card h2,
.split-copy h2,
.rooms-header h2,
.location-copy h2,
.gallery-strip-header h2,
.booking-info h2,
.footer-brand h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 48px);
}

.text-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.split-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rooms-header { margin-bottom: 24px; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.rooms-grid .card-image { aspect-ratio: 4 / 5; }

.location {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.location-media {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}

.location-media .card-image:first-child { aspect-ratio: 16 / 10; }

.location-media .card-image:last-child { aspect-ratio: 4 / 5; }

.gallery-strip { padding-bottom: 88px; }

.gallery-strip-header { margin-bottom: 24px; }

.gallery-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-strip-grid .card-image { aspect-ratio: 4 / 5; }

/* REVIEWS */

.reviews {
  background: var(--soft);
}

.reviews-shell {
  max-width: 1120px;
}

.reviews-top {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.reviews-proof {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.reviews-proof h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 3.8vw, 54px);
}

.reviews-proof img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin: 18px 0 16px;
}

.reviews-proof-text {
  margin: 0;
  font-size: 17px;
  color: var(--muted);
}

.review-hero {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: stretch;
}

.review-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.review {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.review:hover,
.review-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(28,38,51,.12);
}

.review img {
  width: 100%;
  height: auto;
  display: block;
}

/* BOOKING */

.booking {
  background: linear-gradient(180deg, #1f4566, #173a58);
  color: white;
}

.booking-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.booking-info {
  color: rgba(255,255,255,.92);
  padding-top: 18px;
}

.booking-info h2 {
  color: rgba(255,255,255,.96);
}

.booking-info p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 620px;
}

.booking-info li {
  color: rgba(255,255,255,.96);
  font-size: 17px;
}

.booking-info ul {
  padding-left: 18px;
  margin-top: 18px;
}

.booking-card {
  position: relative;
  z-index: 20;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 16px;
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  font-size: 14px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  padding: 14px;
  font: inherit;
  color: #1e2a32;
}

.booking-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.booking-submit {
  border: none;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 16px 24px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.booking-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}

/* FOOTER */

.site-footer {
  padding: 56px 0 64px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-brand p,
.footer-contact p {
  margin: 0 0 8px;
}

.footer-contact {
  justify-self: center;
  text-align: center;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-top {
  justify-self: end;
  text-align: right;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* WHATSAPP */

.wa-contact {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(27, 78, 115, 0.95);
  color: white;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.wa-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
}

.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-text {
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .intro,
  .split,
  .location,
  .feature-grid,
  .rooms-grid,
  .gallery-strip-grid,
  .location-media,
  .split-gallery,
  .booking-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid .text-card {
    grid-column: span 2;
  }

  .feature-card.tall {
    min-height: 420px;
  }

  .reviews-top {
    grid-template-columns: 1fr;
  }

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

  .footer-wrap {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .footer-brand,
  .footer-contact,
  .footer-top {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .shell {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 64px 0;
  }

  .hero-nav {
    left: 14px;
    right: 14px;
    top: 14px;
    justify-content: center;
    gap: 18px;
    font-size: 12px;
    letter-spacing: .1em;
  }

  .hero-center {
    width: min(92vw, 650px);
  }

  .hero-cta {
    bottom: 34px;
  }

  .intro,
  .split,
  .location,
  .feature-grid,
  .rooms-grid,
  .gallery-strip-grid,
  .location-media,
  .split-gallery,
  .booking-wrap,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid .text-card {
    grid-column: auto;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form .full,
  .booking-actions {
    grid-column: auto;
  }

  .booking-actions {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .wa-text {
    display: none;
  }

  .wa-contact {
    padding: 12px;
  }
}