:root {
  --forest: #173b2b;
  --forest-2: #214f3b;
  --sand: #f4efe4;
  --cream: #fbf8f1;
  --ink: #1d241f;
  --muted: #687169;
  --line: #d9ddd8;
  --white: #fff;
  --radius: 26px;
  --shadow: 0 20px 60px rgba(17, 38, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

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

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

button {
  font: inherit;
}

/* Header */

.site-header {
  height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 59, 43, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest);
  overflow: hidden;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.desktop-nav a {
  color: #3e4942;
}

.desktop-nav a:hover {
  color: var(--forest);
}

/* Buttons */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.button-outline {
  border-color: rgba(23, 59, 43, 0.3);
}

.button-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 59, 43, 0.18);
}

.button-primary:hover {
  background: var(--forest-2);
}

.button-glass {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-dark {
  background: #1e2420;
  color: #fff;
}

.full {
  width: 100%;
}

/* Hero */

.hero {
  min-height: calc(100vh - 76px);
  height: 760px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 24, 17, 0.75) 0%,
      rgba(8, 24, 17, 0.25) 58%,
      rgba(8, 24, 17, 0.08) 100%
    ),
    linear-gradient(
      0deg,
      rgba(8, 24, 17, 0.55),
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 90vw);
  margin: 0 0 clamp(50px, 8vw, 96px) clamp(20px, 7vw, 110px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--forest);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 88px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 62px);
}

h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.hero-copy {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-facts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

/* Sections */

.section {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 7vw, 110px);
}

/* Intro */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.intro h2 {
  max-width: 580px;
}

.intro-copy {
  max-width: 640px;
  color: #4f5952;
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 3px;
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card {
  /*min-height: 310px;*/
  padding: 25px clamp(28px, 4vw, 25px);
  background: var(--cream);
}

.feature-number {
  color: #7a847d;
  font-size: 12px;
}

.feature-card h3 {
  margin-top: 15px;
}

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

/* Amenities */

.amenities {
  background: #fff;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.amenity {
  display: flex;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.amenity:nth-child(odd) {
  padding-right: 40px;
}

.amenity:nth-child(even) {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.amenity > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest);
  font-weight: 700;
}

.amenity strong,
.amenity small {
  display: block;
}

.amenity small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

/* Gallery */

.gallery-section {
  padding: clamp(70px, 10vw, 120px) clamp(14px, 3vw, 44px);
  background: var(--forest);
  color: #fff;
}

.light-heading {
  padding-left: clamp(6px, 4vw, 60px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 290px;
  gap: 12px;
}

.gallery-item {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #0e281d;
  cursor: zoom-in;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-more {
  margin-top: 12px;
}

.text-button {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px auto 0;
  padding: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* Stay Details */

.stay-details {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}

.price-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0;
}

.price span {
  font-size: 1.8rem;
  font-weight: 800;
}

.price strong {
  font-family: Georgia, serif;
  font-size: 76px;
  font-weight: 500;
  line-height: 1;
}

.price small {
  color: var(--muted);
}

.price-card > p:last-of-type {
  margin-bottom: 28px;
  color: var(--muted);
}

.details-list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.details-list > div:first-child {
  border-top: 1px solid var(--line);
}

.details-list span {
  grid-row: span 2;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.details-list strong {
  font-size: 19px;
}

.details-list small {
  color: var(--muted);
}

/* Location */

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: #102a1e;
  color: #fff;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 110px);
}

.location-copy h2 {
  max-width: 600px;
}

.location-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.location-copy .button {
  align-self: flex-start;
}

.location-image {
  min-height: 440px;
}

.location-image img {
  height: 100%;
  object-fit: cover;
}

/* Contact */

.contact {
  padding: clamp(80px, 11vw, 140px) 20px;
  text-align: center;
}

.contact h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.contact > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  justify-content: center;
}

/* Footer */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 7vw, 110px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  color: var(--ink);
}

/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  padding: 14px 18px;
  border-radius: 999px;
  background: #1f8f51;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 800;
}

/* Lightbox */

.lightbox {
  max-width: 92vw;
  max-height: 90vh;
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

/* Tablet */

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .intro,
  .stay-details,
  .location {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: 0;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .location-image {
    height: 520px;
    order: -1;
  }

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

  .amenity:nth-child(odd),
  .amenity:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .site-header .button-outline {
    display: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .site-header {
    height: 66px;
  }

  .hero {
    min-height: 720px;
    height: calc(100svh - 66px);
  }

  .hero-content {
    margin-left: 20px;
    margin-bottom: 42px;
  }

  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(8, 24, 17, 0.8) 0%,
      rgba(8, 24, 17, 0.22) 72%
    );
  }

  h1 {
    font-size: 48px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .gallery-item:nth-child(n + 5) {
    display: none;
  }

  .gallery-more .gallery-item {
    display: block;
  }

  .details-list > div {
    grid-template-columns: 1fr;
  }

  .details-list span {
    grid-row: auto;
  }

  .price strong {
    font-size: 66px;
  }

  .location-image {
    height: 380px;
  }

  footer {
    padding-bottom: 92px;
  }

  .floating-whatsapp {
    left: 20px;
    right: 20px;
    text-align: center;
  }

  .brand span:last-child {
    font-size: 14px;
  }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .gallery-item img {
    transition: none;
  }
}
