/* ============================================================
   Dasol Beach Villas — styles.css
   Design rationale: Deep ocean dark with gold-brass accent mirrors
   Dasol Beach Villas' elegant Mediterranean identity. The gold "D"
   monogram sets the luxury tone, deep ocean dark evokes Dasol Bay,
   and coral-sunset highlight captures clifftop sunsets.
   Heading: Alegreya — classical humanist serif with Italian warmth.
   Body: Exo 2 — contemporary geometric humanist, precise and upscale.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,700;1,400&family=Exo+2:wght@300;400;500;600&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --dark:        #0A1820;
  --bg-alt:      #0F2030;
  --accent:      #B89040;
  --highlight:   #E87040;
  --cream:       #F5F0E8;
  --cream-dim:   rgba(245, 240, 232, 0.65);
  --accent-dim:  rgba(184, 144, 64, 0.14);
  --border:      rgba(184, 144, 64, 0.22);
  --ff-display:  'Alegreya', serif;
  --ff-body:     'Exo 2', sans-serif;
  --radius:      4px;
  --radius-lg:   12px;
  --transition:  0.28s ease;
  --nav-h:       80px;
  --section-gap: 100px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }

.section-label {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.container--wide {
  width: min(1400px, 96vw);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-gap);
}

.section--alt {
  background: var(--bg-alt);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ── Divider ────────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  margin-block: 1.25rem;
}

.gold-rule--center { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--dark);
}

.btn--primary:hover {
  background: var(--highlight);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 112, 64, 0.35);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(245, 240, 232, 0.4);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: max(2rem, 4vw);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 24, 32, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.navbar__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.navbar__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__wordmark span:first-child {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.navbar__wordmark span:last-child {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.navbar__nav a {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 2px;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--cream);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  transform: scaleX(1);
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ─────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 24, 32, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover { color: var(--accent); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(10, 24, 32, 0.62) 0%,
    rgba(10, 24, 32, 0.38) 45%,
    rgba(10, 24, 32, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  margin-inline: auto;
  padding-block: calc(var(--nav-h) + 3rem) 5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero__eyebrow svg { flex-shrink: 0; }

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245, 240, 232, 0.82);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  max-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 24, 32, 0.3) 0%,
    rgba(10, 24, 32, 0.85) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding-bottom: 3.5rem;
  padding-top: calc(var(--nav-h) + 1rem);
}

.page-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero__content p {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 480px;
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stats-bar__item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__value {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stats-bar__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ── Highlights / Feature Grid ──────────────────────────────── */
.highlights__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight-card:hover img {
  transform: scale(1.07);
}

.highlight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 24, 32, 0.88) 0%,
    rgba(10, 24, 32, 0.1) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--transition);
}

.highlight-card:hover .highlight-card__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 24, 32, 0.95) 0%,
    rgba(10, 24, 32, 0.3) 60%,
    transparent 100%
  );
}

.highlight-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.highlight-card h3 {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
}

/* ── Intro / Feature Split ──────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.intro-split__media {
  position: relative;
  overflow: hidden;
}

.intro-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-split__body {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}

.intro-split__body .section-label { margin-bottom: 0.5rem; }

.intro-split__body h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.intro-split__body p {
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
}

/* ── Amenities Strip ────────────────────────────────────────── */
.amenities {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 3rem;
}

.amenities__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  min-width: 72px;
}

.amenity-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.amenity-item span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  line-height: 1.3;
  max-width: 80px;
}

/* ── Reviews ────────────────────────────────────────────────── */
.reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.review-card blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.review-card__initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.review-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.review-card__source {
  font-size: 0.72rem;
  color: var(--cream-dim);
}

.review-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.18rem 0.65rem;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: 7rem;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 32, 0.78);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #060f16;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.footer__logo-text span:first-child {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.footer__logo-text span:last-child {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer__tagline {
  font-style: italic;
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  font-family: var(--ff-display);
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: var(--cream); }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__contact-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.footer__contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.footer__contact-item a {
  color: var(--cream-dim);
}

.footer__contact-item a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.35);
}

.footer__bottom-links a:hover { color: var(--cream-dim); }

/* ── About Page ─────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-intro__body .section-label { margin-bottom: 0.5rem; }
.about-intro__body h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.about-intro__body p {
  color: var(--cream-dim);
  font-size: 0.97rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(145deg, var(--accent), transparent 60%);
  z-index: -1;
}

/* ── Timeline ───────────────────────────────────────────────── */
.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 2rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__item--left .timeline__content {
  grid-column: 1;
  text-align: right;
  grid-row: 1;
}

.timeline__item--left .timeline__dot {
  grid-column: 2;
  grid-row: 1;
}

.timeline__item--left .timeline__spacer {
  grid-column: 3;
  grid-row: 1;
}

.timeline__item--right .timeline__spacer {
  grid-column: 1;
  grid-row: 1;
}

.timeline__item--right .timeline__dot {
  grid-column: 2;
  grid-row: 1;
}

.timeline__item--right .timeline__content {
  grid-column: 3;
  grid-row: 1;
}

.timeline__dot {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.timeline__dot-inner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  outline: 1px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
  flex-shrink: 0;
}

.timeline__year {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.timeline__content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.timeline__content p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.75;
}

/* ── Values Grid ────────────────────────────────────────────── */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--cream);
}

.value-card p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ── Rooms Page ─────────────────────────────────────────────── */
.room-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-bottom: 5rem;
}

.room-cat-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  display: block;
}

.room-cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-cat-tile:hover img { transform: scale(1.08); }

.room-cat-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 24, 32, 0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.room-cat-tile__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.room-cat-tile h3 {
  font-size: 1rem;
  line-height: 1.25;
  color: #fff;
}

.room-cat-tile__count {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 0.25rem;
}

.room-section {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 5rem;
}

.room-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.room-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.room-section__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.room-section__count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
}

.room-section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.room-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.room-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-section__image:hover img { transform: scale(1.04); }

.room-section__desc {
  color: var(--cream-dim);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin-bottom: 2rem;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.room-feature svg { color: var(--accent); flex-shrink: 0; }

.room-section__image--reverse { order: 1; }
.room-section__info--reverse  { order: -1; }

/* All-Inclusive Strip */
.inclusions-strip {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}

.inclusions-strip h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inclusions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.inclusion-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Gallery Page ───────────────────────────────────────────── */
.gallery__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 32, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item__overlay svg {
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(10, 24, 32, 0.45);
}

.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(6, 15, 22, 0.96);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox__inner {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.1);
  border: 1px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all var(--transition);
  z-index: 9001;
}

.lightbox__close:hover {
  background: rgba(245, 240, 232, 0.2);
}

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.1);
  border: 1px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all var(--transition);
  z-index: 9001;
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(245, 240, 232, 0.22);
}

.lightbox__caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.55);
  font-style: italic;
  font-family: var(--ff-display);
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__header { margin-bottom: 2rem; }

.contact-info__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.contact-info__header p {
  color: var(--cream-dim);
  font-size: 0.97rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail__body {
  flex: 1;
}

.contact-detail__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.6;
}

.contact-detail__value a {
  color: var(--cream-dim);
  transition: color var(--transition);
}

.contact-detail__value a:hover { color: var(--accent); }

.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-cta-btns .btn {
  justify-content: center;
}

/* Map placeholder */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.map-embed svg { color: var(--accent); }

.map-embed p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  text-align: center;
  max-width: 260px;
  line-height: 1.6;
}

.map-embed a {
  font-size: 0.82rem;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: all var(--transition);
}

.map-embed a:hover {
  background: var(--accent-dim);
}

/* Arrival info */
.arrival-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.arrival-box h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-family: var(--ff-body);
}

.arrival-box p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* Check-in times */
.checkin-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkin-time {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.checkin-time__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}

.checkin-time__value {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--cream);
}

/* FAQ */
.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  text-align: left;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.97rem;
  font-weight: 500;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(184, 144, 64, 0.06); }

.faq-question.active {
  background: rgba(184, 144, 64, 0.1);
  color: var(--accent);
}

.faq-chevron {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 1.75rem;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 1.75rem 1.4rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.78;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-gap: 72px; }

  .navbar__nav { gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .room-categories { grid-template-columns: repeat(2, 1fr); }
  .about-intro { gap: 3rem; }
  .room-section__body { gap: 2.5rem; }
  .contact-grid { gap: 3.5rem; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; }

  .navbar__nav { display: none; }
  .navbar__cta .btn { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__content { padding-top: calc(var(--nav-h) + 2rem); }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(3) { border-top: 1px solid var(--border); }

  .highlights__grid { grid-template-columns: repeat(2, 1fr); }

  .intro-split { grid-template-columns: 1fr; }
  .intro-split__media { min-height: 320px; }

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

  .about-intro {
    grid-template-columns: 1fr;
  }
  .about-intro__image { order: -1; aspect-ratio: 16 / 9; }

  .timeline::before { left: 20px; }
  .timeline__item {
    grid-template-columns: 40px 1fr;
    gap: 0 1rem;
  }
  .timeline__item--left .timeline__content,
  .timeline__item--right .timeline__content {
    grid-column: 2;
    text-align: left;
  }
  .timeline__item--left .timeline__dot,
  .timeline__item--right .timeline__dot {
    grid-column: 1;
  }
  .timeline__item--left .timeline__spacer,
  .timeline__item--right .timeline__spacer {
    display: none;
  }

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

  .room-categories { grid-template-columns: repeat(2, 1fr); }

  .room-section__body {
    grid-template-columns: 1fr;
  }

  .room-section__image--reverse { order: 0; }
  .room-section__info--reverse  { order: 0; }

  .gallery-masonry { columns: 2; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root { --section-gap: 44px; --nav-h: 68px; }

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

  .stats-bar__grid { grid-template-columns: 1fr 1fr; }

  .room-categories { grid-template-columns: 1fr 1fr; }

  .room-features { grid-template-columns: 1fr; }

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

  .gallery-masonry { columns: 1; }

  .checkin-times { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
}

/* ── Utility classes ────────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.text-center  { text-align: center; }
.text-muted   { color: var(--cream-dim); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-auto { margin-top: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
