/*
  Design rationale: Deep coastal navy grounds the Mediterranean beach-house identity of Hyssop House — echoing the steel-blue shield crest of the logo and the clear Ligtasin waters beyond.
  Heading: Vollkorn — a warm, literary serif with classical proportions that evokes a well-appointed private home library; the serifs echo the HH crest's heritage authority without stuffiness.
  Body: Asap — a humanist sans-serif with friendly round shapes and excellent legibility across all screen sizes; its warmth balances Vollkorn's formality.
*/

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

:root {
  --dark:       #182636;
  --bg-alt:     #1E3148;
  --accent:     #4A6FA5;
  --highlight:  #7BA89A;
  --cream:      #F4F0E6;
  --cream-dim:  rgba(244,240,230,.65);
  --accent-dim: rgba(74,111,165,.14);
  --border:     rgba(74,111,165,.22);
  --ff-display: 'Vollkorn', Georgia, serif;
  --ff-body:    'Asap', system-ui, sans-serif;
  --nav-h:      72px;
  --radius:     8px;
  --trans:      .3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--ff-body); }

/* ─── 2. Typography ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--cream-dim); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: .75rem;
}
.section-title { color: var(--cream); margin-bottom: 1rem; }
.section-intro  { color: var(--cream-dim); max-width: 60ch; }

/* ─── 3. Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.btn-primary:hover { background: #3a5a8a; border-color: #3a5a8a; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,240,230,.45);
}
.btn-ghost:hover { background: rgba(244,240,230,.1); border-color: var(--cream); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); }

/* ─── 4. Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background var(--trans), box-shadow var(--trans), backdrop-filter var(--trans);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.nav-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-links a {
  padding: .4rem .75rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--cream);
  opacity: .85;
  transition: opacity var(--trans), background var(--trans);
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; background: var(--accent-dim); }
.nav-cta { margin-left: .75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--trans);
}
/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-size: 1.4rem;
  font-family: var(--ff-display);
  color: var(--cream);
  opacity: .85;
}
.nav-overlay a:hover { opacity: 1; color: var(--accent); }
.overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ─── 5. Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(24,38,54,.55) 0%,
    rgba(24,38,54,.35) 40%,
    rgba(24,38,54,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-content .section-label { color: var(--highlight); }
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--cream);
  margin-bottom: .75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(244,240,230,.85);
  margin-bottom: .5rem;
  font-family: var(--ff-display);
  font-style: italic;
}
.hero-content .tagline {
  font-size: 1.05rem;
  color: rgba(244,240,230,.75);
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  opacity: .7;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
}
.scroll-indicator svg { color: var(--cream); }
@keyframes bounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(8px); }
}

/* ─── 6. Features Strip ─────────────────────────────────────────────────────── */
.features-strip {
  background: var(--accent);
  padding: 2.5rem 2rem;
}
.features-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
}
.feature-item svg {
  width: 32px;
  height: 32px;
  color: rgba(244,240,230,.9);
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--cream);
}
.feature-item p {
  font-size: .78rem;
  color: rgba(244,240,230,.75);
  line-height: 1.5;
}

/* ─── 7. Rooms Grid (home 3×3) ──────────────────────────────────────────────── */
.rooms-grid-section {
  padding: 6rem 2rem;
  background: var(--dark);
}
.rooms-grid-section .section-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.rooms-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.room-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
}
.room-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.room-tile:hover img { transform: scale(1.08); }
.room-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,38,54,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background var(--trans);
}
.room-tile:hover .room-tile-overlay { background: linear-gradient(to top, rgba(24,38,54,.92) 0%, rgba(24,38,54,.2) 55%); }
.room-tile .category-badge {
  display: inline-block;
  background: var(--highlight);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 4px;
  margin-bottom: .4rem;
  width: fit-content;
}
.room-tile h4 {
  font-size: 1rem;
  color: var(--cream);
  font-family: var(--ff-display);
}

/* ─── 8. Brand Teaser Split ─────────────────────────────────────────────────── */
.brand-teaser {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.brand-teaser-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-teaser-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-teaser-text .section-label { margin-bottom: .5rem; }
.brand-teaser-text p { margin-bottom: 1.25rem; }
.brand-teaser-text .btn { margin-top: .5rem; }

/* ─── 9. Stats Row ───────────────────────────────────────────────────────────── */
.stats-row {
  padding: 4rem 2rem;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-item .stat-label {
  font-size: .85rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── 10. Review Cards ───────────────────────────────────────────────────────── */
.reviews-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.reviews-section .section-header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.reviews-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-stars {
  display: flex;
  gap: .2rem;
  color: #E8C060;
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: .92rem;
  color: var(--cream-dim);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-author {
  font-size: .83rem;
  font-weight: 600;
  color: var(--cream);
  opacity: .8;
}

/* ─── 11. Social CTA ─────────────────────────────────────────────────────────── */
.social-cta-section {
  padding: 5rem 2rem;
  background: var(--dark);
  text-align: center;
}
.social-cta-section h2 { color: var(--cream); margin-bottom: .75rem; }
.social-cta-section p { max-width: 45ch; margin: 0 auto 2rem; }
.social-platform-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: background var(--trans), border-color var(--trans);
  color: var(--cream);
}
.platform-btn:hover { border-color: var(--accent); background: var(--accent-dim); }
.platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── 12. Social Feed Grid ───────────────────────────────────────────────────── */
.social-feed-section {
  padding: 4rem 2rem;
  background: var(--bg-alt);
}
.social-feed-section .section-header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 2.5rem;
}
.feed-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
}
.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: calc(var(--radius) / 2);
  position: relative;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans), filter var(--trans);
}
.feed-item:hover img { transform: scale(1.08); filter: brightness(1.1); }

/* ─── 13. Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: #0F1D2B;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-brand { margin-bottom: 1rem; }
.footer-brand .tagline {
  font-size: .88rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  max-width: 26ch;
  line-height: 1.6;
}
.footer-social-icons {
  display: flex;
  gap: .75rem;
}
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--cream);
  opacity: .75;
  transition: opacity var(--trans), border-color var(--trans), background var(--trans);
}
.footer-social-icons a:hover { opacity: 1; border-color: var(--accent); background: var(--accent-dim); }
.footer-social-icons svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: var(--cream-dim);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--highlight);
  flex-shrink: 0;
  margin-top: .2rem;
}
.footer-contact-item span, .footer-contact-item a {
  font-size: .85rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .copyright { font-size: .8rem; color: var(--cream-dim); }
.footer-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-size: .72rem;
  padding: .3rem .7rem;
  border-radius: 20px;
}
.footer-badge svg { width: 12px; height: 12px; color: var(--highlight); }

/* ─── 14. Page Hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  margin-top: var(--nav-h);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24,38,54,.5), rgba(24,38,54,.7));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}
.page-hero-content h1 { color: var(--cream); margin-bottom: .5rem; }
.page-hero-content .subtitle {
  font-size: 1.1rem;
  color: rgba(244,240,230,.8);
  font-family: var(--ff-display);
  font-style: italic;
}

/* ─── 15. About Page ─────────────────────────────────────────────────────────── */
.about-origin {
  padding: 6rem 2rem;
  background: var(--dark);
}
.about-origin-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-origin-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-origin-img img { width: 100%; height: 100%; object-fit: cover; }
.about-origin-text p { margin-bottom: 1.25rem; }

.philosophy-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.philosophy-section .section-header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.philosophy-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.philosophy-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.philosophy-card svg { width: 24px; height: 24px; color: var(--accent); }
.philosophy-card h3 { font-size: 1.2rem; margin-bottom: .75rem; color: var(--cream); }
.philosophy-card p { font-size: .9rem; }

.values-section {
  padding: 6rem 2rem;
  background: var(--dark);
}
.values-section .section-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.values-list {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.value-number {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  padding-top: .2rem;
}
.value-item h4 { font-size: 1.05rem; color: var(--cream); margin-bottom: .35rem; }
.value-item p  { font-size: .9rem; }

.timeline-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.timeline-section .section-header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.7rem;
  top: .4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-alt);
  box-shadow: 0 0 0 3px var(--accent);
}
.timeline-date {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: .3rem;
}
.timeline-item h4 { color: var(--cream); margin-bottom: .4rem; }
.timeline-item p  { font-size: .9rem; }

.about-cta {
  padding: 6rem 2rem;
  background: var(--dark);
}
.about-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-cta-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-text p { margin-bottom: 1rem; }
.about-cta-text .cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ─── 16. Rooms Page ─────────────────────────────────────────────────────────── */
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  text-align: center;
  font-size: .88rem;
  color: var(--cream-dim);
}
.disclaimer-bar a { color: var(--highlight); text-decoration: underline; }

.category-tiles-section {
  padding: 5rem 2rem;
  background: var(--dark);
}
.category-tiles-section .section-header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.category-tiles {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cat-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  border: 1px solid var(--border);
  display: block;
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,38,54,.9) 0%, rgba(24,38,54,.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.cat-tile h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: .3rem; }
.cat-tile .item-count {
  font-size: .8rem;
  color: var(--highlight);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.room-section {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.room-section + .room-section { background: var(--dark); }
.room-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.room-section-header {
  margin-bottom: 2rem;
}
.room-section-header .section-label { margin-bottom: .5rem; }
.room-section-header p { max-width: 65ch; margin-top: .75rem; }
.room-details-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.room-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.room-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.spec-item {
  background: rgba(24,38,54,.5);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius)/2);
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.spec-item .spec-label { font-size: .72rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: .08em; }
.spec-item .spec-value { font-size: .95rem; font-weight: 700; color: var(--cream); }
.room-amenities h4 { font-size: .92rem; color: var(--cream); margin-bottom: .75rem; }
.amenities-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--cream-dim);
}
.amenity-item svg { width: 14px; height: 14px; color: var(--highlight); flex-shrink: 0; }
.room-photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.room-photo-gallery img {
  border-radius: calc(var(--radius)/2);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.room-photo-gallery .photo-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.offerings-items { margin-top: 2rem; }
.offerings-items h4 { font-size: 1rem; color: var(--accent); margin-bottom: .3rem; margin-top: 1.25rem; }
.offerings-items h4:first-child { margin-top: 0; }
.offerings-items .item-desc { font-size: .88rem; }
.best-seller-badge, .signature-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 4px;
  margin-left: .5rem;
  vertical-align: middle;
}
.signature-badge { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.best-seller-badge { background: rgba(123,168,154,.15); color: var(--highlight); border: 1px solid rgba(123,168,154,.25); }
.rooms-cta-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--bg-alt);
}
.rooms-cta-section h2 { margin-bottom: .75rem; }
.rooms-cta-section p { max-width: 50ch; margin: 0 auto 2rem; }
.rooms-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── 17. Gallery Page ───────────────────────────────────────────────────────── */
.gallery-filter-bar {
  padding: 2rem 2rem 1rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.filter-btns {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream);
  opacity: .75;
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
  color: var(--cream);
}
.gallery-section-group {
  padding: 4rem 2rem;
  background: var(--dark);
}
.gallery-section-group + .gallery-section-group { background: var(--bg-alt); }
.gallery-group-header {
  max-width: 1280px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.gallery-group-header h3 { color: var(--cream); }
.gallery-group-header .date-label {
  font-size: .78rem;
  color: var(--highlight);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.masonry-grid {
  max-width: 1280px;
  margin: 0 auto;
  columns: 4;
  column-gap: .75rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: .75rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease, filter .4s ease;
}
.masonry-item:hover img { transform: scale(1.04); filter: brightness(1.1); }
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15,29,43,.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity var(--trans);
  z-index: 10;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}
.lightbox-prev, .lightbox-next {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-counter {
  font-size: .85rem;
  color: var(--cream-dim);
  min-width: 60px;
  text-align: center;
}
.gallery-cta-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--dark);
}
.gallery-cta-section h2 { margin-bottom: .75rem; }
.gallery-cta-section p { max-width: 45ch; margin: 0 auto 2rem; }
.gallery-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── 18. Contact Page ───────────────────────────────────────────────────────── */
.contact-section {
  padding: 6rem 2rem;
  background: var(--dark);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-blocks { display: flex; flex-direction: column; gap: 2rem; }
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-block-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.contact-block-head svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-block-head h4 { font-size: 1rem; color: var(--cream); }
.contact-block p, .contact-block a {
  font-size: .88rem;
  color: var(--cream-dim);
  line-height: 1.65;
}
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table tr td {
  padding: .4rem 0;
  font-size: .85rem;
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(74,111,165,.1);
}
.hours-table tr td:last-child { text-align: right; color: var(--cream); }
.hours-table tr.highlight td { color: var(--highlight); }
/* Contact form */
.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-wrap h3 { color: var(--cream); margin-bottom: .4rem; }
.contact-form-wrap > p { margin-bottom: 1.75rem; font-size: .88rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: .4rem;
}
label .req { color: var(--accent); margin-left: .2rem; }
input, select, textarea {
  width: 100%;
  background: rgba(24,38,54,.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  color: var(--cream);
  font-size: .92rem;
  transition: border-color var(--trans);
}
input::placeholder, textarea::placeholder { color: rgba(244,240,230,.3); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}
input.invalid, select.invalid, textarea.invalid { border-color: #E85050; }
select option { background: var(--dark); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { display: flex; justify-content: flex-end; margin-top: .5rem; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
#formSuccess .check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(123,168,154,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
#formSuccess svg { width: 32px; height: 32px; color: var(--highlight); }
#formSuccess h3 { color: var(--cream); margin-bottom: .5rem; }
#formSuccess p { font-size: .9rem; }
/* Map placeholder */
.map-placeholder {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); }
.map-placeholder h4 { color: var(--cream); }
.map-placeholder p { font-size: .88rem; max-width: 40ch; }
.map-section { padding: 4rem 2rem; background: var(--dark); }

/* ─── 19. FAQ Accordion ──────────────────────────────────────────────────────── */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.faq-section .section-header {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}
.faq-question span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
}
.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ─── 20. Scroll-to-top ──────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--trans), transform var(--trans);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: #3a5a8a; }
.scroll-top svg { width: 20px; height: 20px; }

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

/* ─── 22. Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-origin-inner,
  .brand-teaser-inner,
  .about-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .room-details-grid { grid-template-columns: 1fr; }
  .room-photo-gallery .photo-main { aspect-ratio: 16/9; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row-inner { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .room-specs { grid-template-columns: 1fr 1fr; }
  .room-photo-gallery { grid-template-columns: 1fr; }
  .room-photo-gallery .photo-main { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .features-strip-inner { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .masonry-grid { columns: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .room-specs { grid-template-columns: 1fr; }
}
