/* ============================================
   CAFE STAY — STYLES
   Editorial, photo-led, design-conscious
   ============================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --color-bg: #faf6ef;
  --color-bg-warm: #f3ece0;
  --color-bg-deep: #1a1a1a;
  --color-text: #1a1a1a;
  --color-text-soft: #5c5751;
  --color-text-muted: #8a857d;
  --color-line: #e6dfd2;
  --color-line-dark: #2a2a2a;

  /* Branch 1 */
  --color-b1-accent: #b88a52;
  --color-b1-soft: #ede4d3;

  /* Co/Lab */
  --color-cl-accent: #1f3a52;
  --color-cl-orange: #e8814a;
  --color-cl-soft: #efebe5;

  /* Type */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --container: 1240px;
  --container-narrow: 920px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Reusable ---------- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--color-text-muted); }

.section-title,
.branch-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.section-title em,
.branch-title em {
  font-style: italic;
  color: var(--color-b1-accent);
}

/* Reveal animation — only hidden once JS confirms it's running.
   This way users without JS still see all content. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
}
.btn-primary:hover { background: #000; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}
.btn-secondary:hover { background: var(--color-text); color: var(--color-bg); transform: translateY(-2px); }
.btn-fb {
  background: #1877f2;
  color: white;
  padding: 1.05rem 2rem;
  font-size: 16px;
}
.btn-fb:hover { background: #166fe0; transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(24, 119, 242, 0.4); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--color-line);
  background: rgba(250, 246, 239, 0.95);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--color-text);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

/* Facebook CTA — sleek flat pill */
.nav-links li:has(.nav-fb-btn) { margin-left: 0.5rem; }
.nav-fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem 0.55rem 0.9rem;
  background: #1877f2;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 999px;
  transition: background-color 0.18s var(--ease);
}
.nav-fb-btn::after { display: none !important; }
.nav-fb-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.nav-fb-btn:hover { background: #166fe0; }
.nav-fb-btn:active { background: #145dba; }
.nav-fb-btn:focus-visible {
  outline: 2px solid #1877f2;
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 9rem 2rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 92vh;
}
.hero-content { max-width: 540px; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--color-b1-accent);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--color-text-soft);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-subtitle strong { color: var(--color-text); font-weight: 500; }
.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-images {
  position: relative;
  height: 580px;
}
.hero-image {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.25);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-image-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}
.hero-image-1 {
  width: 60%;
  height: 92%;
  top: 0;
  right: 0;
  z-index: 1;
}
.hero-image-2 {
  width: 50%;
  height: 65%;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 2rem;
  border-top: 1px solid var(--color-line);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.intro-text { position: sticky; top: 6rem; }
.intro-body p {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 1.25rem;
}
.intro-body p:first-child {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--color-text);
  font-weight: 400;
}

/* ============================================
   BRANCH SECTIONS — shared
   ============================================ */
.branch {
  padding: 6rem 0;
  position: relative;
}
.branch-1 { background: var(--color-b1-soft); }
.branch-collab {
  background: var(--color-bg-deep);
  color: var(--color-bg);
}
.branch-collab .section-eyebrow,
.branch-collab .pricing-block-sub,
.branch-collab .visit-lede,
.branch-collab .room-desc { color: rgba(250, 246, 239, 0.65); }
.branch-collab .branch-title em { color: var(--color-cl-orange); }

.branch-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.branch-hero-text { max-width: 500px; }
.branch-collab .branch-title { color: var(--color-bg); }
.branch-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 1.5rem 0 1.75rem;
}
.branch-collab .branch-lede { color: rgba(250, 246, 239, 0.78); }

.branch-hero-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.meta-pill-dark {
  border-color: var(--color-cl-orange);
  color: var(--color-cl-orange);
}

.branch-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.3);
}
.branch-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.branch-hero-image:hover img { transform: scale(1.04); }

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.pricing-header {
  margin-bottom: 3rem;
  max-width: 640px;
}
.pricing-header h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.pricing-block { margin-bottom: 3.5rem; }
.pricing-block-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-text);
}
.pricing-block-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.pricing-grid {
  display: grid;
  gap: 1rem;
}
.pricing-grid-hourly { grid-template-columns: repeat(5, 1fr); }
.pricing-grid-monthly { grid-template-columns: repeat(4, 1fr); }

.price-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.18);
  background: white;
}
.price-card-feature {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}
.price-card-feature:hover { background: var(--color-text); }

.price-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-soft);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.price-card-feature .price-label { color: rgba(250, 246, 239, 0.7); }

.price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.price-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}
.price-card-feature .price-note { color: rgba(250, 246, 239, 0.6); }

/* Walk-in banner */
.walkin-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-b1-accent);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.walkin-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-b1-soft);
  border-radius: 50%;
  color: var(--color-b1-accent);
}
.walkin-banner strong { font-weight: 600; display: block; margin-bottom: 0.15rem; }
.walkin-banner p { font-size: 14px; color: var(--color-text-soft); }

/* ============================================
   ROOMS (Co/Lab)
   ============================================ */
.rooms-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.branch-collab .pricing-header h3 { color: var(--color-bg); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.room-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 246, 239, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease);
}
.room-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 246, 239, 0.25);
}
.room-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.room-card:hover .room-image img { transform: scale(1.06); }
.room-info { padding: 1.5rem 1.5rem 1.75rem; }
.room-info h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.room-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-cl-orange);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.room-price span {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.5);
  margin-left: 0.15rem;
}
.room-desc { font-size: 14px; line-height: 1.55; }

/* Booking CTA */
.booking-cta {
  background: linear-gradient(135deg, var(--color-cl-orange) 0%, #d96826 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  color: white;
  margin-top: 2rem;
}
.booking-cta-content { max-width: 580px; margin: 0 auto; }
.booking-cta .section-eyebrow { color: rgba(255, 255, 255, 0.75); }
.booking-cta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.booking-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

/* ============================================
   GALLERIES
   ============================================ */
.gallery {
  max-width: var(--container);
  margin: 5rem auto 0;
  padding: 0 2rem;
}
.gallery .section-eyebrow { margin-bottom: 1.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ============================================
   VISIT
   ============================================ */
.visit {
  background: var(--color-bg-warm);
  padding: 6rem 0;
}
.visit-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.visit-text { max-width: 640px; margin: 0 auto; }
.visit-lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-soft);
  margin: 1.5rem 0 2.5rem;
}
.visit-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 15px;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-text);
  transition: gap 0.3s var(--ease);
}
.visit-link:hover { gap: 0.85rem; }

/* ============================================
   LIGHTBOX
   ============================================ */
.gallery-item,
.room-card[data-room] {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-stage {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img {
  max-width: 95vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.lightbox-meta {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
}
.lightbox-meta-title { font-weight: 500; }
.lightbox-meta-counter {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}
.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}
.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
}
.lightbox-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox.is-single .lightbox-prev,
.lightbox.is-single .lightbox-next {
  display: none;
}
@media (max-width: 640px) {
  .lightbox-btn { width: 40px; height: 40px; font-size: 18px; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-deep);
  color: var(--color-bg);
  padding: 4rem 2rem 2.5rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}
.footer-brand img {
  height: 38px;
  width: auto;
  filter: invert(1);
  opacity: 0.95;
}
.footer-meta p {
  font-size: 14px;
  color: rgba(250, 246, 239, 0.7);
  margin-bottom: 0.25rem;
}
.footer-tagline { color: rgba(250, 246, 239, 0.5) !important; font-style: italic; }
.footer-copy p {
  font-size: 13px;
  color: rgba(250, 246, 239, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 968px) {
  body { font-size: 16px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 7rem;
    min-height: auto;
  }
  .hero-images { height: 460px; }

  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-text { position: static; }

  .branch-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .branch-hero-image { aspect-ratio: 16/10; max-height: 480px; }

  .pricing-grid-hourly { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid-monthly { grid-template-columns: repeat(2, 1fr); }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-brand { justify-self: center; }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-inner { padding: 0.9rem 1.25rem; }
  .nav-logo img { height: 32px; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(64px + 2rem) 1.5rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
    z-index: -1;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { font-size: 18px; }
  .nav-links .nav-fb-btn {
    font-size: 15px;
    padding: 0.7rem 1.25rem;
    margin-top: 0.5rem;
  }
  .nav-toggle { display: flex; }

  .hero { padding: 6.5rem 1.25rem 3rem; }
  .hero-images { height: 360px; }
  .hero-cta { width: 100%; }
  .btn { width: 100%; }

  .intro { padding: 4rem 1.25rem; }
  .branch { padding: 4rem 0; }
  .branch-hero { padding: 0 1.25rem 3rem; }

  .pricing-section,
  .rooms-section,
  .gallery,
  .visit-inner { padding-left: 1.25rem; padding-right: 1.25rem; }

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

  .price-value { font-size: 1.7rem; }

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

  .gallery { margin-top: 3rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.6rem;
  }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }

  .booking-cta { padding: 2.5rem 1.5rem; }
  .visit { padding: 4rem 0; }
  .footer { padding: 3rem 1.25rem 2rem; }
}
