/* ═══════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════ */
:root {
  --teal: #0a4a4e;
  --teal-mid: #0d5f64;
  --teal-light: #1a7a80;
  --teal-pale: #e8f4f5;
  --gold: #c4973a;
  --gold-light: #d4ad5a;
  --gold-dim: rgba(196, 151, 58, 0.15);
  --gold-line: rgba(196, 151, 58, 0.35);
  --cream: #faf7f2;
  --cream-2: #f2ede4;
  --white: #ffffff;
  --ink: #1a1a2e;
  --ink-mid: #2e3a4a;
  --muted: #6b7a8d;
  --muted-light: #a0aab5;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", sans-serif;

  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --r: 8px;
  --r-lg: 16px;
  --max: 1200px;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-mid);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
}

/* ── Utilities ─────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.tc {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--teal);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.display em {
  font-style: italic;
  color: var(--gold);
}

.body-text {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

/* gold ornament divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 36px;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: var(--gold-line);
}
.ornament i {
  color: var(--gold);
  font-size: 0.65rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 16px 34px;
  transition: all var(--ease);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 74, 78, 0.3);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 151, 58, 0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.left {
  transform: translateX(-40px);
}
.reveal.right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 0;
  transition: all var(--ease);
}
#nav.scrolled {
  background: rgba(10, 74, 78, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(196, 151, 58, 0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  transition: height var(--ease);
}
#nav.scrolled .nav-inner {
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(196, 151, 58, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: all var(--ease);
}
.nav-logo:hover .logo-mark {
  background: var(--gold);
  color: var(--white);
}
.logo-text-wrap {
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
}
.logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10, 74, 78, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(196, 151, 58, 0.2);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 15px 32px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--ease);
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-nav .btn {
  margin: 16px 32px 22px;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-parallax {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(10, 74, 78, 0.35) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(10, 74, 78, 0.85) 0%,
      rgba(10, 20, 30, 0.97) 100%
    );
  background-color: #071a1c;
  will-change: transform;
  /* subtle wave pattern */
  background-image:
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(10, 74, 78, 0.35) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(10, 74, 78, 0.88) 0%,
      rgba(5, 14, 18, 0.98) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' stop-color='%230d5f64' stop-opacity='.06'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23g)'/%3E%3C/svg%3E");
}
/* animated shimmer */
.hero-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(196, 151, 58, 0.04) 50%,
    transparent 100%
  );
  animation: shimmer 8s ease-in-out infinite alternate;
}
@keyframes shimmer {
  0% {
    opacity: 0.3;
    transform: translateX(-5%);
  }
  100% {
    opacity: 1;
    transform: translateX(5%);
  }
}

/* wave at bottom */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 120px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(196, 151, 58, 0.4);
  border-radius: 2px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 151, 58, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(196, 151, 58, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-title strong {
  display: block;
  font-weight: 600;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* stats */
.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(196, 151, 58, 0.2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}
.h-stat {
  padding: 22px 40px;
  border-right: 1px solid rgba(196, 151, 58, 0.15);
  text-align: center;
}
.h-stat:last-child {
  border-right: none;
}
.h-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.h-stat strong em {
  color: var(--gold);
  font-style: normal;
}
.h-stat small {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
#about {
  padding: 120px 0;
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--teal-pale) 0%, #b8d9dc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(10, 74, 78, 0.1);
  overflow: hidden;
  position: relative;
}
.about-img-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--teal-light),
    var(--gold)
  );
}
.about-img-main i {
  font-size: 4.5rem;
  color: rgba(10, 74, 78, 0.2);
}
.about-img-main p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 74, 78, 0.35);
}

/* floating accent card */
.about-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--teal);
  border-radius: var(--r);
  padding: 26px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(10, 74, 78, 0.3);
  border: 1px solid rgba(196, 151, 58, 0.2);
}
.about-accent strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about-accent span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
/* small floating img top-left */
.about-img-sm {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 130px;
  height: 130px;
  border-radius: var(--r);
  background: linear-gradient(135deg, #c4d9db, #a0c4c8);
  border: 3px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(10, 74, 78, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-text {
  padding-top: 8px;
}
.about-text .display {
  text-align: left;
}
.about-text p {
  margin-bottom: 18px;
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.highlight-item {
  background: var(--cream-2);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid rgba(10, 74, 78, 0.06);
  transition: all var(--ease);
}
.highlight-item:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.highlight-item:hover .hi-val,
.highlight-item:hover .hi-label {
  color: var(--white);
}
.highlight-item:hover .hi-icon {
  color: var(--gold);
}
.hi-icon {
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 8px;
  transition: color var(--ease);
}
.hi-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
  transition: color var(--ease);
}
.hi-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease);
}

/* ═══════════════════════════════════════════════════════
   ROOMS
   ═══════════════════════════════════════════════════════ */
#rooms {
  padding: 120px 0;
  background: var(--ink);
}
#rooms .display {
  color: var(--cream);
}
#rooms .body-text {
  color: rgba(255, 255, 255, 0.5);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--ink-mid);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--ease);
  position: relative;
}
.room-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(
    135deg,
    rgba(196, 151, 58, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--ease);
}
.room-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 151, 58, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.room-card:hover::before {
  opacity: 1;
}

.room-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.room-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img-inner {
  transform: scale(1.04);
}
.room-img i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.15);
}
.room-img p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
.room-price-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  border-radius: 2px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}
.room-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(10, 74, 78, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 151, 58, 0.3);
  border-radius: 2px;
  padding: 5px 12px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.room-body {
  padding: 28px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.room-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.room-features {
  margin-bottom: 24px;
}
.room-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}
.room-features li:last-child {
  border-bottom: none;
}
.room-features li i {
  color: var(--gold);
  width: 14px;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.room-price-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}
.room-price-main strong {
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 600;
}
.room-price-main span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════════
   AMENITIES
   ═══════════════════════════════════════════════════════ */
#amenities {
  padding: 120px 0;
  background: var(--cream);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amen-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  border: 1px solid rgba(10, 74, 78, 0.07);
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
  cursor: default;
}
.amen-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.amen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10, 74, 78, 0.12);
  border-color: rgba(10, 74, 78, 0.12);
}
.amen-card:hover::after {
  transform: scaleX(1);
}

.amen-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 20px;
  transition: all var(--ease);
}
.amen-card:hover .amen-icon {
  background: var(--teal);
  color: var(--gold);
}
.amen-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}
.amen-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.amen-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--ease);
}
.amen-card:hover .amen-link {
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
#gallery {
  padding: 120px 0;
  background: var(--ink);
}
#gallery .display {
  color: var(--cream);
}
#gallery .body-text {
  color: rgba(255, 255, 255, 0.45);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.g-item {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-mid);
  position: relative;
  cursor: pointer;
  transition: all var(--ease);
}
.g-item:hover {
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.g-item:hover .g-overlay {
  opacity: 1;
}
.g-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
  aspect-ratio: 2/3;
}
.g-item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
  aspect-ratio: 4/3;
}
.g-item:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/2;
  aspect-ratio: 4/3;
}
.g-item:nth-child(4) {
  grid-column: 2/3;
  grid-row: 2/3;
  aspect-ratio: 4/3;
}
.g-item:nth-child(5) {
  grid-column: 3/4;
  grid-row: 2/3;
  aspect-ratio: 4/3;
}
.g-item:nth-child(6) {
  grid-column: 1/4;
  grid-row: 3/4;
  aspect-ratio: 16/5;
}

.g-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--ink-mid) 100%);
}
.g-item:nth-child(1) .g-inner {
  background: linear-gradient(160deg, #0d5f64, #071a1c);
}
.g-item:nth-child(2) .g-inner {
  background: linear-gradient(135deg, #1a4a2e, #071a1c);
}
.g-item:nth-child(3) .g-inner {
  background: linear-gradient(135deg, #2a1a0e, #071a1c);
}
.g-item:nth-child(4) .g-inner {
  background: linear-gradient(135deg, #1a1a2e, #071a1c);
}
.g-item:nth-child(5) .g-inner {
  background: linear-gradient(135deg, #0a3040, #071a1c);
}
.g-item:nth-child(6) .g-inner {
  background: linear-gradient(160deg, #0d3a3e, #071a1c);
}

.g-inner i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.12);
}
.g-inner p {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 74, 78, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.g-overlay i {
  font-size: 1.5rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
#testimonials {
  padding: 120px 0;
  background: var(--cream-2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  border: 1px solid rgba(10, 74, 78, 0.07);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(10, 74, 78, 0.06);
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10, 74, 78, 0.1);
  border-color: rgba(10, 74, 78, 0.12);
}
.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 18px;
}
.testi-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 400;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(10, 74, 78, 0.07);
  padding-top: 22px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.testi-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal);
  margin-bottom: 2px;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--muted-light);
}

/* ═══════════════════════════════════════════════════════
   BOOKING / CONTACT
   ═══════════════════════════════════════════════════════ */
#booking {
  padding: 120px 0;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
#booking::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(196, 151, 58, 0.06);
}
#booking .display {
  color: var(--white);
}
#booking .body-text {
  color: rgba(255, 255, 255, 0.6);
}
#booking .ornament::before,
#booking .ornament::after {
  background: rgba(196, 151, 58, 0.4);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.booking-info .display {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.booking-info p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 32px;
}
.booking-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.bd-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(196, 151, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
}
.bd-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}
.bd-val {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.booking-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 44px;
  position: relative;
  z-index: 2;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.fg label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.fg input,
.fg select,
.fg textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  padding: 14px 18px;
  outline: none;
  transition:
    border-color var(--ease),
    box-shadow var(--ease);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 151, 58, 0.15);
}
.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c4973a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255, 255, 255, 0.07);
}
.fg select option {
  background: var(--teal-mid);
  color: var(--white);
}
.fg textarea {
  resize: vertical;
  min-height: 100px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(3) hue-rotate(5deg);
}
.btn-book {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}
.form-ok {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(196, 151, 58, 0.15);
  border: 1px solid rgba(196, 151, 58, 0.35);
  border-radius: var(--r);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
}
.form-ok.show {
  display: flex;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(196, 151, 58, 0.12);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 260px;
  line-height: 1.8;
  margin: 0 0 24px;
}
.ft-socials {
  display: flex;
  gap: 8px;
}
.ft-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition: all var(--ease);
}
.ft-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--ease);
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 500;
  transition: opacity var(--ease);
}
.footer-bottom a:hover {
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner,
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-visual {
    max-width: 460px;
  }
  .rooms-grid,
  .amenities-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .g-item:nth-child(6) {
    grid-column: 1/4;
  }
}
@media (max-width: 680px) {
  .nav-links,
  #nav > .wrap > .nav-inner > .btn-gold {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .rooms-grid,
  .amenities-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .h-stat {
    padding: 18px 22px;
  }
  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }
  .g-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
    aspect-ratio: 4/3;
  }
  .g-item:nth-child(6) {
    grid-column: 1/3;
    aspect-ratio: 16/7;
  }
  .about-img-sm {
    display: none;
  }
  .about-accent {
    bottom: -14px;
    right: -10px;
  }
}
