/* ==========================================================
   THE BUYONG BEACH HOUSE — styles.css
   Palette: Driftwood Dark + Sea Glass Teal + Coral Sand
   Fonts: Della Respira (display) + Figtree (body)
   ========================================================== */

/* 1. GOOGLE FONTS
   ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Della+Respira&family=Figtree:wght@300;400;500;600;700&display=swap');

/* 2. CSS VARIABLES
   ---------------------------------------------------------- */
:root {
  --dark:        #1C160A;
  --bg-alt:      #261E0C;
  --accent:      #6AADAC;
  --highlight:   #D4984A;
  --cream:       #F5F0E4;
  --cream-dark:  #EDE6D4;
  --text-body:   #3A3020;
  --text-muted:  #7A6E60;
  --white:       #FFFFFF;

  --font-display: 'Della Respira', Georgia, serif;
  --font-body:    'Figtree', system-ui, sans-serif;

  --radius:      6px;
  --radius-lg:   14px;
  --transition:  0.35s ease;
  --shadow-sm:   0 2px 10px rgba(28,22,10,0.10);
  --shadow-md:   0 6px 28px rgba(28,22,10,0.16);
  --shadow-lg:   0 16px 56px rgba(28,22,10,0.24);

  --page-hero-bg: var(--dark);
}

/* 3. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  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; }

/* 4. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

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

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

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

.section-heading {
  margin-bottom: 1.2rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 60ch;
}

/* 5. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

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

.section--alt h1,
.section--alt h2,
.section--alt h3,
.section--alt h4 { color: var(--cream); }

.section--alt .section-sub { color: rgba(245,240,228,0.65); }

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

.section--warm h1,
.section--warm h2,
.section--warm h3 { color: var(--cream); }

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

.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2.5rem; }

/* 6. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--highlight);
  border-color: var(--highlight);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

/* 7. NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(28,22,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.7rem 0;
  backdrop-filter: blur(10px);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.2;
}

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

.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245,240,228,0.85);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--accent);
}

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

.navbar__cta {
  padding: 0.55rem 1.4rem;
  font-size: 0.875rem;
}

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

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  border-radius: 2px;
}

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

@media (max-width: 900px) {
  .navbar__hamburger { display: flex; }
  .navbar__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(28,22,10,0.98);
    padding: 1rem 0 1.5rem;
    backdrop-filter: blur(12px);
  }
  .navbar__nav.open { display: flex; }
  .navbar__link {
    padding: 0.75rem 1.5rem;
    width: 100%;
    font-size: 1rem;
  }
  .navbar__cta {
    margin: 0.5rem 1.5rem 0;
  }
}

/* 8. HERO — INDEX
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,22,10,0.75) 0%,
    rgba(28,22,10,0.35) 60%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 0 80px;
}

.hero__label {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero__title {
  color: var(--cream);
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245,240,228,0.88);
  max-width: 56ch;
  margin-bottom: 2.4rem;
  line-height: 1.7;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,240,228,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

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

/* 9. PAGE HERO (inner pages)
   ---------------------------------------------------------- */
.page-hero {
  background: var(--page-hero-bg);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

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

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

.page-hero__title {
  color: var(--cream);
  margin-bottom: 1rem;
}

.page-hero__sub {
  color: rgba(245,240,228,0.7);
  font-size: 1.1rem;
  max-width: 55ch;
}

/* 10. FEATURES STRIP
    ---------------------------------------------------------- */
.features-strip {
  background: var(--dark);
  padding: 48px 0;
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.feature-item__text {
  font-size: 0.82rem;
  color: rgba(245,240,228,0.6);
  margin-bottom: 0;
}

/* 11. IMAGE GRIDS
    ---------------------------------------------------------- */
.grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.grid-3x3__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

.grid-3x3__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-3x3__item:hover img { transform: scale(1.06); }

.grid-3x3__item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.grid-6__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.grid-6__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-6__item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .grid-3x3 { grid-template-columns: repeat(2, 1fr); }
  .grid-3x3__item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid-3x3 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: 1fr 1fr; }
}

/* 12. BRAND TEASER
    ---------------------------------------------------------- */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-teaser__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.brand-teaser__img:hover img { transform: scale(1.04); }

.brand-teaser__tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.brand-teaser__divider {
  width: 50px;
  height: 2px;
  background: var(--highlight);
  margin: 1.4rem 0;
}

@media (max-width: 768px) {
  .brand-teaser { grid-template-columns: 1fr; }
}

/* 13. STATS BAR
    ---------------------------------------------------------- */
.stats-bar {
  background: var(--bg-alt);
  padding: 56px 0;
}

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

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245,240,228,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* 14. REVIEWS
    ---------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

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

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-card__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}

.review-card__source {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* 15. SOCIAL CTA
    ---------------------------------------------------------- */
.social-cta {
  text-align: center;
  padding: 72px 0;
}

.social-cta__icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  background: rgba(245,240,228,0.12);
  border: 1px solid rgba(245,240,228,0.25);
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  transition: all var(--transition);
}

.social-cta__link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.social-cta__link svg {
  width: 18px;
  height: 18px;
}

/* 16. GALLERY & MASONRY
    ---------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.3rem;
  border-radius: 2rem;
  border: 1.5px solid var(--dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition);
}

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

.masonry {
  columns: 3;
  column-gap: 14px;
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

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

.masonry__item:hover img { transform: scale(1.04); }

@media (max-width: 768px) { .masonry { columns: 2; } }
@media (max-width: 480px) { .masonry { columns: 1; } }

/* 17. LIGHTBOX
    ---------------------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,8,4,0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245,240,228,0.12);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: background var(--transition);
}

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

.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(245,240,228,0.25); }

/* 18. ROOMS
    ---------------------------------------------------------- */
.disclaimer-box {
  background: var(--cream-dark);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.6rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.room-card:last-child { margin-bottom: 0; }

.room-card--reverse { direction: rtl; }
.room-card--reverse > * { direction: ltr; }

.room-card__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.room-card__gallery-main {
  grid-column: span 2;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.room-card__gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.room-card__gallery-thumb:first-of-type { border-radius: 0 0 0 var(--radius-lg); }
.room-card__gallery-thumb:last-of-type { border-radius: 0 0 var(--radius-lg) 0; }

.room-card__gallery-main img,
.room-card__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card__gallery-main:hover img,
.room-card__gallery-thumb:hover img { transform: scale(1.05); }

.room-card__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.9rem;
}

.room-card__title {
  margin-bottom: 0.8rem;
}

.room-card__desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1.4rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--cream-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
}

.room-amenity svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .room-card { grid-template-columns: 1fr; }
  .room-card--reverse { direction: ltr; }
}

/* 19. ABOUT PAGE SPECIFIC
    ---------------------------------------------------------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.philosophy-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  color: var(--accent);
}

.philosophy-card__title {
  margin-bottom: 0.7rem;
}

.philosophy-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.value-item {
  padding: 1.8rem;
  border: 1px solid rgba(245,240,228,0.12);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

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

.value-item__number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.value-item__title {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.value-item__text {
  font-size: 0.85rem;
  color: rgba(245,240,228,0.55);
  margin-bottom: 0;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

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

.timeline-item {
  position: relative;
  padding: 0 0 3rem 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.7rem;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--cream);
}

.timeline-item__year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.timeline-item__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.timeline-item__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* 20. CONTACT PAGE
    ---------------------------------------------------------- */
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-block {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-block__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-block__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-block__value {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-block__value a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-block__value a:hover { color: var(--highlight); }

.inquiry-form {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

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

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

.form-group--full { grid-column: span 2; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.04em;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
  background: rgba(106,173,172,0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.form-success h3 { color: var(--accent); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); }

.map-placeholder {
  background: var(--dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
}

.map-placeholder__inner {
  position: relative;
  z-index: 1;
}

.map-placeholder__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

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

.faq-question:hover,
.faq-question.open {
  background: var(--cream-dark);
  color: var(--dark);
}

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

.faq-question.open .faq-question__icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.8rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer.open { display: block; }

@media (max-width: 768px) {
  .contact-blocks { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .inquiry-form { padding: 1.8rem; }
}

/* 21. FOOTER
    ---------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(245,240,228,0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,228,0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.3;
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

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

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245,240,228,0.2);
  border-radius: 50%;
  color: rgba(245,240,228,0.6);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }

.footer__link {
  font-size: 0.875rem;
  color: rgba(245,240,228,0.65);
  transition: color var(--transition);
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(245,240,228,0.65);
  margin-bottom: 0.8rem;
}

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

.footer__contact-item a {
  color: rgba(245,240,228,0.65);
  transition: color var(--transition);
}

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

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245,240,228,0.4);
}

.footer__bottom a {
  color: rgba(245,240,228,0.4);
  transition: color var(--transition);
}

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

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* 22. UTILITIES & ANIMATIONS
    ---------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

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

.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1.2rem 0;
}

.divider--center { margin-left: auto; margin-right: auto; }

.highlight-line {
  background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--bg-alt) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 { color: var(--cream); margin-bottom: 0.8rem; }
.cta-section p { color: rgba(245,240,228,0.65); margin-bottom: 2rem; max-width: 55ch; margin-left: auto; margin-right: auto; }

/* Rooms page thumb-only gallery */
.single-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.single-img img {
  width: 100%; height: 100%; object-fit: cover;
}
