/*
  Design rationale: Deep ocean midnight with sea-glass teal accents mirrors La Union's coastal character — calm water, lush garden, and salty breeze — while Space Grotesk's geometric confidence suits a modern homestay that knows exactly who it is.
  Heading: Space Grotesk — contemporary and grounded, feels like a hand-painted beach sign but with digital clarity
  Body: Outfit — warm, readable, and friendly without being casual to the point of carelessness
*/

/* ─────────────────────────────────────────
   1. Reset & Custom Properties
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #0d1f2d;
  --bg-alt:     #152535;
  --accent:     #3da89f;
  --highlight:  #61c8be;
  --cream:      #f5f1ea;
  --cream-dim:  rgba(245,241,234,0.65);
  --accent-dim: rgba(61,168,159,0.14);
  --border:     rgba(61,168,159,0.22);
  --ff-display: 'Space Grotesk', sans-serif;
  --ff-body:    'Outfit', sans-serif;
  --nav-h:      72px;
  --radius:     4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ─────────────────────────────────────────
   2. Typography
───────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--cream-dim); line-height: 1.75; }

.label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 52ch; margin: 0 auto; }

/* ─────────────────────────────────────────
   3. Buttons
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: var(--highlight); transform: translateY(-1px); }

.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

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

.btn-dark {
  background: var(--dark);
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-dark:hover { border-color: var(--accent); color: var(--accent); }

/* ─────────────────────────────────────────
   4. Navbar
───────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: auto; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
  margin-left: auto;
}
.hamburger span {
  display: block; 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-overlay {
  display: none;
  position: fixed; inset: 0;
  background: var(--dark);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.open { opacity: 1; }
.mobile-overlay a {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
}
.mobile-overlay a:hover { color: var(--accent); }
.mobile-overlay .btn { margin-top: 1rem; }

/* ─────────────────────────────────────────
   5. Hero (homepage)
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,31,45,0.55) 0%,
    rgba(13,31,45,0.45) 50%,
    rgba(13,31,45,0.72) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%;
  max-width: 780px;
}
.hero-content .label { color: var(--highlight); margin-bottom: 1rem; }
.hero-content h1 { color: var(--cream); margin-bottom: 1rem; }
.hero-content .hero-tagline {
  font-size: 1.15rem;
  color: rgba(245,241,234,0.82);
  margin-bottom: 2.5rem;
  max-width: 46ch;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--cream-dim); font-size: 0.75rem; letter-spacing: 0.1em;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────
   6. Features strip
───────────────────────────────────────── */
.features-strip {
  background: var(--accent);
  padding: 3rem 8%;
}
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 0.75rem;
}
.feature-icon {
  width: 44px; height: 44px;
  color: var(--dark);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.feature-item p {
  font-size: 0.8rem;
  color: rgba(13,31,45,0.72);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   7. Offerings grid
───────────────────────────────────────── */
.offerings-section { padding: 6rem 8%; }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}
.offering-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.offering-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-tile:hover img { transform: scale(1.06); }
.offering-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,45,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.offering-tile:hover .offering-tile-overlay { opacity: 1; }
.offering-tile-overlay .label {
  font-size: 0.65rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.offering-tile-overlay h4 { color: var(--cream); font-size: 1rem; }

.offerings-view-all {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─────────────────────────────────────────
   8. Brand teaser split
───────────────────────────────────────── */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.brand-teaser-img {
  position: relative; overflow: hidden;
}
.brand-teaser-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.brand-teaser-copy {
  background: var(--bg-alt);
  padding: 5rem 6%;
  display: flex; flex-direction: column; justify-content: center;
}
.brand-teaser-copy .label { margin-bottom: 0.75rem; }
.brand-teaser-copy h2 { margin-bottom: 1.5rem; }
.brand-teaser-copy p { margin-bottom: 1.25rem; }
.brand-teaser-copy p:last-of-type { margin-bottom: 2rem; }

/* ─────────────────────────────────────────
   9. Stats row
───────────────────────────────────────── */
.stats-row {
  background: var(--bg-alt);
  padding: 4rem 8%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   10. Review cards
───────────────────────────────────────── */
.reviews-section { padding: 6rem 8%; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.review-stars { display: flex; gap: 3px; color: var(--accent); }
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.review-platform {
  font-size: 0.75rem;
  color: var(--accent);
}

/* ─────────────────────────────────────────
   11. Social CTA + platform buttons
───────────────────────────────────────── */
.social-cta {
  background: var(--bg-alt);
  padding: 5rem 8%;
  text-align: center;
  border-top: 1px solid var(--border);
}
.social-cta h2 { margin-bottom: 1rem; }
.social-cta p { max-width: 48ch; margin: 0 auto 2.5rem; }
.social-platform-btns {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1rem;
}
.platform-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-dim);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition);
  background: transparent;
}
.platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.platform-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   12. Social feed grid
───────────────────────────────────────── */
.social-feed { padding: 4rem 0; }
.social-feed-header { text-align: center; padding: 0 8%; margin-bottom: 2rem; }
.social-feed-header a { color: var(--accent); }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,45,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 32px; height: 32px; color: var(--cream); }

/* ─────────────────────────────────────────
   13. Footer
───────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 8% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.88rem;
  max-width: 32ch;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex; gap: 0.75rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-contact p, .footer-contact address {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: normal;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--accent);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--highlight); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 1rem;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.78rem; color: var(--cream-dim); }
.footer-badges { display: flex; gap: 0.75rem; }
.footer-badge {
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}
.footer-badge.accent { border-color: var(--accent); color: var(--accent); }

/* ─────────────────────────────────────────
   14. Page hero (inner pages)
───────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 52vh; min-height: 400px;
  display: flex; align-items: flex-end;
  padding: 0 8% 4rem;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,45,0.88) 0%, rgba(13,31,45,0.3) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
}
.page-hero-content .label { margin-bottom: 0.75rem; }
.page-hero-content h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(245,241,234,0.82);
  max-width: 44ch;
}

/* ─────────────────────────────────────────
   15. About page sections
───────────────────────────────────────── */
.about-origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.about-origin-img {
  position: relative; overflow: hidden;
}
.about-origin-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-origin-copy {
  background: var(--bg-alt);
  padding: 5rem 6%;
  display: flex; flex-direction: column; justify-content: center;
}
.about-origin-copy .label { margin-bottom: 0.75rem; }
.about-origin-copy h2 { margin-bottom: 1.5rem; }
.about-origin-copy p { margin-bottom: 1.25rem; }

.philosophy-section { padding: 6rem 8%; }
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.philosophy-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.philosophy-icon svg { width: 24px; height: 24px; }
.philosophy-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.philosophy-card p { font-size: 0.9rem; }

.values-section { padding: 6rem 8%; background: var(--bg-alt); }
.values-list { max-width: 760px; margin: 3rem auto 0; }
.value-item {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item:first-child { border-top: 1px solid var(--border); }
.value-number {
  font-family: var(--ff-display);
  font-size: 0.75rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0; padding-top: 0.2rem;
  min-width: 2.5rem;
}
.value-item h4 { margin-bottom: 0.25rem; }
.value-item p { font-size: 0.9rem; }

.timeline-section { padding: 6rem 8%; }
.timeline { max-width: 680px; margin: 3rem auto 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -4px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.timeline-date {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.timeline-item h4 { margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.9rem; }

.about-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.about-cta-img { overflow: hidden; }
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-copy {
  background: var(--bg-alt);
  padding: 5rem 6%;
  display: flex; flex-direction: column; justify-content: center;
}
.about-cta-copy h2 { margin-bottom: 1.25rem; }
.about-cta-copy p { margin-bottom: 1rem; }
.about-cta-copy p:last-of-type { margin-bottom: 2rem; }
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   16. Rooms / Offerings page
───────────────────────────────────────── */
.disclaimer-bar {
  background: var(--accent-dim);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 8%;
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.disclaimer-bar p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  flex: 1;
}
.disclaimer-bar .btn { font-size: 0.8rem; padding: 0.45rem 1rem; }

.category-tiles-section { padding: 4rem 8%; }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.category-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  text-decoration: none;
  transition: transform var(--transition);
}
.category-tile:hover { transform: translateY(-4px); }
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover img { transform: scale(1.06); }
.category-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,45,0.9) 0%, rgba(13,31,45,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.category-tile-overlay .label { margin-bottom: 0.4rem; }
.category-tile-overlay h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 0.3rem; }
.category-tile-overlay span {
  font-size: 0.75rem; color: var(--cream-dim);
}

.rooms-sections { padding: 2rem 8% 6rem; }

.room-category-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.room-category-section:last-child { border-bottom: none; }
.room-category-header { margin-bottom: 2.5rem; }
.room-category-header .label { margin-bottom: 0.5rem; }
.room-category-header h2 { margin-bottom: 0.75rem; }
.room-category-header p { max-width: 56ch; }

.room-items-list {
  display: flex; flex-direction: column; gap: 1rem;
}
.room-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  position: relative;
}
.room-item-top {
  display: flex; align-items: center; gap: 0.75rem;
}
.room-item h4 { font-size: 1rem; color: var(--cream); }
.room-item p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.65; }
.badge {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px;
  flex-shrink: 0;
}
.badge-sig { background: var(--accent); color: var(--dark); }
.badge-new { background: var(--highlight); color: var(--dark); }
.badge-best { background: rgba(255,200,80,0.2); color: #f5c842; border: 1px solid rgba(245,200,66,0.3); }

.rooms-cta { text-align: center; padding: 5rem 8%; background: var(--bg-alt); }
.rooms-cta h2 { margin-bottom: 1rem; }
.rooms-cta p { max-width: 48ch; margin: 0 auto 2rem; }

/* ─────────────────────────────────────────
   17. Gallery page
───────────────────────────────────────── */
.filter-bar {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  padding: 2.5rem 8%;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--cream-dim);
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.gallery-section { padding: 3rem 8%; }
.gallery-group { margin-bottom: 3.5rem; }
.gallery-group-header {
  display: flex; align-items: baseline; gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.gallery-group-header h3 { font-size: 1.1rem; }
.gallery-group-header span { font-size: 0.78rem; color: var(--cream-dim); }
.masonry {
  columns: 4;
  column-gap: 0.75rem;
}
.masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,45,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 36px; height: 36px; color: var(--cream); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); cursor: pointer;
  transition: background var(--transition);
  font-size: 1.4rem; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); cursor: pointer;
  transition: background var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-counter {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.5); padding: 0.3rem 1rem; border-radius: 999px;
}

.gallery-cta { text-align: center; padding: 4rem 8%; border-top: 1px solid var(--border); }
.gallery-cta h2 { margin-bottom: 1rem; }
.gallery-cta p { max-width: 44ch; margin: 0 auto 2rem; }
.gallery-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   18. Contact page
───────────────────────────────────────── */
.contact-section { padding: 6rem 8%; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}

.contact-blocks { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-block {
  display: flex; gap: 1.25rem;
  align-items: flex-start;
}
.contact-block-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block-body h4 { margin-bottom: 0.3rem; font-size: 0.95rem; }
.contact-block-body p, .contact-block-body address {
  font-size: 0.88rem; color: var(--cream-dim);
  font-style: normal; line-height: 1.7;
}
.contact-block-body a { color: var(--accent); transition: color var(--transition); }
.contact-block-body a:hover { color: var(--highlight); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td {
  padding: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--cream-dim);
  vertical-align: top;
}
.hours-table td:first-child { font-weight: 600; color: var(--cream); width: 40%; }
.hours-table tr.highlight td { color: var(--accent); }

.inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}
.form-group label .req { color: var(--accent); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body); font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,241,234,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg-alt); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group.invalid input,
.form-group.invalid textarea,
.form-group.invalid select { border-color: #e05555; }

#formSuccess {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1.5rem; }
#formSuccess h3 { margin-bottom: 0.75rem; }
#formSuccess p { max-width: 36ch; margin: 0 auto; }

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  margin: 4rem 8%;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h3 { margin-bottom: 0.5rem; }
.map-placeholder p { font-size: 0.88rem; max-width: 36ch; margin: 0 auto 1.5rem; }
.map-note {
  font-size: 0.8rem; color: var(--cream-dim);
  margin-top: 0.75rem;
}

.faq-section { padding: 4rem 8% 6rem; }
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 0.97rem; font-weight: 600;
  color: var(--cream);
  background: none; border: none; cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
}
.faq-answer p { font-size: 0.9rem; }

.contact-socials { text-align: center; padding: 3rem 8% 5rem; }
.contact-socials p { margin: 0.5rem auto 2rem; max-width: 40ch; }

/* ─────────────────────────────────────────
   19. FAQ accordion (shared)
───────────────────────────────────────── */
/* Already defined in section 18 above */

/* ─────────────────────────────────────────
   20. Scroll-to-top button
───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  z-index: 500;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.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 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   22. Responsive — breakpoints
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .features-strip-inner .feature-item:nth-child(4),
  .features-strip-inner .feature-item:nth-child(5) {
    grid-column: span 1;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 3rem; }
  .about-origin, .brand-teaser, .about-cta-split { grid-template-columns: 1fr; }
  .about-origin-img, .brand-teaser-img, .about-cta-img { height: 360px; }
  .masonry { columns: 3; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-overlay { display: flex; }

  .hero-content { padding: 0 6%; }
  .features-strip { padding: 2.5rem 6%; }
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .offerings-section { padding: 4rem 6%; }
  .offerings-grid { gap: 1px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .social-platform-btns { gap: 0.6rem; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-cta-btns { flex-direction: column; }
  .masonry { columns: 2; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .rooms-sections { padding: 2rem 5% 5rem; }
  .philosophy-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-strip-inner { grid-template-columns: 1fr 1fr; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .timeline-section, .values-section, .philosophy-section { padding: 4rem 5%; }
  .contact-section { padding: 4rem 5%; }
  .faq-section { padding: 3rem 5%; }
  .footer { padding: 4rem 6% 2rem; }
}
