/* ===== Design Tokens ===== */
:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --ink: #161616;
  --gold: #d4af37;
  --gold-soft: #e6c869;
  --gold-deep: #b8941f;
  --cream: #f5f1e6;
  --gray: #9a9a9a;
  --line: rgba(212, 175, 55, 0.18);
  --grad-gold: linear-gradient(135deg, #f5d77a 0%, #d4af37 45%, #b8941f 100%);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --radius: 14px;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

.container { width: min(var(--container), 92%); margin: 0 auto; }

/* ===== Typography ===== */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-head { text-align: center; margin-bottom: 3rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--gold {
  background: var(--grad-gold);
  color: #1a1300;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: #1a1300; transform: translateY(-3px); }

.btn--full { width: 100%; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.4rem 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.55) 55%, rgba(8, 8, 8, 0) 100%);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__logo { height: 56px; width: auto; display: block; }
.brand__text { display: none; }
.nav .brand__text { display: inline-block; }
.footer__brand .brand__logo { height: 120px; }
@media (max-width: 1040px) { .brand__logo { height: 48px; } }
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--grad-gold);
  color: #1a1300;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 8px;
}
.brand__text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cream);
  position: relative;
  transition: color 0.25s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--gold); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { padding: 0.6rem 1.4rem; }

/* keep nav inline on tablets/laptops; reduce spacing as it tightens */
@media (max-width: 1040px) {
  .nav__links { gap: 1.1rem; }
  .nav__links a { font-size: 0.76rem; letter-spacing: 0.3px; }
  .brand__text { font-size: 1.3rem; letter-spacing: 2px; }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: url("assets/web/ADI_0261.jpg") center/cover no-repeat fixed;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 45%, rgba(10,10,10,0.35) 100%);
}
.hero__content { position: relative; max-width: 680px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
}
.hero__title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  margin: 1.5rem 0 2.4rem;
  font-size: 1.1rem;
  color: #d6d2c6;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* centered hero variant (Zen-style) */
.hero--center { justify-content: center; text-align: center; }
.hero--center .hero__content { margin: 0 auto; }
.hero--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero--center .hero__actions { justify-content: center; }
.hero--center .hero__eyebrow { letter-spacing: 6px; }
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 821px) {
  .hero__scroll { display: none; }
}
.hero__line {
  width: 1px; height: 50px;
  margin: 0.5rem auto 0;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===== Stats ===== */
.stats { background: var(--black-2); padding: 3.5rem 0; border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; color: var(--gray); }

/* ===== Intro ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}
.intro__media { position: relative; }
.intro__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.intro__media img:first-child { width: 80%; height: 420px; }
.intro__media--offset {
  position: absolute;
  bottom: -40px; right: 0;
  width: 55% !important;
  height: 260px;
  border: 4px solid var(--black);
  outline: 1px solid var(--gold);
}
.intro__text p { color: #c9c5b9; margin-bottom: 1rem; }
.intro__text .section-title { margin-bottom: 1.4rem; }
.intro__list { list-style: none; margin-top: 1.5rem; }
.intro__list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  color: var(--cream);
}
.intro__list li::before {
  content: "\2726";
  position: absolute; left: 0;
  color: var(--gold);
}

/* ===== Rooms ===== */
.rooms { padding: 6rem 0; background: var(--black-2); }
.rooms__filter { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 3rem; }
.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: 0.25s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.is-active { background: var(--grad-gold); color: #1a1300; border-color: transparent; }

.rooms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rooms__grid--single { display: flex; justify-content: center; }
.rooms__grid--single .room-card { width: min(460px, 100%); }
.room-card {
  background: var(--black-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: fadeUp 0.5s ease both;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
.room-card__img { position: relative; height: 240px; overflow: hidden; }
.room-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-card__img img { transform: scale(1.08); }
.room-card__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--grad-gold);
  color: #1a1300;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
}
.room-card__body { padding: 1.6rem; }
.room-card__title { font-family: var(--serif); font-size: 1.6rem; color: #fff; font-weight: 600; }
.room-card__desc { color: var(--gray); font-size: 0.92rem; margin: 0.5rem 0 1rem; }
.room-card__meta { display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: 0.8rem; color: #b8b4a8; margin-bottom: 1.2rem; }
.room-card__meta span::before { content: "\2022"; color: var(--gold); margin-right: 0.4rem; }
.room-card__foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.room-card__note { font-size: 0.78rem; letter-spacing: 0.5px; color: var(--gray); text-transform: uppercase; }
.room-card__btn {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.25s ease;
}
.room-card__btn:hover { background: var(--gold); color: #1a1300; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Gallery ===== */
.gallery { padding: 6rem 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E") no-repeat center;
  background-size: auto, 40px 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ===== Amenities ===== */
.amenities { padding: 6rem 0; background: var(--black-2); }
.amenities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.amenity {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.amenity:hover { transform: translateY(-6px); border-color: var(--gold); }
.amenity__icon {
  font-size: 2.4rem;
  width: 80px; height: 80px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
  border: 1px solid var(--line);
}
.amenity h3 { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin-bottom: 0.5rem; }
.amenity p { color: var(--gray); font-size: 0.92rem; }

/* ===== Location & Timings ===== */
.locale { padding: 6rem 0; background: var(--black-2); }
.locale__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; align-items: stretch; }
.locale__times { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.time-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.time-card:hover { border-color: var(--gold); transform: translateX(6px); }
.time-card__icon {
  font-size: 1.8rem;
  width: 60px; height: 60px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
  border: 1px solid var(--line);
}
.time-card__label { display: block; text-transform: uppercase; letter-spacing: 2px; font-size: 0.72rem; color: var(--gray); }
.time-card__value { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--gold); }

.locale__nearby {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.locale__nearby h3 { font-family: var(--serif); font-size: 1.6rem; color: #fff; margin-bottom: 1.2rem; }
.nearby { list-style: none; }
.nearby li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.nearby li:last-child { border-bottom: none; }
.nearby__place { color: var(--cream); position: relative; padding-left: 1.8rem; }
.nearby__place::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6.5-5.3-6.5-10.5A6.5 6.5 0 0 1 18.5 10.5C18.5 15.7 12 21 12 21z'/%3E%3Ccircle cx='12' cy='10.5' r='2.5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.nearby__dist {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.locale__map {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.locale__map iframe { display: block; filter: grayscale(0.3) contrast(1.05); }
.locale__map-actions { text-align: center; margin-top: 1.6rem; }

/* ===== Booking ===== */
.booking {
  padding: 6rem 0;
  background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.95)),
    url("assets/web/ADI_0219_Edit.jpg") center/cover fixed;
}
.booking__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.booking__text p { color: #c9c5b9; }
.booking__form {
  background: rgba(18,18,18,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--row { flex-direction: row; gap: 1rem; }
.field--row > div { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); }
.field input, .field select {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field input::placeholder { color: #6f6f6f; }
.booking__msg { text-align: center; font-size: 0.9rem; color: var(--gold); min-height: 1rem; }

/* ===== Footer ===== */
.footer { background: var(--black-2); padding: 4rem 0 0; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand p { color: var(--gray); margin-top: 1rem; font-size: 0.92rem; max-width: 280px; }
.footer__col h4 { color: #fff; font-family: var(--serif); font-size: 1.2rem; margin-bottom: 1rem; }
.footer__col p, .footer__col a { display: block; color: var(--gray); font-size: 0.9rem; margin-bottom: 0.5rem; transition: color 0.25s ease; }
.footer__col a:hover { color: var(--gold); }
.footer__social a { color: var(--gold); }
.footer__bottom {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,5,5,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 85%; max-height: 85vh; border-radius: 10px; border: 1px solid var(--line); }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--gold); font-size: 2.5rem;
  cursor: pointer; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.25s ease;
}
.lightbox__nav:hover { background: var(--gold); color: #1a1300; }
.lightbox__prev { left: 2rem; }
.lightbox__next { right: 2rem; }

/* ===== Solid Nav (inner pages) ===== */
.nav.is-solid {
  position: fixed;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__links a.is-current { color: var(--gold); }
.nav__links a.is-current::after { width: 100%; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 7rem 0 3rem;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
}
.crumbs { margin-top: 0.8rem; font-size: 0.85rem; letter-spacing: 1px; color: var(--gray); }
.crumbs a { color: var(--gold); }
.crumbs span { margin: 0 0.4rem; color: var(--gray); }

/* ===== Room Detail ===== */
.room-detail { padding: 5rem 0; }
.room-detail__top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.room-detail__gallery #rdMain {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.room-detail__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 0.8rem; }
.room-detail__thumbs img {
  width: 100%; height: 80px; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  border: 1px solid var(--line); opacity: 0.6;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}
.room-detail__thumbs img:hover, .room-detail__thumbs img.is-active { opacity: 1; border-color: var(--gold); }
.room-detail__info .section-title { margin: 0.4rem 0 1rem; }
.room-detail__info p { color: #c9c5b9; }
.room-detail__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.8rem 0; }
.room-detail__quick { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.room-detail__quick li { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); font-size: 0.92rem; }
.room-detail__quick span { font-size: 1.2rem; }

/* ===== Room Features ===== */
.room-features { padding: 5rem 0; background: var(--black-2); }
.feature-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feature {
  background: var(--black-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature:hover { transform: translateY(-6px); border-color: var(--gold); }
.feature span { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
.feature h4 { font-family: var(--serif); font-size: 1.25rem; color: #fff; margin-bottom: 0.4rem; }
.feature p { color: var(--gray); font-size: 0.88rem; }

/* ===== CTA Banner ===== */
.cta-banner { padding: 5rem 0; text-align: center; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-banner p { color: #d6d2c6; margin: 0.8rem 0 1.8rem; }

/* ===== Full Gallery ===== */
.gallery__grid--full { grid-auto-rows: 240px; }

/* ===== Attractions ===== */
.attractions { padding: 5rem 0; }
.attractions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.attraction {
  background: var(--black-3); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: fadeUp 0.5s ease both;
}
.attraction:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow); }
.attraction__img { height: 180px; overflow: hidden; }
.attraction__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.attraction:hover .attraction__img img { transform: scale(1.08); }
.attraction__body { padding: 1.4rem 1.5rem; }
.attraction__cat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); }
.attraction__title { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin: 0.3rem 0 0.5rem; }
.attraction__desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 0.9rem; }
.attraction__dist {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; color: var(--cream);
  border: 1px solid var(--line); border-radius: 50px; padding: 0.32rem 0.95rem;
}
.attraction__dist::before {
  content: "";
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6.5-5.3-6.5-10.5A6.5 6.5 0 0 1 18.5 10.5C18.5 15.7 12 21 12 21z'/%3E%3Ccircle cx='12' cy='10.5' r='2.5'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ===== Contact ===== */
.contact { padding: 5rem 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact__lead { color: #c9c5b9; margin: 0.4rem 0 1.8rem; }
.contact__list { list-style: none; margin-bottom: 1.8rem; }
.contact__list li { display: flex; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.contact__ico {
  flex-shrink: 0; width: 48px; height: 48px;
  display: grid; place-items: center; font-size: 1.3rem;
  border-radius: 50%; border: 1px solid var(--line);
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
}
.contact__list h4 { color: #fff; font-family: var(--serif); font-size: 1.15rem; }
.contact__list p, .contact__list a { color: var(--gray); }
.contact__list a:hover { color: var(--gold); }
.contact__form textarea {
  background: var(--black); border: 1px solid var(--line);
  border-radius: 8px; padding: 0.8rem 1rem; color: var(--cream);
  font-family: var(--sans); font-size: 0.95rem; resize: vertical;
  transition: border-color 0.25s ease;
}
.contact__form textarea:focus { outline: none; border-color: var(--gold); }
.contact__map { margin-top: 3rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.contact__map iframe { display: block; filter: grayscale(0.3) contrast(1.1); }

.contact__wa { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.contact__wa-ico { color: var(--gold); margin-bottom: 1.2rem; }
.contact__wa-ico svg.ico { width: 48px; height: 48px; }
.contact__wa-title { font-family: var(--serif); font-size: 1.7rem; color: #fff; margin-bottom: 0.8rem; }
.contact__wa-text { color: var(--gray); max-width: 360px; margin: 0 auto 1.8rem; line-height: 1.6; }
.contact__wa .btn--full { max-width: 320px; }
.contact__wa-note { color: var(--gray); font-size: 0.9rem; margin-top: 1.1rem; }
.contact__wa-note a { color: var(--gold); }

/* ===== Amenities Marquee (Zen-style) ===== */
.marquee {
  overflow: hidden;
  margin: 2.5rem 0 3.5rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(212,175,55,0.05), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.marquee__item::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-gold);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Premium Line Icons ===== */
.amenity__icon, .time-card__icon, .contact__ico, .feature__icon, .quick__ico { color: var(--gold); }
svg.ico { display: block; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.amenity__icon svg.ico { width: 34px; height: 34px; }
.feature__icon svg.ico { width: 30px; height: 30px; }
.time-card__icon svg.ico { width: 26px; height: 26px; }
.contact__ico svg.ico { width: 22px; height: 22px; }
.quick__ico svg.ico { width: 20px; height: 20px; }
.room-detail__quick li .quick__ico { color: var(--gold); display: inline-flex; }
.feature__icon { display: block; margin-bottom: 0.9rem; display: flex; justify-content: center; }

/* ===== Premium Accents ===== */
.section-head .section-title { position: relative; padding-bottom: 1.1rem; }
.section-head .section-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 64px; height: 2px;
  background: var(--grad-gold);
}
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; }
.section-head .eyebrow { justify-content: center; }
.eyebrow::before, .section-head .eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.section-head .eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* refined card surfaces */
.room-card, .amenity, .feature, .attraction, .locale__nearby, .time-card {
  background-image: linear-gradient(160deg, rgba(255,255,255,0.02), transparent 55%);
}

/* ===== Reveal Animation ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .intro, .booking__inner, .locale__grid, .room-detail__top, .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro__media { height: 420px; }
  .rooms__grid, .amenities__grid, .attractions__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  /* always-visible inline menu bar (no hamburger dropdown) */
  .nav__inner {
    flex-direction: column;
    gap: 0.7rem;
  }
  .nav__links {
    position: static;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem 1.1rem;
    background: none;
    transform: none;
    padding: 0;
  }
  .nav__links a { font-size: 0.78rem; }
  .nav__toggle { display: none; }
  .page-hero { padding-top: 10rem; }
  .hero { background-attachment: scroll; }
  .booking { background-attachment: scroll; }
}

@media (max-width: 560px) {
  /* keep the nav menu on a single line that fully fits the screen */
  .nav .container { width: 94%; }
  .nav__inner { gap: 0.6rem; }
  .nav__links {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav__links::-webkit-scrollbar { display: none; }
  .nav__links a {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .nav__cta {
    padding: 0.45rem 0.9rem;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .brand__logo { height: 44px; }
  .brand__text { font-size: 1.15rem; }

  .rooms__grid, .gallery__grid, .footer__grid, .attractions__grid, .feature-list { grid-template-columns: 1fr; }
  .room-detail__quick { grid-template-columns: 1fr; }
  .cta-banner { background-attachment: scroll; }
  .field--row { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .intro__media img:first-child { width: 100%; }
  .intro__media--offset { display: none; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }

  /* Compact amenities so the section stays short on mobile */
  .amenities { padding: 3.5rem 0; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .amenity { padding: 1.1rem 0.7rem; }
  .amenity__icon { width: 50px; height: 50px; margin-bottom: 0.6rem; }
  .amenity__icon svg.ico { width: 24px; height: 24px; }
  .amenity h3 { font-size: 0.95rem; margin-bottom: 0; line-height: 1.25; }
  .amenity p { display: none; }
}

/* ===== Ultra-small phones ===== */
@media (max-width: 400px) {
  .nav__links { gap: 0.55rem; }
  .nav__links a { font-size: 0.62rem; }
  .nav__cta { padding: 0.4rem 0.7rem; }
  .brand__text { font-size: 1rem; letter-spacing: 1px; }
  .brand__logo { height: 40px; }
  .amenity h3 { font-size: 0.88rem; }
  .amenity__icon { width: 46px; height: 46px; }
}
