:root {
  --gold: #f4a900;
  --gold-dark: #c57b00;
  --river: #1f78b4;
  --river-dark: #0d456c;
  --green: #2f7d45;
  --ink: #182027;
  --muted: #66717c;
  --sand: #fbf4e6;
  --cream: #fffaf0;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(18, 32, 39, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 1.75;
  color: var(--muted);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 32, 39, 0.08);
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:not(.btn) {
  color: rgba(24, 32, 39, 0.78);
}

.nav-links a:not(.btn):hover {
  color: var(--gold-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ffcf55);
  color: #1f1700;
  font-weight: 800;
  border: 0;
  box-shadow: 0 12px 34px rgba(244, 169, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(244, 169, 0, 0.42);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
}

.btn-ghost,
.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn-outline {
  color: var(--river-dark);
  border-color: rgba(31, 120, 180, 0.24);
  background: rgba(31, 120, 180, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--sand);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: 820px;
  display: grid;
  align-items: center;
  padding-top: 170px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 169, 0, 0.45), transparent 26%),
    linear-gradient(90deg, rgba(9, 27, 38, 0.92) 0%, rgba(9, 27, 38, 0.74) 46%, rgba(9, 27, 38, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #ffd269;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-text {
  max-width: 630px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(860px, 100%);
  margin-top: 58px;
}

.hero-cards article,
.strip-grid > div,
.why-grid article,
.room-card,
.location-panel,
.final-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.hero-cards article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-cards strong {
  display: block;
  font-size: 1.1rem;
}

.hero-cards span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.intro-strip {
  padding: 0;
  margin-top: -58px;
  z-index: 2;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.strip-grid > div {
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: rgba(24, 32, 39, 0.08);
}

.strip-number {
  display: block;
  color: var(--river);
  font-size: 2.3rem;
  font-weight: 800;
}

.strip-grid p {
  margin: 4px 0 0;
}

.two-columns {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 70px;
  align-items: center;
}

.about-images,
.breakfast-card,
.city-card {
  position: relative;
}

.about-main,
.breakfast-card img,
.city-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.about-card {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 46%;
  height: 250px;
  object-fit: cover;
  border: 10px solid var(--cream);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.content-block p:not(.eyebrow) {
  font-size: 1.03rem;
}

.feature-list,
.mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span,
.mini-cards span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--river-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.accommodations,
.why,
.videos,
.final-cta {
  background: #fff8ea;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  overflow: hidden;
  background: var(--white);
  border-color: rgba(24, 32, 39, 0.08);
  box-shadow: 0 16px 44px rgba(24, 32, 39, 0.1);
}

.room-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.room-card div {
  padding: 26px;
}

.room-card p {
  min-height: 112px;
}

.room-card a {
  display: inline-flex;
  color: var(--river-dark);
  font-weight: 800;
}

.breakfast-card::before,
.city-card::before {
  content: "";
  position: absolute;
  inset: -20px 24px 24px -20px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--gold), var(--river));
  z-index: -1;
}

.benefits {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.benefits div {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: var(--white);
}

.benefits strong,
.benefits span {
  display: block;
}

.benefits span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-grid article {
  padding: 26px;
  background: var(--white);
  border-color: rgba(24, 32, 39, 0.08);
}

.icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--sand);
  font-size: 1.35rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-grid button {
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 24px;
  background: #ddd;
  cursor: zoom-in;
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(6) {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.06);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-grid video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  background: #111;
  box-shadow: var(--shadow);
}

.location-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  padding: 28px;
  background: var(--river-dark);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.location-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.location-panel .eyebrow {
  color: #ffd269;
}

.location-panel iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 22px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.final-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--white);
  border-color: rgba(24, 32, 39, 0.08);
  box-shadow: var(--shadow);
}

.final-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  background: var(--white);
}

.site-footer {
  padding: 70px 0 28px;
  background: #101820;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: #ffd269;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 0.75fr;
  gap: 34px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.35);
}

.mobile-actionbar {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 86vh;
  border-radius: 24px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    color: #1f1700;
  }

  .hero {
    min-height: auto;
    padding: 150px 0 110px;
  }

  .hero-cards,
  .strip-grid,
  .cards-grid,
  .why-grid,
  .video-grid,
  .footer-grid,
  .location-panel,
  .final-card,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .breakfast-card {
    order: -1;
  }

  .about-main,
  .breakfast-card img,
  .city-card img {
    height: 520px;
  }

  .about-card {
    right: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-card {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 70px 0;
  }

  .brand span {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(9, 27, 38, 0.86), rgba(9, 27, 38, 0.72));
  }

  .hero-actions,
  .location-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-main,
  .breakfast-card img,
  .city-card img,
  .video-grid video {
    height: 420px;
    border-radius: 26px;
  }

  .about-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 88%;
    height: 220px;
    margin: -90px auto 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(6) {
    grid-row: span 1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-actionbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 20px;
    background: var(--ink);
    box-shadow: var(--shadow);
  }

  .mobile-actionbar a {
    padding: 14px 8px;
    color: var(--white);
    text-align: center;
    font-size: 0.86rem;
    font-weight: 800;
  }

  .mobile-actionbar a:first-child {
    background: #25d366;
  }
}