:root {
  --bg: #f7f3ea;
  --bg-2: #ece1cb;
  --dark: #0f2226;
  --green: #1f4a4c;
  --text: #20241f;
  --muted: #767a70;
  --accent: #3e7c82;
  --line: rgba(37, 38, 32, 0.12);
  --line-dark: rgba(243, 239, 231, 0.16);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 6vw;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}

/* focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1.5px solid var(--accent);
  outline-offset: 4px;
}

/* ---------- navbar ---------- */
/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  height: auto;
  padding: 25px 3.8vw;

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid transparent;

  transition:
    background 0.5s ease,
    backdrop-filter 0.5s ease,
    padding 0.5s ease,
    border-color 0.5s ease,
    color 0.5s ease;
}

/* ---------- Scrolled Navbar ---------- */

.navbar.scrolled {
  background: rgba(246, 242, 234, 0.94);
  color: #1d1c19;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  padding: 15px 3.8vw;

  border-bottom: 1px solid rgba(40, 38, 33, 0.12);
}

/* =========================================================
   BRAND
========================================================= */

.brand-mark {
  display: flex;
  align-items: center;
  gap: 11px;

  color: #ffffff;

  text-decoration: none;

  transition: color 0.4s ease;
}

/* Logo Icon */

.brand-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: currentColor;

  flex-shrink: 0;
}

.brand-icon svg {
  width: 100%;
  height: 100%;
}

/* Brand Text */

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;

  font-size: 19px;
  font-weight: 500;

  letter-spacing: 0.08em;

  white-space: nowrap;
}

.brand-text span {
  margin-top: 6px;

  font-family: "Inter", sans-serif;

  font-size: 8px;
  font-weight: 500;

  letter-spacing: 0.42em;

  opacity: 0.78;

  white-space: nowrap;
}

/* Scrolled Brand */

.navbar.scrolled .brand-mark {
  color: #1d1c19;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-links {
  display: none;

  align-items: center;

  gap: 34px;

  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.nav-links a {
  position: relative;

  color: #ffffff;

  padding: 8px 0;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

/* Gold underline */

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 2px;

  width: 0;
  height: 1px;

  background: #c8a96b;

  transition: width 0.35s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Scrolled navigation */

.navbar.scrolled .nav-links a {
  color: #1d1c19;
}

/* Desktop */

@media (min-width: 920px) {
  .nav-links {
    display: flex;
  }
}

/* =========================================================
   BOOK A STAY CTA
========================================================= */

.nav-cta {
  display: none;

  align-items: center;
  justify-content: center;

  min-width: 150px;

  padding: 13px 24px;
  border-radius: 30px;

  border: 1px solid rgba(255, 255, 255, 0.85);

  color: #ffffff;

  font-family: "Inter", sans-serif;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.17em;

  text-transform: uppercase;

  text-decoration: none;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.nav-cta:hover {
  background: #ffffff;
  color: #1d1c19;

  transform: translateY(-2px);
}

/* Scrolled CTA */

.navbar.scrolled .nav-cta {
  border-color: #1d1c19;
  color: #1d1c19;
}

.navbar.scrolled .nav-cta:hover {
  background: #1d1c19;
  color: #ffffff;
}

@media (min-width: 920px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
  display: flex;

  flex-direction: column;
  justify-content: center;

  gap: 5px;

  width: 38px;
  height: 38px;

  padding: 6px;

  background: transparent;
  border: none;

  cursor: pointer;
}

.hamburger span {
  display: block;

  width: 24px;
  height: 1px;

  background: #ffffff;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

/* Scrolled hamburger */

.navbar.scrolled .hamburger span {
  background: #1d1c19;
}

/* Desktop */

@media (min-width: 920px) {
  .hamburger {
    display: none;
  }
}

/* =========================================================
   MOBILE OVERLAY
========================================================= */

.mobile-overlay {
  position: fixed;

  inset: 0;

  z-index: 99;

  background: #1c211c;

  color: #f3efe7;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 0 10vw;

  transform: translateY(-100%);

  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-overlay.open {
  transform: translateY(0);
}

.mobile-overlay a {
  font-family: "Cormorant Garamond", serif;

  font-size: 18px;

  padding: 15px 0;

  color: #f3efe7;

  border-bottom: 1px solid rgba(243, 239, 231, 0.15);

  display: block;
}

.mobile-overlay .nav-cta {
  display: inline-flex;

  margin-top: 28px;

  width: fit-content;

  min-width: 180px;

  color: #f3efe7;

  border-color: #f3efe7;

  font-family: "Inter", sans-serif;

  font-size: 10px;

  text-align: center;
}

.mobile-overlay .nav-cta:hover {
  background: #f3efe7;
  color: #1c211c;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  width: 100%;
  height: 100svh;

  min-height: 680px;

  overflow: hidden;

  display: flex;

  align-items: center;
}

/* =========================================================
   HERO IMAGE
========================================================= */

.hero-img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;

  transform: scale(1.06);

  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  /*
     Darker on the left for text readability,
     lighter on the right so the resort remains visible.
  */

  background: linear-gradient(
    90deg,
    rgba(8, 12, 9, 0.973) 0%,
    rgba(8, 12, 9, 0.856) 22%,
    rgba(8, 12, 9, 0.32) 48%,
    rgba(8, 12, 9, 0.08) 75%,
    rgba(8, 12, 9, 0.2) 100%
  );

  z-index: 1;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;

  z-index: 2;

  width: 100%;

  padding: 120px 3.8vw 190px;

  max-width: 720px;

  color: #f8f6f0;
}

/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow-wrap {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  margin-bottom: 24px;
}

.hero-eyebrow {
  display: block;

  font-family: "Inter", sans-serif;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.28em;

  text-transform: uppercase;

  color: #f3efe7;

  opacity: 0.92;
}

.hero-eyebrow-line {
  width: 44px;
  height: 1px;

  margin-top: 14px;

  background: #c8a96b;
}

/* =========================================================
   HERO HEADING
========================================================= */

.hero h1 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(58px, 6.5vw, 94px);

  font-weight: 300;

  line-height: 0.98;

  letter-spacing: -0.025em;

  color: #f8f6f0;
}

.hero h1 em {
  font-style: italic;

  font-weight: 300;

  color: #f8f6f0;
}
.hero h1 em span {
  font-style: italic;

  font-weight: 300;

  color: #c8a96b;
}

/* Gold word */

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero p {
  margin: 28px 0 0;

  max-width: 470px;

  font-family: "Inter", sans-serif;

  font-size: 14px;

  line-height: 1.75;

  font-weight: 300;

  color: rgba(248, 246, 240, 0.88);
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-ctas {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-top: 34px;

  flex-wrap: wrap;
}

/* Base button */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 28px;

  min-height: 52px;

  padding: 0 26px;

  border: 1px solid rgba(248, 246, 240, 0.85);
  border-radius: 15px;

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: #f8f6f0;

  text-decoration: none;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Gold primary button */

.btn-primary {
  min-width: 255px;

  background: #c8a96b;

  border-color: #c8a96b;

  color: #ffffff;
}

.btn-primary:hover {
  background: #b99656;

  border-color: #b99656;

  color: #ffffff;
}

/* Arrow */

.btn-arrow {
  font-size: 18px;

  line-height: 1;

  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

/* Outline button */

.btn-outline {
  min-width: 190px;

  background: transparent;

  border-color: rgba(248, 246, 240, 0.8);

  color: #f8f6f0;
}

.btn-outline:hover {
  background: #f8f6f0;

  color: #1d1c19;

  border-color: #f8f6f0;
}

/* Compatibility with your old classes */

.btn-solid {
  background: #f8f6f0;
  color: #1d1c19;
  border-color: #f8f6f0;
}

.btn-solid:hover {
  background: transparent;
  color: #f8f6f0;
}

/* Dark buttons */

.btn-dark {
  border-color: #1d1c19;
  color: #1d1c19;
}

.btn-dark:hover {
  background: #1d1c19;
  color: #f8f6f0;
}

/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {
  position: absolute;

  z-index: 3;

  left: 3.8vw;
  bottom: 44px;

  display: flex;

  align-items: flex-start;

  gap: 48px;
}

/* Individual feature */

.hero-feature {
  display: flex;

  flex-direction: column;

  width: 150px;
}

/* Feature icon */

.feature-icon {
  width: 40px;
  height: 40px;

  margin-bottom: 12px;

  color: #c8a96b;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

/* Feature heading */

.feature-content h3 {
  margin: 0 0 7px;

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  color: #f8f6f0;
}

/* Feature description */

.feature-content p {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 11px;

  line-height: 1.55;

  color: rgba(248, 246, 240, 0.72);
}

/* =========================================================
   WATCH EXPERIENCE
========================================================= */

.watch-experience {
  position: absolute;

  right: 3.8vw;
  bottom: 44px;

  z-index: 3;

  display: flex;

  align-items: center;

  gap: 12px;

  min-width: 220px;

  padding: 10px 16px;

  border: 1px solid rgba(248, 246, 240, 0.55);

  border-radius: 30px;

  color: #f8f6f0;

  text-decoration: none;

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.watch-experience:hover {
  background: rgba(255, 255, 255, 0.12);

  border-color: rgba(248, 246, 240, 0.9);

  transform: translateY(-2px);
}

/* Play button */

.watch-icon {
  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f8f6f0;

  border-radius: 50%;

  color: #1d1c19;

  flex-shrink: 0;
}

.watch-icon svg {
  width: 13px;
  height: 13px;

  margin-left: 2px;
}

/* Watch text */

.watch-text {
  font-family: "Inter", sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  white-space: nowrap;
}

/* Small line */

.watch-line {
  width: 25px;
  height: 1px;

  background: rgba(248, 246, 240, 0.7);

  margin-left: auto;
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero-scroll {
  position: absolute;

  left: 50%;

  bottom: 30px;

  z-index: 3;

  width: 24px;
  height: 40px;

  display: flex;

  align-items: flex-start;
  justify-content: center;

  transform: translateX(-50%);

  color: #f8f6f0;

  text-decoration: none;
}

/* Arrow */

.scroll-arrow {
  position: relative;

  width: 1px;
  height: 28px;

  background: rgba(248, 246, 240, 0.75);

  animation: scrollLine 2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: "";

  position: absolute;

  left: -4px;
  bottom: 0;

  width: 8px;
  height: 8px;

  border-right: 1px solid #f8f6f0;
  border-bottom: 1px solid #f8f6f0;

  transform: rotate(45deg);
}

@keyframes scrollLine {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  .nav-links {
    gap: 24px;
  }

  .hero-content {
    max-width: 650px;
  }

  .hero-features {
    gap: 25px;
  }

  .hero-feature {
    width: 130px;
  }

  .watch-experience {
    right: 3vw;
  }
}

/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {
  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 130px 6vw 180px;
  }

  .hero-features {
    left: 6vw;
    bottom: 32px;

    gap: 25px;
  }

  .watch-experience {
    right: 6vw;
    bottom: 32px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 759px) {
  .navbar {
    padding: 19px 5vw;
  }

  .navbar.scrolled {
    padding: 13px 5vw;
  }

  /* Brand */

  .brand-icon {
    width: 31px;
    height: 31px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 7px;

    letter-spacing: 0.35em;
  }

  /* Hero */

  .hero {
    min-height: 700px;

    align-items: flex-end;
  }

  .hero-img {
    object-position: 58% center;
  }

  /* Stronger mobile overlay */

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 12, 9, 0.2) 0%,
      rgba(8, 12, 9, 0.28) 35%,
      rgba(8, 12, 9, 0.8) 72%,
      rgba(8, 12, 9, 0.94) 100%
    );
  }

  /* Hero content */

  .hero-content {
    padding: 0 5vw 150px;

    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 8px;

    letter-spacing: 0.22em;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 68px);

    line-height: 0.98;
  }

  .hero p {
    max-width: 390px;

    margin-top: 20px;

    font-size: 13px;

    line-height: 1.65;
  }

  /* Buttons */

  .hero-ctas {
    margin-top: 26px;

    gap: 10px;
  }

  .btn {
    min-height: 48px;

    padding: 0 18px;

    font-size: 8px;

    letter-spacing: 0.12em;
  }

  .btn-primary {
    min-width: 190px;
  }

  .btn-outline {
    min-width: 155px;
  }

  /* Hide desktop features */

  .hero-features {
    left: 5vw;
    right: 5vw;

    bottom: 48px;

    gap: 15px;

    justify-content: space-between;
    visibility: hidden;
  }

  .hero-feature {
    width: auto;
    flex: 1;
  }

  .feature-icon {
    width: 28px;
    height: 28px;

    margin-bottom: 8px;
  }

  .feature-content h3 {
    font-size: 7px;

    letter-spacing: 0.09em;
  }

  .feature-content p {
    font-size: 9px;

    line-height: 1.4;
  }

  /* Watch experience */

  .watch-experience {
    display: none;
  }

  /* Scroll */

  .hero-scroll {
    display: none;
  }
}

/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 480px) {
  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-bottom: 150px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 12px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .hero-features {
    bottom: 35px;
  }

  .feature-content p {
    display: none;
  }
}

/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(34px);

  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;

  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.12s;
}

.reveal-d2 {
  transition-delay: 0.24s;
}

.reveal-d3 {
  transition-delay: 0.36s;
}

/* ---------- section basics ---------- */
section {
  position: relative;
}
.section-pad {
  padding: min(14vw, 160px) 0;
}
.label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.label-row .rule {
  height: 1px;
  width: 44px;
  background: var(--accent);
}

.big-heading {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.12;
  font-weight: 300;
}

/* ---------- philosophy ---------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: end;
}
@media (min-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}
.philosophy-text p.lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 440px;
  margin-top: 26px;
}
.philosophy-img-wrap {
  position: relative;
}
.philosophy-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.philosophy-img-wrap .float-tag {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 16px 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: none;
}
@media (min-width: 640px) {
  .philosophy-img-wrap .float-tag {
    display: block;
  }
}

/* ---------- story ---------- */
.story {
  background: var(--bg-2);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
  }
}
.story-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-imgs img:first-child {
  grid-column: 1/2;
  height: 420px;
  object-fit: cover;
  margin-top: 56px;
}
.story-imgs img:last-child {
  grid-column: 2/3;
  height: 340px;
  object-fit: cover;
}
.story-copy p {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 18px;
  max-width: 480px;
}
.story-stats {
  display: flex;
  gap: 44px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.story-stats div h3 {
  font-size: 38px;
  color: var(--text);
}
.story-stats div span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- architecture ---------- */
.arch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .arch-grid {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
}
.arch-visual {
  position: relative;
}
.arch-visual img.main {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.arch-visual img.overlap {
  position: absolute;
  width: 46%;
  bottom: -40px;
  left: -30px;
  height: 220px;
  object-fit: cover;
  border: 6px solid var(--bg);
  display: none;
}
@media (min-width: 640px) {
  .arch-visual img.overlap {
    display: block;
  }
}
.arch-caption-row {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.arch-caption {
  flex: 1 1 30%;
  padding: 22px 20px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.arch-caption span {
  display: block;
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 10px;
}
.arch-copy p {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 20px;
  max-width: 480px;
}
.arch-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.arch-list div {
  font-size: 13px;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

/* ---------- rooms ---------- */
.rooms-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}
@media (min-width: 900px) {
  .rooms-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.rooms-head p {
  color: var(--muted);
  max-width: 340px;
  font-size: 14.5px;
}
.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .room-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  .room-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.room-card {
  background: var(--bg);
  overflow: hidden;
}
.room-card .img-wrap {
  overflow: hidden;
  height: 280px;
}
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.room-card:hover img {
  transform: scale(1.06);
}
.room-card-body {
  padding: 26px 24px 32px;
}
.room-card-body .num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.room-card-body h3 {
  font-size: 26px;
  margin-top: 10px;
}
.room-card-body p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 10px;
}
.room-view {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 3px;
  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}
.room-card:hover .room-view {
  gap: 14px;
}

/* ---------- function hall ---------- */
.function-hall {
  background: #302720;
  color: var(--bg);
}
.fh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .fh-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.function-hall h2 {
  color: var(--bg);
}
.function-hall p {
  color: rgba(243, 239, 231, 0.72);
  margin-top: 22px;
  max-width: 440px;
  font-size: 15.5px;
}
.function-hall img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.fh-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fh-list div {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(243, 239, 231, 0.85);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
}
.function-hall .btn {
  margin-top: 34px;
}

/* ---------- experience ---------- */
.exp-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.exp-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  cursor: default;
}
@media (min-width: 760px) {
  .exp-item {
    grid-template-columns: 80px 1fr 1fr;
  }
}
.exp-item .exp-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--accent);
}
.exp-item h3 {
  font-size: 24px;
  transition: transform 0.4s ease;
}
.exp-item:hover h3 {
  transform: translateX(10px);
}
.exp-item p {
  color: var(--muted);
  font-size: 14px;
  display: none;
}
@media (min-width: 760px) {
  .exp-item p {
    display: block;
  }
}

/* ---------- gallery ---------- */
.gallery-grid {
  margin-top: 50px;
  columns: 1;
  column-gap: 16px;
}
@media (min-width: 640px) {
  .gallery-grid {
    columns: 2;
  }
}
@media (min-width: 1020px) {
  .gallery-grid {
    columns: 3;
  }
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 34, 38, 0.35));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 34, 38, 0.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 6vw;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 6vw;
  color: #f3efe7;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #f3efe7;
  font-size: 28px;
  padding: 14px;
}
.lightbox-prev {
  left: 14px;
}
.lightbox-next {
  right: 14px;
}

/* ---------- quote ---------- */
.quote-section {
  background: #443e3a;
  color: var(--bg);
  padding: min(16vw, 190px) 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto;
  color: #f6f3ec;
}
.quote-section cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a96b;
}

/* ---------- accreditation ---------- */
.accred {
  padding: 70px 0;
}
.accred-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  flex-direction: column;
}
.accred-inner .rule-h {
  width: 60px;
  height: 1px;
  background: var(--line);
}
.accred-inner p {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.accred-inner p b {
  color: var(--text);
  font-weight: 500;
}

/* ---------- final cta ---------- */
.final-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    
    url("../images/resort_img.png")
      center/cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 34, 38, 0.62);
}
.final-cta-content {
  position: relative;
  z-index: 2;
  color: #f3efe7;
  padding: 0 6vw;
}
.final-cta h2 {
  color: #f8f6f0;
  font-size: clamp(34px, 5.6vw, 66px);
}
.final-cta p {
  margin-top: 20px;
  color: #e8e1d5;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15.5px;
}
.final-cta-ctas {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 940px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
  }
}
.contact-info dl {
  margin-top: 36px;
}
.contact-info .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.contact-info .row .k {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10.5px;
  color: var(--muted);
}
.contact-info .row .v {
  color: var(--text);
  text-align: right;
}
.contact-social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-social a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
}
.contact-social a:hover {
  border-color: var(--accent);
}

form .field {
  margin-bottom: 26px;
}
form .field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 600px) {
  form .field-row {
    grid-template-columns: 1fr 1fr;
  }
}
form label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
form input,
form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.3s ease;
}
form input::placeholder,
form textarea::placeholder {
  color: #b6b2a5;
}
form input:focus,
form textarea:focus {
  border-color: var(--accent);
}
form textarea {
  resize: vertical;
  min-height: 90px;
}
.form-msg {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--accent);
  display: none;
}
.form-msg.show {
  display: block;
}

/* ---------- footer ---------- */
footer {
  background: #302720;
  color: var(--bg);
  padding: 90px 0 30px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 860px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}
.footer-tag {
  margin-top: 12px;
  color: rgba(243, 239, 231, 0.6);
  font-size: 14px;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, 0.75);
}
.footer-links a:hover {
  color: var(--bg);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(243, 239, 231, 0.5);
}
@media (min-width: 860px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
