/*
  Design rationale: Deep ocean slate on sunny amber gold and tropical teal mirrors the Sunhouse logo exactly — a sun rising over ocean waves inside a house silhouette — evoking modern tropical luxury, clean white architecture, and beachside warmth.
  Heading: Martel — warm classical serif with elegant proportions, lending authority and welcome to a premium private beach house
  Body: Nunito Sans — rounded humanist sans with approachable warmth, great readability for family-oriented travelers
*/

/* ─────────────────────────────────────
   1. Reset & Custom Properties
──────────────────────────────────────*/
/* Google Fonts loaded via <link> tag in HTML head — see each HTML file */

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

:root {
  --dark:       #162230;
  --bg-alt:     #1E2E3E;
  --surface:    #243344;
  --accent:     #E8A030;
  --highlight:  #3ABBB8;
  --cream:      #F5F2EA;
  --cream-dim:  rgba(245,242,234,.65);
  --accent-dim: rgba(232,160,48,.14);
  --border:     rgba(232,160,48,.22);
  --ff-display: 'Martel', Georgia, serif;
  --ff-body:    'Nunito Sans', 'Helvetica Neue', sans-serif;

  --nav-h: 72px;
  --radius: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin: .5rem 0 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; }

/* ─────────────────────────────────────
   3. Buttons
──────────────────────────────────────*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-primary:hover { background: #d08c20; border-color: #d08c20; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,242,234,.35);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,242,234,.08); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--dark); }

.btn-teal {
  background: var(--highlight);
  color: var(--dark);
  border-color: var(--highlight);
}
.btn-teal:hover { background: #2aa8a5; border-color: #2aa8a5; }

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

.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: .65rem;
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-links a {
  padding: .5rem .85rem;
  font-size: .87rem;
  font-weight: 600;
  color: rgba(245,242,234,.75);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(245,242,234,.08);
}

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 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); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  transition: color var(--transition);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(22,34,48,.82) 0%,
    rgba(22,34,48,.65) 50%,
    rgba(22,34,48,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  padding-top: var(--nav-h);
}

.hero-content .label { margin-bottom: .75rem; }

.hero-content h1 {
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(245,242,234,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(245,242,234,.6);
  border-bottom: 2px solid rgba(245,242,234,.6);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ─────────────────────────────────────
   6. Features Strip
──────────────────────────────────────*/
.features-strip {
  background: var(--accent);
  padding: 2.5rem 2rem;
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--dark);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--ff-display);
}

.feature-item p {
  font-size: .78rem;
  color: rgba(22,34,48,.75);
  margin: 0;
  line-height: 1.4;
}

/* ─────────────────────────────────────
   7. Rooms Grid (home featured + rooms page)
──────────────────────────────────────*/
.section {
  padding: 5rem 2rem;
}

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

.rooms-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.room-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
}

.room-tile .tile-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.room-tile .tile-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.room-tile:hover .tile-img-wrap img { transform: scale(1.06); }

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,34,48,.85) 0%, rgba(22,34,48,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: opacity var(--transition);
}

.tile-overlay h4 { color: var(--cream); font-size: 1rem; font-weight: 700; }
.tile-overlay .label { font-size: .68rem; }

.tile-hover-info {
  position: absolute;
  inset: 0;
  background: rgba(22,34,48,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.room-tile:hover .tile-hover-info { opacity: 1; }

.tile-hover-info span {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--ff-display);
  font-size: 1rem;
}

/* ─────────────────────────────────────
   8. Brand Teaser Split
──────────────────────────────────────*/
.split-section {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy h2 { margin-bottom: 1.25rem; }
.split-copy p { margin-bottom: 1.25rem; }
.split-copy .btn { margin-top: .75rem; }

/* ─────────────────────────────────────
   9. Stats Row
──────────────────────────────────────*/
.stats-row {
  background: var(--surface);
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .35rem;
}

.stat-item p {
  font-size: .85rem;
  color: var(--cream-dim);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─────────────────────────────────────
   10. Review Cards
──────────────────────────────────────*/
.reviews-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #FFB800;
}

.review-stars svg { width: 18px; height: 18px; }

.review-text {
  font-style: italic;
  color: var(--cream-dim);
  font-size: .95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.reviewer-name {
  font-weight: 700;
  color: var(--cream);
  font-size: .85rem;
}

.reviewer-city {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────
   11. Social CTA + Platform Buttons
──────────────────────────────────────*/
.social-cta {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.social-cta h2 { margin-bottom: 1rem; }
.social-cta p { max-width: 520px; margin: 0 auto 2rem; }

.social-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.social-btn-instagram {
  background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: #fff;
}
.social-btn-instagram:hover { opacity: .88; }

.social-btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.social-btn-whatsapp:hover { background: #20b857; }

/* ─────────────────────────────────────
   12. Social Feed Grid
──────────────────────────────────────*/
.feed-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
}

.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: calc(var(--radius) / 2);
  display: block;
  text-decoration: none;
}

.feed-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.feed-item:hover img { transform: scale(1.08); }

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

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: .88rem;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--transition);
}

.footer-social a:hover { background: var(--accent); color: var(--dark); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-col ul a {
  font-size: .88rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(245,242,234,.4);
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  border-radius: 20px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge svg { width: 14px; height: 14px; }

/* ─────────────────────────────────────
   14. Page Hero (inner pages)
──────────────────────────────────────*/
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 3.5rem;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,34,48,.90) 0%, rgba(22,34,48,.45) 55%, rgba(22,34,48,.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-top: var(--nav-h);
}

.page-hero-content .label { margin-bottom: .5rem; }
.page-hero-content h1 { margin-bottom: .5rem; }
.page-hero-content p {
  max-width: 540px;
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin: 0;
}

/* ─────────────────────────────────────
   15. About Page Sections
──────────────────────────────────────*/
.philosophy-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.philosophy-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.philosophy-card h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
}

.values-list {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

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

.value-number {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  user-select: none;
}

.value-copy h4 { margin-bottom: .35rem; font-size: 1.05rem; }

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.timeline-dot svg { width: 22px; height: 22px; color: var(--accent); }

.timeline-content { padding-top: .5rem; }
.timeline-date {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .3rem;
}
.timeline-content h4 { margin-bottom: .4rem; }

.cta-split {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}

.cta-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-copy h2 { margin-bottom: 1.25rem; }
.cta-copy p { margin-bottom: 1.25rem; }
.cta-copy .btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .75rem; }

/* ─────────────────────────────────────
   16. Rooms Page
──────────────────────────────────────*/
.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.disclaimer-bar svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.disclaimer-bar p {
  margin: 0;
  font-size: .88rem;
  flex: 1;
}

.category-tiles {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.category-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-tile .cat-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-tile .cat-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.category-tile:hover .cat-img-wrap img { transform: scale(1.06); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,34,48,.88) 0%, rgba(22,34,48,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.cat-overlay h3 { color: var(--cream); font-size: 1.2rem; }
.cat-overlay .item-count {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.cat-section { max-width: 1280px; margin: 0 auto; }

.cat-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cat-section-header h2 { flex: 1; }

.items-list { display: flex; flex-direction: column; gap: 0; }

.item-entry {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

.item-entry h4 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.badge-item {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 20px;
}

.badge-signature { background: var(--accent); color: var(--dark); }
.badge-highlight { background: var(--highlight); color: var(--dark); }
.badge-new { background: rgba(58,187,184,.2); color: var(--highlight); border: 1px solid var(--highlight); }

.item-entry p {
  font-size: .92rem;
  color: var(--cream-dim);
  max-width: 680px;
  margin: 0;
}

.cat-cta {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.cat-cta h3 { margin-bottom: .75rem; }
.cat-cta p { max-width: 480px; margin: 0 auto 1.75rem; }

/* ─────────────────────────────────────
   17. Gallery Page
──────────────────────────────────────*/
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .5rem 1.25rem;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--ff-body);
}

.filter-btn:hover { border-color: var(--accent); color: var(--cream); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--dark); }

.gallery-group {
  max-width: 1280px;
  margin: 0 auto 4rem;
}

.gallery-group-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.gallery-group-header h3 { font-size: 1.25rem; }

.gallery-group-header .g-date {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.masonry-grid {
  columns: 4;
  column-gap: .75rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: .75rem;
  border-radius: calc(var(--radius) / 2);
  overflow: hidden;
  cursor: pointer;
  display: block;
  position: relative;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

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

.gallery-cta-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,16,22,.96);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(22,34,48,.7);
  border: 1px solid var(--border);
  color: var(--cream);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  top: 1rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 2001;
}

.lightbox-close:hover { background: var(--accent); color: var(--dark); }

.lightbox-prev, .lightbox-next {
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); color: var(--dark); }

.lightbox-counter {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--cream-dim);
  letter-spacing: .08em;
}

/* ─────────────────────────────────────
   18. Contact Page
──────────────────────────────────────*/
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.contact-block h4 {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .95rem;
  color: var(--accent);
}

.contact-block h4 svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-block p { font-size: .9rem; line-height: 1.7; margin: 0; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .87rem;
}

.hours-table td {
  padding: .4rem .5rem;
  vertical-align: top;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--cream);
  width: 120px;
}

.hours-table tr.peak td { color: var(--accent); }

/* Form */
.inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .5rem; }

.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,242,234,.35); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e85555; }

.form-group select { appearance: none; cursor: pointer; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { align-self: flex-start; }

#formSuccess {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

#formSuccess svg { width: 56px; height: 56px; color: var(--highlight); margin: 0 auto 1rem; }
#formSuccess h3 { margin-bottom: .75rem; }

/* Map Placeholder */
.map-placeholder {
  max-width: 1280px;
  margin: 3rem auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); }
.map-placeholder h3 { margin-bottom: .25rem; }
.map-placeholder p { max-width: 480px; font-size: .9rem; }

/* ─────────────────────────────────────
   19. FAQ Accordion
──────────────────────────────────────*/
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: .92rem;
  color: var(--cream-dim);
}

/* ─────────────────────────────────────
   20. Scroll-to-top button
──────────────────────────────────────*/
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); }
#scroll-top svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────
   21. Fade-in animation
──────────────────────────────────────*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────
   22. Responsive
──────────────────────────────────────*/
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

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

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

  .split-section,
  .split-section.reverse { direction: ltr; grid-template-columns: 1fr; gap: 2rem; }

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

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

  .category-tiles { grid-template-columns: 1fr; }

  .feed-grid { grid-template-columns: repeat(3, 1fr); }

  .masonry-grid { columns: 2; }

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

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

  .form-row { grid-template-columns: 1fr; }

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

  .value-item { grid-template-columns: 50px 1fr; }
}

@media (max-width: 480px) {
  .features-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .hero-btns { flex-direction: column; align-items: center; }
  .social-btns { flex-direction: column; align-items: center; }
}
