/*
 * Tatsulok Cabins — Main Stylesheet
 *
 * PALETTE RATIONALE
 * --dark   #0C1E22  Deep pool-teal near-black: evokes the underwater cool of Batangas Bay at depth,
 *                   anchoring every surface with the stillness of the sea floor.
 * --bg-alt #142830  Slightly lifted dark teal: separates sections while staying within the same
 *                   oceanic depth range, avoiding harsh contrast breaks.
 * --accent #2EAAB8  Crystal-sea cyan: mirrors the logo's triangle/wave mark and the phosphorescent
 *                   clarity of Batangas reef water in midday sun.
 * --highlight #C89250 Warm hilltop amber: captures the golden hour light that washes the Batangas
 *                   coastline each evening — warmth against the cool of the bay.
 * --cream  #F2EEE4  Soft aged cream: pulled from whitewashed tropical walls and dried cogon grass,
 *                   keeps text legible without clinical white.
 *
 * TYPOGRAPHY
 * Heading: Playfair Display SC — classical small-caps serif whose architectural letterforms
 *          mirror the A-frame geometry of the cabins; premium without pretension.
 * Body:    Figtree — clean modern geometric humanist sans; contemporary, approachable,
 *          reads beautifully at small sizes on mobile screens.
 *
 * SECTIONS (22)
 *  1. CSS Variables & Reset
 *  2. Base Typography
 *  3. Utility Classes
 *  4. Navbar
 *  5. Hero (index)
 *  6. Page Hero (inner pages)
 *  7. Section Wrappers & Labels
 *  8. Feature Strip
 *  9. Offerings Grid
 * 10. Brand Teaser
 * 11. Stats Row
 * 12. Review Cards
 * 13. Social CTA
 * 14. Social Feed
 * 15. Footer
 * 16. Rooms Page
 * 17. About Page
 * 18. Gallery Page + Lightbox
 * 19. Contact Page
 * 20. FAQ Accordion
 * 21. Scroll-to-Top Button
 * 22. Responsive / Mobile
 */

/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
:root {
  --dark:        #0C1E22;
  --bg-alt:      #142830;
  --accent:      #2EAAB8;
  --highlight:   #C89250;
  --cream:       #F2EEE4;
  --cream-dim:   rgba(242,238,228,.65);
  --accent-dim:  rgba(46,170,184,.14);
  --border:      rgba(46,170,184,.22);
  --ff-display:  'Playfair Display SC', Georgia, serif;
  --ff-body:     'Figtree', sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s ease;
  --max-w:       1200px;
  --nav-h:       72px;
  --section-pad: 96px 0;
}

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

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

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

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   2. BASE TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.2;
  color: var(--cream);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; letter-spacing: .03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--cream-dim); font-size: 1rem; }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad); }
.section-label {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.text-center { text-align: center; }
.text-highlight { color: var(--highlight); }
.text-accent   { color: var(--accent); }
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  border-radius: 2px;
  margin: 20px auto 0;
}
.divider-left { margin: 20px 0 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: #26939f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,170,184,.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-highlight {
  background: var(--highlight);
  color: var(--dark);
}
.btn-highlight:hover {
  background: #b57e3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,80,.3);
}

/* Animate-on-scroll */
.aos {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.aos.visible {
  opacity: 1;
  transform: translateY(0);
}
.aos-delay-1 { transition-delay: .1s; }
.aos-delay-2 { transition-delay: .2s; }
.aos-delay-3 { transition-delay: .3s; }
.aos-delay-4 { transition-delay: .4s; }
.aos-delay-5 { transition-delay: .5s; }

/* ============================================================
   4. NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-brand-name {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .04em;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: .04em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 22px;
  font-size: .85rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   5. HERO (INDEX)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/banner.jpg?v=1') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,30,34,.45) 0%,
    rgba(12,30,34,.6) 60%,
    rgba(12,30,34,.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 16px; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream-dim);
  font-weight: 300;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   6. PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--page-hero-bg, linear-gradient(135deg, var(--bg-alt) 0%, var(--dark) 60%, rgba(46,170,184,.08) 100%));
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  max-width: 560px;
  color: var(--cream-dim);
}
.page-hero-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,170,184,.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   7. SECTION WRAPPERS & LABELS
   ============================================================ */
.section-header { margin-bottom: 56px; }
.section-header .section-label { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 560px;
  font-size: 1.05rem;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header.centered .divider { margin: 16px auto 0; }

/* ============================================================
   8. FEATURE STRIP
   ============================================================ */
.features-strip {
  padding: 72px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background: rgba(46,170,184,.28);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item h4 { font-size: 1rem; letter-spacing: .02em; }
.feature-item p {
  font-size: .84rem;
  line-height: 1.5;
  color: var(--cream-dim);
}

/* ============================================================
   9. OFFERINGS GRID
   ============================================================ */
.offerings-section { background: var(--dark); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offering-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
}
.offering-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.offering-tile:hover .offering-tile-bg { transform: scale(1.06); }
.offering-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,30,34,.88) 100%);
}
.offering-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.offering-tile-content h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.offering-tile-content p {
  font-size: .82rem;
  color: var(--cream-dim);
}
/* Placeholder tiles */
.offering-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  transition: var(--transition);
}
.offering-placeholder:hover {
  background: rgba(46,170,184,.22);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.offering-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  opacity: .7;
}
.offering-placeholder h3 {
  font-size: 1rem;
  text-align: center;
  padding: 0 16px;
}
.offering-placeholder p {
  font-size: .82rem;
  text-align: center;
  padding: 0 20px;
}

/* ============================================================
   10. BRAND TEASER
   ============================================================ */
.brand-teaser {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.brand-teaser-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.brand-teaser-img:hover img { transform: scale(1.04); }
.brand-teaser-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(12,30,34,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-teaser-img-badge .badge-star {
  color: var(--highlight);
  font-size: 1.1rem;
}
.brand-teaser-img-badge .badge-text {
  font-size: .82rem;
  color: var(--cream);
  font-weight: 600;
}
.brand-teaser-text { display: flex; flex-direction: column; gap: 20px; }
.brand-teaser-text p { font-size: 1rem; line-height: 1.8; }
.brand-teaser-text .btn { margin-top: 8px; align-self: flex-start; }

/* ============================================================
   11. STATS ROW
   ============================================================ */
.stats-row {
  background: var(--dark);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 24px 16px; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .84rem;
  color: var(--cream-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.stat-sub {
  font-size: .76rem;
  color: var(--accent);
  margin-top: 4px;
}

/* ============================================================
   12. REVIEW CARDS
   ============================================================ */
.reviews-section { background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.review-stars { color: var(--highlight); font-size: 1rem; letter-spacing: 2px; }
.review-text {
  font-style: italic;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--cream-dim);
  flex: 1;
}
.review-text::before { content: '\201C'; color: var(--accent); font-size: 1.4rem; line-height: 0; vertical-align: -4px; }
.review-text::after  { content: '\201D'; color: var(--accent); font-size: 1.4rem; line-height: 0; vertical-align: -4px; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: .8rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.review-author-info .author-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--cream);
}
.review-author-info .author-via {
  font-size: .78rem;
  color: var(--cream-dim);
}

/* ============================================================
   13. SOCIAL CTA
   ============================================================ */
.social-cta {
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(46,170,184,.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.social-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.social-cta-text h2 { margin-bottom: 12px; }
.social-cta-text p { max-width: 480px; font-size: 1.05rem; }
.social-cta-links {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.social-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--cream);
  transition: var(--transition);
}
.social-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.social-pill svg { width: 18px; height: 18px; }

/* ============================================================
   14. SOCIAL FEED
   ============================================================ */
.social-feed {
  background: var(--dark);
  padding: 72px 0;
}
.social-feed-label {
  text-align: center;
  margin-bottom: 36px;
}
.social-feed-label a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition);
}
.social-feed-label a:hover { color: var(--cream); }
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.feed-tile {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.feed-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.feed-tile:hover img { transform: scale(1.08); }
.feed-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,170,184,.2);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-tile:hover .feed-tile-overlay { opacity: 1; }
.feed-tile-overlay svg { width: 28px; height: 28px; color: var(--cream); }

/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
  background: #080F11;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: .88rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: rgba(46,170,184,.28);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-col h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
  font-family: var(--ff-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: .88rem;
  color: var(--cream-dim);
  line-height: 1.5;
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact-item a { color: var(--cream-dim); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--cream-dim);
  opacity: .65;
}

/* ============================================================
   16. ROOMS PAGE
   ============================================================ */
.rooms-disclaimer {
  background: rgba(200,146,80,.08);
  border: 1px solid rgba(200,146,80,.25);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 56px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--cream-dim);
}
.rooms-disclaimer svg { width: 20px; height: 20px; color: var(--highlight); flex-shrink: 0; margin-top: 1px; }
.room-category {
  margin-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.room-category.reverse { direction: rtl; }
.room-category.reverse > * { direction: ltr; }
.room-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.room-img-wrap:hover img { transform: scale(1.04); }
.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.room-capacity {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(12,30,34,.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .78rem;
  color: var(--cream);
  font-weight: 500;
}
.room-info { display: flex; flex-direction: column; gap: 20px; }
.room-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.room-info > p { font-size: 1rem; line-height: 1.8; }
.room-amenities-title {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--cream-dim);
}
.amenity-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.room-cta-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.room-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.perk-tag {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .78rem;
  color: var(--accent);
  font-weight: 500;
}
/* Property wide */
.property-wide {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.property-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.property-perk-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.property-perk-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.property-perk-card svg { width: 28px; height: 28px; color: var(--accent); }
.property-perk-card h4 { font-size: 1rem; }
.property-perk-card p { font-size: .85rem; }

/* ============================================================
   17. ABOUT PAGE
   ============================================================ */
.about-origin {
  background: var(--dark);
}
.about-origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-origin-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}
.about-origin-visual .visual-geo {
  width: 120px;
  height: 120px;
}
.about-origin-text { display: flex; flex-direction: column; gap: 20px; }
.about-origin-text p { font-size: 1rem; line-height: 1.85; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.philosophy-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.philosophy-card .card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-card .card-icon svg { width: 26px; height: 26px; }
.philosophy-card h3 { font-size: 1.1rem; }
.philosophy-card p { font-size: .9rem; }
/* Timeline */
.timeline-section { background: var(--bg-alt); }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -29px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p { font-size: .9rem; }
/* About CTA Split */
.about-cta-split {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.cta-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.cta-card h3 { font-size: 1.4rem; }
.cta-card p { font-size: .95rem; }
.cta-card .btn { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   18. GALLERY PAGE + LIGHTBOX
   ============================================================ */
.gallery-section { background: var(--dark); }
.gallery-intro-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,30,34,.5);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay svg { width: 36px; height: 36px; color: var(--cream); }
/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,15,17,.95);
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
}
#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: var(--transition);
}
#lightbox-close:hover { background: var(--accent); color: var(--dark); }
#lightbox-close svg { width: 20px; height: 20px; }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(20,40,48,.8);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: var(--transition);
}
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-prev:hover, #lightbox-next:hover { background: var(--accent); color: var(--dark); }
#lightbox-prev svg, #lightbox-next svg { width: 22px; height: 22px; }
/* Gallery placeholder */
.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.gallery-placeholder-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}
.gallery-placeholder-tile svg { width: 32px; height: 32px; color: var(--accent); opacity: .6; }
.gallery-placeholder-tile p { font-size: .85rem; text-align: center; color: var(--cream-dim); }
/* Gallery CTA */
.gallery-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.gallery-cta h2 { margin-bottom: 16px; }
.gallery-cta p { max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; }
.gallery-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-blocks { display: flex; flex-direction: column; gap: 20px; }
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-block:hover { border-color: var(--accent); }
.contact-block-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-block-info h4 { font-size: .95rem; margin-bottom: 4px; }
.contact-block-info p,
.contact-block-info a {
  font-size: .88rem;
  color: var(--cream-dim);
  line-height: 1.6;
}
.contact-block-info a { transition: color var(--transition); }
.contact-block-info a:hover { color: var(--accent); }
/* Inquiry Form */
.inquiry-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.inquiry-form h3 { margin-bottom: 8px; }
.inquiry-form > p { font-size: .9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--cream-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .92rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,170,184,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(242,238,228,.3); }
.form-group select option { background: var(--dark); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  font-size: .78rem;
  color: #e07070;
  margin-top: 5px;
  display: none;
}
.form-group.error input,
.form-group.error textarea,
.form-group.error select { border-color: #e07070; }
.form-group.error .form-error { display: block; }
.form-success {
  background: rgba(46,170,184,.1);
  border: 1px solid rgba(46,170,184,.3);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--accent);
  margin-top: 16px;
  display: none;
}
.form-success.show { display: block; }
/* Map */
.map-section {
  background: var(--dark);
  padding: 80px 0;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  height: 420px;
  display: flex;
  align-items: stretch;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(.8);
}
/* Social CTA bar */
.platforms-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.platforms-cta h2 { margin-bottom: 12px; }
.platforms-cta > p { max-width: 480px; margin: 0 auto 40px; }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.platform-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.platform-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.platform-card svg { width: 28px; height: 28px; color: var(--accent); }
.platform-card span {
  font-size: .84rem;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
}

/* ============================================================
   20. FAQ ACCORDION
   ============================================================ */
.faq-section { background: var(--dark); padding: 80px 0; }
.faq-section .section-header { margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
  text-align: left;
  font-family: var(--ff-body);
  font-size: .98rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--cream-dim);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   21. SCROLL-TO-TOP BUTTON
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(46,170,184,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--highlight);
  box-shadow: 0 4px 20px rgba(200,146,80,.4);
}
#scroll-top svg { width: 20px; height: 20px; }

/* ============================================================
   22. RESPONSIVE / MOBILE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid .feature-item:nth-child(4),
  .features-grid .feature-item:nth-child(5) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .property-perks-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-origin-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-origin-visual { aspect-ratio: 16/9; }
}
@media (max-width: 900px) {
  .room-category { grid-template-columns: 1fr; }
  .room-category.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-cta-inner { grid-template-columns: 1fr; }
  .brand-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .social-cta-inner { flex-direction: column; align-items: flex-start; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .nav-links { display: none; flex-direction: column; gap: 20px; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-placeholder-grid { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  #lightbox-prev { left: 8px; }
  #lightbox-next { right: 8px; }
}
