/* ============================================================
   SAPA DE LA BELLE — styles.css
   Sections:
   01. CSS Custom Properties (tokens)
   02. Reset & Base
   03. Typography
   04. Layout Utilities
   05. Navigation
   06. Hero
   07. Page Hero (interior pages)
   08. Features Strip
   09. Offerings Grid
   10. Brand Teaser
   11. Stats Row
   12. Reviews / Brand Cards
   13. Social CTA Band
   14. Social Feed Grid
   15. About Page Specifics
   16. Rooms Page Specifics
   17. Gallery Page Specifics
   18. Contact Page Specifics
   19. FAQ Accordion
   20. Footer
   21. Animations & Transitions
   22. Responsive
   ============================================================ */

/* ─── 01. CSS CUSTOM PROPERTIES ──────────────────────────── */
:root {
  --dark:        #1E1A14;
  --bg-alt:      #28221C;
  --accent:      #5A9480;
  --highlight:   #C8906A;
  --cream:       #F4EFE6;
  --cream-dim:   rgba(244,239,230,.65);
  --accent-dim:  rgba(90,148,128,.14);
  --border:      rgba(90,148,128,.22);
  --ff-display:  'Raleway', sans-serif;
  --ff-body:     'Hind', sans-serif;

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,.28);
  --shadow-sm:   0 2px 10px rgba(0,0,0,.18);

  --nav-h:       72px;
  --section-pad: clamp(64px, 8vw, 112px);
  --inner:       1160px;
  --gutter:      clamp(20px, 5vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
a:hover { color: var(--highlight); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--accent);
  color: var(--dark);
}

/* ─── 03. TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem);   font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6em;
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 640px;
  line-height: 1.75;
}

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

/* ─── 04. LAYOUT UTILITIES ────────────────────────────────── */
.inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

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

.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-highlight { color: var(--highlight); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ─── 05. NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(30, 26, 20, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav__logo img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
}

.nav__logo-text {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.nav__logo-text span {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav__links a {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--cream);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: var(--accent);
  color: var(--dark) !important;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--highlight);
  color: var(--dark) !important;
  transform: translateY(-1px);
}

.nav__cta::after { display: none !important; }

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(28,22,16,.98);
  backdrop-filter: blur(16px);
  padding: 24px var(--gutter) 32px;
  flex-direction: column;
  gap: 0;
  z-index: 899;
  border-bottom: 1px solid var(--border);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

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

.nav__mobile .nav__cta {
  margin-top: 20px;
  justify-content: center;
  border-radius: 40px;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,26,20,.82) 0%,
    rgba(30,26,20,.54) 50%,
    rgba(30,26,20,.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-top: var(--nav-h);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-family: var(--ff-display);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--cream-dim);
  margin-bottom: 48px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

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

.btn--primary:hover {
  background: var(--highlight);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,144,106,.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244,239,230,.35);
}

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

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,230,.45);
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero__scroll svg {
  opacity: .5;
}

/* ─── 07. PAGE HERO (interior pages) ─────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(56px, 8vw, 100px));
  padding-bottom: clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.page-hero--about {
  background:
    linear-gradient(160deg, rgba(30,26,20,.9) 0%, rgba(30,26,20,.7) 100%),
    radial-gradient(ellipse at 60% 40%, rgba(90,148,128,.25) 0%, transparent 70%),
    linear-gradient(135deg, #1E1A14 0%, #2a3a2e 50%, #1E1A14 100%);
}

.page-hero--rooms {
  background:
    linear-gradient(160deg, rgba(30,26,20,.88) 0%, rgba(30,26,20,.72) 100%),
    radial-gradient(ellipse at 40% 60%, rgba(200,144,106,.2) 0%, transparent 65%),
    linear-gradient(135deg, #1E1A14 0%, #2e2518 50%, #1E1A14 100%);
}

.page-hero--gallery {
  background:
    linear-gradient(160deg, rgba(30,26,20,.9) 0%, rgba(30,26,20,.75) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(90,148,128,.18) 0%, transparent 70%),
    linear-gradient(135deg, #1E1A14 0%, #1f2e28 50%, #1E1A14 100%);
}

.page-hero--contact {
  background:
    linear-gradient(160deg, rgba(30,26,20,.88) 0%, rgba(30,26,20,.7) 100%),
    radial-gradient(ellipse at 55% 45%, rgba(200,144,106,.15) 0%, transparent 65%),
    linear-gradient(135deg, #1E1A14 0%, #2d2318 50%, #1E1A14 100%);
}

.page-hero__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-hero__inner .lead { margin-top: 16px; }

/* Decorative river line */
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 40%, var(--accent) 60%, transparent 100%);
  opacity: .3;
}

/* ─── 08. FEATURES STRIP ──────────────────────────────────── */
.features {
  background: var(--bg-alt);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.feature-item:last-child { border-right: none; }

.feature-item:hover {
  background: var(--accent-dim);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h4 {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.55;
  margin: 0;
}

/* ─── 09. OFFERINGS GRID ──────────────────────────────────── */
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offering-tile {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.offering-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.offering-tile__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(90,148,128,.22);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.offering-tile__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offering-tile__cat {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
}

.offering-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0;
}

.offering-tile p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin: 0;
}

/* ─── 10. BRAND TEASER ────────────────────────────────────── */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.teaser__visual {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(90,148,128,.28) 0%, transparent 65%),
    linear-gradient(145deg, #1f2e28 0%, #1E1A14 60%, #28221C 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
}

.teaser__visual-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px;
}

.teaser__visual-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 16px;
}

.teaser__visual-attr {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Animated water ripples */
.teaser__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(90,148,128,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(200,144,106,.06) 0%, transparent 50%);
  animation: shimmer 6s ease-in-out infinite alternate;
}

.teaser__copy {
  padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-alt);
}

.teaser__copy p {
  color: var(--cream-dim);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.8;
  margin-bottom: 1.4em;
}

.teaser__copy p:last-of-type { margin-bottom: 0; }

.teaser__copy .btn { margin-top: 32px; }

/* ─── 11. STATS ROW ───────────────────────────────────────── */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 52px 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-item__label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ─── 12. REVIEWS / BRAND CARDS ───────────────────────────── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.review-card {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

.review-card__quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: .18;
  line-height: 1;
  user-select: none;
}

.review-card p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-style: italic;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 20px;
}

.review-card__source {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__source::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* ─── 13. SOCIAL CTA BAND ─────────────────────────────────── */
.social-cta {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(90,148,128,.22) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--bg-alt) 100%);
  text-align: center;
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
}

.social-cta h2 { margin-bottom: 16px; }

.social-cta .lead {
  margin: 0 auto 40px;
}

.social-cta__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--cream);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ─── 14. SOCIAL FEED GRID ────────────────────────────────── */
.social-feed {
  padding: 0 0 clamp(64px, 8vw, 100px);
}

.social-feed__header {
  text-align: center;
  padding: 0 var(--gutter) 40px;
  max-width: var(--inner);
  margin: 0 auto;
}

.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.feed-cell {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feed-cell:nth-child(1) { background: linear-gradient(135deg, #1f3028 0%, #2a4038 100%); }
.feed-cell:nth-child(2) { background: linear-gradient(135deg, #2e2518 0%, #3d3020 100%); }
.feed-cell:nth-child(3) { background: linear-gradient(135deg, #1a2820 0%, #253530 100%); }
.feed-cell:nth-child(4) { background: linear-gradient(135deg, #2d2218 0%, #3a2c1e 100%); }
.feed-cell:nth-child(5) { background: linear-gradient(135deg, #1e2e26 0%, #28403a 100%); }
.feed-cell:nth-child(6) { background: linear-gradient(135deg, #28201a 0%, #362a20 100%); }

.feed-cell__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,26,20,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  gap: 8px;
}

.feed-cell:hover .feed-cell__overlay { opacity: 1; }

.feed-cell__overlay svg {
  width: 28px;
  height: 28px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 1.5;
}

.feed-cell__overlay span {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

.feed-cell__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: .08;
}

.feed-cell__icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1;
}

/* ─── 15. ABOUT PAGE SPECIFICS ────────────────────────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.philosophy-card {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.philosophy-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(90,148,128,.2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.philosophy-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.philosophy-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.philosophy-card p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin: 0;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.value-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
  font-family: var(--ff-display);
  letter-spacing: 0.04em;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin: 0;
  line-height: 1.6;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 3px var(--border);
}

.timeline-item__year {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin: 0;
}

/* About split layout */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-story__text p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 1.4em;
}

/* ─── 16. ROOMS PAGE SPECIFICS ────────────────────────────── */
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--gutter);
  text-align: center;
}

.disclaimer-bar p {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  margin: 0;
}

.disclaimer-bar strong {
  color: var(--accent);
  font-weight: 700;
}

.room-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.room-cat-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.room-cat-tile__visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-cat-tile:nth-child(1) .room-cat-tile__visual {
  background: linear-gradient(145deg, #1f3028 0%, #2e4438 60%, #1a2820 100%);
}

.room-cat-tile:nth-child(2) .room-cat-tile__visual {
  background: linear-gradient(145deg, #28201a 0%, #3d2e1e 60%, #24201a 100%);
}

.room-cat-tile:nth-child(3) .room-cat-tile__visual {
  background: linear-gradient(145deg, #1e2c24 0%, #2a3e30 60%, #1a2820 100%);
}

.room-cat-tile__visual svg {
  width: 56px;
  height: 56px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1;
  opacity: .7;
}

.room-cat-tile__body {
  padding: 28px 24px;
  background: var(--bg-alt);
  flex: 1;
}

.room-cat-tile__body .eyebrow { color: var(--highlight); }

.room-cat-tile__body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.room-cat-tile__body p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin: 0;
}

/* Room descriptions text list */
.room-descriptions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.room-desc-item {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

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

.room-desc-item__meta {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.room-desc-item__meta .eyebrow { margin-bottom: 8px; }

.room-desc-item__meta h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.room-desc-item__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.room-desc-item__content p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--cream-dim);
  line-height: 1.82;
  margin-bottom: 1.2em;
}

.room-desc-item__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.room-feature-tag {
  padding: 5px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ─── 17. GALLERY PAGE SPECIFICS ──────────────────────────── */
.gallery-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.gallery-intro p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--cream-dim);
  line-height: 1.8;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-cell {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-cell:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
  z-index: 2;
}

.gallery-cell--tall { grid-row: span 2; }
.gallery-cell--wide { grid-column: span 2; }

.gallery-cell__bg {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.gallery-cell--tall .gallery-cell__bg { padding-top: 220%; }
.gallery-cell--wide .gallery-cell__bg { padding-top: 48%; }

.gallery-cell:nth-child(1) .gallery-cell__bg { background: linear-gradient(145deg, #1e3028 0%, #2a4a38 100%); }
.gallery-cell:nth-child(2) .gallery-cell__bg { background: linear-gradient(145deg, #282018 0%, #3a2e1c 100%); }
.gallery-cell:nth-child(3) .gallery-cell__bg { background: linear-gradient(145deg, #1c2c24 0%, #283c2e 100%); }
.gallery-cell:nth-child(4) .gallery-cell__bg { background: linear-gradient(145deg, #2c2018 0%, #3e2e1e 100%); }
.gallery-cell:nth-child(5) .gallery-cell__bg { background: linear-gradient(145deg, #1a2e24 0%, #24403a 100%); }
.gallery-cell:nth-child(6) .gallery-cell__bg { background: linear-gradient(145deg, #241c14 0%, #3a2a1a 100%); }
.gallery-cell:nth-child(7) .gallery-cell__bg { background: linear-gradient(145deg, #1e2c20 0%, #2a3c2c 100%); }
.gallery-cell:nth-child(8) .gallery-cell__bg { background: linear-gradient(145deg, #2a1e14 0%, #3c2c1c 100%); }

.gallery-cell__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-cell__label span {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,.3);
  text-align: center;
}

.gallery-coming {
  text-align: center;
  margin-top: 56px;
  padding: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.gallery-coming p {
  color: var(--cream-dim);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* ─── 17b. REAL IMAGE OVERRIDES ───────────────────────────── */

/* Offering tile photo strip */
.offering-tile__img {
  width: 100%;
  height: 160px;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.offering-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.offering-tile:hover .offering-tile__img img {
  transform: scale(1.05);
}

/* Feed cell real photo */
.feed-cell__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Room cat tile real photo */
.room-cat-tile__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* About page hero real bg */
.page-hero--about {
  background-size: cover !important;
  background-position: center !important;
}

/* About story image */
.about-story__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

/* Gallery real images */
.gallery-cell__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Override gradient backgrounds when real image is present */
.gallery-cell__bg:has(img) {
  background: var(--dark) !important;
}

/* ─── 18. CONTACT PAGE SPECIFICS ──────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition);
}

.contact-block:hover { border-color: var(--accent); }

.contact-block__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(90,148,128,.18);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-block__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.contact-block__body {}

.contact-block__label {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-block__value {
  font-size: 0.92rem;
  color: var(--cream);
  font-weight: 500;
}

.contact-block__note {
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin-top: 2px;
}

/* Map placeholder */
.map-placeholder {
  margin-top: 20px;
  height: 220px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(90,148,128,.18) 0%, transparent 60%),
    linear-gradient(145deg, #1c2c24 0%, #28221C 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color var(--transition);
  text-decoration: none;
}

.map-placeholder:hover { border-color: var(--accent); }

.map-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  opacity: .7;
}

.map-placeholder span {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Inquiry form */
.inquiry-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}

.form-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(30,26,20,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A9480' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(90,148,128,.12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(244,239,230,.3); }

.form-note {
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin-top: 14px;
  text-align: center;
}

.form-note a {
  color: var(--accent);
  font-weight: 600;
}

/* ─── 19. FAQ ACCORDION ───────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 20px;
}

.faq-trigger__q {
  font-family: var(--ff-display);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  transition: color var(--transition);
}

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

.faq-trigger__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.faq-trigger__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.faq-item.open .faq-trigger__icon {
  background: var(--accent);
}

.faq-item.open .faq-trigger__icon svg {
  stroke: var(--dark);
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  padding: 0 0 22px;
}

.faq-item.open .faq-body { display: block; }

.faq-body p {
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  color: var(--cream-dim);
  line-height: 1.78;
  margin: 0;
  max-width: 640px;
}

/* ─── 20. FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

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

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

.footer__logo-text {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer__logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--cream-dim);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.footer__social-link:hover svg { stroke: var(--dark); }

.footer__col h5 {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.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(--accent); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(244,239,230,.35);
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.75rem;
  color: rgba(244,239,230,.35);
  transition: color var(--transition);
}

.footer__bottom-links a:hover { color: var(--cream-dim); }

/* ─── 21. ANIMATIONS & TRANSITIONS ───────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(0.85); }
}

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

@keyframes shimmer {
  0%   { opacity: .6; }
  100% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── 22. RESPONSIVE ──────────────────────────────────────── */

/* Large tablets: ≤ 1024px */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(4) { border-top: 1px solid var(--border); }
  .feature-item:nth-child(5) {
    border-top: 1px solid var(--border);
    border-right: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .room-desc-item {
    grid-template-columns: 160px 1fr;
    gap: 32px;
  }

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

  .teaser__visual { min-height: 280px; }
}

/* Tablets: ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links,
  .nav__cta.desktop-only { display: none; }

  .nav__toggle { display: flex; }

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

  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }

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

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(2),
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

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

  .room-categories { grid-template-columns: 1fr; }

  .room-desc-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .room-desc-item__meta { position: static; }

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

  .values-list { grid-template-columns: 1fr; }

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

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

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

  .gallery-cell--wide { grid-column: span 1; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

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

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
  .offerings__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .social-feed__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-cell--tall, .gallery-cell--wide { grid-column: span 1; grid-row: span 1; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}
