/*
  Design rationale: Deep toasted charcoal grounds the site in Siargao's volcanic rock and driftwood; burnt terracotta-orange echoes the island's dramatic sunsets and the energy of surf culture — a palette entirely distinct from all prior builds.
  Heading: Syne — bold, geometric, editorial; native to surf/lifestyle brands and distinct from every prior display font used.
  Body: Manrope — rounded humanist sans with technical clarity; unused across all prior builds.
*/

/* 1. Reset & Custom Properties */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

:root {
  --dark:       #110f0c;
  --bg-alt:     #1c1914;
  --accent:     #e45d26;
  --highlight:  #f07843;
  --cream:      #f5ede3;
  --cream-dim:  rgba(245,237,227,0.65);
  --accent-dim: rgba(228,93,38,0.14);
  --border:     rgba(228,93,38,0.22);
  --ff-display: 'Syne', sans-serif;
  --ff-body:    'Manrope', system-ui, sans-serif;
  --nav-h:      72px;
  --container:  1200px;
  --radius:     8px;
}

/* 2. Typography */
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.15; color: var(--cream); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--cream-dim); }
em { font-style: italic; }

.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.6rem;
}
.section-hd { text-align: center; margin-bottom: 3rem; }
.section-hd__eyebrow { margin-bottom: 0.5rem; }
.section-hd__title { margin-bottom: 0.75rem; }
.section-hd__sub { color: var(--cream-dim); max-width: 580px; margin: 0 auto; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }

/* 3. Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--highlight); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(245,237,227,0.35); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* 4. Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 1.5rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
  color: var(--cream); flex-shrink: 0;
}
.nav-logo img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-link {
  font-family: var(--ff-body);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(245,237,227,0.82); transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-cta { margin-left: 0.5rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; padding: 4px 0; flex-shrink: 0;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 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); }
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay li a {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700;
  color: var(--cream); transition: color 0.2s;
}
.nav-overlay li a:hover { color: var(--accent); }
.nav-overlay .btn { margin-top: 0.5rem; }

/* 5. Hero */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,15,12,0.45) 0%, rgba(17,15,12,0.7) 60%, rgba(17,15,12,0.92) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 0 1.5rem;
}
.hero__eyebrow { margin-bottom: 1rem; }
.hero__h1 { color: var(--cream); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.hero__sub {
  font-size: 1.05rem; color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.hero__tagline {
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2.5rem;
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.hero__scroll span {
  display: block; width: 1.5px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* 6. Features strip */
.features-strip { background: var(--accent); padding: 2.5rem 0; }
.features-strip__inner {
  display: flex; flex-wrap: wrap; gap: 0;
  justify-content: space-around; align-items: stretch;
}
.feat-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.5rem 1rem;
}
.feat-item__icon { flex-shrink: 0; color: #fff; }
.feat-item__icon svg { width: 26px; height: 26px; display: block; }
.feat-item__title {
  font-family: var(--ff-display); font-size: 0.88rem; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.feat-item__desc { font-size: 0.75rem; color: rgba(255,255,255,0.75); line-height: 1.3; }

/* 7. Offerings grid */
.offerings { }
.offerings__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.offering-tile {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.offering-tile__img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.offering-tile:hover .offering-tile__img { transform: scale(1.07); }
.offering-tile__body {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,15,12,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem 1rem;
}
.offering-tile__cat {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.offering-tile__name { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--cream); }

/* 8. Brand teaser */
.brand-teaser__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
}
.brand-teaser__img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
}
.brand-teaser__copy { display: flex; flex-direction: column; gap: 1rem; }
.brand-teaser__copy h2 { margin-bottom: 0.25rem; }
.brand-teaser__copy p { color: var(--cream-dim); line-height: 1.8; }

/* 9. Stats row */
.stats-row { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 0; }
.stats-row__inner {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.4rem,4.5vw,3.6rem); color: var(--accent); line-height: 1;
}
.stat__label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-dim); margin-top: 0.4rem;
}

/* 10. Review cards */
.reviews-section { }
.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: 1.75rem;
}
.review-card__stars {
  display: flex; gap: 0.2rem; margin-bottom: 1rem;
}
.review-card__stars svg { width: 16px; height: 16px; color: var(--accent); }
.review-card__text {
  font-size: 0.92rem; color: var(--cream-dim);
  font-style: italic; line-height: 1.75; margin-bottom: 1.25rem;
}
.review-card__author { font-size: 0.82rem; font-weight: 700; color: var(--accent); }

/* 11. Social CTA */
.social-cta { text-align: center; }
.social-cta__inner { max-width: 640px; margin: 0 auto; }
.social-cta__inner h2 { margin-bottom: 0.75rem; }
.social-cta__inner p { color: var(--cream-dim); margin-bottom: 2rem; }
.social-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: 4px; border: 1.5px solid var(--border);
  font-family: var(--ff-body); font-size: 0.85rem; font-weight: 600;
  color: var(--cream); transition: all 0.2s;
}
.platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.platform-btn:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }

/* 12. Social feed */
.feed-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 4px; margin-top: 2.5rem;
}
.feed-item { aspect-ratio: 1; overflow: hidden; position: relative; display: block; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, opacity 0.3s; }
.feed-item:hover img { transform: scale(1.08); opacity: 0.8; }

/* 13. Footer */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4.5rem 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3.5rem;
}
.footer__logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.75rem;
}
.footer__logo img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--border); }
.footer__tagline { font-size: 0.88rem; color: var(--cream-dim); margin-bottom: 1.25rem; }
.footer__socials { display: flex; gap: 0.75rem; }
.footer__social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim); transition: all 0.2s;
}
.footer__social svg { width: 16px; height: 16px; }
.footer__social:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }
.footer__col-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  font-family: var(--ff-body);
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.88rem; color: var(--cream-dim); transition: color 0.2s; }
.footer__links a:hover { color: var(--accent); }
.footer__contact-block { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__contact-block p { font-size: 0.88rem; color: var(--cream-dim); }
.footer__contact-block a { font-size: 0.88rem; color: var(--cream-dim); transition: color 0.2s; }
.footer__contact-block a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer__bottom p { font-size: 0.78rem; color: var(--cream-dim); }
.footer__badges { display: flex; gap: 0.75rem; }
.footer__badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--cream-dim);
}

/* 14. Page hero */
.page-hero {
  position: relative; height: 56vh; min-height: 380px;
  display: flex; align-items: flex-end;
  background-image: var(--page-hero-bg);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,15,12,0.35) 0%, rgba(17,15,12,0.85) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 0 1.5rem 4rem;
  max-width: var(--container); margin: 0 auto; width: 100%;
}
.page-hero__content h1 { letter-spacing: -0.01em; }

/* 15. About page */
.origin__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.origin__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.origin__copy { display: flex; flex-direction: column; gap: 1rem; }
.origin__copy p { color: var(--cream-dim); line-height: 1.85; }

.phil-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.phil-card { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.phil-card__icon { color: var(--accent); margin-bottom: 1.25rem; }
.phil-card__icon svg { width: 36px; height: 36px; }
.phil-card__title { font-size: 1rem; margin-bottom: 0.6rem; }
.phil-card p { font-size: 0.9rem; color: var(--cream-dim); }

.values-list { max-width: 820px; margin: 2.5rem auto 0; }
.value-item {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 1.5rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item__num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.8rem; color: var(--accent); opacity: 0.5; line-height: 1;
}
.value-item__title { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.25rem; }
.value-item p { font-size: 0.9rem; color: var(--cream-dim); }

.timeline-list { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; position: relative; }
.timeline-list::before {
  content: ''; position: absolute; left: 90px; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.timeline-item__date {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent); text-align: right; padding-top: 0.25rem;
}
.timeline-item__body { padding-left: 1.75rem; }
.timeline-item__title { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.75; }

.cta-split { display: grid; grid-template-columns: 1fr 1fr; }
.cta-split__img img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.cta-split__copy {
  background: var(--bg-alt); padding: 5rem 4rem;
  display: flex; flex-direction: column; gap: 1.25rem; justify-content: center;
}
.cta-split__copy h2 { margin-bottom: 0; }
.cta-split__copy p { color: var(--cream-dim); line-height: 1.85; }
.cta-split__btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* 16. Rooms page */
.category-nav {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-top: 2rem;
}
.category-nav__btn {
  padding: 0.55rem 1.4rem; border-radius: 999px;
  border: 1.5px solid var(--border);
  font-family: var(--ff-body); font-size: 0.85rem; font-weight: 600;
  color: var(--cream-dim); transition: all 0.2s;
}
.category-nav__btn:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }

.category-tiles {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.category-tile {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 3/4; cursor: pointer;
}
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.category-tile:hover img { transform: scale(1.07); }
.category-tile__body {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,15,12,0.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem 1rem;
}
.category-tile__name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.category-tile__count { font-size: 0.72rem; font-weight: 600; color: var(--accent); letter-spacing: 0.08em; }

.room-sect { padding: 5rem 0; }
.room-sect:nth-child(even) { background: var(--bg-alt); }
.room-hd { margin-bottom: 2.5rem; }
.room-hd h2 { margin-bottom: 0.5rem; }
.room-hd p { color: var(--cream-dim); max-width: 640px; }

.room-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
.room-layout--rev { grid-template-columns: 1fr 1.3fr; }
.room-layout--rev .room-photos { order: 2; }
.room-layout--rev .room-info { order: 1; }

.room-photos__main img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }
.room-photos__thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; margin-top: 0.6rem; }
.room-photos__thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: calc(var(--radius) - 2px); }

.room-info { display: flex; flex-direction: column; gap: 1.5rem; }
.room-features h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
  font-family: var(--ff-body);
}
.room-features ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
.room-features li {
  font-size: 0.88rem; color: var(--cream-dim);
  padding-left: 1rem; position: relative;
}
.room-features li::before { content: '·'; position: absolute; left: 0; color: var(--accent); }

.disclaimer-bar {
  background: var(--accent-dim); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  font-size: 0.85rem; color: var(--cream-dim); text-align: center;
}
.disclaimer-bar a { color: var(--accent); }

/* 17. Gallery */
.gal-filter {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.gal-filter__btn {
  padding: 0.4rem 1.1rem; border-radius: 999px;
  border: 1.5px solid var(--border);
  font-family: var(--ff-body); font-size: 0.82rem; font-weight: 600;
  color: var(--cream-dim); transition: all 0.2s;
}
.gal-filter__btn:hover, .gal-filter__btn.active { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }

.gallery-group { margin-bottom: 3.5rem; }
.gallery-group__hd { margin-bottom: 1.25rem; }
.gallery-group__title { font-size: 1.1rem; }
.gallery-group__date { font-size: 0.75rem; color: var(--accent); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }
.masonry { columns: 4; column-gap: 0.75rem; }
.masonry-item {
  break-inside: avoid; margin-bottom: 0.75rem;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item__overlay {
  position: absolute; inset: 0; background: rgba(17,15,12,0.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; color: var(--cream);
}
.masonry-item__overlay svg { width: 34px; height: 34px; }
.masonry-item:hover .masonry-item__overlay { opacity: 1; }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(17,15,12,0.97);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 88vw; max-height: 84vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(228,93,38,0.18); color: var(--cream);
  border: 1px solid var(--border); font-size: 1.3rem; transition: background 0.2s;
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(228,93,38,0.45); }
.lightbox__counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.82rem; color: var(--cream-dim); }

/* 18. Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-block { padding: 1.5rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-block__label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem; font-family: var(--ff-body);
}
.contact-block__label svg { width: 14px; height: 14px; }
.contact-block__value { font-size: 0.95rem; font-weight: 700; color: var(--cream); margin-bottom: 0.2rem; }
.contact-block__note { font-size: 0.82rem; color: var(--cream-dim); }
.contact-block__link { color: var(--accent); font-size: 0.88rem; margin-top: 0.4rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.contact-block__link:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.4rem; font-size: 0.88rem; }
.hours-table td { padding: 0.35rem 0; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; color: var(--cream); }

.contact-form-wrap {}
.form-hd { margin-bottom: 2rem; }
.form-hd h2 { margin-bottom: 0.4rem; }
.form-hd p { font-size: 0.9rem; color: var(--cream-dim); }
.inquiry-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-dim); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  font-family: var(--ff-body); font-size: 0.93rem; color: var(--cream);
  transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #e05353; }
.form-group textarea { resize: vertical; min-height: 120px; }
.field-error { font-size: 0.75rem; color: #e05353; margin-top: 0.2rem; display: none; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); }
.form-success svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--cream-dim); }

.map-box {
  margin-top: 2rem; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem; text-align: center;
}
.map-box__icon { color: var(--accent); margin: 0 auto 1rem; }
.map-box__icon svg { width: 42px; height: 42px; }
.map-box__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.map-box p { font-size: 0.88rem; color: var(--cream-dim); margin-bottom: 0.4rem; }

/* 19. FAQ */
.faq-section { }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 2.5rem 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; gap: 1rem;
  font-family: var(--ff-body); font-size: 0.98rem; font-weight: 600;
  color: var(--cream); cursor: pointer; transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px; color: var(--accent);
  transition: transform 0.3s;
}
.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: 0 0 1.25rem; font-size: 0.9rem; color: var(--cream-dim); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner a { color: var(--accent); text-decoration: underline; }

/* 20. Scroll-to-top */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, background 0.2s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--highlight); }
.scroll-top svg { width: 18px; height: 18px; }

/* 21. Fade-in */
.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 */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .brand-teaser__inner, .origin__inner, .cta-split { gap: 2.5rem; }
  .stats-row__inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .category-tiles { grid-template-columns: repeat(2,1fr); }
  .room-layout, .room-layout--rev { grid-template-columns: 1fr; }
  .room-layout--rev .room-photos { order: unset; }
  .room-layout--rev .room-info { order: unset; }
  .contact-layout { grid-template-columns: 1fr; }
  .masonry { columns: 3; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .offerings__grid { grid-template-columns: 1fr 1fr; }
  .brand-teaser__inner { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .phil-cards { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .feed-grid { grid-template-columns: repeat(3,1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .timeline-list::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .timeline-item__body { padding-left: 0; }
  .timeline-item__date { text-align: left; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__copy { padding: 3rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: 1fr 1fr; }
  .origin__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .offerings__grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .feed-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row__inner { grid-template-columns: repeat(2,1fr); }
  .hero__ctas { flex-direction: column; align-items: center; }
  .category-tiles { grid-template-columns: 1fr; }
}

/* 23. HTML bridge — maps actual HTML class names to visual rules */

/* Hamburger: HTML uses .nav-burger / .active instead of .hamburger / .open */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0; flex-shrink: 0; cursor: pointer;
}
.nav-burger span { display: block; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; z-index: 999; background: var(--dark); align-items: center; justify-content: center; gap: 2rem; }
  .nav-links.open { display: flex; }
  .nav-links li a { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; color: var(--cream); }
  .nav-links li a:hover { color: var(--accent); }
  .nav-cta { display: none; }
}

/* Hero scroll: HTML uses SVG, CSS expected span */
.hero__scroll { color: var(--cream-dim); }
.hero__scroll:hover { color: var(--accent); }
.hero__scroll svg { display: block; }

/* Features strip: HTML uses direct SVG + span, not .feat-item__icon/.feat-item__title */
.feat-item svg { color: #fff; }
.feat-item span { font-family: var(--ff-display); font-size: 0.88rem; font-weight: 700; color: #fff; }

/* Offering tiles: HTML uses <img> directly + .offering-tile__label overlay */
.offering-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.offering-tile:hover img { transform: scale(1.07); }
.offering-tile__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(17,15,12,0.9) 0%, transparent 100%);
  font-family: var(--ff-display); font-size: 0.9rem; font-weight: 700; color: var(--cream);
}

/* Brand teaser: HTML uses .brand-teaser__media instead of .brand-teaser__img */
.brand-teaser__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }

/* Social CTA: override max-width so feed-grid isn't squished */
.social-cta__inner { max-width: 100%; }
.social-cta .section-hd { max-width: 640px; margin-left: auto; margin-right: auto; }

/* Review cards: text star style + .review-card__name / __origin */
.review-card__stars { font-size: 1.1rem; color: var(--accent); margin-bottom: 1rem; letter-spacing: 0.05em; }
.review-card__name { font-weight: 700; color: var(--accent); }
.review-card__origin { color: var(--cream-dim); font-size: 0.8rem; margin-left: 0.35rem; }

/* Footer: .footer__nav, .footer__contact, .footer__social (as <ul>) */
.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav li a { font-size: 0.88rem; color: var(--cream-dim); transition: color 0.2s; }
.footer__nav li a:hover { color: var(--accent); }
.footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.88rem; color: var(--cream-dim); line-height: 1.5; }
.footer__contact li svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--accent); }
.footer__contact a { color: var(--cream-dim); transition: color 0.2s; }
.footer__contact a:hover { color: var(--accent); }
.footer__col .footer__social { display: flex; flex-direction: column; gap: 0.5rem; width: auto; height: auto; border-radius: 0; border: none; background: none; justify-content: flex-start; }
.footer__col .footer__social li a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--cream-dim); transition: color 0.2s; }
.footer__col .footer__social li a:hover { color: var(--accent); }

/* Section sub */
.section-sub { color: var(--cream-dim); max-width: 580px; margin: 0.75rem auto 0; }

/* About: .origin__media alias for .origin__img */
.origin__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }

/* Phil cards: HTML uses <h3> directly + <p>, CSS expects .phil-card__title */
.phil-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.phil-card p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; }
.phil-cards { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .phil-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .phil-cards { grid-template-columns: 1fr; } }

/* Values: HTML uses SVG icon + <div> with <strong> + <p> */
.value-item { grid-template-columns: 32px 1fr; gap: 1.25rem; align-items: flex-start; }
.value-item svg { flex-shrink: 0; color: var(--accent); margin-top: 0.2rem; }
.value-item strong { display: block; font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.2rem; }
.value-item div p { font-size: 0.9rem; color: var(--cream-dim); }

/* Timeline: HTML uses <h3> + <p> directly inside .timeline-item__body */
.timeline-item h3 { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.75; }

/* CTA split: HTML uses .cta-split__media instead of .cta-split__img */
.cta-split__media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

/* Category nav: HTML uses it as full section wrapper with container inside */
.category-nav { background: var(--bg-alt); border-bottom: 1px solid var(--border); display: block; padding: 2rem 0; }
.category-nav .container { display: block; }
.category-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* Category tile: HTML uses .category-tile__label instead of .category-tile__body/.category-tile__name */
.category-tile__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(17,15,12,0.92) 0%, transparent 55%);
  padding: 1.25rem 1rem;
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--cream);
}

/* Room section alternate bg */
.room-sect--alt { background: var(--bg-alt); }

/* Room features: HTML uses <ul class="room-features"> with <li> SVG+text directly */
.room-features { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.5rem; }
.room-features li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88rem; color: var(--cream-dim); padding-left: 0; }
.room-features li::before { display: none; }
.room-features li svg { flex-shrink: 0; color: var(--accent); margin-top: 0.1rem; }

/* Room info h3 as section label */
.room-info h3 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem; font-family: var(--ff-body); }

/* Amenities section grid */
.amenities-sect { }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.amenity-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.25rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.amenity-card svg { color: var(--accent); }
.amenity-card span { font-size: 0.88rem; font-weight: 600; color: var(--cream-dim); }
@media (max-width: 1024px) { .amenities-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }

/* Gallery filter inner wrapper */
.gal-filter__inner { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }

/* Gallery group title */
.gallery-group__title { font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }

/* Contact block: HTML uses .contact-block__icon + .contact-block__body instead of __label/__value/__note */
.contact-block { display: flex; align-items: flex-start; gap: 1.1rem; }
.contact-block__icon { flex-shrink: 0; color: var(--accent); margin-top: 0.1rem; }
.contact-block__body h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; font-family: var(--ff-body); }
.contact-block__body p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; }
.contact-block__body a { color: var(--cream-dim); transition: color 0.2s; }
.contact-block__body a:hover { color: var(--accent); }

/* Contact form col */
.contact-form-col { }
.contact-form-col h2 { margin-bottom: 0.4rem; }
.contact-form-col__sub { font-size: 0.9rem; color: var(--cream-dim); margin-bottom: 1.75rem; }

/* Map box placeholder */
.map-box__placeholder { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 3rem 2rem; }
.map-box__placeholder svg { color: var(--accent); }
.map-box__placeholder p { font-size: 0.9rem; color: var(--cream-dim); text-align: center; }

/* Getting here section */
.getting-here { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.getting-here__item { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.getting-here__item svg { flex-shrink: 0; color: var(--accent); margin-top: 0.15rem; }
.getting-here__item strong { display: block; font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.25rem; }
.getting-here__item p { font-size: 0.88rem; color: var(--cream-dim); }

/* Scroll-to-top: script uses .show, CSS uses .visible — support both */
.scroll-top.show { opacity: 1; pointer-events: auto; }
