/* =========================================================================
   Lap Leopard Bengals - design system
   Singita-inspired luxury editorial. Vanilla CSS, no dependencies.
   ========================================================================= */

:root {
  color-scheme: light only;
  --bg: #faf8f5;
  --surface: #ffffff;
  --tint: #f3efe9;
  --text: #1a1814;
  --muted: #6b6560;
  --gold: #F06C18;
  --gold-dark: #B8480C;
  --line: #e8e4df;
  --dark: #1a1814;
  --dark-2: #25211b;
  --scrim: rgba(18, 15, 10, 0.52);
  --available: #3a6b4a;
  --reserved: #8b4513;
  --sold: #6b6560;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --sp: 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------- reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0; color: var(--text); }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.brand-icon svg, .stars svg { fill: currentColor; stroke: none; }
.feature-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ----------------------------- a11y ----------------------------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--dark); color: #fff; padding: 12px 18px; font-size: 14px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ----------------------------- layout ----------------------------- */
main { display: block; }
.section { padding: clamp(56px, 9vw, 120px) var(--gut); max-width: var(--maxw); margin: 0 auto; }
.section-tint { background: var(--tint); max-width: none; }
.section-tint > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-dark { background: var(--dark); color: #efe9e0; max-width: none; }
.section-dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-dark h2 { color: #fff; }
.eyebrow {
  display: inline-block; font-family: var(--sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px;
}
.section-dark .eyebrow { color: var(--gold); }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 18px; }
.section-foot { text-align: center; margin-top: clamp(36px, 5vw, 56px); }

/* ----------------------------- buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid transparent; border-radius: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn .arrow { display: inline-flex; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--gold-dark); color: #fff; border-color: var(--gold-dark); }
.btn-primary:hover { background: var(--dark); border-color: var(--dark); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }
.section-dark .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.section-dark .btn-outline:hover { background: #fff; color: var(--dark); }
.hero-home .btn-outline { background: rgba(20,16,12,0.28); color: #fff; border-color: rgba(255,255,255,0.8); }
.hero-home .btn-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-inner .cta-row, .cta-band-inner .cta-row, .page-hero .cta-row { justify-content: flex-start; }
.cta-band-inner .cta-row { justify-content: center; }
.link-btn { background: none; border: none; color: var(--gold-dark); font-weight: 700; text-decoration: underline; padding: 0; font-size: inherit; }

/* ----------------------------- header / nav ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(26, 24, 20, 0.07); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px var(--gut);
  display: flex; align-items: center; gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { display: block; height: 42px; width: auto; }
.nav-drawer { display: contents; }
.primary-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 24px; }
.nav-list > li > a {
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: var(--text);
  padding: 8px 0; position: relative; display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.nav-list > li > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold-dark); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-list > li > a:hover::after, .nav-list > li > a[aria-current="page"]::after { transform: scaleX(1); }
.caret { font-size: 14px; transition: transform 0.3s var(--ease); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 220px; background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(26, 24, 20, 0.12); padding: 10px;
  opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown li a { display: block; padding: 11px 14px; font-size: 14px; font-weight: 400; color: var(--text); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.dropdown li a:hover { background: var(--tint); color: var(--gold-dark); }
.nav-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--text); }
.nav-phone-icon { color: var(--gold-dark); font-size: 16px; }
.nav-phone:hover { color: var(--gold-dark); }
.nav-cta { padding: 12px 22px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 1px solid var(--line);
  color: var(--text); align-items: center; justify-content: center; font-size: 22px; margin-left: auto;
}
.nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: inline-flex; }

/* ----------------------------- hero ----------------------------- */
.hero-home {
  position: relative; isolation: isolate; min-height: min(92vh, 880px); display: flex; align-items: center;
  padding: 120px var(--gut) 140px; overflow: hidden; color: #fff;
  /* Poster paints instantly as the section background (same preloaded LCP file): the page
     loads looking final, never a flash of the bare scrim. background-color is the warm-dark
     hero tone for the sub-decode instant. The clip fades in over this identical first frame. */
  background-color: #17120c;
  background-image: url(images/site/hero-poster-desktop-v2.jpg);
  background-size: cover; background-position: center;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; opacity: 0; transition: opacity .7s var(--ease); }
.hero-video.is-ready { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,15,10,0.42) 0%, rgba(18,15,10,0.40) 45%, rgba(18,15,10,0.64) 100%);
}
/* Home video hero rides bright, airy footage: a layered scrim darkens the text
   zones (top + left) while keeping the cats bright (bottom + right). Tuned + AA
   contrast-verified against multiple video frames, not just the poster. */
.hero-home .hero-scrim {
  background:
    linear-gradient(180deg, rgba(18,15,10,0.50) 0%, rgba(18,15,10,0.38) 28%, rgba(18,15,10,0.36) 55%, rgba(18,15,10,0.44) 72%, rgba(18,15,10,0.56) 100%),
    linear-gradient(90deg, rgba(18,15,10,0.46) 0%, rgba(18,15,10,0.34) 45%, rgba(18,15,10,0.10) 78%, rgba(18,15,10,0) 100%);
}
.hero-inner { max-width: 880px; margin: 0 auto; width: 100%; }
.hero-home .eyebrow { color: #f0e2c4; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero-home h1 { font-size: clamp(34px, 6vw, 68px); font-weight: 600; letter-spacing: -0.01em; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 2px 22px rgba(0,0,0,0.35); }
.hero-lede { font-size: clamp(17px, 2.2vw, 21px); max-width: 620px; margin: 22px 0 0; color: #f1ece4; }
.hero-home .hero-lede { text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
/* Mobile loads the portrait crop with the text centered in the bright mid-band, so
   the desktop left-edge scrim does nothing here. Swap to a vertical scrim that holds
   dark across the whole text band (top two-thirds), then releases so the cats stay
   bright at the bottom. AA contrast-verified on the real mobile video frames. */
@media (max-width: 768px) {
  .hero-home { background-image: url(images/site/hero-poster-mobile-v2.jpg); }
  .hero-home .hero-scrim {
    background: linear-gradient(180deg,
      rgba(18,15,10,0.66) 0%,
      rgba(18,15,10,0.60) 30%,
      rgba(18,15,10,0.58) 55%,
      rgba(18,15,10,0.56) 66%,
      rgba(18,15,10,0.40) 74%,
      rgba(18,15,10,0.20) 88%,
      rgba(18,15,10,0.08) 100%);
  }
}
.hero-scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.7); border-radius: 14px; }
.hero-scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

.page-hero { background: var(--dark); color: #fff; padding: clamp(70px, 11vw, 150px) var(--gut) clamp(50px, 8vw, 100px); text-align: center; }
.page-hero-inner { max-width: 820px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(32px, 5.5vw, 58px); color: #fff; }
.page-hero p { color: #d9d2c8; font-size: 18px; margin-top: 18px; }

/* ----------------------------- split ----------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split-media img { display: block; width: 100%; height: auto; max-height: 72vh; object-fit: contain; }
.split-body h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 18px; }
.split-body p { color: var(--muted); }
.section-dark .split-body p { color: #cfc7bb; }
.cred-list { margin-top: 22px; display: grid; gap: 12px; }
.cred-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; }
.cred-list svg { color: var(--gold-dark); font-size: 18px; flex-shrink: 0; }

/* ----------------------------- kitten cards ----------------------------- */
.kitten-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: clamp(22px, 3vw, 36px); }
.kitten-card { display: block; background: var(--surface); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.kitten-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(26,24,20,0.13); border-color: #ddd5c9; }
.kitten-card-media { display: grid; grid-template-columns: 2fr 1fr; gap: 4px; aspect-ratio: 3 / 2; overflow: hidden; }
.kc-main { overflow: hidden; }
.kc-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.kitten-card:hover .kc-main img { transform: scale(1.05); }
.kc-side { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.kc-thumb { position: relative; overflow: hidden; background: var(--tint); }
.kc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.kitten-card:hover .kc-thumb img { transform: scale(1.06); }
.kc-video .kc-play {
  position: absolute; inset: 0; margin: auto; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: rgba(18,15,10,0.5); border-radius: 50%; font-size: 18px;
}
.kc-video::after { content: ""; position: absolute; inset: 0; background: rgba(18,15,10,0.12); }
.kc-cta-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: var(--gold-dark); color: #fff; text-align: center; font-family: var(--serif);
  font-size: 16px; line-height: 1.15; padding: 8px;
}
.kc-cta-arrow { font-size: 18px; }
.kitten-card-body { padding: 20px 22px 24px; }
.kc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.kc-head h3 { font-size: 24px; }
.kc-price { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--gold-dark); white-space: nowrap; }
.kc-meta { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 6px 0 10px; }
.kc-tagline { color: var(--muted); font-size: 15px; margin-bottom: 16px; min-height: 2.6em; }
.kc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); }
.kc-link .arrow { transition: transform 0.3s var(--ease); }
.kitten-card:hover .kc-link .arrow { transform: translateX(5px); }

/* ----------------------------- badges / temperament ----------------------------- */
.status-badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; color: #fff; }
.status-available { background: var(--available); }
.status-reserved { background: var(--reserved); }
.status-sold { background: var(--sold); }
.temperament { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 4px; }
.temperament li { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dark); border: 1px solid var(--gold); padding: 6px 12px; }

/* ----------------------------- features ----------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(20px, 3vw, 36px); }
.feature { text-align: left; }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--tint); color: var(--gold-dark); font-size: 24px; margin-bottom: 18px; }
.section-dark .feature-icon { background: rgba(200,169,106,0.16); color: var(--gold); }
.feature h3 { font-size: 21px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }
.section-dark .feature p { color: #cfc7bb; }

/* ----------------------------- quotes / testimonials ----------------------------- */
.quote-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.quote, .testimonial-card { background: var(--surface); border: 1px solid var(--line); padding: 32px; margin: 0; }
.stars { display: flex; gap: 3px; color: var(--gold); font-size: 17px; margin-bottom: 16px; }
.quote blockquote, .testimonial-card blockquote { margin: 0 0 16px; font-family: var(--serif); font-size: 19px; font-style: italic; line-height: 1.5; color: var(--text); }
.quote figcaption, .testimonial-card figcaption { font-weight: 700; font-size: 14px; letter-spacing: 0.04em; color: var(--gold-dark); }
.ftc-disclaimer { margin-top: 36px; text-align: center; font-size: 13px; color: var(--muted); max-width: 720px; margin-left: auto; margin-right: auto; }

/* ----------------------------- cta band ----------------------------- */
.cta-band { text-align: center; }
.cta-band-inner { max-width: 720px; margin: 0 auto; }
.cta-band-inner h2 { font-size: clamp(28px, 4vw, 44px); }
.cta-band-inner p { color: var(--muted); margin-top: 14px; font-size: 18px; }

/* ----------------------------- catalog ----------------------------- */
.catalog { padding-top: clamp(40px, 6vw, 72px); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.filter-group { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.chip { background: transparent; border: 1px solid var(--line); color: var(--text); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 9px 18px; border-radius: 0; transition: all 0.25s var(--ease); }
.chip:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.chip.is-active { background: var(--dark); border-color: var(--dark); color: #fff; }
.catalog-count { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 26px 0 32px; }
.kitten-cell { display: block; }
.catalog-empty { text-align: center; color: var(--muted); font-size: 18px; padding: 40px 0; }

/* ----------------------------- breadcrumb ----------------------------- */
.breadcrumb { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--gut) 0; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb svg { font-size: 14px; transform: rotate(-90deg); opacity: 0.5; }
.breadcrumb [aria-current] { color: var(--text); font-weight: 700; }

/* ----------------------------- detail ----------------------------- */
.detail { max-width: var(--maxw); margin: 0 auto; padding: clamp(24px, 4vw, 44px) var(--gut) clamp(40px, 6vw, 72px); }
.detail-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.gallery-stage { position: relative; margin: 0; overflow: hidden; background: var(--tint); }
.gallery-stage img { display: block; width: 100%; height: auto; max-height: 80vh; object-fit: contain; }
.gallery-expand { position: absolute; right: 14px; bottom: 14px; background: rgba(18,15,10,0.72); color: #fff; border: none; padding: 11px 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.25s var(--ease); }
.gallery-expand:hover { background: var(--gold-dark); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.gallery-thumb { width: 84px; height: 64px; padding: 0; border: 1px solid var(--line); background: none; overflow: hidden; transition: border-color 0.25s var(--ease); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-active { border-color: var(--gold-dark); }
.gallery-thumb:hover { border-color: var(--gold); }

.detail-videos { margin-top: clamp(28px, 4vw, 44px); }
.detail-sub { font-size: 22px; margin-bottom: 16px; }
.video-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.video-card { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; border: none; padding: 0; width: 100%; display: block; cursor: pointer; font: inherit; color: inherit; text-align: left; -webkit-appearance: none; appearance: none; }
.video-poster { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.video-card:hover .video-poster { transform: scale(1.05); }
.video-scrim { position: absolute; inset: 0; background: rgba(18,15,10,0.28); transition: background 0.3s var(--ease); }
.video-card:hover .video-scrim { background: rgba(18,15,10,0.12); }
.video-play { position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; display: flex; align-items: center; justify-content: center; background: rgba(200,169,106,0.92); color: #fff; border-radius: 50%; font-size: 26px; transition: transform 0.3s var(--ease); }
.video-card:hover .video-play { transform: scale(1.08); }
.video-hint { position: absolute; left: 12px; bottom: 12px; background: rgba(18,15,10,0.7); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 11px; }
.video-card video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; opacity: 0; transition: opacity 0.25s var(--ease); }
.video-card.is-playing .video-poster, .video-card.is-playing .video-scrim, .video-card.is-playing .video-play, .video-card.is-playing .video-hint { opacity: 0; visibility: hidden; }
.video-card.is-playing video { opacity: 1; }

/* In-page video lightbox for the self-hosted clips (full controls + sound). Mirrors the photo lightbox. */
.video-lightbox { position: fixed; inset: 0; z-index: 320; background: rgba(12,10,7,0.94); display: flex; align-items: center; justify-content: center; padding: 4vw; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease); }
.video-lightbox.is-open { opacity: 1; visibility: visible; }
.video-lightbox-media { max-width: min(100%, 1100px); max-height: 86vh; width: auto; height: auto; background: #000; }
.video-lightbox-close { position: absolute; top: 4vw; right: 4vw; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; transition: background 0.25s var(--ease); }
.video-lightbox-close:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* buybox */
.buybox { position: sticky; top: 96px; }
.buybox-inner { background: var(--surface); border: 1px solid var(--line); padding: clamp(24px, 3vw, 34px); }
.buybox-status { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.buybox-litter { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.buybox-name { font-size: clamp(30px, 4vw, 42px); }
.buybox-sub { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin: 8px 0 16px; }
.buybox-price { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--gold-dark); margin: 0 0 8px; }
.buybox-alteration { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; margin: 0 0 20px; }
.buybox-alteration svg { color: var(--available); font-size: 18px; }
.buybox .temperament { margin-bottom: 24px; }
.buybox-cta { display: grid; gap: 12px; }
.buybox-phone { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 16px; font-weight: 700; font-size: 15px; color: var(--text); }
.buybox-phone svg { color: var(--gold-dark); }
.buybox-phone:hover { color: var(--gold-dark); }
.buybox-included { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.buybox-included li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.buybox-included svg { color: var(--gold-dark); font-size: 16px; flex-shrink: 0; margin-top: 3px; }

/* detail about */
.detail-about { padding-top: 0; }
.detail-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.detail-col-main h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 14px; }
.detail-tagline { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--gold-dark); margin-bottom: 18px; }
.detail-col-main p { color: var(--muted); }
.detail-records-head { margin-top: 44px; }
.records { margin: 22px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.record { display: grid; grid-template-columns: 200px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.record dt { font-weight: 700; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); }
.record dd { margin: 0; color: var(--muted); }
.records-note { margin-top: 18px; font-size: 14px; color: var(--muted); font-style: italic; }
.side-specs { background: var(--tint); padding: 28px; position: sticky; top: 96px; }
.side-specs h2 { font-size: 20px; margin-bottom: 16px; }
.side-specs dl { display: grid; gap: 0; }
.side-specs dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.side-specs dl > div:last-child { border-bottom: none; }
.side-specs dt { font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.side-specs dd { margin: 0; text-align: right; font-weight: 700; font-size: 14px; }

/* ----------------------------- steps ----------------------------- */
.steps { max-width: 820px; margin: 0 auto; display: grid; gap: 4px; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; }
.step h3 { font-size: 22px; margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; }

/* ----------------------------- info cards ----------------------------- */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.info-card { background: var(--surface); border: 1px solid var(--line); padding: 28px; }
.info-card h3 { font-size: 19px; margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* credentials / licensing */
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.credential-card { background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.credential-media { margin: 0; padding: 16px; background: #fff; border-bottom: 1px solid var(--line); }
.credential-media img { display: block; width: 100%; height: auto; }
.credential-body { padding: 24px 26px 28px; }
.credential-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }
.credential-body h3 { font-size: 22px; line-height: 1.2; margin-bottom: 6px; }
.credential-type { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.credential-meta { display: flex; flex-wrap: wrap; gap: 14px 36px; margin: 0; }
.credential-meta div { display: flex; flex-direction: column; }
.credential-meta dt { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.credential-meta dd { margin: 3px 0 0; font-size: 15px; font-weight: 700; color: var(--text); }
.credential-badges { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 0; margin: clamp(30px, 4vw, 46px) auto 0; max-width: 860px; }
.credential-badges li { border: 1px solid var(--line); border-left: 3px solid var(--gold-dark); background: var(--surface); padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--text); }
.credential-note { margin-top: 26px; font-size: 14px; }

/* accreditation badges (home trust strip + about page) */
.cert-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 24px); padding: 0; margin: 0 auto; max-width: 980px; }
.cert-card { display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--line); padding: clamp(20px, 2.6vw, 30px); min-height: 150px; }
.cert-logo { width: auto; max-width: 100%; height: auto; max-height: 92px; object-fit: contain; }
.credential-accreditations { margin-top: clamp(34px, 4.5vw, 50px); }
.credential-subhead { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 22px; }
@media (max-width: 760px) { .cert-grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; } }

/* FAQ accordion (buying process) -- native <details>, no JS, CSP-safe */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 2px; font-family: var(--serif); font-size: clamp(17px, 2vw, 20px); font-weight: 600; color: var(--text); transition: color 0.15s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; font-family: var(--sans); font-size: 26px; font-weight: 300; line-height: 1; color: var(--gold-dark); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; }
.faq-answer { padding: 0 2px 24px; max-width: 72ch; }
.faq-answer p { margin: 0; color: var(--muted); line-height: 1.75; }

/* ----------------------------- pricing ----------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1080px; margin: 0 auto; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); padding: 36px 30px; display: flex; flex-direction: column; }
.price-card.is-featured { border-color: var(--gold-dark); border-width: 2px; box-shadow: 0 22px 50px rgba(139,105,20,0.12); }
.price-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-dark); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; }
.price-name { font-size: 26px; }
.price-pick { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin: 6px 0 16px; }
.price-amount { font-family: var(--serif); font-size: 46px; font-weight: 700; color: var(--text); margin: 0; }
.price-deposit { font-size: 14px; color: var(--muted); margin: 6px 0 22px; }
.price-points { display: grid; gap: 12px; margin: 0 0 22px; }
.price-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.price-points svg { color: var(--gold-dark); font-size: 17px; flex-shrink: 0; margin-top: 4px; }
.price-reg { font-size: 13px; color: var(--muted); font-style: italic; margin: 0 0 22px; }
.price-card .btn { margin-top: auto; }
.price-included { max-width: 820px; margin: clamp(40px, 6vw, 64px) auto 0; text-align: center; }
.price-included h2 { font-size: 26px; margin-bottom: 22px; }
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; text-align: left; }
.included-grid li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--muted); }
.included-grid svg { color: var(--gold-dark); font-size: 17px; flex-shrink: 0; margin-top: 4px; }

/* ----------------------------- care ----------------------------- */
.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.care-card { background: var(--surface); border: 1px solid var(--line); padding: 30px; }
.care-card h2 { font-size: 22px; margin-bottom: 16px; color: var(--gold-dark); }
.care-card ul { display: grid; gap: 12px; }
.care-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--muted); }
.care-card svg { color: var(--gold-dark); font-size: 16px; flex-shrink: 0; margin-top: 4px; }

/* ----------------------------- prose ----------------------------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: clamp(22px, 3vw, 30px); margin: 36px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose ul { display: grid; gap: 10px; margin: 0 0 1.1em; }
.prose ul li { display: flex; gap: 10px; padding-left: 18px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; background: var(--gold-dark); border-radius: 50%; }
.prose a { color: var(--gold-dark); text-decoration: underline; }
.prose-note { max-width: 780px; margin: 0 auto; color: var(--muted); font-style: italic; text-align: center; }

/* ----------------------------- colors ----------------------------- */
.color-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.color-card { background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.color-card-media { overflow: hidden; aspect-ratio: 1 / 1; }
.color-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.color-card:hover .color-card-media img { transform: scale(1.05); }
.color-card-body { padding: 22px 24px 26px; }
.color-card-body h3 { font-size: 22px; margin-bottom: 8px; }
.color-card-body p { color: var(--muted); font-size: 15px; margin: 0; }

/* ----------------------------- parents ----------------------------- */
.parent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(22px, 3vw, 32px); }
.parent-card { background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.parent-media { overflow: hidden; aspect-ratio: 4 / 3; background: var(--dark); }
.parent-media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.55s var(--ease); }
.parent-card:hover .parent-media img { transform: scale(1.05); }
.parent-body { padding: 24px 26px 28px; }
.parent-body h3 { font-size: 24px; }
.parent-color { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin: 6px 0 14px; }
.parent-body p { color: var(--muted); font-size: 15px; margin: 0; }

/* ----------------------------- contact ----------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); }
.field input, .field textarea { font-family: var(--sans); font-size: 16px; padding: 13px 15px; border: 1px solid var(--line); background: var(--surface); color: var(--text); border-radius: 0; transition: border-color 0.25s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-dark); }
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 14px; margin: 0; min-height: 1.2em; }
.form-note.is-error { color: var(--reserved); font-weight: 700; }
.form-note.is-ok { color: var(--available); font-weight: 700; }
.form-fineprint { font-size: 12px; color: var(--muted); margin: 0; }
/* Lead capture: per-field validation, sending state, success panel (Phase 2) */
/* .contact-form sets display:grid, which beats the [hidden] UA default; make
   the hidden attribute win so JS can swap the form for the success panel. */
.contact-form[hidden] { display: none; }
.field-error { font-size: 13px; font-weight: 700; color: var(--reserved); line-height: 1.4; }
.field-error:empty { display: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--reserved); }
.btn:disabled { opacity: 0.65; cursor: default; }
.btn.is-sending { opacity: 0.8; cursor: progress; }
.form-success { border: 1px solid var(--line); background: var(--surface); padding: clamp(26px, 4vw, 38px); }
.form-success-icon { color: var(--gold-dark); margin-bottom: 14px; }
.form-success-icon svg { width: 42px; height: 42px; }
.form-success h2 { font-size: clamp(22px, 3vw, 27px); margin: 0 0 12px; }
.form-success > p { color: var(--muted); line-height: 1.75; margin: 0 0 22px; }
.form-success-next { background: var(--tint); border-left: 3px solid var(--gold-dark); padding: 18px 20px; margin: 0 0 22px; }
.form-success-next h3 { font-size: 17px; margin: 0 0 8px; }
.form-success-next p { color: var(--text); line-height: 1.7; margin: 0; }
.form-success-contact { color: var(--muted); line-height: 1.7; margin: 0; }
.form-success-contact a { color: var(--gold-dark); font-weight: 600; }
.contact-side h2 { font-size: 24px; margin-bottom: 18px; }
.contact-line { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.contact-line svg { color: var(--gold-dark); }
.contact-line a:hover { color: var(--gold-dark); }
.contact-note { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-note h3 { font-size: 18px; margin-bottom: 8px; }
.contact-note p { color: var(--muted); font-size: 15px; margin: 0; }

/* ----------------------------- blog ----------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: var(--surface); border: 1px solid var(--line); padding: 30px; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(26,24,20,0.1); }
.blog-tag { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); border: 1px solid var(--gold); padding: 5px 11px; margin-bottom: 16px; }
.blog-card h2 { font-size: 22px; margin-bottom: 10px; }
.blog-card p { color: var(--muted); font-size: 15px; flex-grow: 1; }

/* ----------------------------- footer ----------------------------- */
.site-footer { background: var(--dark); color: #cfc7bb; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 7vw, 80px) var(--gut) clamp(32px, 4vw, 48px); display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer-logo { display: block; height: 50px; width: auto; margin-bottom: 18px; }
.footer-name { font-family: var(--serif); font-size: 22px; color: #fff; margin: 0 0 12px; }
.footer-social { margin: 16px 0 0; }
.footer-social a { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); font-weight: 700; font-size: 14px; }
.footer-social a:hover { color: #fff; }
.footer-social-icon { display: inline-flex; font-size: 19px; }
.footer-brand p { font-size: 14px; color: #b6ada0; }
.footer-contact { margin: 4px 0; }
.footer-contact a { color: var(--gold); font-weight: 700; }
.footer-contact a:hover { color: #fff; }
.footer-col h2 { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-family: var(--sans); }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: #cfc7bb; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--gut); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: #9a9186; margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-legal a { font-size: 13px; color: #9a9186; }
.footer-legal a:hover { color: var(--gold); }

/* ----------------------------- reveal anim ----------------------------- */
.reveal, .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible, .fade-in.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal, .fade-in { opacity: 1; transform: none; } }

/* ----------------------------- lightbox ----------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(12,10,7,0.94); display: flex; align-items: center; justify-content: center; padding: 4vw; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: background 0.25s var(--ease); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.lightbox-close { top: 4vw; right: 4vw; }
.lightbox-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox-prev svg { transform: rotate(90deg); }
.lightbox-next svg { transform: rotate(-90deg); }
.lightbox-count { position: absolute; bottom: 4vw; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; letter-spacing: 0.1em; }

/* ----------------------------- responsive ----------------------------- */
@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
  .buybox { position: static; }
  .detail-cols { grid-template-columns: 1fr; }
  .side-specs { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .nav-actions { display: none; }
  .nav-drawer {
    display: block; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh;
    overflow: hidden; pointer-events: none; z-index: 90;
  }
  .primary-nav {
    position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 86vw); background: var(--surface);
    margin: 0; padding: 90px 28px 28px; transform: translateX(100%); transition: transform 0.35s var(--ease);
    box-shadow: -20px 0 60px rgba(26,24,20,0.18); overflow-y: auto; pointer-events: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-list > li > a { padding: 16px 0; font-size: 17px; }
  .nav-list > li > a::after { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: 0 0 10px 14px; min-width: 0; }
  .has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: none; }
  .caret { display: none; }
  .nav-mobile-actions { margin-top: 24px; display: grid; gap: 12px; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(18,15,10,0.4); opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease); z-index: 80; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .section-dark .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .record { grid-template-columns: 1fr; gap: 4px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  body { font-size: 16px; }
}

@media (max-width: 480px) {
  .kitten-grid { grid-template-columns: 1fr; }
  .kitten-card-media { aspect-ratio: 16 / 10; }
  .hero-home { min-height: 78vh; }
  .filter-bar { gap: 16px; }
}

/* ----------------------------- happy-customers carousel ----------------------------- */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; margin: 0; padding: 0; list-style: none; }
.carousel.is-enhanced .carousel-track { transition: transform 0.6s var(--ease); will-change: transform; }
.carousel-slide { flex: 0 0 100%; min-width: 0; }
/* Higher specificity than `.split-media img` so portraits fill the frame instead of letterboxing. */
.carousel .carousel-slide img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; max-height: none; object-fit: cover; object-position: center 28%; }

/* No-JS fallback: a horizontal scroll-snap strip so every photo stays reachable. */
.carousel:not(.is-enhanced) .carousel-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.carousel:not(.is-enhanced) .carousel-slide { scroll-snap-align: center; }

/* Arrows + dots appear only after JS enhances the carousel. */
.carousel-arrow, .carousel-dots { display: none; }
.carousel.is-enhanced .carousel-arrow {
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; padding: 0; border: none; cursor: pointer;
  color: #fff; background: rgba(26,24,20,0.5); transition: background 0.3s var(--ease);
}
.carousel.is-enhanced .carousel-arrow:hover { background: rgba(26,24,20,0.8); }
.carousel-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }
.carousel-arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.carousel.is-enhanced .carousel-dots {
  display: flex; gap: 9px; justify-content: center;
  position: absolute; left: 0; right: 0; bottom: 14px;
}
.carousel-dot { width: 9px; height: 9px; padding: 0; border: none; cursor: pointer; border-radius: 50%; background: rgba(255,255,255,0.55); transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.carousel-dot:hover { background: rgba(255,255,255,0.85); }
.carousel-dot.is-active { background: var(--gold); transform: scale(1.3); }
.carousel-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .carousel.is-enhanced .carousel-track { transition: none; }
}

@media (max-width: 760px) {
  /* Keep the credentials copy first on mobile; the placeholder image follows it. */
  .welcome-creds .split-media { order: 0; }
}

/* ============================================================
   Custom branded cursor (single Bengal face)
   The left face is the cursor everywhere; no hover swap.
   Applied only on fine-pointer devices; touch keeps native behavior.
   Hotspot centered. New filename keeps the immutable asset cache safe.
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  html,
  a, button, [role="button"], label, summary,
  .btn, .nav-toggle, .carousel-arrow, .carousel-dot {
    cursor: url("assets/cursor-default-v1.png") 15 20, auto;
  }

  /* Text-entry fields keep a real text caret. */
  input, select, textarea { cursor: auto; }
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="search"], textarea { cursor: text; }
}
