/*
 * ============================================================
 * SALUD BY THE LAKE — styles.css
 * ============================================================
 * Design Rationale:
 * Palette derived from the brand's visual identity:
 *   --dark (#1C1410): Deep rich mahogany-black — evokes the dark dining table
 *     and low-lit villa evenings seen in post_DVmnewwks46_thumb.jpg
 *   --bg-alt (#261C14): Warm dark walnut — layered depth for alternate sections
 *   --accent (#8B4E2A): Terracotta-sienna — pulled directly from the SALUD
 *     wordmark logo's brown letterforms and the copper pendant lights
 *   --highlight (#5A9CB8): Taal Lake mist-blue — sampled from the lake horizon
 *     and infinity pool water in gallery-pool-01.jpg and gallery-view-01.jpg
 *   --cream (#FAF7F2): Warm ivory — the brand's defining white stucco
 *     architecture seen throughout the property exterior
 *   --cream-dim (#EEE8DE): Warm greige — matches interior wall tone
 *     in gallery-interior-01.jpg (dining room with jungle view)
 *   --accent-dim (#C4845A): Light terracotta — softer version of accent
 *   --border (#3A2A1E): Deep warm border
 *
 * Fonts:
 *   --ff-display: 'Lustria' — an elegant humanist old-style serif with
 *     warm, unpretentious character suited to a luxury retreat brand.
 *     First use in this portfolio.
 *   --ff-body: 'Nunito' — a rounded, friendly humanist sans-serif that
 *     tempers the serif's formality with warmth and legibility.
 *     Lustria + Nunito is a new pairing in this portfolio.
 *
 * Palette verified distinct from all prior aisite.ph portfolio builds.
 * ============================================================
 *
 * SECTION INDEX:
 *  1. CSS Variables
 *  2. Reset & Base
 *  3. Typography
 *  4. Utilities
 *  5. Navbar
 *  6. Hero / Page Hero
 *  7. Features Strip
 *  8. Offerings Grid
 *  9. Brand Teaser
 * 10. Stats Row
 * 11. Reviews
 * 12. Social CTA
 * 13. Social Feed
 * 14. About Page
 * 15. Villa / Amenities Page
 * 16. Gallery Page
 * 17. Contact Page
 * 18. FAQ Accordion
 * 19. Footer
 * 20. Forms
 * 21. Buttons & Links
 * 22. Scroll-to-Top & Misc
 * ============================================================
 */

/* ============================================================
 * 1. CSS VARIABLES
 * ============================================================ */
:root {
  /* Colors */
  --dark:       #1C1410;
  --bg-alt:     #261C14;
  --accent:     #8B4E2A;
  --highlight:  #5A9CB8;
  --cream:      #FAF7F2;
  --cream-dim:  #EEE8DE;
  --accent-dim: #C4845A;
  --border:     #3A2A1E;

  /* Typography */
  --ff-display: 'Lustria', Georgia, serif;
  --ff-body:    'Nunito', Arial, sans-serif;

  /* Spacing */
  --nav-h: 72px;
  --section-pad: 96px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Page hero bg fallback */
  --page-hero-bg: var(--dark);
}

/* ============================================================
 * 2. 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(--cream);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
 * 3. TYPOGRAPHY
 * ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }
h5 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

p { font-size: 1rem; }

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

/* ============================================================
 * 4. UTILITIES
 * ============================================================ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
}

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

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

.text-center { text-align: center; }

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto;
}

.divider--left {
  margin: 1rem 0;
}

/* ============================================================
 * 5. NAVBAR
 * ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.navbar__name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

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

.navbar__nav a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.85);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

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

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}

.navbar__cta:hover {
  background: #A05A34 !important;
  color: var(--cream) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

.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;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: var(--dark);
  z-index: 999;
  padding: 2rem 5%;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
}

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

.mobile-nav a {
  display: block;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

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

.mobile-nav .navbar__cta {
  margin-top: 1rem;
  width: fit-content;
  font-size: 0.9rem !important;
}

/* ============================================================
 * 6. HERO / PAGE HERO
 * ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: 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(
    to bottom,
    rgba(28,20,16,0.35) 0%,
    rgba(28,20,16,0.55) 60%,
    rgba(28,20,16,0.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
  padding-top: var(--nav-h);
  color: var(--cream);
}

.hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dim);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(250,247,242,0.88);
  margin-bottom: 0.6rem;
  max-width: 560px;
}

.hero__tagline {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--accent-dim);
  font-style: italic;
  margin-bottom: 2.2rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,247,242,0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: scroll-bounce 2s ease infinite;
}

.hero__scroll svg {
  width: 24px;
  height: 24px;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page Hero (interior pages) */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  overflow: hidden;
  background: var(--page-hero-bg);
}

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

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.88) 0%, rgba(28,20,16,0.4) 60%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--cream);
  padding-top: var(--nav-h);
}

.page-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dim);
  margin-bottom: 0.5rem;
}

.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
}

/* ============================================================
 * 7. FEATURES STRIP
 * ============================================================ */
.features {
  background: var(--bg-alt);
  color: var(--cream);
  padding: 4.5rem 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  border-left: 1px solid var(--border);
  transition: border-color 0.3s;
}

.feature-card:first-child { border-left: none; }

.feature-card:hover { border-color: var(--accent-dim); }

.feature-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent-dim);
  flex-shrink: 0;
}

.feature-card__title {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 400;
}

.feature-card__text {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.6;
}

/* ============================================================
 * 8. OFFERINGS GRID (Gallery images grid on homepage)
 * ============================================================ */
.offerings {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

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

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

.offering-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.offering-card:hover img { transform: scale(1.06); }

.offering-card__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  z-index: 2;
}

.offering-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.6) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
 * 9. BRAND TEASER
 * ============================================================ */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.brand-teaser__visual {
  position: relative;
  overflow: hidden;
}

.brand-teaser__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-teaser__content {
  background: var(--bg-alt);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5% 5rem 6%;
}

.brand-teaser__content .label {
  color: var(--accent-dim);
  margin-bottom: 1rem;
}

.brand-teaser__content h2 {
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.brand-teaser__content p {
  color: rgba(250,247,242,0.78);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 480px;
}

/* ============================================================
 * 10. STATS ROW
 * ============================================================ */
.stats {
  background: var(--accent);
  color: var(--cream);
  padding: 4rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

/* ============================================================
 * 11. REVIEWS
 * ============================================================ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--cream-dim);
}

.reviews__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.review-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  color: var(--accent-dim);
}

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

.review-card__text {
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  flex: 1;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card__source {
  font-size: 0.78rem;
  color: var(--accent-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
 * 12. SOCIAL CTA
 * ============================================================ */
.social-cta {
  background: var(--dark);
  color: var(--cream);
  padding: 5rem 0;
  text-align: center;
}

.social-cta h2 {
  margin-bottom: 1rem;
  color: var(--cream);
}

.social-cta p {
  color: rgba(250,247,242,0.72);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

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

/* ============================================================
 * 13. SOCIAL FEED
 * ============================================================ */
.social-feed {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.social-feed__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.feed-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.3s;
}

.feed-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.feed-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,20,16,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--cream);
}

.feed-item:hover .feed-item__overlay { opacity: 1; }

.feed-item__overlay svg { width: 28px; height: 28px; }

.social-feed__follow {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================
 * 14. ABOUT PAGE
 * ============================================================ */
.origin-story {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.origin-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.origin-story__text h2 {
  margin-bottom: 2rem;
}

.origin-story__text p {
  color: #4A3C32;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.origin-story__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

/* Philosophy cards */
.philosophy {
  padding: var(--section-pad) 0;
  background: var(--cream-dim);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.phil-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border-bottom: 3px solid var(--accent);
}

.phil-card__num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--accent-dim);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.phil-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.phil-card p {
  color: #4A3C32;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Values */
.values {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  color: var(--cream);
}

.values__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  max-width: 760px;
}

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

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

.value-item__num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--accent-dim);
  opacity: 0.5;
  line-height: 1;
}

.value-item__content h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.value-item__content p {
  color: rgba(250,247,242,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Timeline */
.timeline {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.timeline__track {
  position: relative;
  max-width: 760px;
  margin: 3rem auto 0;
  padding-left: 2.5rem;
}

.timeline__track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-dim);
  opacity: 0.35;
}

.timeline-event {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-event:last-child { margin-bottom: 0; }

.timeline-event::before {
  content: '';
  position: absolute;
  left: -2.7rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-event__year {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dim);
  margin-bottom: 0.3rem;
}

.timeline-event__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.timeline-event__text {
  font-size: 0.9rem;
  color: #5A4A3E;
  line-height: 1.7;
}

/* About CTA split */
.about-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.about-cta__side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5%;
}

.about-cta__side--dark {
  background: var(--dark);
  color: var(--cream);
}

.about-cta__side--accent {
  background: var(--accent);
  color: var(--cream);
}

.about-cta__side h3 {
  margin-bottom: 1rem;
  color: var(--cream);
}

.about-cta__side p {
  color: rgba(250,247,242,0.8);
  margin-bottom: 1.5rem;
}

/* ============================================================
 * 15. VILLA / AMENITIES PAGE
 * ============================================================ */
.villa-disclaimer {
  background: var(--bg-alt);
  color: rgba(250,247,242,0.8);
  text-align: center;
  padding: 1rem 5%;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
}

.villa-disclaimer a {
  color: var(--accent-dim);
  text-decoration: underline;
}

.villa-overview {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.villa-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.villa-category {
  background: var(--cream-dim);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--accent);
}

.villa-category__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(139,78,42,0.2);
}

.villa-amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.amenity-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(139,78,42,0.1);
}

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

.amenity-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-dim);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.amenity-item__content {}

.amenity-item__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.amenity-item__desc {
  font-size: 0.85rem;
  color: #6A5848;
  line-height: 1.6;
}

/* Capacity banner */
.capacity-banner {
  background: var(--highlight);
  color: var(--cream);
  text-align: center;
  padding: 3rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.capacity-banner h3 {
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.capacity-banner p {
  opacity: 0.9;
}

/* Villa CTA */
.villa-cta {
  padding: 5rem 0;
  background: var(--bg-alt);
  color: var(--cream);
  text-align: center;
}

.villa-cta h2 { color: var(--cream); margin-bottom: 1rem; }
.villa-cta p { color: rgba(250,247,242,0.75); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
 * 16. GALLERY PAGE
 * ============================================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dark);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}

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

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

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.3s;
}

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

.masonry-item[data-hidden] { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,8,6,0.94);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox__inner {
  position: relative;
  max-width: 88vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 4px;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 36px;
  height: 36px;
  color: var(--cream);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
}

.lightbox__close:hover { opacity: 1; }
.lightbox__close svg { width: 100%; height: 100%; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(250,247,242,0.15);
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.lightbox__prev { left: -60px; }
.lightbox__next { right: -60px; }

.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(250,247,242,0.3); }

.lightbox__prev svg,
.lightbox__next svg { width: 22px; height: 22px; }

.lightbox__counter {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250,247,242,0.55);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Gallery CTA */
.gallery-cta {
  padding: 4rem 0;
  background: var(--dark);
  color: var(--cream);
  text-align: center;
}

.gallery-cta h3 { color: var(--cream); margin-bottom: 1rem; }
.gallery-cta p { color: rgba(250,247,242,0.7); margin-bottom: 2rem; }

.gallery-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
 * 17. CONTACT PAGE
 * ============================================================ */
.contact-blocks {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-blocks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-block {
  background: var(--cream-dim);
  padding: 2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--accent-dim);
}

.contact-block__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.contact-block h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--dark);
}

.contact-block__detail {
  font-size: 0.9rem;
  color: #5A4A3E;
  line-height: 1.6;
}

.contact-block a {
  color: var(--accent);
  word-break: break-word;
}

.contact-block a:hover { text-decoration: underline; }

/* Inquiry form + map */
.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: var(--section-pad) 0;
  background: var(--cream-dim);
}

.contact-form-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid rgba(139,78,42,0.3);
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

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

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

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-success {
  display: none;
  background: var(--accent);
  color: var(--cream);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  margin-top: 1rem;
}

.form-success.visible { display: block; }

/* Map placeholder */
.map-placeholder {
  background: var(--bg-alt);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  color: var(--cream);
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--accent-dim);
  opacity: 0.6;
}

.map-placeholder p {
  color: rgba(250,247,242,0.65);
  font-size: 0.9rem;
}

.map-placeholder a {
  color: var(--accent-dim);
  text-decoration: underline;
}

/* ============================================================
 * 18. FAQ ACCORDION
 * ============================================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

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

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(139,78,42,0.2);
}

.faq-item:first-child { border-top: 1px solid rgba(139,78,42,0.2); }

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

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

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--accent-dim);
  transition: transform 0.3s;
}

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

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.faq-item__icon::before {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item__icon::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-item__body { max-height: 400px; }

.faq-item__text {
  padding: 0 0 1.4rem;
  color: #5A4A3E;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================================
 * 19. FOOTER
 * ============================================================ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 5rem 0 0;
}

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

.footer__brand {}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
}

.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

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

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,0.7);
  transition: background 0.2s, color 0.2s;
}

.footer__socials a:hover {
  background: var(--accent);
  color: var(--cream);
}

.footer__socials svg { width: 16px; height: 16px; }

.footer__col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dim);
  margin-bottom: 1.4rem;
}

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

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.65);
  transition: color 0.2s;
}

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

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-dim);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-text {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.6;
}

.footer__contact-text a {
  color: rgba(250,247,242,0.65);
  transition: color 0.2s;
}

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

.footer__hours {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.5);
  line-height: 1.7;
}

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.4);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.4);
  transition: color 0.2s;
}

.footer__legal a:hover { color: rgba(250,247,242,0.7); }

/* ============================================================
 * 20. FORMS
 * ============================================================ */
/* (see contact section above) */

/* ============================================================
 * 21. BUTTONS & LINKS
 * ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  border: none;
}

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

.btn-primary:hover {
  background: #A05A34;
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,78,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(250,247,242,0.5);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(250,247,242,0.1);
  transform: translateY(-2px);
}

.btn-outline--dark {
  color: var(--dark);
  border-color: rgba(28,20,16,0.4);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}

.btn svg { width: 18px; height: 18px; }

/* ============================================================
 * 22. SCROLL-TO-TOP & MISC
 * ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(139,78,42,0.4);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover { transform: translateY(-3px); }

.scroll-top svg { width: 20px; height: 20px; }

/* ============================================================
 * RESPONSIVE — 1024px
 * ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card:nth-child(1) { border-left: none; }
  .feature-card:nth-child(4) { border-left: none; }

  .brand-teaser { grid-template-columns: 1fr; }
  .brand-teaser__visual { height: 380px; }

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

  .origin-story__grid { grid-template-columns: 1fr; gap: 3rem; }

  .villa-overview__grid { grid-template-columns: 1fr; }

  .contact-form-section .container { grid-template-columns: 1fr; gap: 3rem; }

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

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

/* ============================================================
 * RESPONSIVE — 768px
 * ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .navbar__nav { display: none; }
  .hamburger { display: flex; }

  h1 { font-size: 2.8rem; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3) { border-left: none; }

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

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

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

  .about-cta { grid-template-columns: 1fr; }

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

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

  .masonry { columns: 2; }

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

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

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

  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .lightbox__prev { left: -40px; }
  .lightbox__next { right: -40px; }

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

/* ============================================================
 * RESPONSIVE — 480px
 * ============================================================ */
@media (max-width: 480px) {
  :root { --section-pad: 44px; }

  .navbar__name { display: none; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card { border-left: none; border-top: 1px solid var(--border); }
  .feature-card:first-child { border-top: none; }

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

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

  .masonry { columns: 1; }

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

  .hero__ctas .btn { width: 100%; justify-content: center; }

  .lightbox__prev { left: -30px; width: 36px; height: 36px; }
  .lightbox__next { right: -30px; width: 36px; height: 36px; }

  .page-hero { height: 320px; }
}
