/* ============================================================
   NEKO CAT HOTEL — Design System
   Elementor-portable: sections map 1:1 to Containers.
   ============================================================ */

@font-face {
  font-family: 'Walter Turncoat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Walter Turncoat'),
       url('https://fonts.gstatic.com/s/walterturncoat/v22/snfys0Gs98ln43n0d-14ULoToe27f4XH.woff2') format('woff2');
}

:root {
  /* Brand palette — official (see framework/02 Design System.md) */
  /* Tightened Aug 2026: coral is now the single primary accent (light backgrounds);
     yellow is reserved for accents on dark backgrounds + ribbons/stars only;
     peach is reserved for muted text-on-dark + transient hover tints, not persistent
     fills; orange is kept only as a token alias (no longer used standalone) so old
     component notes still resolve. Fewer competing hues = calmer, more premium feel. */
  --cream:        #FDEEE1;
  --cream-alt:    #FEF6EF;
  --peach:        #FCC9AB;
  --orange:       #EC7878; /* alias of --coral — orange retired as a distinct UI hue */
  --coral:        #EC7878;
  --coral-dark:   #DD5F5F;
  --yellow:       #FFC950;
  --brown:        #3A332E; /* warm charcoal-mocha (feedback Aug 2026: near-black #1A1A1A read as too harsh/unprofessional on the CTA band + footer — lightened and warmed while keeping enough contrast for cream/yellow text on dark sections) */
  --brown-legacy: #4F1D0F; /* original warm-brown colourway, kept for reference only */
  --brown-soft:   #55534F;
  --white:        #FFFFFF;
  --line:         #F3D9C6;

  /* Tier accents (match physical room colours) */
  --tier-presidential: #8B6BB8;
  --tier-vip:          #E8A93D;
  --tier-executive:    #7FB069;
  --tier-deluxe:       #F2A0B5;

  --font-display: 'Walter Turncoat', 'Segoe Print', 'Bradley Hand', cursive;
  --font-script:  'Walter Turncoat', 'Segoe Print', cursive;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius:       20px;
  --radius-pill:  999px;
  --radius-sm:    12px;
  --shadow:       0 24px 60px -24px rgba(26, 26, 26, 0.28);
  --shadow-hover: 0 28px 70px -24px rgba(26, 26, 26, 0.36);
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --max-width:    1200px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown-soft);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.3rem; }
.script-accent { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--brown); color: var(--white);
  padding: 12px 20px; z-index: 999; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
section { padding-block: 96px; }
.section-alt { background: var(--cream-alt); }
.section-white { background: var(--white); }
.section-dark { background: var(--brown); color: var(--cream); }

.section-intro { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--coral); margin-bottom: 12px;
}
.section-dark .eyebrow { color: var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-pill); padding: 14px 28px; font-weight: 600; font-size: 0.98rem;
  text-decoration: none; border: 2px solid transparent; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  min-height: 44px; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: var(--white); box-shadow: 0 10px 24px -8px rgba(236,120,120,0.55); }
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 14px 30px -8px rgba(221,95,95,0.6); }
.btn-secondary { background: transparent; border-color: var(--brown); color: var(--brown); }
.btn-secondary:hover { background: var(--peach); }
.btn-light { background: var(--white); color: var(--brown); }
.btn-light:hover { background: var(--cream); }
.btn-gold { background: var(--yellow); color: var(--brown); }
.btn-gold:hover { background: #ffbd2e; }
.btn-large { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 238, 225, 0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: 0 6px 24px -12px rgba(26, 26, 26,0.22); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: 20px; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand-logo { height: 42px; width: auto; display: block; }

.main-nav {
  display: flex; align-items: center; flex-wrap: nowrap; column-gap: 15px; flex: 1;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.nav-mobile-ctas { display: none; }
.main-nav a {
  text-decoration: none; color: var(--brown); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 1px; border-bottom: 2px solid transparent; transition: border-color 0.2s, color 0.2s, opacity 0.2s;
  opacity: 0.82; white-space: nowrap; flex-shrink: 0;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { opacity: 1; border-color: var(--coral); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: none; color: var(--brown); font-size: 0.88rem; white-space: nowrap; }
.header-merchant { padding: 10px 18px; font-size: 0.85rem; white-space: nowrap; }

.tour-btn-circle {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--brown); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; color: var(--brown); text-align: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.tour-btn-circle:hover { background: var(--peach); transform: translateY(-2px); }
.tour-btn-circle span { display: block; line-height: 1.05; }

.nav-toggle {
  display: none; background: none; border: none; width: 44px; height: 44px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero video (homepage landing) ---------- */
.hero-video {
  position: relative; min-height: 56vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; color: var(--white);
  background: repeating-linear-gradient(135deg, #2E2E2E 0 14px, #1A1A1A 14px 28px);
}
.hero-video-content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.hero-video-content .eyebrow { color: var(--yellow); margin-bottom: 20px; }
.hero-video-content h1 { color: var(--white); margin-bottom: 26px; }
.hero-video-content .hero-lead { color: var(--cream); font-size: 1.2rem; margin-bottom: 30px; }
.hero-video-content .hero-ctas { justify-content: center; margin-top: 6px; margin-bottom: 26px; }
.hero-video-content .hero-note { color: var(--peach); margin-bottom: 10px; }
.hero-video-content .hero-note strong { color: inherit; }
.hero-video-content .trust-dots { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 36px; }
.hero-video-content .trust-dots li { color: var(--cream); }
.hero-video-content .trust-dots li::before { background: var(--yellow); }
.hero-video .hero-badge { position: absolute; left: 28px; bottom: 28px; z-index: 2; }
.hero-scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--cream);
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; animation: cue-bounce 2.2s ease-in-out infinite;
}
.hero-scroll-cue svg { width: 16px; height: 16px; }
@keyframes cue-bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-cue { animation: none; } }

/* ---------- Marquee (continuous auto-scrolling photo strip) ---------- */
.marquee-section { padding-block: 0; overflow: hidden; background: var(--brown); }
.marquee { overflow: hidden; padding-block: 22px; }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee-scroll 75s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .ph-img { width: 260px; height: 170px; flex-shrink: 0; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@media (max-width: 640px) { .marquee-track .ph-img { width: 190px; height: 130px; } }

.marquee-clickable .ph-img[data-clip] {
  cursor: pointer; position: relative; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.marquee-clickable .ph-img[data-clip]::after {
  content: '\2713 Set as cover'; position: absolute; inset: auto 0 0 0; z-index: 2;
  background: rgba(26,26,26,0.72); color: var(--white); font-size: 0.68rem; font-weight: 700;
  text-align: center; padding: 5px 4px; opacity: 0; transition: opacity 0.2s var(--ease);
}
.marquee-clickable .ph-img[data-clip]:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.marquee-clickable .ph-img[data-clip]:hover::after,
.marquee-clickable .ph-img[data-clip]:focus-visible::after { opacity: 1; }
.marquee-clickable .ph-img[data-clip].just-picked::after { content: '\2713 Now playing'; opacity: 1; background: var(--coral); }

/* ---------- Instagram video gallery ---------- */
.instagram-strip { background: var(--cream-alt); }
.instagram-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px;
  justify-items: center;
}
.instagram-grid iframe, .instagram-grid .instagram-media { width: 100% !important; max-width: 400px; }

/* ---------- Hero (compact, inner pages) ---------- */
.hero { padding-block: 64px 96px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-lead { font-size: 1.15rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 20px; }
.hero-note { font-size: 0.9rem; color: var(--brown-soft); }
.hero-note strong { color: var(--brown); }
.trust-dots { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.trust-dots li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: var(--brown); }
.trust-dots li::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-media::before {
  content: ''; position: absolute; inset: -30px -30px auto auto; width: 260px; height: 260px;
  background: var(--cream-alt); border-radius: 50%; opacity: 0.7; z-index: 0; filter: blur(6px);
}
.hero-media .neko-carousel { position: relative; z-index: 1; }
.hero-media .instagram-media { position: relative; z-index: 1; margin: 0 auto !important; width: 100% !important; }

/* ---------- Selectable background photo (page-title banners + homepage marquee) ---------- */
.hero-photo {
  position: relative; color: var(--white); min-height: 40vh;
  display: flex; align-items: center;
}
.hero-photo .container { position: relative; z-index: 1; width: 100%; padding-left: 32px; padding-right: 32px; }
.hero-photo .eyebrow { color: var(--yellow); margin-bottom: 18px; }
.hero-photo h1, .hero-photo h2 { color: var(--white); margin-bottom: 20px; }
.hero-photo .hero-lead { color: var(--cream); margin-bottom: 12px; }
.hero-photo .hero-note { color: var(--peach); margin-top: 8px; }
.hero-photo .hero-note strong { color: var(--white); }
.hero-photo .trust-dots li { color: var(--cream); }
.hero-photo .trust-dots li::before { background: var(--yellow); }

.bg-switcher { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--brown); }
/* Blurred, scaled-up copy of the active poster fills the frame behind the letterboxed video,
   so object-fit:contain never leaves flat dead space at the sides/top/bottom. */
.bg-switcher-backdrop {
  position: absolute; inset: -6%; z-index: 0; background-size: cover; background-position: center;
  filter: blur(32px) brightness(0.55) saturate(1.15); transform: scale(1.08);
}
/* Two extra copies of the active clip itself (not just the poster), cover-cropped and blurred,
   flanking the letterboxed centre video so the sides read as duplicated footage, not dead space. */
.bg-switcher-side {
  position: absolute; top: 0; bottom: 0; z-index: 0; width: 54%; height: 100%; object-fit: cover;
  filter: blur(22px) brightness(0.55) saturate(1.15); opacity: 0; transition: opacity 0.6s ease;
}
.bg-switcher-side.active { opacity: 1; }
.bg-switcher-side-left { left: 0; }
.bg-switcher-side-right { right: 0; }
.bg-switcher-imgs { position: absolute; inset: 0; z-index: 1; }
.bg-switcher-imgs video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity 0.8s ease;
}
.bg-switcher-imgs video.active { opacity: 1; }
.bg-switcher::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.62) 55%, rgba(26,26,26,0.8) 100%);
}
.bg-switcher-dots {
  position: absolute; z-index: 2; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; padding: 6px 10px; max-width: 88%;
  background: rgba(0,0,0,0.2); border-radius: var(--radius-pill); backdrop-filter: blur(4px);
}
.bg-switcher-dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; background: rgba(255,255,255,0.4);
  border: 1.5px solid rgba(255,255,255,0.8); cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.bg-switcher-dots button:hover { background: rgba(255,255,255,0.75); }
.bg-switcher-dots button.active { background: var(--white); transform: scale(1.2); }
.bg-switcher-dots button:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

.hero-video .bg-switcher-dots { z-index: 2; bottom: 20px; }

.bg-switcher-sound {
  position: absolute; z-index: 2; top: 18px; right: 18px; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); background: rgba(0,0,0,0.28);
  backdrop-filter: blur(6px); color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.bg-switcher-sound:hover { background: rgba(0,0,0,0.45); transform: scale(1.05); }
.bg-switcher-sound:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.bg-switcher-sound svg { width: 18px; height: 18px; }
.bg-switcher-sound .icon-unmuted { display: none; }
.bg-switcher-sound[aria-pressed="true"] .icon-muted { display: none; }
.bg-switcher-sound[aria-pressed="true"] .icon-unmuted { display: block; }
.hero-badge {
  position: absolute; left: -18px; bottom: -18px; z-index: 2; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 20px; text-align: center;
}
.hero-badge .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--coral); display: block; line-height: 1; }
.hero-badge .cap { font-size: 0.72rem; font-weight: 600; max-width: 110px; display: block; margin-top: 4px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--brown); padding-block: 40px; }
.trust-strip ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-strip li { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--cream); font-weight: 600; font-size: 0.92rem; }
.trust-strip svg { width: 28px; height: 28px; color: var(--orange); }

/* ---------- Three-beat strip ---------- */
.beat-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.beat-strip h3 { font-size: 2rem; color: var(--coral); }

/* ---------- About / story ---------- */
.about .container { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.about-sign { font-family: var(--font-script); font-size: 1.5rem; color: var(--coral); margin-top: 20px; }

/* ---------- Placeholder image blocks ---------- */
.ph-img {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, var(--cream-alt) 0 12px, var(--white) 12px 24px);
  border: 2px dashed var(--line); border-radius: var(--radius); color: var(--brown-soft);
  text-align: center; padding: 16px; overflow: hidden; width: 100%; height: 100%;
}
.ph-img span { font-size: 0.82rem; font-weight: 600; max-width: 220px; line-height: 1.4; }
.ph-img.has-photo { padding: 0; border: none; background: none; }
.ph-img.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-img.has-photo video { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-embed { border-radius: var(--radius); overflow: hidden; width: 100%; height: 100%; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; display: block; border: 0; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-5  { aspect-ratio: 4 / 5; }
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-1-1  { aspect-ratio: 1 / 1; }

/* ---------- Carousel ---------- */
.neko-carousel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.neko-carousel .track { display: flex; transition: transform 0.6s var(--ease); }
.neko-carousel .slide { flex: 0 0 100%; position: relative; }
.neko-carousel.multi .slide { flex: 0 0 33.333%; padding: 0 6px; }
.neko-carousel .slide-caption {
  position: absolute; left: 12px; bottom: 12px; background: rgba(26, 26, 26,0.85); color: var(--cream);
  font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-pill);
}
.carousel-controls { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; pointer-events: none; }
.carousel-arrow {
  pointer-events: auto; width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: none;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); color: var(--brown); flex-shrink: 0;
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; padding: 14px 0 0; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; padding: 0; }
.carousel-dots button[aria-current="true"] { background: var(--orange); width: 22px; border-radius: var(--radius-pill); transition: width 0.25s var(--ease); }
.carousel-pause {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; z-index: 3;
}
.carousel-pause svg { width: 14px; height: 14px; }
.carousel-wrap { position: relative; }

/* ---------- Tier grid — SIDE BY SIDE, never scrolling ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.tier-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.tier-accent { height: 6px; width: 100%; }
.tier-card[data-tier="deluxe"] .tier-accent { background: var(--tier-deluxe); }
.tier-card[data-tier="executive"] .tier-accent { background: var(--tier-executive); }
.tier-card[data-tier="vip"] .tier-accent { background: var(--tier-vip); }
.tier-card[data-tier="presidential"] .tier-accent { background: var(--tier-presidential); }
.tier-photo { padding: 12px 12px 0; }
.tier-collage {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px;
  border-radius: var(--radius); overflow: hidden; width: 100%; height: 100%;
}
.tier-collage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tier-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-vibe { font-size: 0.85rem; color: var(--brown-soft); margin: -6px 0 4px; }
.tier-price { display: flex; align-items: baseline; gap: 6px; margin: 4px 0; }
.tier-price .amt { font-family: var(--font-body); font-weight: 800; font-size: 2rem; color: var(--brown); }
.tier-price .per { font-size: 0.85rem; color: var(--brown); }
.tier-price .from { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--coral); font-weight: 700; display: block; }
.tier-specs { font-size: 0.85rem; display: flex; flex-direction: column; gap: 4px; color: var(--brown-soft); }
.tier-specs strong { color: var(--brown); }
.tier-perks { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; margin: 6px 0; }
.tier-perks li { display: flex; gap: 8px; align-items: flex-start; }
.tier-perks li::before { content: '✓'; color: var(--coral); font-weight: 700; flex-shrink: 0; }
.tier-body .btn { margin-top: auto; }
.tier-rates-link { text-align: center; font-size: 0.82rem; font-weight: 600; color: var(--coral); text-decoration: none; margin-top: 6px; }

@media (max-width: 1199px) and (min-width: 920px) {
  .tier-grid { gap: 14px; }
  .tier-body { padding: 12px 14px 16px; }
  .tier-price .amt { font-size: 1.6rem; }
}
@media (max-width: 919px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---------- Room tour grid ---------- */
.room-tour-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.room-tour-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
  overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.room-tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.room-tour-photo { padding: 12px 12px 0; }
.room-tour-photo video { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); display: block; background: #000; object-fit: cover; }
.room-tour-title { text-align: center; padding: 16px 18px 20px; margin: 0; }
@media (max-width: 640px) {
  .room-tour-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 639px) {
  .tier-grid { gap: 12px; }
  .tier-body { padding: 12px; gap: 8px; }
  .tier-price .amt { font-size: 1.4rem; }
  .tier-vibe, .tier-specs { display: none; }
  .tier-details-toggle { display: block; font-size: 0.78rem; font-weight: 700; color: var(--coral); background: none; border: none; padding: 0; text-align: left; }
}

/* ---------- Rate table ---------- */
.rate-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--white); }
table.rate-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.rate-table th, .rate-table td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.rate-table th { background: var(--brown); color: var(--cream); font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; }
.rate-table td:first-child, .rate-table th:first-child { text-align: left; font-weight: 700; color: var(--brown); }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:nth-child(even) td { background: var(--cream-alt); }
.rate-fineprint { font-size: 0.82rem; color: var(--brown-soft); margin-top: 16px; max-width: 780px; }
.rate-fineprint code, .todo-flag { color: var(--coral); font-style: italic; }

.peak-callout { background: var(--cream-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; margin-top: 32px; }
.peak-callout h3 { margin-bottom: 8px; }

.requirements-strip ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.requirements-strip li { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.requirements-strip svg { width: 30px; height: 30px; color: var(--coral); }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.feature-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--brown); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon svg { width: 24px; height: 24px; color: var(--orange); }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; }
.gallery-tab {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 24px;
  font-weight: 600; font-size: 0.9rem; color: var(--brown-soft);
}
.gallery-tab[aria-selected="true"] { background: var(--coral); color: var(--white); border-color: var(--coral); }
.gallery-panel[hidden] { display: none; }
.masonry { columns: 3 260px; column-gap: 16px; margin-top: 56px; }
.masonry .ph-img { break-inside: avoid; margin-bottom: 16px; cursor: pointer; }
.masonry .m-tall { aspect-ratio: 3/4; }
.masonry .m-wide { aspect-ratio: 4/3; }

.lightbox {
  position: fixed; inset: 0; background: rgba(20,8,4,0.92); z-index: 200; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner { max-width: 900px; width: 90%; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--cream); font-size: 2rem; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--cream); }
.lightbox-nav.prev { left: 16px; } .lightbox-nav.next { right: 16px; }
.lightbox-nav svg { width: 32px; height: 32px; }

.phone-mock { max-width: 260px; margin: 0 auto; }

.instagram-strip .grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 28px; }

/* ---------- Testimonials ---------- */
.quote-card { text-align: center; max-width: 640px; margin: 0 auto; }
.stars { color: var(--yellow); font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 12px; }
.google-reviews-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--brown);
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 20px;
  text-decoration: none; font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.google-reviews-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.google-reviews-badge .stars { color: var(--yellow); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0; }
.featurable-wrap { max-width: 920px; margin: 0 auto; min-height: 240px; }
.sample-tag {
  display: inline-block; background: var(--cream-alt); border: 1px solid var(--line); color: var(--brown); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 10px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.quote-text { font-size: 1.2rem; font-family: var(--font-display); color: var(--brown); margin-bottom: 14px; }
.quote-attr { font-weight: 700; font-size: 0.9rem; }

/* ---------- FAQ accordion ---------- */
.faq-group { margin-bottom: 40px; }
.faq-group h2 { font-size: 1.3rem; margin-bottom: 18px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--brown); gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item summary .icon::before, .faq-item summary .icon::after {
  content: ''; position: absolute; background: var(--coral); border-radius: 2px; transition: transform 0.25s var(--ease);
}
.faq-item summary .icon::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq-item summary .icon::after { width: 2px; height: 14px; left: 10px; top: 4px; }
.faq-item[open] summary .icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item .faq-answer { padding: 0 22px 20px; font-size: 0.95rem; }
.faq-flag { display: block; color: var(--coral); font-size: 0.78rem; font-style: italic; margin-top: 8px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--brown) 0%, #241F1B 100%); text-align: center; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: var(--peach); max-width: 560px; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; margin-top: 24px; }

/* ---------- Trust chips / requirements ---------- */
.local-seo .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }

/* ---------- Book a tour ---------- */
.tour-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.tour-form { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--brown); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--cream-alt); color: var(--brown);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--coral); outline: none; background: var(--white); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: var(--coral-dark); font-size: 0.8rem; margin-top: 4px; display: none; }
.form-row.invalid input, .form-row.invalid select { border-color: var(--coral-dark); }
.form-row.invalid .form-error { display: block; }
.form-hint { font-size: 0.8rem; color: var(--brown-soft); margin-top: -8px; margin-bottom: 18px; }
.tour-success { display: none; text-align: center; padding: 40px 20px; }
.tour-success.show { display: block; }
.tour-success .icon-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--cream-alt); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.tour-form.hidden { display: none; }
.fallback-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
.tour-checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.tour-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; }
.tour-checklist svg { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }

/* ---------- Tour booking: step calendar flow ---------- */
.tour-steps { display: flex; gap: 8px; margin-bottom: 32px; counter-reset: step; }
.tour-step {
  flex: 1; text-align: center; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--brown-soft); padding-bottom: 12px; border-bottom: 3px solid var(--line); transition: color 0.2s, border-color 0.2s;
}
.tour-step.active, .tour-step.done { color: var(--brown); border-color: var(--coral); }

.tour-step-panel[hidden] { display: none; }

.calendar-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; border: 1px solid var(--line); }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.calendar-head .cal-month-label { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: var(--brown); }
.calendar-head button {
  background: var(--cream-alt); border: none; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--brown); font-size: 1.1rem;
}
.calendar-head button:hover { background: var(--peach); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; text-align: center; }
.calendar-grid .dow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; color: var(--brown-soft); padding-bottom: 8px; text-transform: uppercase; }
.calendar-day {
  aspect-ratio: 1; border: none; background: var(--cream-alt); border-radius: 10px; font-weight: 600; font-size: 0.92rem;
  color: var(--brown); transition: background 0.15s, color 0.15s, transform 0.15s;
}
.calendar-day.cal-empty { background: transparent; pointer-events: none; }
.calendar-day.cal-past, .calendar-day[disabled] { opacity: 0.32; pointer-events: none; text-decoration: line-through; }
.calendar-day.selected { background: var(--coral); color: var(--white); }
.calendar-day:hover:not(.selected):not(.cal-empty):not(.cal-past) { background: var(--peach); transform: translateY(-1px); }
.calendar-note { font-size: 0.82rem; color: var(--brown-soft); margin-top: 18px; text-align: center; }
.calendar-sync-note { font-size: 0.78rem; color: var(--brown-soft); margin-top: 8px; text-align: center; font-style: italic; }
.calendar-sync-note a { color: var(--coral); font-weight: 700; font-style: normal; }
/* .cal-full also gets [disabled], which already applies the crossed-out/dimmed look above. */

.selected-date-banner {
  background: var(--peach); border-radius: var(--radius-sm); padding: 14px 20px; text-align: center;
  font-weight: 700; color: var(--brown); margin-bottom: 22px;
}
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.time-slot {
  padding: 13px 8px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--white);
  font-weight: 600; font-size: 0.9rem; color: var(--brown); transition: all 0.15s;
}
.time-slot:hover { border-color: var(--coral); }
.time-slot.selected { background: var(--coral); color: var(--white); border-color: var(--coral); }
.time-slot.slot-taken, .time-slot[disabled] {
  opacity: 0.35; text-decoration: line-through; pointer-events: none; background: var(--cream-alt);
}

.tour-step-nav { display: flex; justify-content: space-between; margin-top: 26px; gap: 12px; }
.tour-summary-card {
  background: var(--cream-alt); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 22px;
  font-size: 0.9rem; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.tour-summary-card strong { color: var(--brown); }
.tour-summary-card button { background: none; border: none; color: var(--coral); font-weight: 700; font-size: 0.82rem; text-decoration: underline; }
.tour-booking.hidden { display: none; }
.contact-form.hidden { display: none; }
.contact-success { display: none; text-align: center; padding: 40px 20px; }
.contact-success.show { display: block; }

/* ---------- Map / find us ---------- */
.find-us .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.nap-block { display: flex; flex-direction: column; gap: 12px; }
.nap-block li { display: flex; gap: 12px; align-items: flex-start; }
.nap-block svg { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }

/* ---------- Terms ---------- */
.terms-body { max-width: 760px; margin: 0 auto; }
.terms-body h2 { font-size: 1.3rem; margin-top: 2em; }
.terms-body ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.terms-body li { margin-bottom: 0.4em; }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--cream);
  border-top: 1px solid var(--line); padding: 10px 16px; gap: 10px; box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.mobile-cta-bar .btn { flex: 1; }
body.has-mobile-bar { padding-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown); color: var(--cream); padding-block: 64px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.brand-logo-footer { height: 38px; }
.footer-desc { font-size: 0.88rem; color: var(--peach); max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 18px; height: 18px; color: var(--cream); }
.site-footer h4 { color: var(--yellow); font-size: 1rem; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: var(--peach); font-size: 0.92rem; }
.footer-links a:hover { color: var(--cream); }
.footer-nap { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; color: var(--peach); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--peach);
}
.scroll-top { background: rgba(255,255,255,0.1); border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.scroll-top svg { width: 18px; height: 18px; color: var(--cream); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Draft banner (remove before launch) ---------- */
.draft-banner {
  background: var(--brown); color: var(--cream); text-align: center; font-size: 0.85rem; padding: 10px 16px;
}
.draft-banner strong { color: var(--yellow); }

/* ============================================================
   RESPONSIVE — breakpoints: 1200 / 920 / 640
   ============================================================ */
@media (max-width: 1200px) {
  .container { padding: 0 24px; }
}

@media (max-width: 920px) {
  section { padding-block: 60px; }
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .about .container { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip ul { grid-template-columns: repeat(2, 1fr); }
  .beat-strip .container { grid-template-columns: 1fr; gap: 32px; }
  .local-seo .container { grid-template-columns: 1fr; }
  .find-us .container { grid-template-columns: 1fr; }
  .tour-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .masonry { columns: 2 200px; }
  .mobile-cta-bar { display: none; }
  .requirements-strip ul { grid-template-columns: 1fr; }

  /* mobile nav overlay */
  .main-nav.mobile-open {
    display: flex; flex-direction: column; justify-content: center; position: fixed; inset: 0; top: 73px; background: var(--cream);
    padding: 20px 24px; gap: 4px; z-index: 99; overflow-y: auto;
  }
  .main-nav.mobile-open a { font-size: 1.05rem; text-transform: none; letter-spacing: 0; opacity: 1; }
  .main-nav.mobile-open .nav-mobile-ctas { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
  .header-cta { gap: 8px; }
  .tour-btn-circle { width: 44px; height: 44px; font-size: 0.52rem; }
  .brand-logo { height: 34px; }
  .btn.header-book-now { padding: 12px 18px; font-size: 0.85rem; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.4rem; }
  section { padding-block: 48px; }
  .header-merchant { display: none; }
  .hero-video { min-height: 60vh; }
  .hero-photo { min-height: 34vh; }
  .hero-photo .container { padding-left: 22px; padding-right: 22px; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2 140px; }
  .instagram-strip .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .tour-form { padding: 24px; }
  .neko-carousel.multi .slide { flex: 0 0 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.book-a-tour-page .mobile-cta-bar { display: none !important; }
.book-a-tour-page body { padding-bottom: 0; }


/* ---------- Floating back-to-top (added) ---------- */
.back-to-top-fab{position:fixed;right:16px;bottom:16px;z-index:95;width:46px;height:46px;border-radius:50%;border:none;background:var(--brown);color:var(--cream);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(58,51,46,.28);cursor:pointer;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .2s var(--ease),transform .2s var(--ease),visibility .2s;}
.back-to-top-fab.show{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top-fab:hover{background:var(--coral-dark);}
.back-to-top-fab svg{width:20px;height:20px;}


/* ---------- Mobile: room showcases stack with carousel on top (added) ---------- */
@media (max-width: 920px){
  .about{ grid-template-columns: 1fr !important; }
  .about .carousel-wrap{ order: -1 !important; }
}

/* ---------- Mobile: pricing breakdown table fits without scrolling (added) ---------- */
@media (max-width: 640px){
  .rate-table-wrap{ overflow-x: visible !important; }
  .rate-table{ width: 100%; font-size: 0.72rem; table-layout: fixed; }
  .rate-table th, .rate-table td{ padding: 7px 3px; text-align: center; }
  .rate-table th:first-child, .rate-table td:first-child{ text-align: left; font-size: 0.68rem; }
}


/* ---------- Mobile menu: hide Book Now / Book a Tour (already at top of header) ---------- */
/* Hide duplicate CTAs in the open mobile menu; keep Merchant */
.nav-mobile-ctas a[href*="book-now"],
.nav-mobile-ctas a[href*="book-a-tour"]{ display:none !important; }


/* ---------- Mobile menu must sit above the merchant shop UI (cart FAB z-index 9999 etc.) ---------- */
/* menu above merchant shop UI */
.main-nav.mobile-open{ z-index: 100000 !important; }


/* ---------- Mobile: header backdrop-filter traps the fixed menu overlay in the header box; remove on mobile so the dropdown covers the full screen ---------- */
@media (max-width: 920px){
  .site-header{ backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .main-nav.mobile-open{ top: 73px !important; bottom: 0 !important; height: auto !important; background: var(--cream) !important; }
}


/* ---------- Fix the Merchant pill button inside the mobile menu (was inheriting plain-link padding/transparent bottom border) ---------- */
.main-nav.mobile-open .nav-mobile-ctas a.btn{
  padding: 11px 24px !important;
  border: 2px solid var(--brown) !important;
  border-radius: var(--radius-pill) !important;
  min-height: 44px;
  line-height: 1.2;
  align-self: center;
  width: auto;
}


/* ---------- Mobile: room tier cards one-per-row (full width) instead of cramped 2-up ---------- */
@media (max-width: 640px){
  .tier-grid{ grid-template-columns: 1fr !important; }
}

/* ---------- Mobile nav dropdown: smooth open/close animation + nicer visual structure ---------- */
@media (max-width: 920px){
  @keyframes navSlideIn { from{ opacity:0; transform:translateY(-14px); } to{ opacity:1; transform:translateY(0); } }
  @keyframes navSlideOut { from{ opacity:1; transform:translateY(0); } to{ opacity:0; transform:translateY(-14px); } }
  @keyframes navLinkIn { from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:translateY(0); } }

  .main-nav.mobile-open{
    animation: navSlideIn .32s cubic-bezier(.16,.84,.44,1) both;
    box-shadow: 0 18px 30px -14px rgba(58,51,46,0.18);
  }
  .main-nav.mobile-closing{
    display: flex !important;
    animation: navSlideOut .2s ease both;
  }
  .main-nav.mobile-open > *{ opacity: 0; animation: navLinkIn .4s ease both; }
  .main-nav.mobile-open > *:nth-child(1){ animation-delay: .05s; }
  .main-nav.mobile-open > *:nth-child(2){ animation-delay: .09s; }
  .main-nav.mobile-open > *:nth-child(3){ animation-delay: .13s; }
  .main-nav.mobile-open > *:nth-child(4){ animation-delay: .17s; }
  .main-nav.mobile-open > *:nth-child(5){ animation-delay: .21s; }
  .main-nav.mobile-open > *:nth-child(6){ animation-delay: .25s; }
  .main-nav.mobile-open > *:nth-child(7){ animation-delay: .29s; }
  .main-nav.mobile-open > *:nth-child(8){ animation-delay: .33s; }

  .main-nav.mobile-open a{
    width: 100%; text-align: center; padding: 11px 8px !important;
    border-bottom: 1px solid rgba(58,51,46,0.12);
    border-radius: 10px;
    transition: background .18s var(--ease), color .18s var(--ease);
  }
  .main-nav.mobile-open a:last-of-type{ border-bottom: none; }
  .main-nav.mobile-open a:active, .main-nav.mobile-open a:hover{ background: var(--peach); }
  .main-nav.mobile-open a[aria-current="page"]{ color: var(--coral); border-bottom-color: var(--coral); }

  @media (prefers-reduced-motion: reduce){
    .main-nav.mobile-open, .main-nav.mobile-closing, .main-nav.mobile-open > *{ animation: none !important; opacity: 1 !important; transform: none !important; }
  }
}
