/* =====================================================
   LUXORIO CATTERY — Shared Stylesheet
   Ivory / Champagne / Gold palette
   Fonts: Tenor Sans (display) · Lato (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Lato:ital,wght@0,300;0,400;0,700;1,300&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: #FAF8F5;
  color: #2A1F1A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --gold:       #C9A96E;
  --gold-mid:   #B8914A;
  --gold-light: #E5CFA0;
  --gold-pale:  #F5EDD8;
  --ivory:      #FAF8F5;
  --pearl:      #F4EFE6;
  --champagne:  #EAD9C0;
  --beige:      #D6C9B4;
  --text-dark:  #2A1F1A;
  --text-mid:   #6B5544;
  --text-light: #A8937C;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 64px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(250,248,245,.10);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .45s ease, padding .45s ease, box-shadow .45s ease;
}
header.scrolled {
  background: rgba(250,248,245,.94);
  backdrop-filter: blur(28px);
  padding: 10px 64px;
  box-shadow: 0 1px 0 rgba(201,169,110,.15), 0 4px 24px rgba(42,31,26,.06);
}

.logo { text-decoration: none; display: flex; align-items: center; }
.logo img { height: 168px; width: auto; transition: height .3s ease; }
header.scrolled .logo img { height: 144px; }

#nav-desktop { display: flex; align-items: center; gap: 40px; }
#nav-desktop a {
  font-size: 10.5px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-dark); opacity: .75;
  transition: opacity .3s, color .3s;
  position: relative;
}
#nav-desktop a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s ease;
}
#nav-desktop a:hover { opacity: 1; }
#nav-desktop a:hover::after { width: 100%; }
#nav-desktop a.active { opacity: 1; color: var(--text-dark); }
#nav-desktop a.active::after { width: 100%; }

.btn-header {
  font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  border: 1px solid rgba(42,31,26,.28);
  padding: 10px 24px; border-radius: 30px;
  background: rgba(255,255,255,.12);
  transition: all .35s ease;
  white-space: nowrap;
}
.btn-header:hover { background: rgba(201,169,110,.14); border-color: var(--gold); color: var(--gold); }

/* ── Hamburger — refined circle button ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .3s ease, background .3s ease;
}
.hamburger:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,.1);
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--text-dark);
  transform-origin: center;
  transition: width .35s ease, transform .38s cubic-bezier(.76,0,.24,1), opacity .22s ease;
}
.hamburger span:nth-child(1) { width: 16px; }
.hamburger span:nth-child(2) { width: 22px; }
.hamburger span:nth-child(3) { width: 16px; }
/* Transform to × */
.hamburger.open span:nth-child(1) { width: 19px; transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { width: 19px; transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile fullscreen nav ── */
#nav {
  display: flex;
  position: fixed; inset: 0; z-index: 9999;
  flex-direction: column; align-items: center; justify-content: center;
  background: var(--ivory);
  border-top: 2px solid var(--gold);
  opacity: 0; pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .48s cubic-bezier(.76,0,.24,1), transform .48s cubic-bezier(.76,0,.24,1);
}
#nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }

/* Logo inside nav */
.nav-logo-inner {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  display: none; white-space: nowrap;
}
.nav-logo-inner img { height: 96px; width: auto; opacity: .82; }

/* Close button */
.nav-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: none; align-items: center; justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(201,169,110,.38);
  border-radius: 50%;
  background: transparent;
  transition: border-color .3s, background .3s;
}
.nav-close:hover { border-color: var(--gold); background: rgba(201,169,110,.1); }
.nav-close::before, .nav-close::after {
  content: ''; position: absolute;
  width: 16px; height: 1px;
  background: var(--text-dark);
}
.nav-close::before { transform: rotate(45deg); }
.nav-close::after  { transform: rotate(-45deg); }

/* Nav links wrapper */
.nav-links {
  display: flex; flex-direction: column; align-items: center; width: 100%;
}
.nav-links a {
  font-size: 30px; letter-spacing: .14em;
  font-family: 'Tenor Sans', serif;
  color: var(--text-dark);
  padding: 13px 0;
  width: 72%; text-align: center;
  position: relative;
  opacity: 0; transform: translateY(14px);
  transition: opacity .42s ease, transform .42s ease, color .22s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--gold);
  transition: width .38s ease;
}
.nav-links a:hover { color: var(--gold-mid); }
.nav-links a:hover::after { width: 36%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 28%; }
/* Stagger entrance */
#nav.open .nav-links a { opacity: 1; transform: translateY(0); }
#nav.open .nav-links a:nth-child(1) { transition-delay: .08s; }
#nav.open .nav-links a:nth-child(2) { transition-delay: .14s; }
#nav.open .nav-links a:nth-child(3) { transition-delay: .20s; }
#nav.open .nav-links a:nth-child(4) { transition-delay: .26s; }
#nav.open .nav-links a:nth-child(5) { transition-delay: .32s; }

/* Bottom info strip */
.nav-bottom {
  position: absolute; bottom: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  transition: opacity .4s ease;
}
#nav.open .nav-bottom { opacity: 1; transition-delay: .44s; }
.nav-bottom-line {
  width: 28px; height: 1px;
  background: var(--gold); opacity: .5;
}
.nav-bottom span {
  font-family: 'Lato', sans-serif;
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-light);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-block;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 14px 34px; border-radius: 30px;
  background: var(--gold); color: #fff;
  border: none; cursor: pointer;
  transition: all .4s ease;
}
.btn-primary:hover { background: var(--gold-mid); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,169,110,.32); }

.btn-outline {
  display: inline-block;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 14px 34px; border-radius: 30px;
  background: transparent; color: var(--text-dark);
  border: 1px solid rgba(42,31,26,.28); cursor: pointer;
  transition: all .4s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.07); transform: translateY(-2px); }

.btn-outline-gold {
  display: inline-block;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 13px 30px; border-radius: 30px;
  background: transparent; color: var(--gold);
  border: 1px solid rgba(201,169,110,.55); cursor: pointer;
  transition: all .4s ease;
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.3); }

/* =====================================================
   FADE-IN ANIMATIONS
   ===================================================== */
.fi {
  opacity: 0; transform: translateY(22px);
  transition: opacity .85s ease, transform .85s ease;
}
.fi.vis { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: .08s; }
.fi-d2 { transition-delay: .18s; }
.fi-d3 { transition-delay: .28s; }
.fi-d4 { transition-delay: .38s; }
.fi-d5 { transition-delay: .48s; }
.fi-d6 { transition-delay: .58s; }

/* =====================================================
   SECTION COMMONS
   ===================================================== */
.section { padding: 110px 64px; }
.section-pearl { background: var(--pearl); }
.section-champagne { background: var(--champagne); }
.section-dark {
  background-color: var(--text-dark);
  background-image: url('cat-pattern.svg');
  background-size: 320px 320px;
  background-repeat: repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.s-eyebrow {
  display: block; text-align: center;
  font-size: 10px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.s-eyebrow-left {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.s-eyebrow-left::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

.s-title {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(28px, 4vw, 50px); font-weight: 300;
  color: var(--text-dark); text-align: center; line-height: 1.15;
  margin-bottom: 60px;
}
.s-title-left {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 300;
  color: var(--text-dark); line-height: 1.2;
  margin-bottom: 22px;
}
.s-title em { font-style: italic; color: var(--gold); }

.s-lead {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: var(--text-mid); max-width: 580px; margin: 0 auto;
  text-align: center;
}
.s-lead-left {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: var(--text-mid); max-width: 480px;
}

.gem-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 60px;
}
.gem-divider::before, .gem-divider::after {
  content: ''; display: block; width: 64px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light));
}
.gem-divider::after { background: linear-gradient(to left, transparent, var(--gold-light)); }

.gem-divider-left {
  display: flex; align-items: center; gap: 10px; margin: 18px 0 26px;
}
.gem-divider-left::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold-light);
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  min-height: 38vh; padding: 230px 64px 80px;
  background: linear-gradient(160deg, var(--pearl) 0%, var(--champagne) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.15);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; right: 200px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.1);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 600px; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background-color: var(--text-dark);
  background-image: url('cat-pattern.svg');
  background-size: 320px 320px;
  background-repeat: repeat;
  color: rgba(255,255,255,.62);
  padding: 72px 64px 38px;
  position: relative; overflow: hidden;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px;
  margin-bottom: 56px;
}
.footer-logo img { height: 52px; width: auto; opacity: .85; margin-bottom: 14px; }
.footer-tagline {
  font-size: 12.5px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.38); max-width: 260px;
}
.footer-col-title {
  font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.5);
  transition: color .3s;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.28);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 13px;
  transition: all .3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 10.5px; color: rgba(255,255,255,.28); letter-spacing: .04em; }
.footer-tica {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; color: var(--gold); letter-spacing: .1em;
}
.footer-tica .tica-logo-img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
/* TICA logo in light/ivory sections */
.tica-logo-light {
  height: 44px; width: auto;
  filter: brightness(0);
  opacity: 0.32;
}

/* =====================================================
   GALLERY (horizontal scroll)
   ===================================================== */
.gallery-section { background: var(--ivory); padding: 110px 0; }
.gallery-heading { padding: 0 64px; margin-bottom: 52px; }
.gallery-rim { position: relative; overflow: hidden; }
.gallery-rim::before, .gallery-rim::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.gallery-rim::before { left: 0; background: linear-gradient(to right, var(--ivory), transparent); }
.gallery-rim::after  { right: 0; background: linear-gradient(to left,  var(--ivory), transparent); }
.gallery-track {
  display: flex; gap: 14px; padding: 0 90px;
  overflow-x: auto; scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.gallery-track::-webkit-scrollbar { display: none; }
.g-item {
  flex-shrink: 0; border-radius: 4px; overflow: hidden;
  scroll-snap-align: start;
  transition: transform .5s ease; position: relative;
}
.g-item:hover { transform: scale(1.025); }
.g-item:nth-child(odd)  { width: 270px; height: 360px; }
.g-item:nth-child(even) { width: 210px; height: 275px; margin-top: 44px; }
.g-fill { width: 100%; height: 100%; position: relative; overflow: hidden; }
.g-fill img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-nav { display: flex; justify-content: center; gap: 10px; margin-top: 40px; padding: 0 64px; }
.g-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(42,31,26,.18); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-mid); transition: all .3s ease;
}
.g-btn:hover { border-color: var(--gold); color: var(--gold); }

/* =====================================================
   CAT PEEK WIDGET
   ===================================================== */
/* ears.png is 1024×1536 — at width 300px → height ~450px.
   Container 300×190px clips to show ears + brow from the top. */
.cat-peek {
  position: fixed; bottom: 0; right: 28px;
  z-index: 450; cursor: pointer;
  width: 300px; height: 190px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.cat-peek img {
  width: 300px; height: auto;
  display: block; position: absolute; top: 0; left: 0;
  animation: catBob 3.6s ease-in-out infinite;
  transition: transform .52s cubic-bezier(.76,0,.24,1);
  filter: drop-shadow(0 -10px 28px rgba(42,31,26,.18));
  transform-origin: bottom center;
}
.cat-peek:hover img, .cat-peek:focus img {
  animation: none;
  transform: translateY(-64px);
}
@keyframes catBob {
  0%,100% { transform: translateY(0); }
  45%,55% { transform: translateY(-11px); }
}
/* Tooltip label */
.cat-peek-label {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(0);
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
  font-size: 8.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  transition: opacity .3s ease .1s;
  pointer-events: none;
}
.cat-peek:hover .cat-peek-label { opacity: 1; }

/* =====================================================
   WAITLIST POPUP
   ===================================================== */
.wl-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(42,31,26,.48); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.wl-overlay.open { opacity: 1; pointer-events: all; }
.wl-sheet {
  position: relative; z-index: 801;
  background: var(--ivory); border-radius: 20px;
  padding: 56px 52px 50px;
  width: 100%; max-width: 500px;
  transform: translateY(28px) scale(.96); opacity: 0;
  transition: transform .48s cubic-bezier(.76,0,.24,1), opacity .48s ease;
  box-shadow: 0 32px 80px rgba(42,31,26,.22), 0 2px 0 rgba(201,169,110,.28) inset;
  /* top gold inset glow */
}
.wl-overlay.open .wl-sheet { transform: translateY(0) scale(1); opacity: 1; }

/* Gold top line */
.wl-sheet::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border-radius: 0 0 2px 2px;
}

/* Close button */
.wl-close {
  position: absolute; top: 18px; right: 20px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(201,169,110,.32); border-radius: 50%;
  background: transparent;
  transition: border-color .25s, background .25s;
}
.wl-close:hover { border-color: var(--gold); background: rgba(201,169,110,.08); }
.wl-close::before, .wl-close::after {
  content: ''; position: absolute; width: 14px; height: 1px; background: var(--text-mid);
}
.wl-close::before { transform: rotate(45deg); }
.wl-close::after  { transform: rotate(-45deg); }

/* Paw ornament */
.wl-paw {
  display: flex; justify-content: center; margin-bottom: 18px;
}
.wl-eyebrow {
  font-size: 9px; letter-spacing: .48em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; text-align: center; display: block;
}
.wl-title {
  font-family: 'Tenor Sans', serif; font-size: 28px; font-weight: 300;
  color: var(--text-dark); margin-bottom: 6px; letter-spacing: .02em;
  text-align: center; line-height: 1.2;
}
.wl-title em { font-style: italic; color: var(--gold-mid); }
.wl-sub {
  font-size: 13px; color: var(--text-mid); margin-bottom: 32px;
  line-height: 1.65; text-align: center;
}
.wl-divider {
  width: 36px; height: 1px; background: var(--gold-light);
  margin: 0 auto 28px; opacity: .7;
}

/* Field groups */
.wl-group { margin-bottom: 20px; }
.wl-label {
  display: block; font-size: 8.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 7px;
}
.wl-field {
  width: 100%; background: none; border: none;
  border-bottom: 1px solid rgba(42,31,26,.2);
  padding: 10px 0; font-family: 'Lato', sans-serif;
  font-size: 14px; color: var(--text-dark);
  outline: none; display: block;
  transition: border-color .25s;
}
.wl-field::placeholder { color: rgba(107,85,68,.38); font-size: 13px; }
.wl-field:focus { border-color: var(--gold); }
.wl-submit {
  width: 100%; padding: 16px;
  background: var(--gold); color: #fff; border: none; border-radius: 30px;
  cursor: pointer; font-family: 'Lato', sans-serif;
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  margin-top: 10px;
  transition: background .35s, transform .35s, box-shadow .35s;
}
.wl-submit:hover {
  background: var(--gold-mid); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,.36);
}

/* Success state */
.wl-success {
  display: none; text-align: center; padding: 24px 0 8px;
}
.wl-success-icon {
  font-size: 36px; margin-bottom: 14px; display: block;
}
.wl-success-title {
  font-family: 'Tenor Sans', serif; font-size: 22px; color: var(--text-dark);
  margin-bottom: 8px;
}
.wl-success-sub {
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  header { padding: 20px 32px; }
  header.scrolled { padding: 14px 32px; }
  .section { padding: 90px 32px; }
  .page-hero { padding: 220px 32px 70px; }
  footer { padding: 64px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-heading { padding: 0 32px; }
  .gallery-nav { padding: 0 32px; }
}
@media (max-width: 768px) {
  header { padding: 12px 22px; }
  header.scrolled { padding: 10px 22px; }
  #nav-desktop { display: none; }
  .hamburger { display: flex; z-index: 500; }
  .btn-header { display: none; }
  .nav-close { display: flex; }
  .nav-logo-inner { display: block; }
  /* Logo — half desktop size on mobile */
  .logo img { height: 84px !important; }

  /* Sections — reduced top offset now header is smaller */
  .section { padding: 64px 22px; }
  .page-hero { padding: 92px 22px 48px; min-height: auto; align-items: flex-start; flex-direction: column; }
  .page-hero-content { max-width: 100%; }
  .page-hero-title { font-size: clamp(32px,9vw,52px) !important; }

  /* Section text */
  .s-title { font-size: clamp(26px,7.5vw,42px); margin-bottom: 40px; }
  .s-lead { font-size: 14px; }
  .s-lead-left { font-size: 13.5px; }
  .s-title-left { font-size: clamp(22px,6.5vw,36px); }
  .gem-divider { margin-bottom: 40px; }

  /* Footer */
  footer { padding: 52px 22px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Gallery */
  .gallery-section { padding: 64px 0; }
  .gallery-heading { padding: 0 22px; }
  .gallery-nav { padding: 0 22px; }
  .g-item:nth-child(odd)  { width: 200px; height: 268px; }
  .g-item:nth-child(even) { width: 158px; height: 208px; margin-top: 32px; }

  /* Photo-hero: push image below fixed header on mobile */
  .ph-img { margin-top: 110px; }

  /* Cat peek widget — right-aligned, larger on mobile */
  .cat-peek {
    width: min(300px, 82vw); height: 200px;
    right: 0; left: auto; transform: none;
    bottom: 0;
  }
  .cat-peek img { width: min(300px, 82vw); }

  /* Waitlist — bottom sheet on mobile */
  .wl-overlay {
    padding: 0; align-items: flex-end;
  }
  .wl-sheet {
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    padding: 44px 28px 36px;
    transform: translateY(100%); opacity: 1;
    transition: transform .48s cubic-bezier(.76,0,.24,1);
  }
  .wl-overlay.open .wl-sheet { transform: translateY(0); opacity: 1; }
  .wl-title { font-size: 24px; }
  .wl-sub { margin-bottom: 24px; }
}
@media (max-width: 480px) {
  .section { padding: 52px 18px; }
  .page-hero { padding: 86px 18px 40px; min-height: auto; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .wl-sheet { padding: 36px 22px 40px; }
  .wl-title { font-size: 22px; }
  .gem-divider::before, .gem-divider::after { width: 36px; }
  /* Cat peek — small mobile */
  .cat-peek {
    width: min(270px, 75vw); height: 180px;
    right: 0; left: auto; transform: none;
    bottom: 0;
  }
  .cat-peek img { width: min(270px, 75vw); }
}
