@media (prefers-reduced-motion: reduce) {
  .sk-wa-fab {
    animation: none;
  }
}

/* ── GLOBAL OVERFLOW GUARD ── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a{
    text-decoration:none !important;
}

.card-body{
        padding: 21px !important;

}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

/* smooth scrolling for all anchor links on touch */
@media (max-width:768px) {
  html {
    scroll-behavior: smooth;
    
  }
  
  body.page-home .main-header.scrolled {
      height:65px;
  }
}

/* ═══════════════════════════════════════════════
   COLOR PALETTE — babet-inspired warm safari luxe
   ═══════════════════════════════════════════════ */
:root {
  --bg-cream: #FFF8E7;
  --bg-ivory: #FFFDF6;
  --bg-deep: #2A1810;
  --honey: #F4B400;
  --honey-soft: #F8D14F;
  --amber: #E89B2F;
  --coral: #F58C7A;
  --sand: #F5DEB3;
  --text-dark: #2A1810;
  --text-muted: #8B7355;
  --gold-stroke: #C9A961;
}

/* ─── RESET ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-cream);
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  cursor: none;
  /* hide native cursor — custom cursor takes over */
}

/* ═══════════════════════════════════════════════
   GLOBAL — CUSTOM CURSOR (Amanda Lee mechanic)
   ═══════════════════════════════════════════════ */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--honey);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--honey);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease, border-color .3s ease;
}

#cursor-ring.cursor-hover {
  width: 96px;
  height: 96px;
}

/* ═══════════════════════════════════════════════
   GLOBAL — FILM GRAIN OVERLAY
   ═══════════════════════════════════════════════ */
#grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .04;
}

/* ═══════════════════════════════════════════════
   HERO — scroll container + sticky stage
   ═══════════════════════════════════════════════ */
.scroll-container {
  height: 260vh;
  position: relative;
}

.sticky-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ─── LAYER 1 — Background (STATIC, never transforms) ─── */
.layer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 22%, rgba(255, 253, 246, .30) 0%, rgba(255, 253, 246, 0) 60%),
    linear-gradient(180deg, #F4B400 0%, #E89B2F 35%, #B8651F 70%, #2A1810 100%);
}

/* ─── LAYER 2 — Wordmark "SAVANNAH" (scrolls UPWARD) ─── */
.layer-wordmark {
  will-change: transform;
  transform: translateZ(0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150vh;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  will-change: transform;
  pointer-events: none;
}

.layer-wordmark h1 {
  margin-top: 6vh;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(140px, 22vw, 360px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--bg-cream);
  opacity: .92;
  white-space: nowrap;
  /* spray-paint-ish soft edge */
  text-shadow: 0 0 28px rgba(255, 248, 231, .25);
}

/* ─── LAYER 3 — Hero cat image (scrolls DOWNWARD) ─── */
.layer-cat {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background-image: url('https://www.happypawsus.com/cdn/shop/files/MCO_48ea08ed-229d-4675-831b-3e0c6b0f485b.png?v=1730221538&width=480');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  will-change: transform, filter;
  transform: translateZ(0);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
}

/* bottom fade so the cat melts into the deep brown */
.layer-cat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent 0%, #2A1810 100%);
}

/* ─── LAYER 4 — Dark warm overlay (FADES IN) ─── */
.layer-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--bg-deep);
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
}

/* ─── LAYER 5 — Hero content (FADES OUT) ─── */
.layer-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  will-change: opacity;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 18px;
}

.hero-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 120px);
  line-height: .95;
  color: var(--bg-ivory);
  max-width: 900px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--bg-cream);
  opacity: .85;
  margin-top: 16px;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.btn-primary {
  background: var(--honey);
  color: var(--text-dark);
  border: none;
}

.btn-primary:hover {
  background: var(--honey-soft);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--bg-ivory);
  border: 2px solid var(--bg-ivory);
}

.btn-secondary:hover {
  background: var(--bg-ivory);
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
/* mobile sticky uses small viewport height where supported */
@supports (height:100svh) {
  @media (max-width:768px) {
    .sticky-container {
      height: 100svh;
    }
  }
}

@media (max-width:768px) {
  .layer-wordmark h1 {
    font-size: clamp(72px, 18vw, 140px);
  }

  .hero-wordmark {
    font-size: clamp(32px, 10vw, 56px);
  }

  .hero-tagline {
    font-size: clamp(15px, 4.5vw, 20px);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 260px;
    text-align: center;
    padding: 14px 20px;
  }

  .chapter-heading .line {
    font-size: clamp(60px, 15vw, 110px);
    will-change: transform;
  }
}

/* touch devices — no custom cursor */
@media (hover:none) {
  body {
    cursor: auto;
  }

  #cursor-dot,
  #cursor-ring {
    display: none;
  }
}

/* reduced motion — kill scrub parallax */
@media (prefers-reduced-motion:reduce) {
  .sticky-container {
    position: relative;
  }

  .layer-wordmark,
  .layer-cat,
  .layer-overlay,
  .layer-content {
    transform: none !important;
  }

  .layer-overlay {
    opacity: 0 !important;
  }

  .layer-content {
    opacity: 1 !important;
  }
}

/* ─── SECTION: OUR CATS (horizontal breed slider) ─── */
#Cats {
  background: var(--bg-cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* header row */
.breed-head {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

/* Amanda Lee split-line chapter heading (exact values) */
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.chapter-heading {
  margin-bottom: 32px;
  /*overflow: hidden;*/
}

.chapter-heading .line {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 10vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--text-dark);
  will-change: transform;
  letter-spacing: -0.02em;
}

#Kittens .chapter-heading .line {
  font-size: clamp(44px, 8.5vw, 160px);
}

#WhyUs .chapter-heading .line {
  font-size: clamp(48px, 9vw, 170px);
}

#Contact .chapter-heading .line {
  font-size: clamp(52px, 10vw, 180px);
}

.chapter-heading .line-2 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(42, 24, 16, 0.35);
}

.chapter-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* warm-tinted atmosphere overlay (fades out on scrub) */
.breed-warm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 180, 0, 0.06);
  pointer-events: none;
  z-index: 0;
}

.breed-all-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--amber);
  white-space: nowrap;
  transition: color .3s ease, border-color .3s ease;
}

.breed-all-link .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform .3s ease;
}

.breed-all-link:hover {
  color: var(--coral);
  border-color: var(--coral);
}

.breed-all-link:hover .arrow {
  transform: translateX(6px);
}

/* slider */
.breed-slider-viewport {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  overflow: hidden;
}

.breed-slider-track {
  display: flex;
  gap: 32px;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.breed-card {
  flex: 0 0 calc((100% - 96px) / 4);
  /* 4 visible, 3 gaps of 32px */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: none;
}

.breed-img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* warm honey glow behind the cat — 3D depth cue (JS toggles via GSAP) */
.breed-img-wrap::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.35) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .5s ease, transform .5s ease;
  z-index: -1;
  pointer-events: none;
}

/* JS adds .glow-on during hover → activate honey halo */
.breed-img-wrap.glow-on::before {
  opacity: 1;
  transform: scale(1);
}

/* JS adds .is-hover to card during hover (name + underline cues) */
.breed-card.is-hover .breed-name {
  color: var(--amber);
}

.breed-card.is-hover .breed-underline {
  width: 56px;
}

.breed-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 28px rgba(42, 24, 16, 0.22));
  transform-style: preserve-3d;
  will-change: transform, filter;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* no CSS hover transition — GSAP drives the 3D hover now */
}

.breed-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--text-dark);
  text-align: center;
  margin-top: 28px;
  transition: color .3s ease;
}

/* hover underline accent under the breed name (JS widens it) */
.breed-underline {
  display: block;
  width: 0;
  height: 2px;
  background: var(--amber);
  margin: 10px auto 0;
  transition: width .4s cubic-bezier(.22, 1, .36, 1);
}

.breed-meta {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

/* keep header/slider/controls above the warm overlay */
.breed-head,
.breed-slider-viewport,
.breed-controls {
  position: relative;
  z-index: 1;
}

/* slider gating — arrows inert until zoom-out reveal finishes */
#Cats:not(.slider-ready) .breed-nav {
  pointer-events: none;
  opacity: .3;
}

#Cats.slider-ready .breed-nav {
  pointer-events: auto;
}

/* controls */
.breed-controls {
  max-width: 1280px;
  margin: 64px auto 0;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.breed-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--gold-stroke);
  color: var(--text-dark);
  font-size: 18px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, border-color .3s ease, color .3s ease, opacity .3s ease;
}

.breed-nav:hover:not(:disabled) {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--text-dark);
}

.breed-nav:disabled {
  opacity: .3;
  cursor: none;
}

.breed-progress {
  flex: 1;
  height: 2px;
  background: rgba(201, 169, 97, .25);
  position: relative;
  border-radius: 2px;
}

.breed-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--amber);
  border-radius: 2px;
  transition: width .7s cubic-bezier(.22, 1, .36, 1), left .7s cubic-bezier(.22, 1, .36, 1);
}

/* tablet — 2 visible */
@media (max-width:1024px) {
  .breed-card {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}

/* mobile — ~1.3 visible (next peeks), stacked header */
@media (max-width:768px) {
  #Cats {
    padding: 72px 0;
  }

  .breed-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .chapter-subtitle {
    font-size: 16px;
  }

  #Cats .chapter-heading .line {
    font-size: clamp(64px, 16vw, 120px);
  }

  .breed-slider-viewport {
    padding: 0 24px;
  }

  .breed-card {
    flex: 0 0 75%;
  }

  .breed-img-wrap {
    height: 240px;
  }

  .breed-name {
    font-size: 24px;
  }

  .breed-controls {
    padding: 0 24px;
    margin-top: 48px;
  }
}

/* reduced motion — OUR CATS slider */
@media (prefers-reduced-motion:reduce) {

  .breed-slider-track,
  .breed-progress-bar,
  .breed-underline,
  .breed-img-wrap img {
    transition: none;
  }

  /* GSAP zoom-out/wiggle/tilt/idle disabled in JS via matchMedia */
  .breed-img-wrap::before {
    display: none;
  }
}

/* ─── SECTION: GALLERY ─── */
#Gallery {
  background: var(--bg-deep);
}

.gallery-scroll {
  position: relative;
  width: 100%;
  height: 130vh;
  overflow: hidden;
  max-width: 100vw;
}

.gallery-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* center glow behind cards */
.gallery-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(244, 180, 0, .08) 0%, rgba(244, 180, 0, 0) 60%);
  pointer-events: none;
}

/* title overlay */
.gallery-title {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.gallery-title .eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 16px;
}

.gallery-title h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--bg-ivory);
}

.gallery-title .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: var(--sand);
  opacity: .8;
  margin-top: 12px;
}

/* 3D stage = camera */
.gallery-stage {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  position: relative;
  perspective: 1800px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(130px);
}

.gallery-rotator {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  transform: translateZ(0);
}

.gallery-card {
  width: 300px;
  height: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -150px;
  margin-top: -200px;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  border: 1px solid rgba(201, 169, 97, .25);
  background: rgba(42, 24, 16, .4);
}

@supports ((backdrop-filter:blur(8px)) or (-webkit-backdrop-filter:blur(8px))) {
  .gallery-card {
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
  }
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-card .gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .4) 60%, transparent 100%);
}

.gallery-info .g-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--bg-ivory);
}

.gallery-info .g-bin {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: var(--bg-ivory);
  opacity: .85;
  margin-top: 4px;
}

.gallery-info .g-credit {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--honey-soft);
  margin-top: 10px;
}

@media (max-width:768px) {
  .gallery-scroll {
    height: 100vh;
  }

  .gallery-sticky {
    padding-top: 80px;
  }

  .gallery-title {
    top: 24px;
  }

  .gallery-title h2 {
    font-size: clamp(28px, 8vw, 48px);
  }

  .gallery-stage {
    transform: translateY(40px);
  }

  .gallery-card {
    width: 200px;
    height: 270px;
    margin-left: -100px;
    margin-top: -135px;
  }
}

/* reduced motion — GALLERY: freeze, fallback flex grid */
@media (prefers-reduced-motion:reduce) {
  .gallery-scroll {
    height: auto;
  }

  .gallery-sticky {
    position: relative;
    height: auto;
    padding: 160px 24px 80px;
  }

  .gallery-stage {
    perspective: none;
    height: auto;
  }

  .gallery-rotator {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    height: auto;
    transform: none !important;
  }

  .gallery-card {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ─── SECTION: TESTIMONIALS ─── */
#Testimonials {
  background: var(--bg-cream);
  padding: 120px 0;
}

.stagger-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  margin-bottom: 64px;
}

/* reuse #Cats heading classes — only center them here */
#Testimonials .chapter-heading,
#Testimonials .eyebrow,
#Testimonials .chapter-subtitle {
  text-align: center;
}

#Testimonials .chapter-heading {
  overflow: visible;
}

.stagger-viewport {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(244, 180, 0, 0.05) 0%, transparent 60%);
}

.stagger-track {
  position: absolute;
  inset: 0;
}

.stagger-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 365px;
  height: 365px;
  padding: 32px;
  border: 2px solid var(--gold-stroke);
  background: var(--bg-ivory);
  color: var(--text-dark);
  cursor: none;
  will-change: transform;
  transition: transform .5s ease-in-out,
    background .4s,
    color .4s,
    box-shadow .4s,
    border-color .4s;
  /* signature cut-corner polygon */
  clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, calc(100% - 50px) 100%, 50px 100%, 0 100%, 0 0);
}

.stagger-card:not(.is-center):hover {
  border-color: var(--honey);
}

.stagger-card.is-center {
  background: var(--honey);
  color: var(--text-dark);
  border-color: var(--honey);
  box-shadow: 0px 8px 0px 4px var(--gold-stroke);
}

.stagger-card .card-avatar {
  width: 48px;
  height: 56px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
  background: var(--sand);
  box-shadow: 3px 3px 0 var(--bg-cream);
  display: block;
}

.stagger-card .card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
}

.stagger-card .card-by {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-muted);
}

.stagger-card.is-center .card-by {
  color: rgba(42, 24, 16, 0.8);
}

/* diagonal slash decoration */
.stagger-card .card-slash {
  position: absolute;
  right: -2px;
  top: 48px;
  width: 70.71px;
  /* sqrt(5000) */
  height: 2px;
  background: var(--gold-stroke);
  transform-origin: top right;
  transform: rotate(45deg);
}

.stagger-card.is-center .card-slash {
  background: var(--bg-deep);
}

/* nav buttons */
.stagger-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.stagger-nav button {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold-stroke);
  background: var(--bg-ivory);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: none;
  transition: all .3s ease;
}

.stagger-nav button:hover {
  background: var(--honey);
  border-color: var(--honey);
}

.stagger-nav button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

@media (max-width:768px) {
  #Testimonials {
    padding: 72px 0;
  }

  .stagger-inner {
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .stagger-viewport {
    height: 580px;
  }
}

@media (max-width:640px) {
  .stagger-card {
    width: 290px;
    height: 290px;
  }

  .stagger-card .card-quote {
    font-size: 15px;
  }
}

/* reduced motion — instant cuts, no transform glide */
@media (prefers-reduced-motion:reduce) {
  .stagger-card {
    transition: background .4s, color .4s, box-shadow .4s, border-color .4s;
  }
}

/* temp client-review version tag (remove after pick) */
.version-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px dashed var(--coral);
  display: inline-block;
}

/* ─── SECTION: REVIEWS MARQUEE (V2) ─── */
#Reviews {
  background: var(--bg-ivory);
  padding: 120px 0;
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  margin-bottom: 64px;
}

#Reviews .chapter-heading,
#Reviews .eyebrow,
#Reviews .chapter-subtitle {
  text-align: center;
}

#Reviews .chapter-heading {
  overflow: visible;
}

.marquee-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.marquee-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.marquee-row::before,
.marquee-row::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.marquee-row::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-ivory) 0%, transparent 100%);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-ivory) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  min-width: 200%;
  will-change: transform;
  animation: marqueeScroll 50s linear infinite;
}

.row-1 .marquee-track {
  animation-direction: normal;
  padding-top: 24px;
  padding-bottom: 8px;
}

.row-2 .marquee-track {
  animation-direction: reverse;
  padding-top: 8px;
  padding-bottom: 24px;
}

.marquee-row:hover .marquee-track,
.marquee-row:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-card {
  width: 320px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(42, 24, 16, 0.06);
  transition: all .3s ease;
  cursor: none;
}

.marquee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42, 24, 16, 0.12);
  border-color: var(--honey);
}

.marquee-card .mc-top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.marquee-card .mc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.marquee-card .mc-namerow {
  display: flex;
  gap: 4px;
  align-items: center;
}

.marquee-card .mc-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}

.marquee-card .mc-handle {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--text-muted);
}

.marquee-card .mc-quote {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
  opacity: .85;
}

@media (max-width:768px) {
  #Reviews {
    padding: 72px 0;
  }

  .reviews-inner {
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .marquee-row::before,
  .marquee-row::after {
    width: 80px;
  }

  .marquee-card {
    width: 280px;
  }
}

/* reduced motion — pause loop, allow manual horizontal scroll */
@media (prefers-reduced-motion:reduce) {
  .marquee-track {
    animation: none;
  }

  .marquee-row {
    overflow-x: auto;
  }
}

/* ─── SECTION: AVAILABLE KITTENS ─── */
#Kittens {
  position: relative;
  background:
    radial-gradient(circle at center, rgba(244, 180, 0, 0.05) 0%, transparent 60%),
    var(--bg-cream);
  padding: 120px 64px;
}

.kittens-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.kittens-head {
  text-align: center;
  margin-bottom: 64px;
}

#Kittens .chapter-heading,
#Kittens .eyebrow,
#Kittens .chapter-subtitle {
  text-align: center;
}

#Kittens .chapter-heading {
  overflow: visible;
}

#Kittens .chapter-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.kitten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  perspective: 1500px;
}

.kitten-card {
  position: relative;
  background: linear-gradient(180deg, #FFFDF6 0%, #FFF8E7 100%);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 8px;
  overflow: visible;
  cursor: none;
  box-shadow: 0 12px 32px rgba(42, 24, 16, 0.08);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1),
    box-shadow .6s,
    border-color .4s,
    background .4s;
}

.kitten-status {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  padding: 6px 14px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 2px;
}

.kitten-status.available {
  background: var(--honey);
  color: var(--text-dark);
}

.kitten-status.reserved {
  background: var(--coral);
  color: #fff;
}

.kitten-status.sold {
  background: var(--text-muted);
  color: #fff;
}

.kitten-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  background: radial-gradient(circle at 50% 70%, rgba(244, 180, 0, 0.12) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-style: preserve-3d;
  border-radius: 8px 8px 0 0;
}

/* glow plate behind the kitten (JS toggles via .glow-on) */
.kitten-img-wrap::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.4) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .5s ease, transform .5s ease;
  z-index: 0;
  pointer-events: none;
}

.kitten-img-wrap.glow-on::before {
  opacity: 1;
  transform: scale(1);
}

.kitten-img-wrap img {
  position: relative;
  z-index: 1;
  max-width: 85%;
  max-height: 95%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 36px rgba(42, 24, 16, 0.28));
  transform-style: preserve-3d;
  will-change: transform, filter;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), filter .6s ease;
}

.kitten-content {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}

.kitten-gen {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.kitten-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.kitten-desc {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 50px;
}

.kitten-specs {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  margin-bottom: 24px;
}

.kitten-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kitten-spec .sp-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.kitten-spec .sp-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-dark);
}

.kitten-price-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.kitten-price-block .pr-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
}

.kitten-price {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -.02em;
  color: var(--text-dark);
  transition: text-shadow .4s ease, transform .4s ease;
  transform-origin: right bottom;
}

.btn-buy {
  width: 100%;
  padding: 18px 24px;
  background: var(--text-dark);
  color: var(--bg-ivory);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background .4s ease, transform .3s ease, box-shadow .4s ease, color .4s ease;
}

.btn-buy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 180, 0, 0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .7s ease;
  pointer-events: none;
}

.btn-buy .buy-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform .3s ease;
}

.kitten-card:hover .btn-buy,
.btn-buy:hover,
.btn-buy:focus-visible {
  background: var(--honey);
  color: var(--text-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(244, 180, 0, 0.4);
}

.kitten-card:hover .btn-buy::before,
.btn-buy:hover::before {
  transform: translateX(100%);
}

.kitten-card:hover .btn-buy .buy-arrow,
.btn-buy:hover .buy-arrow {
  transform: translateX(6px);
}

.btn-buy:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* JS hover state cues */
.kitten-card.is-hover {
  border-color: var(--honey);
  background: linear-gradient(180deg, #FFFDF6 0%, #FCEFC4 100%);
}

.kitten-card.is-hover .kitten-price {
  text-shadow: 0 0 24px rgba(244, 180, 0, 0.5);
  transform: scale(1.04);
}

/* click ripple */
.buy-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 180, 0, 0.55);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 2;
}

/* tablet — 2 cols */
@media (max-width:1024px) {
  #Kittens {
    padding: 96px 40px;
  }

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

/* mobile — horizontal swipeable slider */
@media (max-width:768px) {
  #Kittens {
    padding: 80px 0;
  }

  .kitten-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 8px 24px 32px;
    margin: 0 -24px;
    max-width: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .kitten-grid::-webkit-scrollbar {
    display: none;
  }

  .kitten-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: center;
    margin: 0;
  }

  .kitten-img-wrap {
    height: 240px;
  }

  .kitten-name {
    font-size: 26px;
  }

  .kitten-price {
    font-size: 30px;
  }
}

/* reduced motion — kitten section */
@media (prefers-reduced-motion:reduce) {
  .kitten-card {
    transition: box-shadow .4s, border-color .4s, background .4s;
  }

  .kitten-img-wrap img {
    transition: filter .4s ease;
  }

  .btn-buy::before {
    display: none;
  }
}

/* ─── SECTION: BLOG ─── */
#Blog {
  position: relative;
  background: var(--bg-cream);
  padding: 120px 64px;
}

#Blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 180, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232, 155, 47, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.blog-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.blog-head {
  text-align: center;
  margin-bottom: 64px;
}

#Blog .chapter-heading,
#Blog .eyebrow,
#Blog .chapter-subtitle {
  text-align: center;
}

#Blog .chapter-heading {
  overflow: visible;
}

#Blog .chapter-subtitle {
  max-width: 640px;
  margin: 0 auto;
}

/* shared card shell */
.blog-card {
  position: relative;
  display: flex;
  text-decoration: none;
  background: var(--bg-ivory);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 8px;
  overflow: hidden;
  cursor: none;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1),
    box-shadow .5s, border-color .4s;
  box-shadow: 0 10px 28px rgba(42, 24, 16, 0.06);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(42, 24, 16, 0.16);
  border-color: var(--honey);
}

/* image frame — clip-path curtain + parallax zoom live here */
.blog-frame {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  clip-path: inset(0 100% 0 0);
  /* JS wipes this open on scroll */
}

.blog-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.2);
  /* JS parallax-zooms to 1 */
  will-change: transform, clip-path;
}

.blog-cat {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 6px 13px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--honey);
  color: var(--text-dark);
  border-radius: 2px;
}

.blog-body {
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.blog-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.blog-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author .ba-name {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--text-dark);
}

.blog-readmore {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-readmore .rm-arrow {
  display: inline-block;
  transition: transform .3s ease;
}

.blog-card:hover .blog-readmore .rm-arrow {
  transform: translateX(6px);
}

/* FEATURED — large, image left / body right */
.blog-featured {
  flex-direction: row;
  margin-bottom: 40px;
}

.blog-featured .blog-frame {
  flex: 0 0 56%;
  min-height: 440px;
}

.blog-featured .blog-body {
  flex: 1;
  padding: 56px 56px;
  justify-content: center;
}

.blog-featured .blog-title {
  font-size: clamp(32px, 3.4vw, 52px);
}

.blog-featured .blog-excerpt {
  font-size: 20px;
}

/* ROW — 3 smaller stacked cards */
.blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-row .blog-card {
  flex-direction: column;
}

.blog-row .blog-frame {
  height: 240px;
}

.blog-row .blog-body {
  padding: 28px 28px 32px;
  flex: 1;
}

.blog-row .blog-title {
  font-size: 24px;
}

.blog-row .blog-excerpt {
  font-size: 16px;
}

@media (max-width:1024px) {
  #Blog {
    padding: 96px 40px;
  }

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

@media (max-width:768px) {
  #Blog {
    padding: 72px 24px;
  }

  .blog-featured {
    flex-direction: column;
  }

  .blog-featured .blog-frame {
    flex: none;
    min-height: 0;
    height: 240px;
  }

  .blog-featured .blog-body {
    padding: 28px 20px;
  }

  .blog-featured .blog-title {
    font-size: 30px;
  }

  .blog-featured .blog-excerpt {
    font-size: 17px;
  }

  .blog-row {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 8px 24px 32px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-row::-webkit-scrollbar {
    display: none;
  }

  .blog-row .blog-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: center;
  }
}

/* ─── SHARED: MOBILE SLIDER DOT PAGINATION ─── */
.slider-dots {
  display: none;
}

@media (max-width:768px) {
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0 24px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(42, 24, 16, 0.2);
    border: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
  }

  .slider-dot.active {
    background: var(--honey);
    width: 24px;
    border-radius: 4px;
  }
}

/* reduced motion — no curtain/zoom, frame just shows */
@media (prefers-reduced-motion:reduce) {
  .blog-frame {
    clip-path: inset(0 0 0 0) !important;
  }

  .blog-frame img {
    transform: none !important;
  }

  .blog-card {
    transition: box-shadow .4s, border-color .4s;
  }
}

/* ─── CONTACT ─── */
#Contact {
  position: relative;
  background: var(--bg-cream);
  padding: 120px 64px;
  overflow: hidden;
}

#Contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(244, 180, 0, 0.06) 0%, transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(232, 155, 47, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

/* ── spotlight two-col ── */
.contact-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── LEFT col ── */
.contact-text-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-head {
  margin-bottom: 64px;
}

#Contact .chapter-heading {
  overflow: visible;
}

#Contact .chapter-heading,
#Contact .eyebrow,
#Contact .chapter-subtitle {
  text-align: left;
}

/* trust pills */
.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cpill {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: rgba(244, 180, 0, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 100px;
  padding: 8px 16px;
}

/* ── form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.cf-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  display: block;
}

.cf-optional {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--text-muted);
}

.cf-input {
  width: 100%;
  padding: 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(201, 169, 97, 0.4);
  border-radius: 0;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
  appearance: none;
}

.cf-input:focus {
  border-bottom-color: var(--honey);
  box-shadow: 0 2px 0 0 rgba(244, 180, 0, 0.2);
}

.cf-input::placeholder {
  color: var(--text-muted);
  opacity: .55;
}

.cf-select-wrap {
  position: relative;
}

.cf-select {
  cursor: none;
  padding-right: 28px;
}

.cf-chevron {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--amber);
  pointer-events: none;
  line-height: 1;
}

.cf-textarea {
  border: 1.5px solid rgba(201, 169, 97, 0.35);
  border-radius: 4px;
  padding: 14px 16px;
  resize: vertical;
  min-height: 100px;
}

.cf-textarea:focus {
  border-color: var(--honey);
  box-shadow: none;
}

.cf-submit {
  margin-top: 8px;
  cursor: none;
  width: 100%;
}

.cf-submit.cf-sent {
  background: var(--amber) !important;
  color: var(--text-dark) !important;
  pointer-events: none;
}

/* ── RIGHT col — 3D box stage ── */
.contact-box-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cbox-stage {
  position: relative;
  width: 320px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  /* 3D mouse-tilt perspective */
  perspective: 900px;
  cursor: none;
}

/* ambient glow plate */
.cbox-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(244, 180, 0, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.cbox-stage.glow-active .cbox-glow {
  opacity: 1;
}

/* cat image — peeks up from box */
.cbox-cat {
  position: absolute;
  bottom: 165px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  width: 200px;
  height: 200px;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 12px 32px rgba(42, 24, 16, 0.35));
  opacity: 0;
  z-index: 3;
  will-change: transform, opacity;
  pointer-events: none;
}

/* lid — 3D flips open on scroll */
.cbox-lid {
  width: 236px;
  height: 64px;
  background: var(--amber);
  border: 2px solid var(--gold-stroke);
  border-radius: 6px 6px 0 0;
  position: relative;
  z-index: 5;
  transform-origin: top center;
  transform-style: preserve-3d;
  will-change: transform;
  flex-shrink: 0;
  box-shadow: 0 -4px 20px rgba(42, 24, 16, 0.15);
}

/* decorative highlight stripe on lid top */
.cbox-lid::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: rgba(255, 253, 246, 0.25);
  border-radius: 2px;
}

/* bow assembly */
.cbox-bow-wrap {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cbox-bow-left,
.cbox-bow-right {
  width: 28px;
  height: 20px;
  background: var(--honey-soft);
  border-radius: 50% 50% 0 0;
  position: absolute;
  bottom: 0;
}

.cbox-bow-left {
  left: 0;
  transform-origin: bottom right;
  transform: rotate(-30deg);
}

.cbox-bow-right {
  right: 0;
  transform-origin: bottom left;
  transform: rotate(30deg);
}

.cbox-bow-knot {
  width: 12px;
  height: 12px;
  background: var(--honey);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 1.5px solid var(--gold-stroke);
}

/* box body */
.cbox-body {
  width: 220px;
  height: 180px;
  background: var(--bg-deep);
  border: 2px solid var(--gold-stroke);
  border-top: none;
  border-radius: 0 0 6px 6px;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
  box-shadow: 0 16px 48px rgba(42, 24, 16, 0.3);
}

/* vertical ribbon */
.cbox-ribbon-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 16px;
  background: var(--honey);
  opacity: .7;
}

/* horizontal ribbon */
.cbox-ribbon-h {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  background: var(--honey);
  opacity: .7;
}

/* ribbon cross intersection dot */
.cbox-ribbon-v::after,
.cbox-ribbon-h::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: var(--honey-soft);
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 97, 0.5);
}

/* float label above box */
.cbox-floatlabel {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  opacity: 1;
  transition: opacity .4s ease;
}

.cbox-floatlabel.hidden {
  opacity: 0;
}

.cbox-label-eyebrow {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

.cbox-label-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
}

.cbox-caption {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* responsive */
@media (max-width:1024px) {
  #Contact {
    padding: 96px 40px;
  }

  .contact-spotlight {
    gap: 48px;
  }
}

@media (max-width:768px) {
  #Contact {
    padding: 72px 24px;
  }

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

  .contact-box-col {
    order: -1;
  }

  .cbox-stage {
    width: 260px;
    height: 300px;
  }

  .cbox-lid {
    width: 196px;
    height: 52px;
  }

  .cbox-body {
    width: 180px;
    height: 148px;
  }

  .cbox-cat {
    width: 160px;
    height: 160px;
    bottom: 136px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .cf-input {
    font-size: 16px;
  }

  .cf-textarea {
    font-size: 16px;
  }

  .cf-select {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .cbox-cat {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(-40px) !important;
  }

  .cbox-lid {
    transform: rotateX(-120deg) !important;
  }

  .cbox-stage.glow-active .cbox-glow {
    opacity: 1;
  }
}

/* ─── HERO 2 — Cat Figurine Carousel ─── */
#Hero2 {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* match visible viewport on mobile — avoids white gap when address bar is shown */
  overflow: hidden;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* background color plate */
.h2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--honey);
  transition: background 650ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background;
}

/* grain overlay */
.h2-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* curved ghost text SVG */
.h2-ghost {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 55%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.h2-ghost-svg {
  width: 100%;
  max-width: 1400px;
  overflow: visible;
}

.h2-ghost-text {
  transition: opacity 650ms ease;
  font-size:4rem !important;
}

/* top-left brand */
.h2-brand {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 60;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  opacity: .85;
}

/* carousel stage */
.h2-carousel {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* each cat item */
.h2-item {
  position: absolute;
  aspect-ratio: 0.6/1;
  bottom: 0;
  will-change: transform, filter, opacity, left;
  backface-visibility: hidden;
  transition:
    transform 650ms cubic-bezier(0.4, 0, 0.2, 1),
    filter 650ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 650ms cubic-bezier(0.4, 0, 0.2, 1),
    left 650ms cubic-bezier(0.4, 0, 0.2, 1),
    height 650ms cubic-bezier(0.4, 0, 0.2, 1),
    bottom 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.h2-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 32px 64px rgba(42, 24, 16, 0.35));
}

/* center role */
.h2-item.role-center {
  left: 50%;
  height: 92%;
  bottom: 0;
  transform: translateX(-50%) scale(1.68);
  filter: blur(0px) brightness(1.04);
  opacity: 1;
  z-index: 20;
}

/* left role */
.h2-item.role-left {
  left: 30%;
  height: 28%;
  bottom: 12%;
  transform: translateX(-50%) scale(1);
  filter: brightness(0.9);
  opacity: 0.85;
  z-index: 10;
}

/* right role */
.h2-item.role-right {
  left: 70%;
  height: 28%;
  bottom: 12%;
  transform: translateX(-50%) scale(1);
  filter: brightness(0.9);
  opacity: 0.85;
  z-index: 10;
}

/* back role */
.h2-item.role-back {
  left: 50%;
  height: 22%;
  bottom: 12%;
  transform: translateX(-50%) scale(1);
  filter: brightness(0.8);
  opacity: 0.6;
  z-index: 5;
}

/* bottom-left block */
.h2-bottom-left {
  position: absolute;
  bottom: 80px;
  left: 96px;
  z-index: 60;
  max-width: 340px;
}

.h2-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(14px, 1.4vw, 22px);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  opacity: .95;
  margin-bottom: 10px;
}

.h2-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(13px, 1.1vw, 17px);
  color: #fff;
  opacity: .82;
  line-height: 1.6;
  margin-bottom: 20px;
}

.h2-nav {
  display: flex;
  gap: 12px;
}

.h2-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.h2-arrow:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.h2-arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

/* bottom-right discover link */
.h2-discover {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(20px, 4vw, 52px);
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  opacity: .92;
  text-decoration: none;
  transition: opacity 200ms ease, gap 200ms ease;
  cursor: none;
}

.h2-discover:hover {
  opacity: 1;
  gap: 18px;
}

/* dot indicators */
.h2-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  gap: 10px;
}

.h2-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: none;
  transition: background 400ms ease, transform 400ms ease;
  padding: 0;
}

.h2-dot.active {
  background: #fff;
  transform: scale(1.35);
}

/* mobile overrides */
@media (max-width:640px) {
  .h2-brand {
    top: 16px;
    left: 16px;
  }

  .h2-bottom-left {
    bottom: 32px;
    left: 16px;
    max-width: 220px;
  }

  .h2-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .h2-desc {
    display: none;
  }

  .h2-arrow {
    width: 40px;
    height: 40px;
  }

  .h2-discover {
    bottom: 32px;
    right: 14px;
    font-size: clamp(16px, 5vw, 24px);
  }

  .h2-discover svg {
    width: 20px;
    height: 20px;
  }

  .h2-item.role-center {
    height: 55%;
    bottom: 25%;
    transform: translateX(-50%) scale(1.1);
  }

  .h2-item.role-left {
    left: 18%;
    height: 18%;
    bottom: 33%;
    opacity: 0.7;
  }

  .h2-item.role-right {
    left: 82%;
    height: 18%;
    bottom: 33%;
    opacity: 0.7;
  }

  .h2-item.role-back {
    height: 12%;
    bottom: 34%;
  }

  .h2-ghost {
    height: 45%;
  }

  .h2-ghost-svg {
    opacity: 0.7;
  }
}

/* reduced motion */
@media (prefers-reduced-motion:reduce) {
  .h2-item {
    transition: opacity 300ms ease;
  }

  .h2-bg {
    transition: background 300ms ease;
  }
}

/* ─── SECTION: CTA / OPEN THE BOX ─── */
#CTA {
  background: var(--bg-deep);
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card {
  position: relative;
  width: 100%;
  max-width: 1600px;
  background: #0F0A06;
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 24px;
  padding: 64px;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(244, 180, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT — text */
.cta-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 234, 213, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  width: fit-content;
}

.cta-tag-icon {
  display: inline-block;
  font-size: 18px;
  color: var(--honey);
  line-height: 1;
}

.cta-headline {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FAFAFA;
  text-align: left;
}

.cta-accent {
  color: var(--honey);
}

.cta-copy {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 234, 213, 0.6);
  max-width: 460px;
}

.cta-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #F5EAD5;
  color: #0F0A06;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 50px;
  width: fit-content;
  margin-top: 8px;
  cursor: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-pill-btn:hover {
  background: var(--honey);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(244, 180, 0, 0.35);
}

.cta-pill-btn:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 4px;
}

/* RIGHT — 3D gift box stage */
.cta-box-stage {
  position: relative;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}

.gift-box-assembly {
  position: relative;
  width: 280px;
  height: 280px;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
  transform: rotateX(-18deg) rotateY(28deg);
}

/* BOX BODY */
.box-body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 180px;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.box-face {
  position: absolute;
  background: linear-gradient(135deg, #E89B2F 0%, #F4B400 50%, #C9851F 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.box-front {
  width: 220px;
  height: 180px;
  left: 0;
  top: 0;
  transform: translateZ(110px);
}

.box-back {
  width: 220px;
  height: 180px;
  left: 0;
  top: 0;
  transform: translateZ(-110px) rotateY(180deg);
}

.box-left {
  width: 220px;
  height: 180px;
  left: 0;
  top: 0;
  transform: rotateY(-90deg) translateZ(110px);
}

.box-right {
  width: 220px;
  height: 180px;
  left: 0;
  top: 0;
  transform: rotateY(90deg) translateZ(110px);
}

.box-bottom {
  width: 220px;
  height: 220px;
  left: 0;
  top: 0;
  transform: rotateX(-90deg) translateY(90px) translateZ(-90px);
}

/* ribbons on front face */
.box-front .box-ribbon-h {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 22px;
  transform: translateY(-50%);
  background: #F5EAD5;
  z-index: 2;
}

.box-front .box-ribbon-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 22px;
  transform: translateX(-50%);
  background: #F5EAD5;
  z-index: 2;
}

/* BOX LID */
.box-lid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 32px;
  transform-style: preserve-3d;
  transform-origin: 50% 100% -120px;
  transform: translate(-50%, -50%) translateY(-92px);
  will-change: transform;
  z-index: 3;
}

.lid-face {
  position: absolute;
  background: linear-gradient(135deg, #C9851F 0%, #E89B2F 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.lid-top {
  width: 240px;
  height: 240px;
  left: 0;
  top: 0;
  transform: rotateX(-90deg) translateY(-16px) translateZ(0);
}

.lid-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 22px;
  transform: translateX(-50%);
  background: #F5EAD5;
}

.lid-front {
  width: 240px;
  height: 32px;
  left: 0;
  top: 0;
  transform: translateZ(120px);
}

.lid-front::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 22px;
  transform: translateX(-50%);
  background: #F5EAD5;
}

.lid-back {
  width: 240px;
  height: 32px;
  left: 0;
  top: 0;
  transform: translateZ(-120px) rotateY(180deg);
}

.lid-left {
  width: 240px;
  height: 32px;
  left: 0;
  top: 0;
  transform: rotateY(-90deg) translateZ(120px);
}

.lid-right {
  width: 240px;
  height: 32px;
  left: 0;
  top: 0;
  transform: rotateY(90deg) translateZ(120px);
}

/* BOW */
.box-bow {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  z-index: 5;
  width: 80px;
  height: 48px;
  will-change: transform, opacity;
}

.bow-loop {
  position: absolute;
  width: 38px;
  height: 26px;
  background: linear-gradient(135deg, #F5EAD5 0%, #C9A961 100%);
  border-radius: 50%;
}

.bow-left {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-32deg) translate(-16px, 0);
}

.bow-right {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(32deg) translate(16px, 0);
}

.bow-knot {
  position: absolute;
  width: 14px;
  height: 20px;
  background: #C9A961;
  border-radius: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* CAT POPUP */
.cat-popup {
  position: absolute;
  bottom: 45%;
  left: 50%;
  width: 220px;
  transform: translate(-50%, 30%) translateZ(40px);
  z-index: 4;
  will-change: transform, opacity;
  pointer-events: none;
}

.cat-popup img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
  display: block;
}

/* FLOATS — stars, dots, swirls */
.cta-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  transform-style: preserve-3d;
}

.cta-floats>* {
  position: absolute;
  will-change: transform, opacity;
}

.float-star {
  font-size: 24px;
  color: var(--honey);
  text-shadow: 0 0 12px rgba(244, 180, 0, 0.6);
  line-height: 1;
}

.float-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 16px rgba(245, 140, 122, 0.5);
}

.float-swirl {
  width: 30px;
  height: 30px;
  border: 3px solid var(--bg-ivory);
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.float-1 {
  top: 15%;
  left: 60%;
}

.float-2 {
  top: 5%;
  left: 70%;
}

.float-3 {
  top: 25%;
  left: 85%;
}

.float-4 {
  top: 10%;
  left: 75%;
}

.float-5 {
  top: 35%;
  left: 90%;
}

.float-6 {
  top: 20%;
  left: 55%;
}

.float-7 {
  top: 18%;
  left: 80%;
}

.float-8 {
  top: 30%;
  left: 65%;
}

/* reduced-motion end-state */
.cta-card.reduced-motion .box-bow {
  opacity: 0;
  transform: translateX(-50%) translateZ(0) scale(0);
}

.cta-card.reduced-motion .box-lid {
  transform: translate(-50%, -50%) translateY(-130px) rotateX(-130deg);
}

.cta-card.reduced-motion .cat-popup {
  opacity: 1;
  transform: translate(-50%, -25%) translateZ(40px) scale(1);
}

.cta-card.reduced-motion .cta-floats>* {
  opacity: 1;
  transform: scale(1);
}

/* responsive */
@media (max-width:1024px) {
  .cta-card {
    padding: 48px 40px;
  }

  .cta-box-stage {
    height: 400px;
  }

  .gift-box-assembly {
    width: 240px;
    height: 240px;
  }
}

@media (max-width:900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-text {
    order: 1;
  }

  .cta-box-stage {
    order: 2;
  }
}

@media (max-width:768px) {
  #CTA {
    padding: 60px 16px;
  }

  .cta-card {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .cta-grid {
    gap: 32px;
  }

  .cta-headline {
    font-size: 32px;
  }

  .cta-copy {
    font-size: 15px;
  }

  .cta-box-stage {
    height: 340px;
  }

  .gift-box-assembly {
    width: 200px;
    height: 200px;
  }

  .box-body {
    width: 160px;
    height: 130px;
  }

  .box-front,
  .box-back,
  .box-left,
  .box-right {
    width: 160px;
    height: 130px;
  }

  .box-front {
    transform: translateZ(80px);
  }

  .box-back {
    transform: translateZ(-80px) rotateY(180deg);
  }

  .box-left {
    transform: rotateY(-90deg) translateZ(80px);
  }

  .box-right {
    transform: rotateY(90deg) translateZ(80px);
  }

  .box-bottom {
    width: 160px;
    height: 160px;
    transform: rotateX(-90deg) translateY(65px) translateZ(-65px);
  }

  .box-lid {
    width: 180px;
    height: 26px;
    transform: translate(-50%, -50%) translateY(-68px);
    transform-origin: 50% 100% -90px;
  }

  .lid-top {
    width: 180px;
    height: 180px;
    transform: rotateX(-90deg) translateY(-13px) translateZ(0);
  }

  .lid-front,
  .lid-back,
  .lid-left,
  .lid-right {
    width: 180px;
    height: 26px;
  }

  .lid-front {
    transform: translateZ(90px);
  }

  .lid-back {
    transform: translateZ(-90px) rotateY(180deg);
  }

  .lid-left {
    transform: rotateY(-90deg) translateZ(90px);
  }

  .lid-right {
    transform: rotateY(90deg) translateZ(90px);
  }

  .cat-popup {
    width: 170px;
  }
}

/* ── IMAGE CLARITY — keep cat illustrations crisp ── */
.cbox-cat,
.ft-cat-img,
.ft-kitten-thumb img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.blog-frame img {
  image-rendering: auto;
}

.gallery-card img {
  image-rendering: auto;
  transform: translateZ(0);
}

/* ═══════════════════════════════════════════════
   FOOTER — clean aligned layout
   ═══════════════════════════════════════════════ */

/* TOP BAND */
.ft-top {
  background: var(--bg-cream);
  padding: 80px 64px 64px;
  border-top: 3px solid var(--honey);
}

.ft-top-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

/* brand col */
.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ft-logo-icon {
  font-size: 38px;
  line-height: 1;
}

.ft-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.ft-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text-dark);
  letter-spacing: -.01em;
}

.ft-logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
}

.ft-about {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.ft-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.3;
}

.ft-contact-icon {
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}

/* col titles */
.ft-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--honey);
  width: fit-content;
}

/* link lists */
.ft-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ft-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-muted);
  text-decoration: none;
  cursor: none;
  display: block;
  width: fit-content;
  transition: color .25s, padding-left .25s;
}

.ft-link:hover {
  color: var(--text-dark);
  padding-left: 5px;
}

.ft-link-accent {
  color: var(--amber) !important;
  font-weight: 600;
}

.ft-link-accent:hover {
  color: var(--honey) !important;
}

/* social col */
.ft-social-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.ft-social-btns {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.ft-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: rgba(244, 180, 0, 0.1);
  border: 1.5px solid rgba(201, 169, 97, 0.35);
  border-radius: 100px;
  padding: 9px 18px;
  text-decoration: none;
  cursor: none;
  width: fit-content;
  transition: background .25s, border-color .25s, transform .2s;
}

.ft-social-btn:hover {
  background: var(--honey);
  border-color: var(--honey);
  transform: translateY(-2px);
}

.ft-license {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: .6;
}

/* BOTTOM DARK BAND */
.ft-bottom {
  background: var(--bg-deep);
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  align-items: center;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}

/* left cats */
.ft-bottom-cats {
  display: flex;
  align-items: flex-end;
  height: 200px;
  padding-left: 32px;
  position: relative;
}

.ft-cat-img {
  position: absolute;
  bottom: 0;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.ft-cat-1 {
  height: 170px;
  left: 0;
  z-index: 4;
}

.ft-cat-2 {
  height: 150px;
  left: 70px;
  z-index: 3;
}

.ft-cat-3 {
  height: 130px;
  left: 135px;
  z-index: 2;
}

.ft-cat-4 {
  height: 110px;
  left: 195px;
  z-index: 1;
  opacity: .8;
}

/* center subscribe */
.ft-subscribe-wrap {
  text-align: center;
  padding: 40px 24px;
  z-index: 5;
  position: relative;
}

.ft-subscribe-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--bg-ivory);
  margin-bottom: 6px;
}

.ft-subscribe-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--sand);
  opacity: .7;
  margin-bottom: 18px;
}

.ft-subscribe-form {
  display: flex;
  gap: 0;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(201, 169, 97, 0.25);
  background: rgba(255, 253, 246, 0.05);
}

.ft-subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--bg-ivory);
  min-width: 0;
}

.ft-subscribe-input::placeholder {
  color: rgba(255, 253, 246, 0.4);
}

.ft-subscribe-btn {
  background: var(--honey);
  color: var(--text-dark);
  border: none;
  padding: 13px 24px;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  transition: background .25s;
}

.ft-subscribe-btn:hover {
  background: var(--honey-soft);
}

.ft-subscribe-btn.ft-sent {
  background: var(--amber) !important;
  pointer-events: none;
}

/* right kittens */
.ft-bottom-kittens {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 32px;
  padding-bottom: 20px;
  height: 200px;
}

.ft-kitten-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.ft-kitten-thumb img {
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform .3s;
}

.ft-kt-1 img {
  height: 110px;
  width: 66px;
}

.ft-kt-2 img {
  height: 130px;
  width: 76px;
}

.ft-kt-3 img {
  height: 110px;
  width: 66px;
}

.ft-kitten-thumb:hover img {
  transform: translateY(-6px);
}

.ft-kt-label {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 253, 246, 0.45);
}

/* COPYRIGHT BAR */
.ft-copy-bar {
  background: #1a0e09;
  padding: 14px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(255, 253, 246, 0.32);
}

.ft-copy-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-copy-link {
  color: rgba(255, 253, 246, 0.32);
  text-decoration: none;
  cursor: none;
  transition: color .2s;
}

.ft-copy-link:hover {
  color: var(--honey);
}

/* FOOTER RESPONSIVE */
@media (max-width:1200px) {
  .ft-top-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .ft-social-col {
    grid-column: span 3;
  }

  .ft-bottom {
    grid-template-columns: 220px 1fr 220px;
  }
}

@media (max-width:900px) {
  .ft-bottom {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ft-bottom-cats {
    display: none;
  }

  .ft-bottom-kittens {
    display: none;
  }

  .ft-subscribe-wrap {
    padding: 40px 24px;
  }
}

@media (max-width:768px) {
  .ft-top {
    padding: 48px 20px 40px;
  }

  .ft-top-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ft-col-title {
    font-size: 11px;
  }

  .ft-subscribe-form {
    flex-direction: column;
    border-radius: 12px;
    overflow: visible;
    background: transparent;
    border: none;
    gap: 10px;
  }

  .ft-subscribe-input {
    border-radius: 100px;
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    background: rgba(255, 253, 246, 0.06);
    padding: 14px 20px;
  }

  .ft-subscribe-btn {
    border-radius: 100px;
    padding: 14px 28px;
  }

  .ft-copy-bar {
    padding: 14px 20px;
    flex-direction: column;
    text-align: center;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background: #FBE9CC;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer-main {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

.site-footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* brand col */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-mark {
  width: 48px;
  height: 48px;
  background: var(--honey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 14px rgba(244, 180, 0, 0.4);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-word {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  color: #2D1810;
  line-height: 1;
}

.logo-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: #6B5544;
  margin-top: 4px;
  text-transform: uppercase;
}

.site-footer .footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  color: #6B5544;
  line-height: 1.6;
  max-width: 280px;
  margin: 8px 0 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #2D1810;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(45, 24, 16, 0.08);
  flex-shrink: 0;
}

/* link cols */
.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: #2D1810;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #6B5544;
  text-decoration: none;
  display: inline-block;
  position: relative;
  cursor: none;
  transition: color .3s ease, transform .3s ease;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: opacity .3s ease;
  color: var(--amber);
}

.footer-links a:hover {
  color: var(--amber);
  transform: translateX(6px);
}

.footer-links a:hover::before {
  opacity: 1;
}

/* follow col */
.footer-follow-copy {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #6B5544;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #2D1810;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: none;
  box-shadow: 0 4px 12px rgba(45, 24, 16, 0.08);
  transition: all .3s ease;
}

.social-pill:hover {
  background: var(--honey);
  color: #fff;
  transform: translateY(-4px) rotate(-8deg);
  box-shadow: 0 10px 20px rgba(244, 180, 0, 0.4);
}

/* decor row */
.footer-decor-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 0 24px 0;
  min-height: 280px;
}

.footer-pets-left,
.footer-pets-right {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 240px;
}

.footer-pet {
  position: absolute;
  bottom: 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(45, 24, 16, 0.15));
  will-change: transform;
}

.pet-1 {
  width: 140px;
  left: 0px;
  bottom: 0;
}

.pet-2 {
  width: 160px;
  left: 80px;
  bottom: 0;
}

.pet-3 {
  width: 130px;
  left: 180px;
  bottom: 0;
}

.pet-4 {
  width: 120px;
  left: 260px;
  bottom: 0;
}

.pet-5 {
  width: 150px;
  right: 200px;
  bottom: 0;
}

.pet-6 {
  width: 160px;
  right: 60px;
  bottom: 0;
}

.footer-subscribe {
  padding: 0 32px 60px;
  text-align: center;
  min-width: 380px;
  max-width: 520px;
}

.footer-subscribe h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  color: #2D1810;
  margin-bottom: 20px;
  line-height: 1.3;
}

.subscribe-form {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  border: 2px solid #2D1810;
  box-shadow: 0 6px 20px rgba(45, 24, 16, 0.1);
  max-width: 480px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #2D1810;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #B5A899;
}

.subscribe-form button {
  padding: 14px 32px;
  background: #F5D547;
  color: #2D1810;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  cursor: none;
  transition: all .3s ease;
}

.subscribe-form button:hover {
  background: var(--honey);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(244, 180, 0, 0.5);
}

/* dark bottom bar */
.site-footer .footer-bottom {
  background: #2D1810;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #F5EAD5;
  margin: 0;
}

.copyright>span {
  color: var(--honey);
  font-weight: 700;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #F5EAD5;
  letter-spacing: .05em;
  margin-right: 8px;
}

.pay-icon {
  background: #fff;
  color: #2D1810;
  padding: 6px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .08em;
  border-radius: 4px;
  min-width: 44px;
  text-align: center;
}

/* scroll-to-top */
@keyframes scrollTopPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(232, 155, 47, 0.5);
  transition: all .3s ease;
  transform: translateY(80px);
  opacity: 0;
  pointer-events: none;
}

.scroll-top-btn.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  animation: scrollTopPulse 2s ease-in-out infinite;
}

.scroll-top-btn:hover {
  transform: translateY(-4px) rotate(-12deg) scale(1.1);
  box-shadow: 0 14px 32px rgba(232, 155, 47, 0.7);
  animation: none;
}

/* responsive */
@media (max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-pet {
    transform: scale(0.85);
    transform-origin: bottom center;
  }

  .pet-1 {
    width: 120px;
  }

  .pet-2 {
    width: 130px;
    left: 70px;
  }

  .pet-3 {
    width: 110px;
    left: 150px;
  }

  .pet-4 {
    width: 100px;
    left: 220px;
  }

  .pet-5 {
    width: 120px;
    right: 160px;
  }

  .pet-6 {
    width: 130px;
    right: 40px;
  }

  .footer-subscribe {
    min-width: 280px;
    padding: 0 16px 48px;
  }
}

@media (max-width:768px) {
  .footer-main {
    padding: 60px 24px 0;
  }

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

  .footer-decor-row {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .footer-pets-left,
  .footer-pets-right {
    height: 120px;
    justify-content: center;
  }

  .footer-pets-left .pet-4,
  .footer-pets-right .pet-6 {
    display: none;
  }

  .pet-1 {
    width: 90px;
    left: 0;
  }

  .pet-2 {
    width: 100px;
    left: 60px;
  }

  .pet-3 {
    width: 85px;
    left: 130px;
  }

  .pet-5 {
    width: 100px;
    right: 60px;
  }

  .footer-subscribe {
    min-width: 0;
    width: 100%;
    padding: 24px 8px 32px;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 18px;
    padding: 8px;
  }

  .subscribe-form input {
    width: 100%;
  }

  .subscribe-form button {
    width: 100%;
  }

  .site-footer .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    text-align: center;
  }

  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }

  .scroll-top-btn {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-btn.visible {
    animation: none;
  }
}

/* ─── SECTION: WHY CHOOSE US ─── */
#WhyUs {
  position: relative;
  width: 100%;
  background: var(--bg-deep);
  padding: 120px 64px;
  overflow: hidden;
}

/* ambient glow orbs */
.wu-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.wu-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(244, 180, 0, 0.08);
  top: -100px;
  left: -100px;
}

.wu-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(232, 155, 47, 0.06);
  bottom: -80px;
  right: -80px;
}

/* watermark */
.wu-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(100px, 18vw, 280px);
  color: rgba(255, 253, 246, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.02em;
  user-select: none;
  line-height: 1;
}

/* inner */
.wu-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

/* heading overrides for dark bg */
.wu-head {
  text-align: center;
  margin-bottom: 72px;
}

#WhyUs .eyebrow {
  color: var(--honey);
}

#WhyUs .chapter-heading {
  overflow: visible;
}

#WhyUs .chapter-heading .line {
  color: var(--bg-ivory);
}

#WhyUs .chapter-heading .line-2 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 253, 246, 0.3);
}

#WhyUs .chapter-subtitle {
  color: var(--sand);
  opacity: .75;
}

/* ── COUNTER STRIP ── */
.wu-counters {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 246, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 12px;
  padding: 48px 40px;
  margin-bottom: 80px;
  gap: 0;
  flex-wrap: wrap;
}

.wu-counter {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 24px;
}

.wu-counter-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
}

.wu-count {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--honey);
  line-height: 1;
  letter-spacing: -.02em;
  will-change: contents;
}

.wu-suffix {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--amber);
  line-height: 1;
}

.wu-counter-divider {
  width: 32px;
  height: 2px;
  background: var(--gold-stroke);
  margin: 0 auto 12px;
  border-radius: 2px;
  transition: width .4s ease;
}

.wu-counter:hover .wu-counter-divider {
  width: 56px;
}

.wu-counter-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .7;
}

.wu-counter-sep {
  width: 1px;
  height: 80px;
  background: rgba(201, 169, 97, 0.2);
  flex-shrink: 0;
  align-self: center;
}

/* ── FEATURE CARDS ── */
.wu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wu-card {
  position: relative;
  background: rgba(255, 253, 246, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 8px;
  padding: 36px 28px 28px;
  cursor: default;
  overflow: hidden;
  transition:
    background .4s ease,
    border-color .4s ease,
    transform .4s cubic-bezier(.22, 1, .36, 1),
    box-shadow .4s ease;
  will-change: transform;
}

.wu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.wu-card:hover {
  background: rgba(255, 253, 246, 0.07);
  border-color: rgba(201, 169, 97, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(244, 180, 0, 0.12);
}

.wu-card:hover::before {
  opacity: 1;
}

.wu-card-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.wu-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(244, 180, 0, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.35);
  color: var(--honey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.wu-card:hover .wu-icon-wrap {
  background: rgba(244, 180, 0, 0.22);
  transform: rotate(-6deg) scale(1.06);
}

.wu-card-number {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--text-muted);
  opacity: .7;
}

.wu-card-title {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.25;
  color: var(--bg-ivory);
  margin-bottom: 14px;
  letter-spacing: -.005em;
}

.wu-card-desc {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sand);
  opacity: .78;
  margin-bottom: 22px;
}

.wu-card-bar {
  width: 32px;
  height: 2px;
  background: var(--honey);
  border-radius: 2px;
  margin-bottom: 18px;
  transition: width .4s cubic-bezier(.22, 1, .36, 1);
}

.wu-card:hover .wu-card-bar {
  width: 72px;
}

.wu-card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--honey);
  text-decoration: none;
  cursor: none;
  transition: gap .25s ease, color .25s ease;
}

.wu-card-link:hover {
  color: var(--honey-soft);
  gap: 14px;
}

.wu-card-link svg {
  transition: transform .25s ease;
}

.wu-card-link:hover svg {
  transform: translateX(2px);
}

/* responsive */
@media (max-width:1024px) {
  #WhyUs {
    padding: 96px 40px;
  }

  .wu-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .wu-counters {
    padding: 36px 20px;
  }

  .wu-counter {
    padding: 16px 12px;
    min-width: 140px;
  }

  .wu-counter-sep {
    display: none;
  }
}

@media (max-width:768px) {
  #WhyUs {
    padding: 72px 24px;
  }

  .wu-head {
    margin-bottom: 48px;
  }

  .wu-counters {
    padding: 28px 16px;
    margin-bottom: 48px;
    gap: 8px;
  }

  .wu-counter {
    flex: 1 1 45%;
    padding: 14px 8px;
    min-width: 0;
  }

  .wu-count {
    font-size: clamp(36px, 10vw, 56px);
  }

  .wu-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wu-card {
    padding: 28px 20px 24px;
  }

  .wu-card-title {
    font-size: 20px;
  }

  .wu-card-desc {
    font-size: 15px;
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {

  .wu-card,
  .wu-icon-wrap,
  .wu-card-bar,
  .wu-counter-divider {
    transition: none;
  }
}

/* ── MOBILE TEXT READABILITY ── */
@media (max-width:768px) {
  .chapter-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }

  .kitten-name {
    font-size: 24px;
  }

  .kitten-desc {
    font-size: 15px;
  }

  .kitten-price {
    font-size: 28px;
  }

  .sp-val {
    font-size: 14px;
  }

  .blog-title {
    font-size: 20px !important;
    line-height: 1.15;
  }

  .blog-excerpt {
    font-size: 15px !important;
  }

  .wu-card-title {
    font-size: 19px;
  }

  .wu-card-desc {
    font-size: 15px;
  }

  .wu-counter-label {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .cf-label {
    font-size: 9px;
  }

  .cf-input {
    font-size: 16px;
  }

  /* prevents iOS auto-zoom */
}

/* ═══════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════ */
.top-bar {
  width: 100%;
  background: var(--bg-deep);
  height: 38px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1100;
  overflow: hidden;
  transition: height .4s ease, opacity .4s ease;
}

.top-bar.hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.top-bar-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar-text {
  display: inline-block;
  animation: topBarScroll 28s linear infinite;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--honey);
  padding-left: 100%;
}

@keyframes topBarScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.top-bar-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 253, 246, 0.5);
  font-size: 18px;
  line-height: 1;
  cursor: none;
  padding: 4px 8px;
  transition: color .2s;
  z-index: 2;
}

.top-bar-close:hover {
  color: var(--honey);
}

/* ═══════════════════════════════════════════════
   MAIN HEADER
   ═══════════════════════════════════════════════ */
.main-header {
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background: rgba(42, 24, 16, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(201, 169, 97, 0);
  transition:
    top .4s ease,
    background .4s ease,
    backdrop-filter .4s ease,
    border-color .4s ease,
    height .3s ease;
  will-change: transform;
}

.main-header.bar-hidden {
  top: 0;
}

.main-header.scrolled {
  background: rgba(42, 24, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ── LOGO ── */
.header-logo {
  text-decoration: none;
  flex-shrink: 0;
  cursor: none;
  display: flex;
  align-items: center;
}

.header-logo-placeholder {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 112px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height .3s ease;
}

.header-logo-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.hlf-icon {
  font-size: 28px;
  line-height: 1;
}

.hlf-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hlf-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--bg-ivory);
  letter-spacing: .02em;
}

.hlf-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--honey);
  letter-spacing: .06em;
}

/* ── DESKTOP NAV ── */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  padding-left: 23px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bg-ivory);
  text-decoration: none;
  background: none;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .25s, background .25s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger[aria-expanded="true"] {
  color: var(--honey);
  background: rgba(244, 180, 0, 0.08);
}

.nav-chevron {
  transition: transform .3s ease;
  flex-shrink: 0;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

/* ── DROPDOWN ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: var(--bg-deep);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 200;
  pointer-events: none;
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown,
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* invisible bridge that fills the gap between trigger & menu so
   the mouse never leaves the hover region while moving down */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

/* small arrow pointing up */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--bg-deep);
  border-left: 1px solid rgba(201, 169, 97, 0.2);
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.nav-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  cursor: none;
  transition: background .2s;
}

.nav-drop-item:hover {
  background: rgba(244, 180, 0, 0.1);
}

.ndi-gen {
  width: 32px;
  height: 32px;
  background: rgba(244, 180, 0, 0.15);
  border: 1px solid rgba(244, 180, 0, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--honey);
  flex-shrink: 0;
}

.ndi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ndi-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--bg-ivory);
  letter-spacing: .04em;
}

.ndi-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--sand);
  opacity: .7;
}

.nav-drop-footer {
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  margin-top: 4px;
  padding-top: 8px;
  padding-bottom: 2px;
  text-align: center;
}

.nav-drop-cta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--honey);
  text-decoration: none;
  cursor: none;
  padding: 4px 8px;
  transition: color .2s;
}

.nav-drop-cta:hover {
  color: var(--honey-soft);
}

/* ── HEADER ACTIONS ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--bg-ivory);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: color .25s, background .25s;
  position: relative;
  flex-shrink: 0;
}

.header-icon-btn:hover {
  color: var(--honey);
  background: rgba(244, 180, 0, 0.1);
}

.header-icon-btn:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 2px;
}

/* search expand */
.header-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  overflow: hidden;
  background: rgba(42, 24, 16, 0.95);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 100px;
  display: flex;
  align-items: center;
  transition: width .35s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.header-search-box.open {
  width: 260px;
  opacity: 1;
  pointer-events: auto;
}

.header-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 16px;
  height: 38px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--bg-ivory);
  min-width: 0;
}

.header-search-input::placeholder {
  color: rgba(255, 253, 246, 0.4);
}

.search-close-btn {
  background: none;
  border: none;
  color: rgba(255, 253, 246, 0.5);
  cursor: none;
  padding: 0 12px;
  height: 38px;
  display: flex;
  align-items: center;
  transition: color .2s;
  flex-shrink: 0;
}

.search-close-btn:hover {
  color: var(--honey);
}

/* cart badge */
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--honey);
  color: var(--text-dark);
  border-radius: 50%;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform .2s ease;
}

.cart-badge.bump {
  transform: scale(1.4);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: none;
  padding: 0;
  border-radius: 8px;
  transition: background .25s;
}

.hamburger:hover {
  background: rgba(244, 180, 0, 0.1);
}

.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg-ivory);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1),
    opacity .35s ease,
    background .25s;
}

.hamburger.open .ham-line-1 {
  transform: translateY(7px) rotate(45deg);
  background: var(--honey);
}

.hamburger.open .ham-line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .ham-line-3 {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--honey);
}

/* ═══════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ═══════════════════════════════════════════════ */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1199;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}

.mob-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-deep);
  border-left: 1px solid rgba(201, 169, 97, 0.15);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  padding: 24px 0 32px;
}

.mob-menu.open {
  transform: translateX(0);
}

.mob-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 253, 246, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-ivory);
  cursor: none;
  transition: background .2s, color .2s;
}

.mob-menu-close:hover {
  background: rgba(244, 180, 0, 0.15);
  color: var(--honey);
}

.mob-menu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px 24px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  margin-bottom: 8px;
}

.mob-menu-logo span:first-child {
  font-size: 28px;
}

.mob-logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--bg-ivory);
  letter-spacing: .02em;
}

.mob-logo-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--honey);
}

/* mobile nav links */
.mob-nav {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}

.mob-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bg-ivory);
  text-decoration: none;
  background: none;
  border: none;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
  transition: color .2s, background .2s;
  text-align: left;
}

.mob-nav-link:hover {
  color: var(--honey);
  background: rgba(244, 180, 0, 0.05);
}

/* mobile accordion */
.mob-accordion {
  display: flex;
  flex-direction: column;
}

.mob-accordion-trigger {
  width: 100%;
}

.mob-acc-chevron {
  flex-shrink: 0;
  transition: transform .3s ease;
}

.mob-accordion-trigger[aria-expanded="true"] .mob-acc-chevron {
  transform: rotate(180deg);
}

.mob-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: rgba(255, 253, 246, 0.02);
}

.mob-accordion-body.open {
  max-height: 320px;
}

.mob-breed-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 28px 11px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: rgba(255, 253, 246, 0.75);
  text-decoration: none;
  cursor: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.06);
  transition: color .2s, background .2s;
}

.mob-breed-link:hover {
  color: var(--honey);
  background: rgba(244, 180, 0, 0.05);
}

.mob-gen {
  width: 28px;
  height: 28px;
  background: rgba(244, 180, 0, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--honey);
  flex-shrink: 0;
}

/* ── MOBILE BLOGS SLIDER ── */
.mob-blogs-section {
  padding: 24px 0 0;
  border-top: 1px solid rgba(201, 169, 97, 0.12);
  margin-top: 8px;
}

.mob-section-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0 28px;
  margin-bottom: 14px;
}

.mob-blog-slider-wrap {
  position: relative;
  overflow: hidden;
}

.mob-blog-slider {
  display: flex;
  gap: 12px;
  padding: 0 28px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.mob-blog-slider::-webkit-scrollbar {
  display: none;
}

.mob-blog-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: none;
}

.mbc-img-wrap {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 246, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.15);
}

.mbc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 8px;
}

.mbc-cat {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
}

.mbc-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--bg-ivory);
  line-height: 1.35;
}

.mob-blog-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 4px 0 8px;
}

.mob-blog-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 253, 246, 0.25);
  border: none;
  padding: 0;
  cursor: none;
  transition: background .3s, transform .3s;
}

.mob-blog-dot.active {
  background: var(--honey);
  transform: scale(1.3);
}

/* mobile CTA */
.mob-menu-cta {
  padding: 20px 28px 0;
  margin-top: auto;
}

.mob-cta-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--honey);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  cursor: none;
  transition: background .25s;
}

.mob-cta-btn:hover {
  background: var(--honey-soft);
}

/* ── RESPONSIVE HEADER ── */
@media (max-width:1024px) {
  .header-nav .nav-list {
    gap: 2px;
  }

  .nav-link {
    font-size: 11px;
    padding: 8px 10px;
  }

  .header-inner {
    padding: 0 24px;
    gap: 20px;
  }
}

@media (max-width:768px) {
  .main-header {
    height: 70px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    padding: 0 20px;
    gap: 12px;
  }

  .header-logo-img {
    height: 36px;
  }

  .hlf-name {
    font-size: 14px;
  }

  .header-search-box.open {
    width: 220px;
  }

  .top-bar {
    height: 32px;
  }

  .top-bar-text {
    font-size: 9px;
  }

  .main-header.bar-hidden {
    top: 0;
  }
}

@media (max-width:400px) {
  .header-search-box.open {
    width: 180px;
  }
}

/* push body content below header+topbar */
body {
  padding-top: 0px;
}









/* ═══════════════════════════════════════════════
   SECTION: FAQ
   ═══════════════════════════════════════════════ */
#FAQ{
  position:relative;
  background:var(--bg-cream);
  padding:120px 64px;
  overflow:hidden;
}

/* ambient glow orbs */
.faq-orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(90px);
}
.faq-orb-1{
  width:500px;height:500px;
  background:rgba(244,180,0,0.07);
  top:-80px;left:-120px;
}
.faq-orb-2{
  width:360px;height:360px;
  background:rgba(232,155,47,0.06);
  bottom:-60px;right:-60px;
}

/* inner grid */
.faq-inner{
  position:relative;z-index:1;
  max-width:1280px;margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* ── LEFT VISUAL PANEL ── */
.faq-visual{
  position:relative;
  height:520px;
  display:flex;align-items:center;justify-content:center;
}
.faq-tilt-wrap{
  position:relative;
  width:100%;height:100%;
  transform-style:preserve-3d;
  will-change:transform;
  cursor:none;
}

/* giant FAQ letters */
.faq-letters{
  position:absolute;
  bottom:40px;left:50%;
  transform:translateX(-50%);
  display:flex;align-items:flex-end;
  gap:0;
  z-index:1;
  user-select:none;
  pointer-events:none;
}
.faq-letter{
  font-family:'Playfair Display',serif;
  font-weight:900;
  font-size:clamp(120px,18vw,220px);
  line-height:1;
  letter-spacing:-.04em;
  display:block;
}
.faq-f{
  color:var(--honey);
  text-shadow:
    6px 10px 0 rgba(42,24,16,0.18),
    0 0 60px rgba(244,180,0,0.25);
}
.faq-a{
  color:var(--bg-deep);
  text-shadow:
    6px 10px 0 rgba(201,169,97,0.3),
    0 0 40px rgba(42,24,16,0.08);
}
.faq-q{
  color:var(--amber);
  text-shadow:
    6px 10px 0 rgba(42,24,16,0.15),
    0 0 50px rgba(232,155,47,0.2);
}

/* letter glow plate */
.faq-letter-glow{
  position:absolute;
  bottom:30px;left:50%;
  transform:translateX(-50%);
  width:380px;height:60px;
  background:radial-gradient(ellipse, rgba(244,180,0,0.18) 0%, transparent 70%);
  pointer-events:none;z-index:0;
  filter:blur(12px);
}

/* floating kitten images */
.faq-cat{
  position:absolute;
  z-index:3;
  will-change:transform;
}
.faq-cat img{
  display:block;
  object-fit:cover;
  border-radius:50% 50% 50% 50% / 60% 60% 40% 40%;
  border:3px solid var(--bg-cream);
  box-shadow:0 12px 40px rgba(42,24,16,0.25),
             0 0 0 1px rgba(201,169,97,0.2);
  filter:drop-shadow(0 8px 20px rgba(42,24,16,0.2));
}
/* cat 1 — top left, sits on F */
.faq-cat-1{
  top:30px;left:30px;
  transform:rotate(-8deg);
}
.faq-cat-1 img{ width:110px;height:110px; }

/* cat 2 — top right, leans on Q */
.faq-cat-2{
  top:40px;right:40px;
  transform:rotate(6deg);
}
.faq-cat-2 img{ width:95px;height:110px;border-radius:12px; }

/* cat 3 — middle, sits on A */
.faq-cat-3{
  top:50%;left:50%;
  transform:translate(-50%,-50%) rotate(-4deg) translateY(-40px);
  z-index:4;
}
.faq-cat-3 img{ width:85px;height:100px;border-radius:50% 50% 40% 40% / 55% 55% 45% 45%; }

/* cat 4 — bottom left corner */
.faq-cat-4{
  bottom:80px;left:10px;
  transform:rotate(5deg);
}
.faq-cat-4 img{
  width:75px;height:85px;
  border-radius:12px;
  opacity:.85;
}

/* floating ? marks */
.faq-qmark{
  position:absolute;
  font-family:'Playfair Display',serif;
  font-weight:900;
  color:var(--gold-stroke);
  opacity:0.5;
  user-select:none;pointer-events:none;
  z-index:0;
}
.faq-qm-1{ font-size:48px;top:80px;left:50%;opacity:.3; }
.faq-qm-2{ font-size:32px;top:160px;right:90px;opacity:.2; }
.faq-qm-3{ font-size:60px;top:20px;right:160px;opacity:.15; }

/* ── RIGHT: heading + accordion ── */
.faq-content{
  display:flex;flex-direction:column;gap:0;
}
.faq-head{ margin-bottom:40px; }
#FAQ .eyebrow{ color:var(--amber); }
.faq-title{
  font-family:'Playfair Display',serif;
  font-weight:900;
  font-size:clamp(32px,3.5vw,52px);
  line-height:1.05;
  color:var(--text-dark);
  letter-spacing:-.02em;
  margin:12px 0 14px;
}
.faq-subtitle{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:18px;
  color:var(--text-muted);
  line-height:1.5;
}

/* accordion */
.faq-accordion{
  display:flex;flex-direction:column;gap:0;
  border-top:1px solid rgba(201,169,97,0.2);
}
.faq-item{
  border-bottom:1px solid rgba(201,169,97,0.2);
  overflow:hidden;
}

/* question button */
.faq-question{
  width:100%;
  display:flex;align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 4px;
  background:none;border:none;
  text-align:left;cursor:none;
  transition:background .2s;
}
.faq-question:hover{
  background:rgba(244,180,0,0.04);
}
.faq-question span:first-child{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  font-size:19px;
  color:var(--text-dark);
  line-height:1.3;
  flex:1;
  transition:color .3s;
}
.faq-question[aria-expanded="true"] span:first-child{
  color:var(--amber);
}

/* +/x icon */
.faq-icon{
  width:32px;height:32px;flex-shrink:0;
  background:rgba(244,180,0,0.1);
  border:1.5px solid rgba(201,169,97,0.3);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--amber);
  transition:
    background .3s ease,
    border-color .3s ease,
    transform .4s cubic-bezier(.22,1,.36,1),
    color .3s;
}
.faq-question[aria-expanded="true"] .faq-icon{
  background:var(--honey);
  border-color:var(--honey);
  color:var(--text-dark);
  transform:rotate(45deg);
}

/* answer panel */
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s cubic-bezier(.22,1,.36,1);
}
.faq-answer.open{ max-height:300px; }
.faq-answer-inner{
  padding:0 4px 20px;
  opacity:0;
  transform:translateY(-8px);
  transition:opacity .35s ease .05s, transform .35s ease .05s;
}
.faq-answer.open .faq-answer-inner{
  opacity:1;transform:translateY(0);
}
.faq-answer-inner p{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:17px;
  color:var(--text-muted);
  line-height:1.7;
}

/* CTA link */
.faq-cta{
  display:inline-flex;align-items:center;gap:8px;
  margin-top:28px;
  font-family:'Montserrat',sans-serif;
  font-weight:700;font-size:12px;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--amber);text-decoration:none;cursor:none;
  transition:color .25s,gap .25s;
  width:fit-content;
}
.faq-cta:hover{ color:var(--honey);gap:14px; }

/* ── RESPONSIVE ── */
@media (max-width:1024px){
  #FAQ{ padding:96px 40px; }
  .faq-inner{ gap:48px; }
  .faq-letter{ font-size:clamp(100px,14vw,160px); }
}
@media (max-width:768px){
  #FAQ{ padding:72px 24px; }
  .faq-inner{
    grid-template-columns:1fr;
    gap:48px;
  }
  .faq-visual{ height:300px; }
  .faq-letter{ font-size:clamp(80px,20vw,130px); }
  .faq-cat-1 img{ width:80px;height:80px; }
  .faq-cat-2 img{ width:70px;height:80px; }
  .faq-cat-3 img{ width:65px;height:75px; }
  .faq-cat-4{ display:none; }
  .faq-qm-1,.faq-qm-2,.faq-qm-3{ display:none; }
  .faq-title{ font-size:clamp(28px,7vw,40px); }
  .faq-question span:first-child{ font-size:16px; }
  .faq-answer-inner p{ font-size:15px; }
}
@media (prefers-reduced-motion:reduce){
  .faq-answer{ transition:max-height .2s ease; }
  .faq-answer-inner{ transition:opacity .2s ease; }
  .faq-icon{ transition:background .2s,border-color .2s,color .2s; }
  .faq-tilt-wrap{ transform:none!important; }
}


/* ══════════════════════════════════════════════════════════════════
   SARASOTA SAVANNAHS — products.html (Available Kittens)
   External stylesheet. Bootstrap 5 grid + utilities provide layout;
   this file supplies design tokens, components, and responsive rules.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --bg-cream: #FFF8E7;
  --bg-ivory: #FFFDF6;
  --bg-deep: #2A1810;
  --honey: #F4B400;
  --honey-soft: #F8D14F;
  --amber: #E89B2F;
  --coral: #F58C7A;
  --sand: #F5DEB3;
  --text-dark: #2A1810;
  --text-muted: #8B7355;
  --gold-stroke: #C9A961;
}

/* ═══ 1 · RESET / BASE ═══ */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg-cream);
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }
img { display: block; max-width: 100%; }

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: .22em;
  color: var(--amber); text-transform: uppercase;
  display: inline-block; margin-bottom: 20px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 99999;
  background: var(--text-dark); color: var(--bg-ivory);
  padding: 12px 20px; border-radius: 0 0 6px 0;
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* ═══ 2 · CUSTOM CURSOR ═══ */
#cursor-dot {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px;
  background: var(--honey); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
}
#cursor-ring {
  position: fixed; top: 0; left: 0; width: 44px; height: 44px;
  border: 1.5px solid var(--honey); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease, border-color .3s ease;
}
#cursor-ring.cursor-hover { width: 80px; height: 80px; }
@media (hover: none) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}

/* ═══ 3 · FILM GRAIN ═══ */
#grain {
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: .04;
}

/* ═══ 4 · PAGE HEADER BAR ═══ */
.products-bar {
  background: var(--bg-cream);
  padding: 36px 0 28px;
  border-bottom: 1px solid rgba(201, 169, 97, .25);
}
.products-bar .container-fluid { max-width: 1500px; padding-inline: clamp(16px, 4vw, 48px); }
.breadcrumb-trail {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900; line-height: .95;
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: -.02em; color: var(--text-dark);
}
.result-count {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--text-muted); margin-top: 8px;
}
.result-count span { color: var(--amber); font-weight: 600; font-style: normal; }

.sort-select {
  appearance: none;
  background: var(--bg-ivory) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238B7355' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid rgba(201, 169, 97, .4); border-radius: 50px;
  padding: 11px 38px 11px 18px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: .04em; color: var(--text-dark);
  transition: border-color .3s ease, background-color .3s ease;
}
.sort-select:hover { border-color: var(--honey); }
.sort-select:focus { outline: none; border-color: var(--amber); }

.view-toggle {
  display: flex; gap: 4px;
  background: var(--bg-ivory); border: 1px solid rgba(201, 169, 97, .4);
  border-radius: 50px; padding: 4px;
}
.view-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 36px; border: none; background: transparent;
  border-radius: 50px; color: var(--text-muted);
  transition: background .25s ease, color .25s ease;
}
.view-btn.is-active { background: var(--honey-soft); color: var(--text-dark); }

.filter-trigger-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--text-dark); color: var(--bg-ivory);
  border: none; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  transition: background .3s ease;
}
.filter-trigger-btn:hover { background: var(--amber); }
.filter-count-badge {
  display: none; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  background: var(--honey); color: var(--text-dark);
  border-radius: 50px; font-size: 11px; font-weight: 700;
}

/* ═══ 5 · SIDEBAR FILTERS ═══ */
.products-main { padding: 36px 0 80px; }
.products-main .container-fluid { max-width: 1500px; padding-inline: clamp(16px, 4vw, 48px); }

.products-sidebar {
  background: var(--bg-ivory);
  border: 1px solid rgba(201, 169, 97, .25);
  border-radius: 18px;
  padding: 24px;
  position: sticky; top: 24px;
}
.filter-offcanvas .products-sidebar { position: static; border: none; padding: 0; background: transparent; }

.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(201, 169, 97, .25);
}
.sidebar-header h3 {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px;
}
.clear-all-btn {
  background: transparent; border: none;
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); transition: color .25s ease;
}
.clear-all-btn:hover { color: var(--coral); text-decoration: underline; }

.filter-section { padding: 18px 0; border-bottom: 1px solid rgba(201, 169, 97, .18); }
.filter-section:last-child { border-bottom: none; }
.filter-section h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 14px;
}

/* ═══ 6 · RANGE SLIDERS (dual-handle) ═══ */
.range-slider { padding: 6px 4px 0; }
.range-values {
  display: flex; justify-content: space-between;
  font-family: 'Space Mono', monospace; font-size: 13px;
  color: var(--text-dark); margin-bottom: 14px;
}
.range-track-wrap { position: relative; height: 28px; }
.range-rail {
  position: absolute; top: 50%; left: 0; right: 0; height: 4px;
  transform: translateY(-50%);
  background: rgba(201, 169, 97, .3); border-radius: 4px;
}
.range-fill {
  position: absolute; top: 50%; height: 4px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--honey), var(--amber));
  border-radius: 4px;
}
.range-track-wrap input[type="range"] {
  position: absolute; top: 0; left: 0; width: 100%; height: 28px;
  margin: 0; background: none; pointer-events: none;
  -webkit-appearance: none; appearance: none;
}
.range-track-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  pointer-events: auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-ivory); border: 3px solid var(--amber);
  box-shadow: 0 2px 6px rgba(42, 24, 16, .2);
  cursor: none;
}
.range-track-wrap input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-ivory); border: 3px solid var(--amber);
  box-shadow: 0 2px 6px rgba(42, 24, 16, .2); cursor: none;
}

/* ═══ 7 · FILTER CHECKBOXES / PILLS ═══ */
.filter-checkbox {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; position: relative;
}
.filter-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-box {
  width: 19px; height: 19px; flex: 0 0 19px;
  border: 1.5px solid var(--gold-stroke); border-radius: 5px;
  background: var(--bg-ivory);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.checkbox-box::after {
  content: ""; width: 10px; height: 10px;
  background: var(--text-dark);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
  opacity: 0; transform: scale(.5); transition: all .18s ease;
}
.filter-checkbox input:checked + .checkbox-box {
  background: var(--honey); border-color: var(--amber);
}
.filter-checkbox input:checked + .checkbox-box::after { opacity: 1; transform: scale(1); }
.filter-checkbox input:focus-visible + .checkbox-box { outline: 2px solid var(--amber); outline-offset: 2px; }
.checkbox-label {
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
  color: var(--text-dark); flex: 1;
}
.checkbox-count {
  font-family: 'Space Mono', monospace; font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-cream); border-radius: 50px; padding: 2px 8px;
}

.gender-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.gender-pill {
  flex: 1; min-width: 70px; padding: 9px 12px;
  background: var(--bg-cream); border: 1px solid rgba(201, 169, 97, .4);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: .04em; color: var(--text-muted);
  transition: all .25s ease;
}
.gender-pill.is-active {
  background: var(--honey-soft); border-color: var(--amber);
  color: var(--text-dark);
}

/* ═══ 8 · OFFCANVAS STYLING OVERRIDES ═══ */
.filter-offcanvas {
  background: var(--bg-cream);
  width: min(360px, 88vw) !important;
}
.filter-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(201, 169, 97, .25);
  padding: 20px 24px;
}
.filter-offcanvas .offcanvas-title {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 24px;
  color: var(--text-dark);
}
.filter-offcanvas .offcanvas-body { padding: 16px 24px 32px; }
.filter-offcanvas .btn-close { --bs-btn-close-color: var(--text-dark); }

/* ═══ 9 · ACTIVE FILTER CHIPS ═══ */
.active-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.active-filters:empty { margin-bottom: 0; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 8px 7px 14px;
  background: var(--bg-ivory); border: 1px solid var(--gold-stroke);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12px; color: var(--text-dark);
}
.chip-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border: none; border-radius: 50%;
  background: var(--sand); color: var(--text-dark);
  font-size: 14px; line-height: 1;
  transition: background .2s ease;
}
.chip-x:hover { background: var(--coral); color: var(--bg-ivory); }

/* ═══ 10 · QUICK FILTER PILLS ═══ */
.quick-filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
}
.quick-pill {
  padding: 9px 16px;
  background: var(--bg-ivory); border: 1px solid rgba(201, 169, 97, .4);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12.5px; letter-spacing: .02em; color: var(--text-dark);
  transition: all .25s ease;
}
.quick-pill:hover { border-color: var(--honey); transform: translateY(-2px); }
.quick-pill.is-active {
  background: var(--text-dark); color: var(--bg-ivory); border-color: var(--text-dark);
}

/* ═══ 11 · PRODUCT GRID + CARDS ═══ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kitten-card {
  background: var(--bg-ivory);
  border: 1px solid rgba(201, 169, 97, .25);
  border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), box-shadow .4s ease, border-color .4s ease;
  will-change: transform;
}
.kitten-card:hover {
  box-shadow: 0 24px 50px -20px rgba(42, 24, 16, .35);
  border-color: var(--honey);
}
.card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}
.kitten-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-status {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 12px; border-radius: 50px;
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  backdrop-filter: blur(4px);
}
.card-status.available { background: rgba(244, 180, 0, .92); color: var(--text-dark); }
.card-status.reserved { background: rgba(245, 140, 122, .92); color: var(--bg-ivory); }
.card-status.sold { background: rgba(42, 24, 16, .85); color: var(--bg-ivory); }

.card-badges { position: absolute; top: 12px; right: 52px; z-index: 2; display: flex; gap: 6px; }
.card-flag {
  padding: 5px 9px; border-radius: 50px;
  background: var(--bg-ivory); border: 1px solid var(--gold-stroke);
  font-size: 11px; line-height: 1;
}

.wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px; border: none; border-radius: 50%;
  background: rgba(255, 253, 246, .92); backdrop-filter: blur(4px);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(42, 24, 16, .18);
  transition: transform .2s ease;
}
.wish-btn svg { width: 17px; height: 17px; fill: none; stroke: var(--text-muted); stroke-width: 1.8; }
.wish-btn.is-wished svg { fill: var(--coral); stroke: var(--coral); }

.card-body { padding: 18px 18px 8px; }
.card-gen {
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 6px;
}
.card-name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.05;
  color: var(--text-dark);
}
.card-trait {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 16px; color: var(--text-muted); margin-top: 4px;
}
.card-meta {
  display: flex; gap: 12px; margin-top: 10px;
  font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--text-muted);
}
.card-foot {
  margin-top: auto; padding: 12px 18px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201, 169, 97, .18);
}
.card-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; color: var(--text-dark); }
.card-view {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber); transition: gap .25s ease;
}

/* List view */
.products-grid.is-list { grid-template-columns: 1fr; gap: 16px; }
.products-grid.is-list .kitten-card { flex-direction: row; }
.products-grid.is-list .card-img-wrap { flex: 0 0 38%; aspect-ratio: auto; }
.products-grid.is-list .card-body { flex: 1; padding: 22px; }
.products-grid.is-list .card-foot {
  flex-direction: column; align-items: flex-end; justify-content: center;
  border-top: none; border-left: 1px solid rgba(201, 169, 97, .18);
  flex: 0 0 150px; gap: 10px;
}

/* Empty state */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-emoji { font-size: 52px; margin-bottom: 12px; }
.empty-state h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 26px; margin-bottom: 8px; }
.empty-state p { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }
.empty-state .clear-all-btn {
  background: var(--text-dark); color: var(--bg-ivory);
  padding: 11px 22px; border-radius: 50px;
}

/* ═══ 12 · PAGINATION ═══ */
.pagination-wrap {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 48px;
}
.page-btn {
  min-width: 42px; height: 42px; padding: 0 12px;
  background: var(--bg-ivory); border: 1px solid rgba(201, 169, 97, .4);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
  color: var(--text-dark); transition: all .25s ease;
}
.page-btn:hover { border-color: var(--honey); }
.page-btn.is-active { background: var(--text-dark); color: var(--bg-ivory); border-color: var(--text-dark); }

/* ═══ 13 · TOAST NOTIFICATIONS ═══ */
.toast-notification {
  position: fixed; left: 50%; bottom: 32px; z-index: 10000;
  transform: translate(-50%, 24px);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  background: var(--text-dark); color: var(--bg-ivory);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  box-shadow: 0 12px 30px rgba(42, 24, 16, .35);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast-notification.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--honey); color: var(--text-dark); font-size: 12px;
}

/* ═══ 14 · FOOTER CTA ═══ */
.products-cta {
  background: var(--bg-deep); color: var(--bg-ivory);
  padding: clamp(60px, 9vw, 110px) 0;
}
.products-cta .eyebrow { color: var(--honey-soft); }
.cta-heading {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(36px, 6vw, 72px); line-height: .95; letter-spacing: -.02em;
}
.cta-subtitle {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(17px, 2vw, 21px); color: rgba(255, 253, 246, .75);
  max-width: 540px; margin: 16px auto 32px;
}
.waitlist-form {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto;
}
.waitlist-form input {
  flex: 1; padding: 15px 22px;
  background: rgba(255, 253, 246, .08);
  border: 1px solid rgba(248, 209, 79, .4); border-radius: 50px;
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
  color: var(--bg-ivory);
}
.waitlist-form input::placeholder { color: rgba(255, 253, 246, .5); }
.waitlist-form input:focus { outline: none; border-color: var(--honey); }
.waitlist-form button {
  padding: 15px 30px;
  background: var(--honey); color: var(--text-dark);
  border: none; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; transition: background .3s ease;
}
.waitlist-form button:hover { background: var(--honey-soft); }

/* ══════════════════════════════════════════════════════════════════
   15 · RESPONSIVE BREAKPOINTS (Bootstrap-compatible)
   xl-down <1200 · lg-down <992 · md-down <768 · sm-down <576
   ══════════════════════════════════════════════════════════════════ */

/* <1200 (xl-): grid 2-up */
@media (max-width: 1199.98px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* <992 (lg-): sidebar offcanvas already handled by Bootstrap d-* classes */
@media (max-width: 991.98px) {
  .products-bar { padding: 28px 0 22px; }
  .products-main { padding: 24px 0 64px; }
  .col-lg-9 .products-content { padding-top: 4px; }
}

/* <768 (md-): grid 2-up, header actions full row */
@media (max-width: 767.98px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.is-list .kitten-card { flex-direction: column; }
  .products-grid.is-list .card-img-wrap { flex: none; aspect-ratio: 4 / 3; }
  .products-grid.is-list .card-foot {
    flex-direction: row; align-items: center; justify-content: space-between;
    border-left: none; border-top: 1px solid rgba(201, 169, 97, .18); flex: none;
  }
  .products-bar .col-lg-5 .d-flex { justify-content: flex-start !important; width: 100%; }
  .sort-select { flex: 1; }
}

/* <576 (sm-): single column, tighter cards */
@media (max-width: 575.98px) {
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .card-img-wrap { aspect-ratio: 16 / 11; }
  .card-body { padding: 14px 14px 6px; }
  .card-foot { padding: 10px 14px 14px; }
  .quick-filters { gap: 8px; }
  .quick-pill { font-size: 12px; padding: 8px 13px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input,
  .waitlist-form button { width: 100%; border-radius: 50px; }
  .pagination-wrap { margin-top: 32px; }
}

/* Touch devices: disable 3D tilt-driven transforms */
@media (hover: none) {
  .kitten-card { transform: none !important; }
  .kitten-card:hover { box-shadow: 0 10px 26px -16px rgba(42, 24, 16, .3); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════
   BLOG DETAIL PAGE — all classes prefixed bd-
   ════════════════════════════════════════════════ */

/* Reading progress bar */
.bd-progress-bar { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: rgba(42,24,16,0.05); z-index: 999; }
.bd-progress-fill { height: 100%; width: 0%; background: var(--honey); transition: width 0.1s linear; }

/* Hero image */
.bd-hero { width: 100%; padding: 0; }
.bd-hero-img-wrap { width: 100%; max-width: 1400px; margin: 0 auto; aspect-ratio: 16/9; position: relative; overflow: hidden; }
.bd-hero-img { width: 110%; height: 110%; object-fit: cover; position: absolute; top: -5%; left: -5%; will-change: transform; }
.bd-hero-caption { position: absolute; bottom: 24px; right: 32px; padding: 8px 14px; background: rgba(0,0,0,0.6); color: #fff; font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 4px; }

@media (max-width: 768px) {
  .bd-hero-img-wrap { aspect-ratio: 4/3; }
  .bd-hero-caption { bottom: 12px; right: 12px; font-size: 9px; padding: 6px 10px; }
}

/* Article header */
.bd-article-header { padding: 80px 0 60px; }
.bd-category-tag { display: inline-block; padding: 8px 18px; background: var(--honey-soft); color: var(--text-dark); font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; border-radius: 50px; }
.bd-article-title { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(36px, 6vw, 72px); line-height: 1.1; letter-spacing: -0.02em; color: var(--text-dark); margin: 24px 0; }
.bd-article-dek { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(18px, 2vw, 22px); color: var(--text-muted); line-height: 1.5; max-width: 600px; margin: 0 auto; }
.bd-meta { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.bd-author-block { display: flex; align-items: center; gap: 12px; }
.bd-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--honey); display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 12px; font-weight: 700; color: var(--text-dark); }
.bd-author-text { display: flex; flex-direction: column; text-align: left; }
.bd-author-name { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dark); }
.bd-author-role { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; color: var(--text-muted); }
.bd-meta-sep { display: inline-block; width: 1px; height: 32px; background: var(--gold-stroke); }
.bd-date-block { display: flex; flex-direction: column; text-align: left; }
.bd-date { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dark); }
.bd-read-time { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; color: var(--text-muted); }

@media (max-width: 768px) {
  .bd-article-header { padding: 48px 0 32px; }
  .bd-meta { gap: 16px; }
  .bd-meta-sep { display: none; }
}

/* Article body */
.bd-article-body { padding-bottom: 80px; }
.bd-article-body p { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 1.6vw, 21px); line-height: 1.75; color: var(--text-dark); margin-bottom: 28px; }
.bd-intro-para::first-letter { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 80px; float: left; line-height: 0.85; padding: 8px 14px 0 0; color: var(--amber); }
.bd-section-heading { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(28px, 3vw, 36px); color: var(--text-dark); line-height: 1.2; letter-spacing: -0.01em; margin: 56px 0 24px; position: relative; }
.bd-section-heading::before { content: ''; position: absolute; left: -32px; top: 0.6em; width: 14px; height: 14px; border-radius: 50%; background: var(--honey); }
.bd-article-body strong { color: var(--text-dark); font-weight: 700; }
.bd-article-body em { color: var(--text-dark); font-weight: 600; }
.bd-list { padding-left: 24px; margin: 24px 0 28px; }
.bd-list li { font-family: 'Cormorant Garamond', serif; font-size: 20px; line-height: 1.7; margin-bottom: 12px; color: var(--text-dark); }
.bd-list li::marker { color: var(--amber); }

@media (max-width: 768px) {
  .bd-intro-para::first-letter { font-size: 60px; }
  .bd-section-heading::before { display: none; }
  .bd-section-heading { margin: 40px 0 20px; }
}

/* Pullquote */
.bd-pullquote { margin: 56px -40px; padding: 40px 56px; background: var(--bg-ivory); border-left: 4px solid var(--honey); border-radius: 0 8px 8px 0; position: relative; }
.bd-pullquote p { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.4; color: var(--text-dark); margin: 0; }
.bd-pullquote-mark { position: absolute; top: 16px; left: 24px; font-family: 'Playfair Display', serif; font-size: 80px; color: var(--honey); opacity: 0.4; line-height: 0.5; }
.bd-pullquote-cite { display: block; margin-top: 20px; font-family: 'Space Mono', monospace; font-style: normal; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

@media (max-width: 768px) {
  .bd-pullquote { margin: 40px 0; padding: 32px 24px 32px 32px; }
  .bd-pullquote-mark { font-size: 50px; top: 12px; left: 16px; }
}

/* Inline image */
.bd-inline-image { margin: 56px -40px; }
.bd-inline-image img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; display: block; }
.bd-image-caption { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 12px; }

@media (max-width: 768px) {
  .bd-inline-image { margin: 32px 0; }
}

/* Takeaways box */
.bd-takeaways { margin: 56px 0; padding: 32px 32px 32px 40px; background: var(--honey-soft); border-radius: 8px; position: relative; }
.bd-takeaways-icon { position: absolute; top: 24px; left: -16px; width: 36px; height: 36px; background: var(--honey); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 8px 16px rgba(244,180,0,0.3); }
.bd-takeaways-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; color: var(--text-dark); margin-bottom: 12px; letter-spacing: -0.005em; }
.bd-takeaways .bd-list { margin: 0; }
.bd-takeaways .bd-list li { font-size: 17px; margin-bottom: 8px; }

@media (max-width: 768px) {
  .bd-takeaways-icon { left: -12px; width: 28px; height: 28px; font-size: 14px; }
}

/* Inline share row */
.bd-share-row { margin-top: 60px; padding-top: 32px; border-top: 1px solid rgba(201,169,97,0.3); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.bd-share-label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.bd-share-buttons { display: flex; gap: 8px; }
.bd-share-row .bd-share-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-ivory); border: 1.5px solid rgba(201,169,97,0.3); color: var(--text-dark); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.bd-share-row .bd-share-btn:hover { background: var(--honey); border-color: var(--honey); transform: translateY(-3px) rotate(-5deg); box-shadow: 0 10px 20px rgba(244,180,0,0.3); }
.bd-share-row .bd-save-btn[aria-pressed="true"] { background: var(--coral); border-color: var(--coral); color: #fff; }
.bd-share-row .bd-save-btn[aria-pressed="true"] svg { fill: currentColor; }

/* Author bio */
.bd-author-bio { padding: 60px 0; border-top: 1px solid rgba(201,169,97,0.25); }
.bd-author-card { display: flex; gap: 32px; align-items: center; padding: 40px 32px; background: var(--bg-ivory); border-radius: 12px; }
.bd-author-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--honey); box-shadow: 0 12px 24px rgba(42,24,16,0.15); flex-shrink: 0; }
.bd-author-content { flex: 1; }
.bd-author-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); }
.bd-author-fullname { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 24px; color: var(--text-dark); margin-top: 4px; }
.bd-author-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--text-muted); margin-top: 2px; }
.bd-author-text-full { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--text-dark); line-height: 1.6; margin-top: 12px; }
.bd-author-follow { display: inline-block; margin-top: 16px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); text-decoration: none; border-bottom: 1.5px solid var(--amber); padding-bottom: 2px; }
.bd-author-follow:hover { color: var(--coral); border-color: var(--coral); }

@media (max-width: 768px) {
  .bd-author-card { flex-direction: column; text-align: center; gap: 20px; padding: 32px 24px; }
  .bd-author-avatar { width: 80px; height: 80px; }
}

/* Newsletter CTA */
.bd-newsletter { padding: 80px 0; }
.bd-newsletter-card { padding: 48px 40px; background: var(--bg-deep); border-radius: 12px; color: var(--bg-ivory); text-align: center; }
.bd-newsletter-icon { font-size: 40px; color: var(--honey); margin-bottom: 16px; }
.bd-newsletter-heading { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(24px, 3vw, 32px); color: var(--bg-ivory); margin-bottom: 12px; }
.bd-newsletter-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: rgba(245,234,213,0.7); margin: 0 auto 28px; max-width: 460px; }
.bd-newsletter-form { display: flex; gap: 0; max-width: 420px; margin: 0 auto; }
.bd-newsletter-form input { flex: 1; padding: 16px 24px; background: rgba(255,253,246,0.1); border: 1px solid rgba(201,169,97,0.4); border-right: none; border-radius: 50px 0 0 50px; color: var(--bg-ivory); font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; outline: none; }
.bd-newsletter-form input::placeholder { color: rgba(245,234,213,0.5); }
.bd-newsletter-form button { padding: 16px 32px; background: var(--honey); color: var(--text-dark); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; border: none; border-radius: 0 50px 50px 0; cursor: pointer; transition: all 0.3s; }
.bd-newsletter-form button:hover { background: var(--honey-soft); transform: scale(1.05); }

@media (max-width: 576px) {
  .bd-newsletter-card { padding: 32px 24px; }
  .bd-newsletter-form { flex-direction: column; gap: 12px; }
  .bd-newsletter-form input { border-radius: 50px; border-right: 1px solid rgba(201,169,97,0.4); }
  .bd-newsletter-form button { border-radius: 50px; }
}

/* Related articles */
.bd-related { padding: 100px 0; background: var(--bg-cream); }
.bd-related-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.bd-related-eyebrow { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); }
.bd-related-title { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(32px, 4vw, 56px); color: var(--text-dark); margin-top: 8px; line-height: 1; letter-spacing: -0.02em; }
.bd-related-viewall { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dark); text-decoration: none; border-bottom: 2px solid var(--text-dark); padding-bottom: 4px; }
.bd-related-viewall:hover { color: var(--amber); border-color: var(--amber); }
.bd-related-card { display: block; text-decoration: none; color: var(--text-dark); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.bd-related-card:hover { transform: translateY(-8px); color: var(--text-dark); }
.bd-related-card-img { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; margin-bottom: 20px; background: var(--text-dark); }
.bd-related-card-img img { width: 110%; height: 110%; object-fit: cover; position: absolute; top: -5%; left: -5%; transition: transform 0.6s; }
.bd-related-card:hover .bd-related-card-img img { transform: scale(1.08); }
.bd-related-card-tag { position: absolute; top: 16px; left: 16px; padding: 6px 12px; background: var(--bg-ivory); color: var(--text-dark); font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; z-index: 2; }
.bd-related-card-content { padding: 0 4px; }
.bd-related-card-meta { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.bd-related-card-heading { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; color: var(--text-dark); line-height: 1.2; margin-bottom: 12px; transition: color 0.3s; }
.bd-related-card:hover .bd-related-card-heading { color: var(--amber); }
.bd-related-card-excerpt { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bd-related-card-link { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dark); border-bottom: 1.5px solid var(--text-dark); padding-bottom: 4px; transition: all 0.3s; }
.bd-related-card:hover .bd-related-card-link { color: var(--amber); border-color: var(--amber); }

@media (max-width: 768px) {
  .bd-related { padding: 60px 0; }
}

/* Back to journal CTA */
.bd-back-cta { padding: 60px 0 100px; border-top: 1px solid rgba(201,169,97,0.25); }
.bd-back-pill { display: inline-block; padding: 14px 28px; border: 2px solid var(--text-dark); color: var(--text-dark); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; border-radius: 50px; transition: all 0.3s; }
.bd-back-pill:hover { background: var(--text-dark); color: var(--bg-ivory); transform: translateY(-2px); }
.bd-back-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--text-muted); margin-top: 20px; }

/* Toast */
.bd-toast { position: fixed; top: 24px; left: 50%; transform: translateX(-50%) translateY(-80px); padding: 14px 24px; background: var(--text-dark); color: var(--bg-ivory); border-radius: 50px; box-shadow: 0 16px 32px rgba(42,24,16,0.3); display: flex; align-items: center; gap: 12px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; z-index: 1000; opacity: 0; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); }
.bd-toast.bd-toast-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.bd-toast-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--honey); color: var(--text-dark); display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bd-hero-img { transform: none !important; }
  .bd-related-card-img img { transform: none !important; }
  .bd-related-card:hover .bd-related-card-img img { transform: none !important; }
}

/* ════════════════════════════════════════════════
   FROM about.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   ABOUT.HTML — single-file standalone page (no header/footer yet)
   Reuses index.html design system: tokens, cursor, grain, scrub heading
   ══════════════════════════════════════════════════════════════════ */

/* ─── GLOBAL RESET ─── */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ─── DESIGN TOKENS (verbatim from index.html) ─── */
:root{
  --bg-cream:#FFF8E7;
  --bg-ivory:#FFFDF6;
  --bg-deep:#2A1810;
  --honey:#F4B400;
  --honey-soft:#F8D14F;
  --amber:#E89B2F;
  --coral:#F58C7A;
  --sand:#F5DEB3;
  --text-dark:#2A1810;
  --text-muted:#8B7355;
  --gold-stroke:#C9A961;
}

body{
  background:var(--bg-cream);
  color:var(--text-dark);
  font-family:'Cormorant Garamond',Georgia,serif;
  cursor:none;
}

/* ─── SKIP LINK (a11y) ─── */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:99999;
  background:var(--text-dark);color:var(--bg-ivory);
  padding:12px 20px;border-radius:0 0 6px 0;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.18em;
  text-decoration:none;text-transform:uppercase;
}
.skip-link:focus{left:0;}

/* ─── GLOBAL: CUSTOM CURSOR ─── */
#cursor-dot{
  position:fixed;top:0;left:0;width:10px;height:10px;
  background:var(--honey);border-radius:50%;
  pointer-events:none;z-index:9999;transform:translate(-50%,-50%);
}
#cursor-ring{
  position:fixed;top:0;left:0;width:44px;height:44px;
  border:1.5px solid var(--honey);border-radius:50%;
  pointer-events:none;z-index:9998;transform:translate(-50%,-50%);
  transition:width .3s ease,height .3s ease,border-color .3s ease;
}
#cursor-ring.cursor-hover{width:96px;height:96px;}

/* hide custom cursor on touch */
@media (hover:none){
  body{cursor:auto;}
  #cursor-dot,#cursor-ring{display:none;}
}

/* ─── GLOBAL: FILM GRAIN ─── */
#grain{
  position:fixed;inset:0;z-index:9990;
  pointer-events:none;opacity:.04;
}

/* ─── SHARED UTILITY CLASSES (copy from index.html) ─── */
.eyebrow{
  font-family:'Space Mono',monospace;
  font-size:11px;letter-spacing:.22em;
  color:var(--amber);text-transform:uppercase;
  margin-bottom:24px;
}
.chapter-heading{margin-bottom:32px;}
.chapter-heading .line{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:clamp(56px,10vw,180px);
  font-weight:900;line-height:.9;
  color:var(--text-dark);letter-spacing:-.02em;
  will-change:transform;
}
.chapter-heading .line-2{
  color:transparent;
  -webkit-text-stroke:1px rgba(42,24,16,.35);
}
.chapter-subtitle{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:20px;color:var(--text-muted);
  margin-top:8px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 1: HERO (3D LAYERED PARALLAX) ───
   ══════════════════════════════════════════════════════════════════ */
#about-hero{
  position:relative;height:100vh;overflow:hidden;
  perspective:1500px;
  background:linear-gradient(180deg,#FFF8E7 0%,#FBE9CC 60%,#F5DEB3 100%);
  display:flex;align-items:center;justify-content:center;
  text-align:center;
}
#about-hero::before{
  content:"";position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(circle at 30% 20%,rgba(244,180,0,.15) 0%,transparent 50%),
    radial-gradient(circle at 80% 70%,rgba(245,140,122,.10) 0%,transparent 50%);
  pointer-events:none;
}
.hero-inner{
  position:relative;z-index:5;
  max-width:900px;padding:0 32px;
  transform-style:preserve-3d;
}
.hero-inner .chapter-heading{margin-bottom:36px;}
.hero-inner .chapter-heading .line-2{
  -webkit-text-stroke:1px rgba(42,24,16,.45);
}
.hero-subtitle{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:clamp(18px,1.6vw,24px);
  color:var(--text-muted);line-height:1.6;
  max-width:680px;margin:0 auto;
}

/* hero floating decorative shapes (3D parallax) */
.hero-float{
  position:absolute;pointer-events:none;
  will-change:transform;
  transform-style:preserve-3d;
}
.hero-float svg{display:block;width:100%;height:100%;}
.hero-float.deep-back{opacity:.25;}
.hero-float.mid{opacity:.45;}
.hero-float.front{opacity:.7;}

/* scroll indicator */
.scroll-cue{
  position:absolute;left:50%;bottom:32px;
  transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:10px;
  z-index:6;
}
.scroll-cue-text{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.28em;text-transform:uppercase;
  color:var(--text-muted);
}
.scroll-cue-chev{
  width:18px;height:18px;color:var(--honey);
  will-change:transform;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 2: OUR STORY (PINNED HORIZONTAL 3D TIMELINE) ───
   ══════════════════════════════════════════════════════════════════ */
#about-story{
  position:relative;
  background:var(--bg-deep);
  color:var(--bg-ivory);
  overflow:hidden;
}
.story-pin{
  position:relative;
  height:100vh;
  width:100%;
  overflow:hidden;
  perspective:2000px;
  display:flex;
  align-items:center;
}
.story-heading{
  position:absolute;
  top:60px;
  left:50%;
  transform:translateX(-50%);
  z-index:5;
  text-align:center;
  pointer-events:none;
  width:90%;
  max-width:900px;
}
.story-heading .eyebrow{color:var(--honey);margin-bottom:12px;}
.story-heading .chapter-heading{margin-bottom:0;}
.story-heading .chapter-heading .line{font-size:clamp(40px,6vw,86px);}
.story-heading .chapter-heading .line-1{color:var(--bg-ivory);}
.story-heading .chapter-heading .line-2{
  color:transparent;
  -webkit-text-stroke:1px rgba(245,234,213,0.35);
}

.timeline-track{
  display:flex;
  gap:80px;
  padding:0 50vw;
  will-change:transform;
}

.milestone-card{
  flex:0 0 360px;
  height:480px;
  background:linear-gradient(135deg,rgba(255,253,246,0.05) 0%,rgba(244,180,0,0.08) 100%);
  border:1px solid rgba(201,169,97,0.3);
  border-radius:6px;
  padding:40px 32px;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 30px 60px rgba(0,0,0,0.4);
  transform-style:preserve-3d;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.milestone-year{
  font-family:'Playfair Display',serif;
  font-weight:900;
  font-size:72px;
  color:var(--honey);
  line-height:1;
  letter-spacing:-0.02em;
}

.milestone-title{
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-size:24px;
  color:var(--bg-ivory);
  margin-top:20px;
}

.milestone-desc{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:17px;
  color:rgba(245,234,213,0.8);
  line-height:1.6;
  margin-top:16px;
}

.milestone-icon{
  align-self:flex-end;
  font-size:24px;
  color:var(--honey);
  opacity:0.7;
}

@media (max-width:768px){
  /* On mobile, convert horizontal timeline to vertical stack */
  .story-pin{
    height:auto;
    min-height:auto;
    padding:120px 24px 80px;
    flex-direction:column;
    align-items:stretch;
  }
  .story-heading{
    position:relative;
    top:0;
    left:0;
    transform:none;
    margin-bottom:60px;
  }
  .timeline-track{
    flex-direction:column;
    gap:32px;
    padding:0;
  }
  .milestone-card{
    flex:0 0 auto;
    height:auto;
    width:100%;
  }
  .milestone-year{font-size:56px;}
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 3: STATS (3D ANIMATED COUNTERS) ───
   ══════════════════════════════════════════════════════════════════ */
#about-stats{
  padding:120px 48px;
  background:var(--bg-cream);
  perspective:1200px;
}
.stats-inner{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:40px;
  max-width:1280px;margin:0 auto;
}
.stat-block{
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:8px;
  padding:48px 24px;
  text-align:center;
  transform-style:preserve-3d;
  will-change:transform;
  transition:box-shadow .4s ease,background .4s ease;
  box-shadow:0 20px 40px rgba(42,24,16,.06);
}
.stat-block:hover{
  background:var(--honey-soft);
  box-shadow:0 40px 80px rgba(42,24,16,.15);
}
.stat-numwrap{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(56px,7vw,96px);
  color:var(--text-dark);line-height:1;
  letter-spacing:-.02em;
  display:flex;align-items:baseline;justify-content:center;gap:2px;
}
.stat-suffix{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(40px,5vw,72px);
  color:var(--amber);line-height:1;
}
.stat-label{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.22em;color:var(--amber);
  text-transform:uppercase;margin-top:16px;
}
.stat-desc{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:15px;color:var(--text-muted);
  margin:12px auto 0;max-width:200px;line-height:1.5;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 4: VALUES (3D FLIP CARDS) ───
   ══════════════════════════════════════════════════════════════════ */
#about-values{
  padding:140px 48px;
  background:linear-gradient(180deg,var(--bg-cream) 0%,var(--bg-ivory) 100%);
}
.values-inner{
  max-width:1280px;margin:0 auto;
  text-align:center;
}
.values-head{margin-bottom:80px;}
.values-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:32px;
  max-width:1080px;margin:0 auto;
}
.value-flip-card{
  width:100%;aspect-ratio:3/4;
  position:relative;perspective:1500px;
  cursor:none;
}
.flip-inner{
  position:relative;width:100%;height:100%;
  transform-style:preserve-3d;
  transition:transform .8s cubic-bezier(.22,1,.36,1);
}
.value-flip-card:hover .flip-inner,
.value-flip-card:focus-visible .flip-inner,
.value-flip-card.flipped .flip-inner{
  transform:rotateY(180deg);
}
.flip-face{
  position:absolute;inset:0;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  border-radius:8px;padding:40px 32px;
  display:flex;flex-direction:column;
}
.flip-front{
  background:var(--bg-ivory);
  border:1px solid var(--gold-stroke);
  align-items:center;justify-content:center;text-align:center;
}
.flip-icon{
  font-size:60px;line-height:1;
  color:var(--honey);margin-bottom:8px;
}
.flip-name{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:26px;color:var(--text-dark);
  margin-top:24px;letter-spacing:-.01em;
}
.flip-hint{
  position:absolute;bottom:24px;left:50%;
  transform:translateX(-50%);
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.20em;color:var(--text-muted);
  text-transform:uppercase;
}
.flip-back{
  background:var(--text-dark);color:var(--bg-ivory);
  transform:rotateY(180deg);
  justify-content:flex-start;
}
.flip-back .flip-name{
  font-size:22px;color:var(--honey);margin-top:0;
}
.flip-back-desc{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-weight:400;font-size:17px;
  color:var(--bg-ivory);line-height:1.6;
  margin-top:20px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 5: BREEDER (3D PORTRAIT) ───
   ══════════════════════════════════════════════════════════════════ */
#about-breeder{
  padding:140px 48px;
  background:var(--bg-deep);color:var(--bg-ivory);
}
.breeder-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:center;
  max-width:1280px;margin:0 auto;
}
.breeder-card{
  aspect-ratio:3/4;position:relative;
  perspective:1400px;
}
.breeder-img-wrap{
  width:100%;height:100%;
  border-radius:8px;overflow:hidden;
  transform-style:preserve-3d;
  will-change:transform;
  position:relative;
}
.breeder-card::before{
  content:"";position:absolute;inset:-8px;
  border:2px solid var(--honey);
  border-radius:12px;opacity:.6;
  pointer-events:none;z-index:2;
}
.breeder-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  display:block;will-change:transform;
}
.breeder-content .eyebrow{color:var(--honey);}
.breeder-name{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(48px,5vw,72px);
  color:var(--bg-ivory);letter-spacing:-.02em;
  line-height:1;margin-bottom:14px;
}
.breeder-title{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:22px;color:var(--sand);
  margin-bottom:28px;
}
.breeder-bio{
  font-family:'Montserrat',sans-serif;font-weight:400;
  font-size:16px;color:rgba(245,234,213,.85);
  line-height:1.7;
}
.breeder-signature{
  margin-top:36px;
  display:flex;flex-direction:column;gap:6px;
}
.signature-text{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:24px;color:var(--bg-ivory);
}
.signature-meta{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.20em;color:var(--honey);
  text-transform:uppercase;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 6: CTA ───
   ══════════════════════════════════════════════════════════════════ */
#about-cta{
  position:relative;overflow:hidden;
  padding:140px 48px;
  background:var(--bg-cream);
  text-align:center;
}
.cta-paw{
  position:absolute;pointer-events:none;
  color:var(--honey);
  will-change:transform,opacity;
}
.cta-inner{
  position:relative;z-index:5;
  max-width:800px;margin:0 auto;
}
.cta-buttons{
  display:flex;gap:16px;margin-top:40px;
  justify-content:center;flex-wrap:wrap;
}
.cta-btn{
  position:relative;overflow:hidden;
  display:inline-flex;align-items:center;justify-content:center;
  padding:18px 38px;
  border-radius:999px;
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:.14em;text-transform:uppercase;
  text-decoration:none;cursor:none;
  transition:transform .35s ease,background .35s ease,color .35s ease,box-shadow .35s ease;
}
.cta-btn-primary{
  background:var(--text-dark);color:var(--bg-ivory);
  border:2px solid var(--text-dark);
}
.cta-btn-primary::before{
  content:"";position:absolute;top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(244,180,0,.35),transparent);
  transition:left .6s ease;
}
.cta-btn-primary:hover::before{left:100%;}
.cta-btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(42,24,16,.28);
}
.cta-btn-secondary{
  background:transparent;color:var(--text-dark);
  border:2px solid var(--text-dark);
}
.cta-btn-secondary:hover{
  background:var(--text-dark);color:var(--bg-ivory);
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(42,24,16,.22);
}

/* ══════════════════════════════════════════════════════════════════
   ─── RESPONSIVE ───
   ══════════════════════════════════════════════════════════════════ */
@media (max-width:1024px){
  .stats-inner{grid-template-columns:repeat(2,1fr);}
  .values-grid{grid-template-columns:repeat(2,1fr);}
  .breeder-inner{grid-template-columns:1fr;gap:48px;}
  .breeder-card{max-width:500px;margin:0 auto;}
}
@media (max-width:768px){
  #about-hero{padding:80px 24px;}
  .hero-inner .chapter-heading .line{font-size:clamp(40px,14vw,80px);}
  .hero-subtitle{font-size:17px;}

  #about-stats{padding:80px 24px;}
  .stats-inner{grid-template-columns:repeat(2,1fr);gap:24px;}
  .stat-block{padding:36px 18px;}

  #about-values{padding:90px 24px;}
  .values-grid{grid-template-columns:1fr;gap:24px;max-width:420px;}

  #about-breeder{padding:90px 24px;}

  #about-cta{padding:90px 24px;}
  .cta-buttons{flex-direction:column;align-items:stretch;max-width:280px;margin:40px auto 0;}
  .cta-btn{width:100%;}
}

/* ══════════════════════════════════════════════════════════════════
   ─── REDUCED MOTION ───
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion:reduce){
  .flip-inner{transition:none!important;}
  .scroll-cue-chev{animation:none!important;}
}

/* ════════════════════════════════════════════════
   FROM contact.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   CONTACT.HTML — single-file standalone page (no header/footer yet)
   Reuses design system from index.html + about.html
   ══════════════════════════════════════════════════════════════════ */

/* ─── GLOBAL RESET ─── */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ─── DESIGN TOKENS (verbatim from index.html) ─── */
:root{
  --bg-cream:#FFF8E7;
  --bg-ivory:#FFFDF6;
  --bg-deep:#2A1810;
  --honey:#F4B400;
  --honey-soft:#F8D14F;
  --amber:#E89B2F;
  --coral:#F58C7A;
  --sand:#F5DEB3;
  --text-dark:#2A1810;
  --text-muted:#8B7355;
  --gold-stroke:#C9A961;
}

body{
  background:var(--bg-cream);
  color:var(--text-dark);
  font-family:'Cormorant Garamond',Georgia,serif;
  cursor:none;
}

/* ─── SKIP LINK ─── */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:99999;
  background:var(--text-dark);color:var(--bg-ivory);
  padding:12px 20px;border-radius:0 0 6px 0;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.18em;
  text-decoration:none;text-transform:uppercase;
}
.skip-link:focus{left:0;}

/* ─── GLOBAL: CUSTOM CURSOR ─── */
#cursor-dot{
  position:fixed;top:0;left:0;width:10px;height:10px;
  background:var(--honey);border-radius:50%;
  pointer-events:none;z-index:9999;transform:translate(-50%,-50%);
}
#cursor-ring{
  position:fixed;top:0;left:0;width:44px;height:44px;
  border:1.5px solid var(--honey);border-radius:50%;
  pointer-events:none;z-index:9998;transform:translate(-50%,-50%);
  transition:width .3s ease,height .3s ease,border-color .3s ease;
}
#cursor-ring.cursor-hover{width:96px;height:96px;}
@media (hover:none){
  body{cursor:auto;}
  #cursor-dot,#cursor-ring{display:none;}
}

/* ─── GLOBAL: FILM GRAIN ─── */
#grain{
  position:fixed;inset:0;z-index:9990;
  pointer-events:none;opacity:.04;
}

/* ─── SHARED UTILITY CLASSES ─── */
.eyebrow{
  font-family:'Space Mono',monospace;
  font-size:11px;letter-spacing:.22em;
  color:var(--amber);text-transform:uppercase;
  margin-bottom:24px;
}
.chapter-heading{margin-bottom:32px;}
.chapter-heading .line{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:clamp(56px,10vw,180px);
  font-weight:900;line-height:.9;
  color:var(--text-dark);letter-spacing:-.02em;
  will-change:transform;
}
.chapter-heading .line-2{
  color:transparent;
  -webkit-text-stroke:1px rgba(42,24,16,.35);
}
.chapter-subtitle{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:20px;color:var(--text-muted);
  margin-top:8px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 1: HERO (3D LAYERED PARALLAX) ───
   ══════════════════════════════════════════════════════════════════ */
#contact-hero{
  position:relative;height:80vh;min-height:600px;
  overflow:hidden;perspective:1500px;
  background:linear-gradient(180deg,var(--bg-cream) 0%,#FFEDC9 60%,var(--bg-ivory) 100%);
  display:flex;align-items:center;justify-content:center;text-align:center;
}
#contact-hero::before{
  content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(circle at 20% 30%,rgba(244,180,0,.16) 0%,transparent 50%),
    radial-gradient(circle at 80% 70%,rgba(245,140,122,.12) 0%,transparent 50%);
}
.contact-hero-inner{
  position:relative;z-index:5;
  max-width:900px;padding:0 32px;
  transform-style:preserve-3d;
}
.contact-hero-inner .chapter-heading .line-2{
  -webkit-text-stroke:1px rgba(42,24,16,.45);
}
.contact-hero-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:clamp(17px,1.5vw,22px);
  color:var(--text-muted);line-height:1.6;
  max-width:680px;margin:0 auto;
}

.hero-float{
  position:absolute;pointer-events:none;
  will-change:transform;transform-style:preserve-3d;
}
.hero-float svg{display:block;width:100%;height:100%;}
.hero-float.deep-back{opacity:.25;}
.hero-float.mid{opacity:.45;}
.hero-float.front{opacity:.7;}

/* scroll cue */
.scroll-cue{
  position:absolute;left:50%;bottom:32px;
  transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:10px;
  z-index:6;
}
.scroll-cue-text{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.28em;text-transform:uppercase;
  color:var(--text-muted);
}
.scroll-cue-chev{
  width:18px;height:18px;color:var(--honey);
  will-change:transform;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 2: FORM + INFO ───
   ══════════════════════════════════════════════════════════════════ */
#contact-main{
  padding:100px 48px 140px;
  background:var(--bg-cream);
}
.contact-main-inner{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:1.6fr 1fr;
  gap:60px;align-items:start;
}

/* ─── LEFT: form ─── */
.contact-form-wrap{
  position:relative;
  perspective:1500px;
}
.cat-watcher{
  width:160px;height:140px;
  margin:0 auto 32px;
  display:block;
  will-change:transform;
}
.cat-watcher .cat-eye-white{fill:#FFFDF6;}
.cat-watcher .cat-pupil{fill:var(--text-dark);}
.cat-watcher .cat-pupil-left,
.cat-watcher .cat-pupil-right{
  transition:transform .12s ease-out;
}
.contact-form-card{
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:12px;
  padding:48px 44px;
  box-shadow:0 30px 60px rgba(42,24,16,.08);
  position:relative;
  transform-style:preserve-3d;
  will-change:transform;
}
.form-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:28px;color:var(--text-dark);
  margin-bottom:8px;letter-spacing:-.01em;
}
.form-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:16px;color:var(--text-muted);
  margin-bottom:32px;
}

/* ─── FORM FIELDS ─── */
.form-row{margin-bottom:0;}
.form-row-2{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
}
.form-field{
  position:relative;margin-bottom:28px;
}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:none;
  border-bottom:1.5px solid rgba(42,24,16,.2);
  background:transparent;
  padding:24px 0 10px;
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:18px;color:var(--text-dark);
  outline:none;
  transition:border-color .3s ease;
  border-radius:0;
  appearance:none;
  -webkit-appearance:none;
}
.form-field textarea{
  resize:vertical;min-height:120px;
  font-family:'Cormorant Garamond',serif;
}
.form-field select{
  cursor:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232A1810' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;
  background-position:right 4px center;
  padding-right:24px;
}
.form-field label{
  position:absolute;left:0;top:24px;
  font-family:'Montserrat',sans-serif;font-weight:500;
  font-size:14px;color:var(--text-muted);
  pointer-events:none;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  transform-origin:left center;
}
/* floating label: input focused or has value */
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label{
  top:0;font-size:11px;
  color:var(--amber);
  letter-spacing:.15em;
  text-transform:uppercase;
  transform:scale(.95);
}
.field-line{
  position:absolute;bottom:0;left:0;
  width:0;height:2px;background:var(--honey);
  transition:width .4s cubic-bezier(.22,1,.36,1);
}
.form-field input:focus ~ .field-line,
.form-field textarea:focus ~ .field-line,
.form-field select:focus ~ .field-line{width:100%;}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{
  border-bottom-color:rgba(42,24,16,.4);
}
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible{
  outline:2px solid transparent;
  outline-offset:2px;
}

/* ─── SUBMIT BUTTON ─── */
.form-submit{
  position:relative;overflow:hidden;
  padding:18px 36px;
  background:var(--text-dark);color:var(--bg-ivory);
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:14px;letter-spacing:.2em;text-transform:uppercase;
  border:2px solid var(--text-dark);border-radius:50px;
  display:inline-flex;align-items:center;gap:12px;
  cursor:none;
  transition:all .4s cubic-bezier(.22,1,.36,1);
  margin-top:8px;
}
.form-submit::before{
  content:"";position:absolute;top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(244,180,0,.35),transparent);
  transition:left .6s ease;
}
.form-submit:hover{
  background:var(--honey);color:var(--text-dark);
  border-color:var(--honey);
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(244,180,0,.35);
}
.form-submit:hover::before{left:100%;}
.form-submit .submit-arrow{
  display:inline-block;transition:transform .35s ease;
  font-size:18px;
}
.form-submit:hover .submit-arrow{transform:translateX(8px);}
.form-submit.submitting{
  pointer-events:none;opacity:.85;
}

/* ─── SUCCESS STATE ─── */
.contact-success{
  text-align:center;padding:40px 0;
}
.success-icon{
  width:80px;height:80px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:40px;font-weight:900;
  margin:0 auto 24px;
  box-shadow:0 20px 40px rgba(244,180,0,.4);
}
.contact-success h3{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:32px;color:var(--text-dark);margin-bottom:12px;
}
.contact-success p{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:18px;color:var(--text-muted);
  max-width:400px;margin:0 auto 24px;line-height:1.6;
}
.success-back{
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:.2em;
  color:var(--amber);text-decoration:none;
  border-bottom:1.5px solid var(--amber);
  padding-bottom:4px;text-transform:uppercase;
}

/* ─── RIGHT: contact info ─── */
.contact-info{
  display:flex;flex-direction:column;gap:16px;
  perspective:1200px;
  transform-style:preserve-3d;
  will-change:transform;
}
.info-card{
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.25);
  border-radius:8px;
  padding:24px 28px;
  display:flex;align-items:center;gap:20px;
  cursor:none;
  transition:transform .4s ease,box-shadow .4s ease,border-color .4s ease;
  box-shadow:0 8px 20px rgba(42,24,16,.05);
  transform-style:preserve-3d;
  text-decoration:none;color:inherit;
}
.info-card:hover{
  transform:translateY(-6px) translateZ(30px);
  border-color:var(--honey);
  box-shadow:0 20px 40px rgba(42,24,16,.12);
}
.info-icon{
  width:52px;height:52px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;flex-shrink:0;
}
.info-content{display:flex;flex-direction:column;}
.info-label{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.22em;color:var(--amber);
  text-transform:uppercase;margin-bottom:4px;
}
.info-value{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:18px;color:var(--text-dark);line-height:1.3;
}
.info-note{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:14px;color:var(--text-muted);
  margin-top:24px;padding:16px;
  background:rgba(244,180,0,.10);
  border-left:3px solid var(--honey);
  border-radius:0 4px 4px 0;
  line-height:1.55;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 3: VISIT THE CATTERY ───
   ══════════════════════════════════════════════════════════════════ */
#contact-visit{
  padding:140px 48px;
  background:var(--bg-deep);color:var(--bg-ivory);
}
.visit-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:center;
  max-width:1280px;margin:0 auto;
}
.cattery-map{
  width:100%;aspect-ratio:1/1;
  border-radius:12px;overflow:hidden;
  position:relative;
  background:var(--bg-deep);
  border:1px solid rgba(244,180,0,.25);
}
.cattery-map iframe{
  width:100%;height:100%;border:0;display:block;
  filter:invert(.92) hue-rotate(180deg) saturate(.3);
}
.map-pin{
  position:absolute;top:50%;left:50%;
  width:56px;height:56px;
  transform:translate(-50%,-100%);
  z-index:5;color:var(--honey);
  pointer-events:none;will-change:transform;
}
.map-pin svg{width:100%;height:100%;display:block;
  filter:drop-shadow(0 6px 12px rgba(0,0,0,.45));}
.map-pin::after{
  content:"";position:absolute;
  bottom:0;left:50%;
  width:22px;height:10px;
  transform:translate(-50%,40%);
  border-radius:50%;
  background:radial-gradient(circle,rgba(244,180,0,.45) 0%,transparent 70%);
  animation:pinPulse 2s ease-out infinite;
}
@keyframes pinPulse{
  0%{transform:translate(-50%,40%) scale(1);opacity:.6;}
  100%{transform:translate(-50%,40%) scale(2);opacity:0;}
}
.visit-content .eyebrow{color:var(--honey);}
.visit-content .chapter-heading .line-1{color:var(--bg-ivory);font-size:clamp(48px,7vw,96px);}
.visit-content .chapter-heading .line-2{
  color:transparent;font-size:clamp(48px,7vw,96px);
  -webkit-text-stroke:1px rgba(245,234,213,.4);
}
.visit-desc{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:18px;color:rgba(245,234,213,.85);
  line-height:1.7;margin:8px 0 32px;
}
.visit-list{
  list-style:none;margin:0 0 36px;padding:0;
  display:flex;flex-direction:column;gap:14px;
}
.visit-list li{
  display:flex;align-items:flex-start;gap:14px;
  font-family:'Cormorant Garamond',serif;font-size:17px;
  color:var(--bg-ivory);line-height:1.5;
}
.visit-check{
  width:24px;height:24px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:900;flex-shrink:0;margin-top:2px;
}
.visit-cta{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 32px;
  background:var(--honey);color:var(--text-dark);
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:.2em;text-transform:uppercase;
  border-radius:50px;text-decoration:none;cursor:none;
  transition:transform .35s ease,box-shadow .35s ease,background .35s ease;
}
.visit-cta:hover{
  background:var(--honey-soft);
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(244,180,0,.4);
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 4: FAQ ───
   ══════════════════════════════════════════════════════════════════ */
#contact-faq{
  padding:140px 48px;
  background:var(--bg-cream);
}
.faq-inner{max-width:1280px;margin:0 auto;}
.faq-head{margin-bottom:60px;text-align:center;}
.faq-list{
  border-top:1px solid rgba(201,169,97,.3);
}
.faq-item{
  border-bottom:1px solid rgba(201,169,97,.3);
  padding:0;
}
.faq-question{
  width:100%;padding:28px 0;
  background:transparent;border:none;
  display:flex;justify-content:space-between;align-items:center;
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:22px;color:var(--text-dark);
  text-align:left;cursor:none;
  transition:color .3s ease;
  gap:24px;
}
.faq-question:hover,
.faq-item.is-open .faq-question{color:var(--amber);}
.faq-chevron{
  font-size:28px;color:var(--honey);
  width:32px;height:32px;
  display:flex;align-items:center;justify-content:center;
  transition:transform .4s cubic-bezier(.22,1,.36,1);
  flex-shrink:0;
  font-family:'Space Mono',monospace;font-weight:400;
}
.faq-item.is-open .faq-chevron{transform:rotate(45deg);}
.faq-answer{
  max-height:0;overflow:hidden;
  transition:max-height .5s cubic-bezier(.22,1,.36,1);
}
.faq-item.is-open .faq-answer{max-height:400px;}
.faq-answer p{
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-style:italic;font-size:18px;
  color:var(--text-muted);line-height:1.7;
  padding:0 0 28px;
  max-width:780px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 5: FINAL CTA ───
   ══════════════════════════════════════════════════════════════════ */
#contact-cta{
  padding:120px 48px;
  background:linear-gradient(135deg,var(--honey) 0%,var(--amber) 100%);
  color:var(--text-dark);
  text-align:center;
  position:relative;overflow:hidden;
}
.cta-paw{
  position:absolute;pointer-events:none;
  color:var(--text-dark);
  will-change:transform,opacity;
}
.contact-cta-inner{
  position:relative;z-index:5;
  max-width:800px;margin:0 auto;
}
.contact-cta-h{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(36px,5vw,64px);color:var(--text-dark);
  line-height:1.05;letter-spacing:-.02em;
}
.contact-cta-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:22px;color:rgba(42,24,16,.8);
  max-width:600px;margin:24px auto 40px;line-height:1.5;
}
.cta-buttons{
  display:flex;gap:16px;
  justify-content:center;flex-wrap:wrap;
}
.cta-btn{
  position:relative;overflow:hidden;
  display:inline-flex;align-items:center;justify-content:center;
  padding:18px 38px;
  border-radius:999px;
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:.14em;text-transform:uppercase;
  text-decoration:none;cursor:none;
  transition:transform .35s ease,background .35s ease,color .35s ease,box-shadow .35s ease;
}
.cta-btn-primary{
  background:var(--text-dark);color:var(--bg-ivory);
  border:2px solid var(--text-dark);
}
.cta-btn-primary::before{
  content:"";position:absolute;top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(244,180,0,.35),transparent);
  transition:left .6s ease;
}
.cta-btn-primary:hover::before{left:100%;}
.cta-btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(42,24,16,.28);
}
.cta-btn-secondary{
  background:transparent;color:var(--text-dark);
  border:2px solid var(--text-dark);
}
.cta-btn-secondary:hover{
  background:var(--text-dark);color:var(--bg-ivory);
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(42,24,16,.22);
}

/* ══════════════════════════════════════════════════════════════════
   ─── RESPONSIVE ───
   ══════════════════════════════════════════════════════════════════ */
@media (max-width:1024px){
  .contact-main-inner{
    grid-template-columns:1.4fr 1fr;gap:48px;
  }
  .visit-inner{grid-template-columns:1fr;gap:60px;}
  .cattery-map{max-width:560px;margin:0 auto;}
}
@media (max-width:768px){
  #contact-hero{height:60vh;min-height:480px;}
  .contact-hero-inner .chapter-heading .line{font-size:clamp(36px,14vw,72px);}

  #contact-main{padding:60px 24px 90px;}
  .contact-main-inner{grid-template-columns:1fr;gap:32px;}
  .cat-watcher{width:100px;height:88px;margin-bottom:24px;}
  .contact-form-card{padding:32px 24px;}
  .form-row-2{grid-template-columns:1fr;gap:0;}

  #contact-visit{padding:90px 24px;}
  .visit-inner{gap:40px;}

  #contact-faq{padding:90px 24px;}
  .faq-question{font-size:18px;padding:22px 0;}
  .faq-answer p{font-size:16px;padding:0 0 22px;}

  #contact-cta{padding:90px 24px;}
  .contact-cta-sub{font-size:18px;margin:20px auto 32px;}
  .cta-buttons{flex-direction:column;align-items:stretch;max-width:280px;margin:0 auto;}
  .cta-btn{width:100%;}
}

/* ══════════════════════════════════════════════════════════════════
   ─── REDUCED MOTION ───
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion:reduce){
  .scroll-cue-chev{animation:none!important;}
  .map-pin::after{animation:none!important;}
  .cat-watcher .cat-pupil-left,
  .cat-watcher .cat-pupil-right{transition:none!important;}
}

/* ════════════════════════════════════════════════
   FROM login.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   LOGIN.HTML — split-screen auth page
   ══════════════════════════════════════════════════════════════════ */

/* ─── GLOBAL RESET ─── */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
body.page-login html,
body.page-checkout html{overflow:hidden;}
body.page-login,
body.page-checkout{
  overflow:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ─── DESIGN TOKENS ─── */
:root{
  --bg-cream:#FFF8E7;
  --bg-ivory:#FFFDF6;
  --bg-deep:#2A1810;
  --honey:#F4B400;
  --honey-soft:#F8D14F;
  --amber:#E89B2F;
  --coral:#F58C7A;
  --sand:#F5DEB3;
  --text-dark:#2A1810;
  --text-muted:#8B7355;
  --gold-stroke:#C9A961;
}
body{
  background:var(--bg-cream);
  color:var(--text-dark);
  font-family:'Cormorant Garamond',Georgia,serif;
  cursor:none;
}

/* ─── SKIP LINK ─── */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:99999;
  background:var(--text-dark);color:var(--bg-ivory);
  padding:12px 20px;border-radius:0 0 6px 0;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.18em;
  text-decoration:none;text-transform:uppercase;
}
.skip-link:focus{left:0;}

/* ─── CURSOR ─── */
#cursor-dot{
  position:fixed;top:0;left:0;width:10px;height:10px;
  background:var(--honey);border-radius:50%;
  pointer-events:none;z-index:9999;transform:translate(-50%,-50%);
}
#cursor-ring{
  position:fixed;top:0;left:0;width:44px;height:44px;
  border:1.5px solid var(--honey);border-radius:50%;
  pointer-events:none;z-index:9998;transform:translate(-50%,-50%);
  transition:width .3s ease,height .3s ease,border-color .3s ease;
}
#cursor-ring.cursor-hover{width:96px;height:96px;}
@media (hover:none){
  body{cursor:auto;}
  #cursor-dot,#cursor-ring{display:none;}
}

/* ─── FILM GRAIN ─── */
#grain{
  position:fixed;inset:0;z-index:9990;
  pointer-events:none;opacity:.04;
}

/* ─── FOCUS-VISIBLE OUTLINE ─── */
a:focus-visible,button:focus-visible,input:focus-visible{
  outline:2px solid var(--honey);
  outline-offset:3px;
  border-radius:3px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── AUTH LAYOUT ───
   ══════════════════════════════════════════════════════════════════ */
.auth-layout{
  display:grid;grid-template-columns:1fr 1fr;
  width:100vw;
}

/* ══════════════════════════════════════════════════════════════════
   ─── FORM SIDE ───
   ══════════════════════════════════════════════════════════════════ */
.auth-form-side{
  background:var(--bg-cream);
  padding:60px 80px;
  display:flex;flex-direction:column;justify-content:space-between;
  overflow-y:auto;position:relative;
  height:100vh;
}
.auth-top{
  display:flex;flex-direction:column;gap:14px;align-items:flex-start;
}
.auth-brand{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;color:inherit;
}
.auth-brand-icon{
  width:36px;height:36px;border-radius:50%;
  background:var(--honey);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
}
.auth-brand-name{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:14px;letter-spacing:.02em;color:var(--text-dark);
  text-transform:uppercase;
}
.auth-back{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.18em;color:var(--text-muted);
  text-transform:uppercase;text-decoration:none;
  display:inline-flex;align-items:center;gap:6px;
  transition:color .3s ease;
}
.auth-back:hover{color:var(--amber);}

.auth-form-container{
  max-width:440px;width:100%;
  margin:0 auto;
  display:flex;flex-direction:column;gap:32px;
  padding:24px 0;
}

.auth-head .eyebrow{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.22em;color:var(--amber);
  text-transform:uppercase;margin-bottom:12px;
}
.auth-head h1{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(36px,4vw,52px);
  line-height:1;letter-spacing:-.02em;
  color:var(--text-dark);
}
.auth-head .auth-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:18px;color:var(--text-muted);
  line-height:1.5;margin-top:12px;
}

/* ─── SOCIAL BUTTONS ─── */
.social-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
}
.social-btn{
  padding:14px 0;
  background:var(--bg-ivory);
  border:1.5px solid rgba(201,169,97,.3);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  cursor:none;
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.social-btn:hover{
  border-color:var(--honey);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(42,24,16,.08);
}
.social-btn svg{display:block;}

/* ─── DIVIDER ─── */
.auth-divider{
  display:flex;align-items:center;gap:16px;
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.2em;color:var(--text-muted);
  text-transform:uppercase;
}
.auth-divider::before,
.auth-divider::after{
  content:"";flex:1;height:1px;background:rgba(201,169,97,.3);
}

/* ─── FLOATING-LABEL FIELDS ─── */
.auth-form{display:flex;flex-direction:column;gap:24px;}
.field{position:relative;}
.field input{
  width:100%;border:none;
  border-bottom:1.5px solid rgba(42,24,16,.2);
  background:transparent;
  padding:22px 0 10px;
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:18px;color:var(--text-dark);
  outline:none;border-radius:0;
  transition:border-color .3s ease;
}
.field input:focus{border-bottom-color:rgba(42,24,16,.4);}
.field label{
  position:absolute;left:0;top:22px;
  font-family:'Montserrat',sans-serif;font-weight:500;
  font-size:14px;color:var(--text-muted);
  pointer-events:none;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  transform-origin:left center;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label{
  top:0;font-size:11px;
  color:var(--amber);
  letter-spacing:.15em;
  text-transform:uppercase;
  transform:scale(.95);
}
.field-line{
  position:absolute;bottom:0;left:0;
  width:0;height:2px;background:var(--honey);
  transition:width .4s cubic-bezier(.22,1,.36,1);
}
.field input:focus ~ .field-line{width:100%;}

/* password show/hide toggle */
.field-pw{position:relative;}
.pw-toggle{
  position:absolute;right:0;top:50%;
  transform:translateY(-50%);
  padding:8px;background:transparent;border:none;
  color:var(--text-muted);cursor:none;
  transition:color .3s ease;
}
.pw-toggle:hover{color:var(--amber);}
.pw-toggle svg{width:18px;height:18px;display:block;}
.pw-toggle .eye-slash{display:none;}
.pw-toggle.is-visible .eye{display:none;}
.pw-toggle.is-visible .eye-slash{display:block;}

/* row: remember + forgot */
.auth-row{
  display:flex;justify-content:space-between;align-items:center;
  gap:16px;flex-wrap:wrap;
}
.co-check{
  display:inline-flex;align-items:center;gap:10px;
  cursor:none;font-family:'Montserrat',sans-serif;
  font-weight:500;font-size:13px;color:var(--text-dark);
  position:relative;
}
.co-check input{
  position:absolute;opacity:0;pointer-events:none;
}
.co-check .cbox{
  width:18px;height:18px;border-radius:3px;
  border:1.5px solid rgba(42,24,16,.3);
  background:var(--bg-ivory);
  display:flex;align-items:center;justify-content:center;
  font-size:11px;color:transparent;font-weight:900;
  transition:all .3s ease;flex-shrink:0;
}
.co-check input:checked ~ .cbox{
  background:var(--honey);
  border-color:var(--honey);
  color:var(--text-dark);
}
.auth-forgot{
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:13px;color:var(--text-dark);text-decoration:none;
  border-bottom:1px solid currentColor;padding-bottom:1px;
  transition:color .3s ease;
}
.auth-forgot:hover{color:var(--amber);}

/* ─── SUBMIT BUTTON ─── */
.auth-submit{
  width:100%;padding:18px 0;
  background:var(--text-dark);color:var(--bg-ivory);
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:14px;letter-spacing:.2em;text-transform:uppercase;
  border:none;border-radius:8px;
  position:relative;overflow:hidden;
  cursor:none;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  transition:all .4s cubic-bezier(.22,1,.36,1);
}
.auth-submit::before{
  content:"";position:absolute;top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(244,180,0,.4),transparent);
  transition:left .6s ease;
}
.auth-submit:not(.is-disabled):not(.is-loading):hover{
  background:var(--honey);color:var(--text-dark);
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(244,180,0,.4);
}
.auth-submit:not(.is-disabled):not(.is-loading):hover::before{left:100%;}
.auth-submit.is-disabled{
  opacity:.5;pointer-events:none;cursor:not-allowed;
}
.auth-submit.is-loading{pointer-events:none;}

.spinner{
  width:16px;height:16px;
  border:2px solid currentColor;
  border-top-color:transparent;
  border-radius:50%;
  animation:spin .8s linear infinite;
  display:inline-block;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ─── SWITCH LINK ─── */
.auth-switch{
  font-family:'Montserrat',sans-serif;font-weight:500;
  font-size:13px;color:var(--text-muted);
  text-align:center;
}
.auth-switch a{
  color:var(--text-dark);font-weight:700;
  text-decoration:none;border-bottom:1px solid currentColor;
  padding-bottom:1px;transition:color .3s ease;
}
.auth-switch a:hover{color:var(--amber);}

/* ─── FORM-SIDE FOOTER ─── */
.auth-form-foot{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.15em;color:var(--text-muted);
  text-align:center;
  display:flex;justify-content:center;gap:12px;flex-wrap:wrap;
}
.auth-form-foot a{
  color:var(--text-muted);text-decoration:none;
  transition:color .3s ease;
}
.auth-form-foot a:hover{color:var(--amber);}

/* ─── SUCCESS STATE (pre-rendered, hidden) ─── */
.auth-success{
  text-align:center;padding:40px 0;
  display:flex;flex-direction:column;align-items:center;gap:8px;
}
.auth-success[hidden]{display:none;}
.auth-success-icon{
  width:80px;height:80px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:40px;font-weight:900;
  margin:0 auto 24px;
  box-shadow:0 16px 40px rgba(244,180,0,.4);
}
.auth-success h2{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:36px;color:var(--text-dark);margin-bottom:8px;
}
.auth-success p{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:18px;color:var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════
   ─── BRAND SIDE ───
   ══════════════════════════════════════════════════════════════════ */
.auth-brand-side{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--bg-deep) 0%,#4A2D1A 50%,var(--bg-deep) 100%);
  color:var(--bg-ivory);
  padding:80px 60px;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  text-align:center;perspective:1200px;
  height:100vh;
}

/* decorative floats */
.brand-decor{
  position:absolute;inset:0;pointer-events:none;
}
.brand-float{
  position:absolute;
  will-change:transform;transform-style:preserve-3d;
}
.brand-float svg{width:100%;height:100%;display:block;}

/* content stack */
.brand-content{
  position:relative;z-index:2;
  max-width:480px;width:100%;
  display:flex;flex-direction:column;align-items:center;
  perspective:1200px;
}
.brand-hero{
  width:240px;height:240px;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.5));
  will-change:transform;
}
.brand-hero img{
  width:100%;height:100%;object-fit:contain;
  will-change:transform;
}
.brand-quote{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:clamp(28px,3vw,40px);
  color:var(--bg-ivory);line-height:1.2;
  margin-top:32px;
}

/* member testimonial (login variant) */
.member-testimonial{
  display:flex;flex-direction:column;gap:14px;
  margin-top:32px;align-items:center;
}
.test-quote-mark{
  font-size:60px;color:var(--honey);opacity:.4;
  line-height:1;font-family:'Playfair Display',serif;
}
.test-text{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-weight:400;font-size:20px;
  color:var(--bg-ivory);line-height:1.5;
}
.test-meta{
  display:flex;align-items:center;gap:12px;
  margin-top:8px;
}
.test-avatar{
  width:48px;height:48px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:18px;
  flex-shrink:0;
}
.test-name{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:15px;color:var(--bg-ivory);
}
.test-role{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.18em;color:var(--sand);
  text-transform:uppercase;margin-top:2px;
}
.test-stars{
  display:inline-flex;gap:3px;margin-top:6px;
}
.test-stars svg{width:14px;height:14px;color:var(--honey);}

/* trust signals */
.brand-trust{
  display:flex;justify-content:center;gap:32px;
  margin-top:40px;align-items:center;
}
.brand-trust-item{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.2em;color:rgba(245,234,213,.6);
  text-transform:uppercase;white-space:nowrap;
}
.brand-trust-sep{
  width:1px;height:20px;background:rgba(245,234,213,.2);
}

/* ══════════════════════════════════════════════════════════════════
   ─── RESPONSIVE ───
   ══════════════════════════════════════════════════════════════════ */
@media (max-width:1024px){
  .auth-layout{grid-template-columns:1fr .7fr;}
  .auth-form-side{padding:40px 48px;}
  .auth-brand-side{padding:48px 32px;}
  .brand-hero{width:180px;height:180px;}
}
@media (max-width:768px){
  html,body{overflow:auto;}
  .auth-layout{
    grid-template-columns:1fr;
    height:auto;min-height:100vh;
  }
  .auth-brand-side{
    height:auto;min-height:200px;
    padding:32px 24px;order:-1;
  }
  .brand-hero{width:90px;height:90px;}
  .brand-quote{font-size:20px;margin-top:16px;}
  .member-testimonial,
  .brand-trust{display:none;}
  .auth-form-side{
    padding:40px 24px;
    height:auto;
  }
  .social-row{grid-template-columns:1fr 1fr 1fr;}
}
@media (max-width:480px){
  .auth-head h1{font-size:30px;}
  .auth-form-container{gap:24px;}
}

/* ══════════════════════════════════════════════════════════════════
   ─── REDUCED MOTION ───
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion:reduce){
  .brand-float{display:none;}
  .auth-submit::before{transition:none!important;}
}

/* ════════════════════════════════════════════════
   FROM privacy.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   PRIVACY.HTML — quiet, readable legal page
   ══════════════════════════════════════════════════════════════════ */

/* ─── GLOBAL RESET ─── */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ─── DESIGN TOKENS ─── */
:root{
  --bg-cream:#FFF8E7;
  --bg-ivory:#FFFDF6;
  --bg-deep:#2A1810;
  --honey:#F4B400;
  --honey-soft:#F8D14F;
  --amber:#E89B2F;
  --coral:#F58C7A;
  --sand:#F5DEB3;
  --text-dark:#2A1810;
  --text-muted:#8B7355;
  --gold-stroke:#C9A961;
}
body{
  background:var(--bg-cream);
  color:var(--text-dark);
  font-family:'Cormorant Garamond',Georgia,serif;
  cursor:none;
}

/* ─── SKIP LINK ─── */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:99999;
  background:var(--text-dark);color:var(--bg-ivory);
  padding:12px 20px;border-radius:0 0 6px 0;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.18em;
  text-decoration:none;text-transform:uppercase;
}
.skip-link:focus{left:0;}

/* ─── CURSOR ─── */
#cursor-dot{
  position:fixed;top:0;left:0;width:10px;height:10px;
  background:var(--honey);border-radius:50%;
  pointer-events:none;z-index:9999;transform:translate(-50%,-50%);
}
#cursor-ring{
  position:fixed;top:0;left:0;width:44px;height:44px;
  border:1.5px solid var(--honey);border-radius:50%;
  pointer-events:none;z-index:9998;transform:translate(-50%,-50%);
  transition:width .3s ease,height .3s ease,border-color .3s ease;
}
#cursor-ring.cursor-hover{width:96px;height:96px;}
@media (hover:none){
  body{cursor:auto;}
  #cursor-dot,#cursor-ring{display:none;}
}

/* ─── FILM GRAIN ─── */
#grain{
  position:fixed;inset:0;z-index:9990;
  pointer-events:none;opacity:.04;
}

/* ─── FOCUS-VISIBLE OUTLINE ─── */
a:focus-visible,button:focus-visible{
  outline:2px solid var(--honey);
  outline-offset:3px;
  border-radius:3px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── READING PROGRESS BAR ───
   ══════════════════════════════════════════════════════════════════ */
.reading-progress{
  position:fixed;top:0;left:0;right:0;
  height:3px;z-index:9995;
  background:rgba(201,169,97,.1);
  pointer-events:none;
}
.reading-progress-bar{
  height:100%;width:0%;
  background:var(--honey);
  transition:width .1s linear;
}

/* ══════════════════════════════════════════════════════════════════
   ─── PAGE HEADER ───
   ══════════════════════════════════════════════════════════════════ */
.legal-header{
  padding:80px 48px 60px;
  max-width:1100px;margin:0 auto;
  border-bottom:1px solid rgba(201,169,97,.25);
}
.legal-crumb{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.2em;color:var(--text-muted);
  text-transform:uppercase;
  display:inline-flex;align-items:center;gap:8px;
}
.legal-crumb a{
  color:var(--text-muted);text-decoration:none;
  transition:color .3s ease;
}
.legal-crumb a:hover{color:var(--amber);}
.legal-crumb .crumb-sep{color:var(--gold-stroke);}
.legal-crumb .crumb-here{color:var(--text-dark);font-weight:700;}

.legal-h{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(48px,6vw,80px);
  letter-spacing:-.02em;line-height:1;
  color:var(--text-dark);margin-top:16px;
}
.legal-sub-row{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-top:24px;gap:24px;flex-wrap:wrap;
}
.legal-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-weight:400;font-size:20px;color:var(--text-muted);
  max-width:620px;
}
.updated-badge{
  padding:6px 14px;background:var(--honey-soft);
  color:var(--text-dark);border-radius:50px;
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.18em;text-transform:uppercase;
  white-space:nowrap;
}

/* ══════════════════════════════════════════════════════════════════
   ─── MAIN: TOC + CONTENT ───
   ══════════════════════════════════════════════════════════════════ */
.legal-main{
  padding:60px 48px 120px;
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:240px 1fr;
  gap:80px;align-items:start;
}

/* ─── TOC (DESKTOP) ─── */
.legal-toc{
  position:sticky;top:32px;
  padding:24px 0;
}
.toc-heading{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.22em;color:var(--text-muted);
  text-transform:uppercase;margin-bottom:16px;
}
.toc-list{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:2px;
}
.toc-list a{
  display:block;
  padding:8px 12px;border-radius:4px;
  font-family:'Montserrat',sans-serif;font-weight:500;
  font-size:13px;letter-spacing:.02em;
  color:var(--text-muted);text-decoration:none;
  border-left:2px solid transparent;
  cursor:none;
  transition:color .3s ease,background .3s ease,border-color .3s ease;
}
.toc-list a:hover{
  color:var(--text-dark);
  background:rgba(244,180,0,.08);
}
.toc-list a.is-active{
  color:var(--text-dark);
  border-left-color:var(--honey);
  font-weight:600;
  background:rgba(244,180,0,.08);
}

/* ─── TOC MOBILE PILL BAR (hidden desktop) ─── */
.legal-toc-mobile{
  display:none;
  position:sticky;top:0;z-index:50;
  background:var(--bg-cream);
  padding:14px 24px;
  margin:0 -24px 24px;
  border-bottom:1px solid rgba(201,169,97,.25);
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.legal-toc-mobile::-webkit-scrollbar{display:none;}
.legal-toc-mobile-inner{
  display:inline-flex;gap:8px;padding-right:24px;
}
.legal-toc-mobile a{
  display:inline-flex;align-items:center;
  padding:8px 14px;
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:50px;
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:11px;letter-spacing:.06em;
  color:var(--text-dark);text-decoration:none;
  white-space:nowrap;
  scroll-snap-align:start;
  transition:all .3s ease;
}
.legal-toc-mobile a.is-active{
  background:var(--honey);
  border-color:var(--honey);
  color:var(--text-dark);
}

/* ─── POLICY CONTENT ─── */
.legal-content{
  display:flex;flex-direction:column;gap:56px;
}
.policy-section{
  display:flex;flex-direction:column;gap:16px;
  scroll-margin-top:32px;
}
.policy-h{
  display:flex;align-items:center;gap:16px;
}
.policy-num{
  width:32px;height:32px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-family:'Space Mono',monospace;font-size:13px;font-weight:700;
  flex-shrink:0;
}
.policy-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:28px;color:var(--text-dark);
  letter-spacing:-.01em;line-height:1.2;
}

.policy-section p{
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:18px;line-height:1.75;
  color:var(--text-dark);
}
.policy-section p strong,
.policy-section li strong{
  color:var(--text-dark);font-weight:700;
}
.policy-section ul{
  list-style:none;padding-left:24px;
  display:flex;flex-direction:column;gap:8px;
}
.policy-section ul li{
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:18px;line-height:1.7;
  color:var(--text-dark);
  position:relative;padding-left:20px;
}
.policy-section ul li::before{
  content:"•";
  position:absolute;left:0;top:0;
  color:var(--amber);font-size:20px;line-height:1.6;
  font-weight:700;
}

.info-callout{
  padding:20px 24px;
  background:var(--bg-ivory);
  border-left:3px solid var(--honey);
  border-radius:0 6px 6px 0;
  font-family:'Cormorant Garamond',serif;font-size:17px;
  line-height:1.7;color:var(--text-dark);
}
.info-callout p{margin-bottom:8px;}
.info-callout p:last-child{margin-bottom:0;}
.info-callout a{
  color:var(--amber);text-decoration:underline;
  text-underline-offset:3px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── FOOTER CTA ───
   ══════════════════════════════════════════════════════════════════ */
.legal-footer-cta{
  padding:80px 48px;
  background:var(--bg-ivory);
  border-top:1px solid rgba(201,169,97,.25);
  text-align:center;
}
.lfc-inner{max-width:600px;margin:0 auto;}
.lfc-h{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:32px;color:var(--text-dark);
  letter-spacing:-.01em;
}
.lfc-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:18px;color:var(--text-muted);
  margin-top:12px;line-height:1.5;
}
.lfc-buttons{
  display:flex;gap:12px;justify-content:center;flex-wrap:wrap;
  margin-top:32px;
}
.lfc-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:16px 32px;
  border-radius:50px;
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:.14em;text-transform:uppercase;
  text-decoration:none;cursor:none;
  border:2px solid transparent;
  transition:all .35s ease;
}
.lfc-btn-primary{
  background:var(--text-dark);color:var(--bg-ivory);
  border-color:var(--text-dark);
}
.lfc-btn-primary:hover{
  background:var(--honey);color:var(--text-dark);border-color:var(--honey);
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(244,180,0,.35);
}
.lfc-btn-secondary{
  background:transparent;color:var(--text-dark);
  border-color:var(--text-dark);
}
.lfc-btn-secondary:hover{
  background:var(--text-dark);color:var(--bg-ivory);
  transform:translateY(-3px);
}

/* ══════════════════════════════════════════════════════════════════
   ─── RESPONSIVE ───
   ══════════════════════════════════════════════════════════════════ */
@media (max-width:900px){
  .legal-header{padding:50px 24px 36px;}
  .legal-main{
    grid-template-columns:1fr;gap:24px;
    padding:32px 24px 80px;
  }
  .legal-toc{display:none;}
  .legal-toc-mobile{display:block;}
  .legal-content{gap:44px;}
  .policy-title{font-size:24px;}
  .policy-section p,
  .policy-section ul li{font-size:16px;}
  .info-callout{font-size:15px;padding:18px 20px;}
  .legal-footer-cta{padding:60px 24px;}
  .lfc-buttons{flex-direction:column;align-items:stretch;max-width:280px;margin:32px auto 0;}
  .lfc-btn{width:100%;}
}

/* ══════════════════════════════════════════════════════════════════
   ─── REDUCED MOTION ───
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion:reduce){
  .policy-section{opacity:1!important;transform:none!important;}
}

/* ════════════════════════════════════════════════
   FROM terms.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   TERMS.HTML — quiet, readable legal page (mirrors privacy.html)
   ══════════════════════════════════════════════════════════════════ */

/* ─── GLOBAL RESET ─── */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ─── DESIGN TOKENS ─── */
:root{
  --bg-cream:#FFF8E7;
  --bg-ivory:#FFFDF6;
  --bg-deep:#2A1810;
  --honey:#F4B400;
  --honey-soft:#F8D14F;
  --amber:#E89B2F;
  --coral:#F58C7A;
  --sand:#F5DEB3;
  --text-dark:#2A1810;
  --text-muted:#8B7355;
  --gold-stroke:#C9A961;
}
body{
  background:var(--bg-cream);
  color:var(--text-dark);
  font-family:'Cormorant Garamond',Georgia,serif;
  cursor:none;
}

/* ─── SKIP LINK ─── */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:99999;
  background:var(--text-dark);color:var(--bg-ivory);
  padding:12px 20px;border-radius:0 0 6px 0;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.18em;
  text-decoration:none;text-transform:uppercase;
}
.skip-link:focus{left:0;}

/* ─── CURSOR ─── */
#cursor-dot{
  position:fixed;top:0;left:0;width:10px;height:10px;
  background:var(--honey);border-radius:50%;
  pointer-events:none;z-index:9999;transform:translate(-50%,-50%);
}
#cursor-ring{
  position:fixed;top:0;left:0;width:44px;height:44px;
  border:1.5px solid var(--honey);border-radius:50%;
  pointer-events:none;z-index:9998;transform:translate(-50%,-50%);
  transition:width .3s ease,height .3s ease,border-color .3s ease;
}
#cursor-ring.cursor-hover{width:96px;height:96px;}
@media (hover:none){
  body{cursor:auto;}
  #cursor-dot,#cursor-ring{display:none;}
}

/* ─── FILM GRAIN ─── */
#grain{
  position:fixed;inset:0;z-index:9990;
  pointer-events:none;opacity:.04;
}

/* ─── FOCUS-VISIBLE OUTLINE ─── */
a:focus-visible,button:focus-visible{
  outline:2px solid var(--honey);
  outline-offset:3px;
  border-radius:3px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── READING PROGRESS BAR ───
   ══════════════════════════════════════════════════════════════════ */
.reading-progress{
  position:fixed;top:0;left:0;right:0;
  height:3px;z-index:9995;
  background:rgba(201,169,97,.1);
  pointer-events:none;
}
.reading-progress-bar{
  height:100%;width:0%;
  background:var(--honey);
  transition:width .1s linear;
}

/* ══════════════════════════════════════════════════════════════════
   ─── PAGE HEADER ───
   ══════════════════════════════════════════════════════════════════ */
.legal-header{
  padding:80px 48px 60px;
  max-width:1100px;margin:0 auto;
  border-bottom:1px solid rgba(201,169,97,.25);
}
.legal-crumb{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.2em;color:var(--text-muted);
  text-transform:uppercase;
  display:inline-flex;align-items:center;gap:8px;
}
.legal-crumb a{
  color:var(--text-muted);text-decoration:none;
  transition:color .3s ease;
}
.legal-crumb a:hover{color:var(--amber);}
.legal-crumb .crumb-sep{color:var(--gold-stroke);}
.legal-crumb .crumb-here{color:var(--text-dark);font-weight:700;}

.legal-h{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(48px,6vw,80px);
  letter-spacing:-.02em;line-height:1;
  color:var(--text-dark);margin-top:16px;
}
.legal-sub-row{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-top:24px;gap:24px;flex-wrap:wrap;
}
.legal-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-weight:400;font-size:20px;color:var(--text-muted);
  max-width:620px;
}
.updated-badge{
  padding:6px 14px;background:var(--honey-soft);
  color:var(--text-dark);border-radius:50px;
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.18em;text-transform:uppercase;
  white-space:nowrap;
}

/* ══════════════════════════════════════════════════════════════════
   ─── MAIN: TOC + CONTENT ───
   ══════════════════════════════════════════════════════════════════ */
.legal-main{
  padding:60px 48px 120px;
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:240px 1fr;
  gap:80px;align-items:start;
}

/* ─── TOC (DESKTOP) ─── */
.legal-toc{
  position:sticky;top:32px;
  padding:24px 0;
}
.toc-heading{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.22em;color:var(--text-muted);
  text-transform:uppercase;margin-bottom:16px;
}
.toc-list{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:2px;
}
.toc-list a{
  display:block;
  padding:8px 12px;border-radius:4px;
  font-family:'Montserrat',sans-serif;font-weight:500;
  font-size:13px;letter-spacing:.02em;
  color:var(--text-muted);text-decoration:none;
  border-left:2px solid transparent;
  cursor:none;
  transition:color .3s ease,background .3s ease,border-color .3s ease;
}
.toc-list a:hover{
  color:var(--text-dark);
  background:rgba(244,180,0,.08);
}
.toc-list a.is-active{
  color:var(--text-dark);
  border-left-color:var(--honey);
  font-weight:600;
  background:rgba(244,180,0,.08);
}

/* ─── TOC MOBILE PILL BAR ─── */
.legal-toc-mobile{
  display:none;
  position:sticky;top:0;z-index:50;
  background:var(--bg-cream);
  padding:14px 24px;
  margin:0 -24px 24px;
  border-bottom:1px solid rgba(201,169,97,.25);
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.legal-toc-mobile::-webkit-scrollbar{display:none;}
.legal-toc-mobile-inner{
  display:inline-flex;gap:8px;padding-right:24px;
}
.legal-toc-mobile a{
  display:inline-flex;align-items:center;
  padding:8px 14px;
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:50px;
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:11px;letter-spacing:.06em;
  color:var(--text-dark);text-decoration:none;
  white-space:nowrap;
  scroll-snap-align:start;
  transition:all .3s ease;
}
.legal-toc-mobile a.is-active{
  background:var(--honey);
  border-color:var(--honey);
  color:var(--text-dark);
}

/* ─── TERMS CONTENT ─── */
.legal-content{
  display:flex;flex-direction:column;gap:56px;
}
.terms-section{
  display:flex;flex-direction:column;gap:16px;
  scroll-margin-top:32px;
}
.policy-h{
  display:flex;align-items:center;gap:16px;
}
.policy-num{
  width:32px;height:32px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-family:'Space Mono',monospace;font-size:13px;font-weight:700;
  flex-shrink:0;
}
.policy-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:28px;color:var(--text-dark);
  letter-spacing:-.01em;line-height:1.2;
}

.terms-section p{
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:18px;line-height:1.75;
  color:var(--text-dark);
}
.terms-section p strong,
.terms-section li strong{
  color:var(--text-dark);font-weight:700;
}
.terms-section ul{
  list-style:none;padding-left:24px;
  display:flex;flex-direction:column;gap:8px;
}
.terms-section ul li{
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:18px;line-height:1.7;
  color:var(--text-dark);
  position:relative;padding-left:20px;
}
.terms-section ul li::before{
  content:"•";
  position:absolute;left:0;top:0;
  color:var(--amber);font-size:20px;line-height:1.6;
  font-weight:700;
}

.info-callout{
  padding:20px 24px;
  background:var(--bg-ivory);
  border-left:3px solid var(--honey);
  border-radius:0 6px 6px 0;
  font-family:'Cormorant Garamond',serif;font-size:17px;
  line-height:1.7;color:var(--text-dark);
}
.info-callout p{margin-bottom:8px;}
.info-callout p:last-child{margin-bottom:0;}
.info-callout ul{
  list-style:none;padding-left:20px;
  display:flex;flex-direction:column;gap:6px;
  margin:8px 0;
}
.info-callout ul li{
  position:relative;padding-left:18px;font-size:16px;line-height:1.6;
}
.info-callout ul li::before{
  content:"•";position:absolute;left:0;top:0;
  color:var(--amber);font-weight:700;
}
.info-callout a{
  color:var(--amber);text-decoration:underline;
  text-underline-offset:3px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── FOOTER CTA ───
   ══════════════════════════════════════════════════════════════════ */
.legal-footer-cta{
  padding:80px 48px;
  background:var(--bg-ivory);
  border-top:1px solid rgba(201,169,97,.25);
  text-align:center;
}
.lfc-inner{max-width:600px;margin:0 auto;}
.lfc-h{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:32px;color:var(--text-dark);
  letter-spacing:-.01em;
}
.lfc-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:18px;color:var(--text-muted);
  margin-top:12px;line-height:1.5;
}
.lfc-buttons{
  display:flex;gap:12px;justify-content:center;flex-wrap:wrap;
  margin-top:32px;
}
.lfc-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:16px 32px;
  border-radius:50px;
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:.14em;text-transform:uppercase;
  text-decoration:none;cursor:none;
  border:2px solid transparent;
  transition:all .35s ease;
}
.lfc-btn-primary{
  background:var(--text-dark);color:var(--bg-ivory);
  border-color:var(--text-dark);
}
.lfc-btn-primary:hover{
  background:var(--honey);color:var(--text-dark);border-color:var(--honey);
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(244,180,0,.35);
}
.lfc-btn-secondary{
  background:transparent;color:var(--text-dark);
  border-color:var(--text-dark);
}
.lfc-btn-secondary:hover{
  background:var(--text-dark);color:var(--bg-ivory);
  transform:translateY(-3px);
}

/* ══════════════════════════════════════════════════════════════════
   ─── RESPONSIVE ───
   ══════════════════════════════════════════════════════════════════ */
@media (max-width:900px){
  .legal-header{padding:50px 24px 36px;}
  .legal-main{
    grid-template-columns:1fr;gap:24px;
    padding:32px 24px 80px;
  }
  .legal-toc{display:none;}
  .legal-toc-mobile{display:block;}
  .legal-content{gap:44px;}
  .policy-title{font-size:24px;}
  .terms-section p,
  .terms-section ul li{font-size:16px;}
  .info-callout{font-size:15px;padding:18px 20px;}
  .legal-footer-cta{padding:60px 24px;}
  .lfc-buttons{flex-direction:column;align-items:stretch;max-width:280px;margin:32px auto 0;}
  .lfc-btn{width:100%;}
}

/* ══════════════════════════════════════════════════════════════════
   ─── REDUCED MOTION ───
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion:reduce){
  .terms-section{opacity:1!important;transform:none!important;}
}

/* ════════════════════════════════════════════════
   FROM checkout.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   CHECKOUT.HTML — standalone checkout page (no header/footer yet)
   ══════════════════════════════════════════════════════════════════ */

/* ─── GLOBAL RESET ─── */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ─── DESIGN TOKENS ─── */
:root{
  --bg-cream:#FFF8E7;
  --bg-ivory:#FFFDF6;
  --bg-deep:#2A1810;
  --honey:#F4B400;
  --honey-soft:#F8D14F;
  --amber:#E89B2F;
  --coral:#F58C7A;
  --sand:#F5DEB3;
  --text-dark:#2A1810;
  --text-muted:#8B7355;
  --gold-stroke:#C9A961;
}
body{
  background:var(--bg-cream);
  color:var(--text-dark);
  font-family:'Cormorant Garamond',Georgia,serif;
  cursor:none;
}

/* ─── SKIP LINK ─── */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:99999;
  background:var(--text-dark);color:var(--bg-ivory);
  padding:12px 20px;border-radius:0 0 6px 0;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.18em;
  text-decoration:none;text-transform:uppercase;
}
.skip-link:focus{left:0;}

/* ─── CURSOR ─── */
#cursor-dot{
  position:fixed;top:0;left:0;width:10px;height:10px;
  background:var(--honey);border-radius:50%;
  pointer-events:none;z-index:9999;transform:translate(-50%,-50%);
}
#cursor-ring{
  position:fixed;top:0;left:0;width:44px;height:44px;
  border:1.5px solid var(--honey);border-radius:50%;
  pointer-events:none;z-index:9998;transform:translate(-50%,-50%);
  transition:width .3s ease,height .3s ease,border-color .3s ease;
}
#cursor-ring.cursor-hover{width:96px;height:96px;}
@media (hover:none){
  body{cursor:auto;}
  #cursor-dot,#cursor-ring{display:none;}
}

/* ─── FILM GRAIN ─── */
#grain{
  position:fixed;inset:0;z-index:9990;
  pointer-events:none;opacity:.04;
}

/* ─── SHARED UTILITIES ─── */
.eyebrow{
  font-family:'Space Mono',monospace;
  font-size:11px;letter-spacing:.22em;
  color:var(--amber);text-transform:uppercase;
  margin-bottom:14px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 1: TOP CHECKOUT BAR ───
   ══════════════════════════════════════════════════════════════════ */
.checkout-bar{
  padding:24px 48px;max-width:1400px;margin:0 auto;
  background:var(--bg-cream);
  border-bottom:1px solid rgba(201,169,97,.25);
  display:flex;justify-content:space-between;align-items:center;
  gap:24px;flex-wrap:wrap;
}
.checkout-brand{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;color:inherit;
}
.brand-icon{
  width:40px;height:40px;border-radius:50%;
  background:var(--honey);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}
.brand-name{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:16px;letter-spacing:.02em;color:var(--text-dark);
  text-transform:uppercase;
}
.checkout-progress{
  display:flex;align-items:center;gap:8px;
}
.cp-step{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;border-radius:50px;
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.18em;text-transform:uppercase;
  border:1px solid transparent;
  white-space:nowrap;
}
.cp-step.is-done{
  background:var(--text-dark);color:var(--bg-ivory);
}
.cp-step.is-current{
  background:var(--honey);color:var(--text-dark);
}
.cp-step.is-future{
  border-color:rgba(42,24,16,.2);color:var(--text-muted);
}
.cp-step .cp-check{font-size:10px;}
.cp-line{
  width:32px;height:1px;background:var(--gold-stroke);
}
.cp-line.is-done{background:var(--text-dark);}
.cp-line.is-current{background:var(--honey);}

.back-link{
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:13px;letter-spacing:.1em;
  color:var(--text-dark);text-decoration:none;
  display:inline-flex;align-items:center;gap:6px;
  transition:color .3s ease;
}
.back-link .back-arrow{transition:transform .3s ease;display:inline-block;}
.back-link:hover{color:var(--amber);}
.back-link:hover .back-arrow{transform:translateX(-4px);}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 2: MAIN CHECKOUT ───
   ══════════════════════════════════════════════════════════════════ */
#checkout-main{
  padding:40px 48px 100px;
  max-width:1320px;margin:0 auto;
  display:grid;grid-template-columns:1fr 420px;
  gap:60px;align-items:start;
}
.checkout-form-stack{
  display:flex;flex-direction:column;gap:40px;
}

/* ─── section block + header ─── */
.co-block{
  display:flex;flex-direction:column;gap:20px;
}
.co-block-head{
  display:flex;justify-content:space-between;align-items:flex-end;
  padding-bottom:16px;
  border-bottom:1px solid rgba(201,169,97,.25);
  gap:16px;
}
.co-head-left{
  display:flex;align-items:center;gap:14px;
}
.co-num{
  width:24px;height:24px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-family:'Space Mono',monospace;font-size:11px;font-weight:700;
}
.co-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:24px;color:var(--text-dark);letter-spacing:-.01em;
}
.co-edit{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.18em;color:var(--amber);
  text-transform:uppercase;text-decoration:none;
  border-bottom:1px solid transparent;
  transition:border-color .3s ease;
}
.co-edit:hover{border-bottom-color:var(--amber);}

/* ─── 2A: EXPRESS CHECKOUT ─── */
.express-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;
}
.express-btn{
  padding:16px;border-radius:8px;border:none;cursor:none;
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:14px;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  transition:transform .3s ease,box-shadow .3s ease;
}
.express-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(0,0,0,.18);
}
.btn-apple{background:#000;color:#fff;}
.btn-paypal{background:#FFC439;color:#003087;}
.btn-apple .apple-glyph{font-size:18px;line-height:1;}
.express-or{
  display:flex;align-items:center;gap:16px;
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.2em;color:var(--text-muted);
  text-transform:uppercase;
  margin-top:8px;
}
.express-or::before,
.express-or::after{
  content:"";flex:1;height:1px;background:var(--gold-stroke);
}

/* ─── FLOATING-LABEL FIELDS (shared) ─── */
.field{
  position:relative;
}
.field input,
.field select,
.field textarea{
  width:100%;border:none;
  border-bottom:1.5px solid rgba(42,24,16,.2);
  background:transparent;
  padding:24px 0 10px;
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:17px;color:var(--text-dark);
  outline:none;
  transition:border-color .3s ease;
  border-radius:0;
  appearance:none;-webkit-appearance:none;
}
.field textarea{resize:vertical;min-height:90px;}
.field select{
  cursor:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232A1810' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;background-position:right 4px center;
  padding-right:24px;
}
.field label{
  position:absolute;left:0;top:24px;
  font-family:'Montserrat',sans-serif;font-weight:500;
  font-size:14px;color:var(--text-muted);
  pointer-events:none;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  transform-origin:left center;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label,
.field select:valid ~ label{
  top:0;font-size:11px;
  color:var(--amber);
  letter-spacing:.15em;
  text-transform:uppercase;
  transform:scale(.95);
}
.field-line{
  position:absolute;bottom:0;left:0;
  width:0;height:2px;background:var(--honey);
  transition:width .4s cubic-bezier(.22,1,.36,1);
}
.field input:focus ~ .field-line,
.field textarea:focus ~ .field-line,
.field select:focus ~ .field-line{width:100%;}
.field input:focus,.field textarea:focus,.field select:focus{
  border-bottom-color:rgba(42,24,16,.4);
}
.field-row-2{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
}
.field-row-3{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:24px;
}

/* checkbox custom */
.co-check{
  display:inline-flex;align-items:flex-start;gap:12px;
  cursor:none;font-family:'Cormorant Garamond',serif;
  font-size:16px;color:var(--text-dark);line-height:1.5;
}
.co-check input{
  position:absolute;opacity:0;pointer-events:none;
}
.co-check .cbox{
  width:20px;height:20px;border-radius:4px;
  border:1.5px solid rgba(42,24,16,.4);
  background:var(--bg-ivory);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;color:transparent;font-weight:900;
  transition:all .3s ease;flex-shrink:0;margin-top:2px;
}
.co-check input:checked ~ .cbox{
  background:var(--honey);
  border-color:var(--honey);
  color:var(--text-dark);
}
.co-check a{
  color:var(--amber);text-decoration:underline;
  text-underline-offset:3px;
}

/* ─── 2C: DELIVERY METHOD ─── */
.delivery-options{
  display:flex;flex-direction:column;gap:12px;
}
.delivery-card{
  position:relative;
  padding:20px 24px;
  background:var(--bg-ivory);
  border:2px solid rgba(201,169,97,.3);
  border-radius:10px;
  display:flex;align-items:center;gap:16px;
  cursor:none;
  transition:transform .3s ease,border-color .3s ease,background .3s ease,box-shadow .3s ease;
}
.delivery-card:hover{
  border-color:rgba(244,180,0,.6);
  transform:translateY(-2px);
}
.delivery-card.is-selected{
  border-color:var(--text-dark);
  background:linear-gradient(135deg,var(--bg-ivory) 0%,#FFF0CC 100%);
  box-shadow:0 12px 24px rgba(42,24,16,.1);
}
.delivery-card input[type="radio"]{
  position:absolute;opacity:0;pointer-events:none;
}
.radio-circle{
  width:24px;height:24px;border-radius:50%;
  border:2px solid rgba(42,24,16,.3);
  background:transparent;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:all .3s ease;
}
.delivery-card.is-selected .radio-circle{
  border-color:var(--text-dark);
  background:var(--text-dark);
}
.delivery-card.is-selected .radio-circle::after{
  content:"";width:8px;height:8px;border-radius:50%;
  background:var(--honey);
}
.delivery-body{flex:1;}
.delivery-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:18px;color:var(--text-dark);
}
.delivery-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:15px;color:var(--text-muted);
  margin-top:4px;line-height:1.4;
}
.delivery-price{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:20px;color:var(--text-dark);
  flex-shrink:0;
}
.delivery-note{
  max-height:0;overflow:hidden;
  transition:max-height .5s ease;
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:14px;color:var(--text-muted);
  padding-left:40px;
}
.delivery-card.is-selected .delivery-note{
  max-height:60px;
  padding-top:10px;
}

/* ─── 2D: ADDRESS sections (pickup vs ship) ─── */
.addr-section{
  display:flex;flex-direction:column;gap:24px;
}
.pickup-block{
  padding:18px 20px;
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:8px;
  display:flex;align-items:flex-start;gap:14px;
  font-family:'Cormorant Garamond',serif;font-size:15px;
  color:var(--text-dark);line-height:1.5;
}
.pickup-icon{
  width:36px;height:36px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;flex-shrink:0;
}

/* ─── 2E: PAYMENT TABS ─── */
.pay-tabs{
  display:flex;gap:12px;margin-bottom:24px;flex-wrap:wrap;
}
.pay-tab{
  padding:12px 24px;
  border:1.5px solid rgba(42,24,16,.2);
  border-radius:50px;
  background:transparent;color:var(--text-dark);
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:13px;letter-spacing:.12em;text-transform:uppercase;
  cursor:none;
  transition:all .3s ease;
}
.pay-tab:hover{border-color:var(--honey);}
.pay-tab.is-active{
  background:var(--text-dark);color:var(--bg-ivory);
  border-color:var(--text-dark);
}
.pay-panel{
  display:none;opacity:0;
  transition:opacity .4s ease;
}
.pay-panel.is-active{display:block;opacity:1;}

/* ─── CREDIT CARD PANEL ─── */
.cc-layout{
  display:grid;grid-template-columns:60% 40%;
  gap:32px;align-items:start;
}
.cc-form{display:flex;flex-direction:column;gap:24px;}
.cc-num-wrap{position:relative;}
.cc-brand-mini{
  position:absolute;right:0;top:24px;
  font-family:'Space Mono',monospace;font-weight:700;
  font-size:13px;letter-spacing:.1em;
  color:var(--amber);
}

/* CARD PREVIEW */
.cc-preview-wrap{
  display:flex;justify-content:center;align-items:flex-start;
  padding-top:8px;
}
.cc-preview{
  width:100%;max-width:320px;
  aspect-ratio:1.586/1;
  position:relative;perspective:1500px;
  will-change:transform;
}
.cc-inner{
  width:100%;height:100%;
  position:relative;transform-style:preserve-3d;
  transition:transform .7s cubic-bezier(.22,1,.36,1);
  will-change:transform;
}
.cc-face{
  position:absolute;inset:0;
  backface-visibility:hidden;-webkit-backface-visibility:hidden;
  border-radius:14px;padding:24px;
  box-shadow:0 30px 60px rgba(0,0,0,.3);
  background:linear-gradient(135deg,#2A1810 0%,#4A2D1A 50%,#2A1810 100%);
  color:var(--bg-ivory);
  overflow:hidden;
}
.cc-face::before{
  content:"";position:absolute;
  width:280px;height:280px;
  top:-80px;right:-80px;
  background:radial-gradient(circle,rgba(244,180,0,.15) 0%,transparent 70%);
  pointer-events:none;
}
.cc-front{
  display:flex;flex-direction:column;justify-content:space-between;
}
.cc-front-top{
  display:flex;justify-content:space-between;align-items:flex-start;
}
.cc-chip{
  width:38px;height:28px;border-radius:5px;
  background:linear-gradient(135deg,#D9A441 0%,#F4B400 50%,#A07820 100%);
  position:relative;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);
}
.cc-chip::before,
.cc-chip::after{
  content:"";position:absolute;
  left:6px;right:6px;height:1px;
  background:rgba(0,0,0,.25);
}
.cc-chip::before{top:9px;}
.cc-chip::after{bottom:9px;}
.cc-brand{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:18px;letter-spacing:.06em;
  color:var(--honey);min-height:24px;text-align:right;
}
.cc-number-display{
  font-family:'Space Mono',monospace;font-size:20px;
  letter-spacing:.1em;color:var(--bg-ivory);
  margin:24px 0;
}
.cc-front-bot{
  display:flex;justify-content:space-between;align-items:flex-end;gap:16px;
}
.cc-label{
  font-family:'Space Mono',monospace;font-size:9px;
  letter-spacing:.2em;color:rgba(245,234,213,.6);
  text-transform:uppercase;display:block;margin-bottom:6px;
}
.cc-name-display{
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:14px;text-transform:uppercase;
  color:var(--bg-ivory);letter-spacing:.05em;
  max-width:200px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.cc-expiry-display{
  font-family:'Space Mono',monospace;font-size:14px;
  color:var(--bg-ivory);text-align:right;
}
.cc-back{
  transform:rotateY(180deg);
}
.cc-stripe{
  position:absolute;top:30px;left:0;right:0;
  height:50px;background:#1a0e08;
}
.cc-cvv-strip{
  position:absolute;top:100px;left:20px;right:60px;
  height:36px;background:#fff;border-radius:4px;
  display:flex;align-items:center;justify-content:flex-end;
  padding:0 12px;gap:8px;
}
.cc-cvv-label{
  font-family:'Space Mono',monospace;font-size:9px;
  letter-spacing:.2em;color:#666;text-transform:uppercase;
}
.cc-cvv-display{
  font-family:'Space Mono',monospace;font-size:18px;
  color:#000;letter-spacing:.1em;
}
.cc-back-sig{
  position:absolute;bottom:18px;left:20px;
  font-family:'Space Mono',monospace;font-size:9px;
  letter-spacing:.2em;color:rgba(245,234,213,.5);
  text-transform:uppercase;
}

/* Paypal panel */
.paypal-block{
  padding:32px 24px;
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:10px;
  text-align:center;
}
.paypal-block p{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:17px;color:var(--text-muted);
  margin-bottom:20px;
}
.paypal-logo{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:36px;color:#003087;letter-spacing:-.02em;
  margin-bottom:12px;
}
.paypal-logo span{color:#009cde;}
.paypal-cta{
  display:inline-block;padding:14px 32px;
  background:#FFC439;color:#003087;
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:14px;letter-spacing:.15em;text-transform:uppercase;
  border:none;border-radius:50px;cursor:none;
  transition:transform .3s ease,box-shadow .3s ease;
}
.paypal-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(0,0,0,.18);
}

/* Bank transfer panel */
.bank-block{
  padding:24px;
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:10px;
}
.bank-block h4{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:18px;color:var(--text-dark);margin-bottom:18px;
}
.bank-row{
  display:flex;justify-content:space-between;
  padding:12px 0;border-bottom:1px solid rgba(201,169,97,.2);
  font-family:'Cormorant Garamond',serif;
  font-size:15px;
}
.bank-row:last-of-type{border-bottom:none;}
.bank-row strong{
  color:var(--text-dark);font-weight:600;
}
.bank-note{
  margin-top:18px;padding:14px;
  background:var(--bg-cream);border-left:3px solid var(--honey);
  border-radius:0 6px 6px 0;
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:14px;color:var(--text-muted);line-height:1.5;
}

/* ─── 2G: PLACE ORDER ─── */
.terms-block{
  display:flex;flex-direction:column;gap:16px;
}
.place-order-btn{
  width:100%;padding:24px 32px;
  background:var(--text-dark);color:var(--bg-ivory);
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:16px;letter-spacing:.2em;text-transform:uppercase;
  border:none;border-radius:8px;
  position:relative;overflow:hidden;
  cursor:none;
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  transition:all .4s cubic-bezier(.22,1,.36,1);
  margin-top:8px;
}
.place-order-btn::before{
  content:"";position:absolute;top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(244,180,0,.4),transparent);
  transition:left .6s ease;
}
.place-order-btn:not(:disabled):hover{
  background:linear-gradient(135deg,var(--text-dark) 0%,var(--amber) 100%);
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(244,180,0,.4);
}
.place-order-btn:not(:disabled):hover::before{left:100%;}
.place-order-btn:disabled{
  opacity:.5;pointer-events:none;cursor:not-allowed;
}
.po-arrow{display:inline-block;}
.ssl-note{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.15em;color:var(--text-muted);
  text-transform:uppercase;margin-top:14px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── ORDER SUMMARY (right column / sticky) ───
   ══════════════════════════════════════════════════════════════════ */
.order-summary{
  position:sticky;top:24px;
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:12px;
  padding:32px 28px;
  box-shadow:0 20px 40px rgba(42,24,16,.08);
  display:flex;flex-direction:column;gap:24px;
  will-change:transform;
}
.os-head{
  display:flex;justify-content:space-between;align-items:baseline;
}
.os-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:22px;color:var(--text-dark);
}
.os-edit{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.18em;color:var(--amber);
  text-decoration:none;text-transform:uppercase;
}
.os-edit:hover{border-bottom:1px solid var(--amber);}

.os-product{
  display:flex;gap:16px;padding:16px 0;
  border-bottom:1px solid rgba(201,169,97,.2);
}
.os-img{
  width:80px;height:80px;border-radius:8px;
  background:var(--bg-cream);
  display:flex;align-items:center;justify-content:center;
  padding:8px;flex-shrink:0;
  will-change:transform;
}
.os-img img{
  max-width:100%;max-height:100%;object-fit:contain;
}
.os-prod-body{flex:1;display:flex;flex-direction:column;gap:4px;}
.os-prod-eyebrow{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.2em;color:var(--amber);text-transform:uppercase;
}
.os-prod-name{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:18px;color:var(--text-dark);
}
.os-prod-trait{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:14px;color:var(--text-muted);
}
.os-prod-price{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:16px;color:var(--text-dark);align-self:flex-start;
  white-space:nowrap;
}

/* payment toggle pills */
.os-paytype-head{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.2em;color:var(--text-muted);
  text-transform:uppercase;margin-bottom:10px;
}
.os-paytype{
  display:grid;grid-template-columns:1fr 1fr;gap:8px;
}
.os-paypill{
  padding:12px;border-radius:8px;
  border:1.5px solid rgba(201,169,97,.4);
  background:var(--bg-cream);
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:12px;letter-spacing:.06em;
  color:var(--text-dark);cursor:none;
  text-align:center;
  transition:all .3s ease;
  display:flex;flex-direction:column;gap:2px;
}
.os-paypill input[type="radio"]{
  position:absolute;opacity:0;pointer-events:none;
}
.os-paypill .pill-amount{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:18px;
}
.os-paypill.is-selected[data-pay="deposit"]{
  background:var(--honey);border-color:var(--honey);color:var(--text-dark);
}
.os-paypill.is-selected[data-pay="full"]{
  background:var(--text-dark);border-color:var(--text-dark);color:var(--bg-ivory);
}

/* promo */
.os-promo-toggle{
  background:transparent;border:none;cursor:none;
  font-family:'Space Mono',monospace;font-size:12px;
  letter-spacing:.15em;color:var(--amber);
  text-transform:uppercase;text-align:left;padding:0;
}
.os-promo-toggle:hover{color:var(--text-dark);}
.os-promo-box{
  max-height:0;overflow:hidden;
  transition:max-height .4s ease;
}
.os-promo-box.is-open{max-height:120px;}
.os-promo-row{
  display:flex;gap:8px;margin-top:10px;
}
.os-promo-row input{
  flex:1;padding:10px 12px;
  border:1.5px solid rgba(201,169,97,.4);
  border-radius:6px;
  background:var(--bg-cream);
  font-family:'Space Mono',monospace;font-size:12px;
  letter-spacing:.1em;color:var(--text-dark);
  text-transform:uppercase;outline:none;
}
.os-promo-row button{
  padding:10px 16px;background:var(--text-dark);color:var(--bg-ivory);
  border:none;border-radius:6px;cursor:none;
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:11px;letter-spacing:.15em;text-transform:uppercase;
  transition:background .3s ease;
}
.os-promo-row button:hover{background:var(--amber);}
.os-promo-msg{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:13px;color:#1a7a3a;margin-top:8px;
  display:flex;align-items:center;gap:6px;
}

/* totals */
.totals-block{
  display:flex;flex-direction:column;gap:0;
}
.totals-row{
  display:flex;justify-content:space-between;
  padding:6px 0;font-family:'Cormorant Garamond',serif;
  font-size:16px;color:var(--text-dark);
}
.totals-row.muted{color:var(--text-muted);}
.totals-row.promo{color:var(--coral);}
.totals-divider{
  height:1px;background:rgba(201,169,97,.3);
  margin:10px 0;
}
.totals-total{
  display:flex;justify-content:space-between;align-items:baseline;
}
.totals-total-label{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:18px;color:var(--text-dark);letter-spacing:.05em;
  text-transform:uppercase;
}
.totals-total-val{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:28px;color:var(--text-dark);
}

/* trust badges */
.os-trust{
  display:grid;grid-template-columns:1fr 1fr;gap:8px;
}
.os-badge{
  padding:8px;background:var(--bg-cream);border-radius:6px;
  font-family:'Space Mono',monospace;font-size:9px;
  letter-spacing:.15em;color:var(--text-muted);
  text-transform:uppercase;text-align:center;
}

/* help mini card */
.os-help{
  padding:16px;background:var(--bg-cream);
  border-radius:8px;border-left:3px solid var(--honey);
  display:flex;flex-direction:column;gap:6px;
}
.os-help-title{
  font-family:'Playfair Display',serif;font-weight:600;
  font-size:14px;color:var(--text-dark);
}
.os-help a{
  font-family:'Space Mono',monospace;font-size:11px;
  color:var(--text-dark);text-decoration:none;
  letter-spacing:.06em;
}
.os-help a:hover{color:var(--amber);}

/* mobile summary toggle */
.os-mobile-toggle{
  display:none;
  width:100%;padding:14px 16px;
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.3);
  border-radius:8px;
  font-family:'Space Mono',monospace;font-size:12px;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--text-dark);
  align-items:center;justify-content:space-between;
  cursor:none;
}
.os-mobile-toggle .os-chev{
  transition:transform .3s ease;
}
.os-mobile-toggle.is-open .os-chev{transform:rotate(180deg);}

/* ══════════════════════════════════════════════════════════════════
   ─── SUCCESS STATE ───
   ══════════════════════════════════════════════════════════════════ */
#checkout-success{
  position:relative;overflow:hidden;
  padding:80px 48px 120px;
  min-height:80vh;
}
#checkout-success[hidden]{display:none;}
.success-inner{
  max-width:760px;margin:0 auto;
  text-align:center;position:relative;z-index:5;
}
.success-confetti{
  position:absolute;inset:0;pointer-events:none;
  overflow:hidden;
}
.confetti-paw{
  position:absolute;left:50%;top:30%;
  width:32px;height:32px;
  color:var(--honey);
  opacity:0;
  will-change:transform,opacity;
}
.success-checkmark{
  width:120px;height:120px;border-radius:50%;
  background:var(--honey);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto;
  box-shadow:0 30px 60px rgba(244,180,0,.5);
  will-change:transform;
}
.success-checkmark svg{
  width:60px;height:60px;stroke:var(--text-dark);
  fill:none;stroke-width:4;
}
.success-h{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(40px,5vw,64px);
  color:var(--text-dark);letter-spacing:-.02em;
  margin-top:32px;line-height:1.05;
}
.success-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:22px;color:var(--text-muted);
  max-width:500px;margin:16px auto 40px;line-height:1.5;
}
.confirmation-card{
  background:var(--bg-ivory);
  border:1px solid var(--gold-stroke);
  border-radius:12px;padding:32px;
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
  text-align:left;
  box-shadow:0 20px 40px rgba(42,24,16,.08);
}
.conf-item{display:flex;flex-direction:column;gap:4px;}
.conf-label{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.22em;color:var(--text-muted);
  text-transform:uppercase;
}
.conf-value{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:18px;color:var(--text-dark);
  word-break:break-word;
}

.success-timeline{
  margin-top:60px;
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:24px;position:relative;
}
.success-timeline::before{
  content:"";position:absolute;
  top:24px;left:12%;right:12%;height:1px;
  background:var(--gold-stroke);z-index:0;
}
.step-item{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;gap:8px;position:relative;z-index:1;
}
.step-num{
  width:48px;height:48px;border-radius:50%;
  background:var(--bg-ivory);
  border:1.5px solid var(--honey);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}
.step-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:15px;color:var(--text-dark);
}
.step-desc{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:14px;color:var(--text-muted);line-height:1.4;
}

.success-actions{
  margin-top:48px;
  display:flex;gap:12px;justify-content:center;flex-wrap:wrap;
}
.btn-pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:16px 30px;border-radius:50px;
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:.15em;text-transform:uppercase;
  text-decoration:none;cursor:none;
  transition:all .35s ease;border:2px solid transparent;
}
.btn-primary-pill{
  background:var(--text-dark);color:var(--bg-ivory);
  border-color:var(--text-dark);
}
.btn-primary-pill:hover{
  background:var(--honey);color:var(--text-dark);border-color:var(--honey);
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(244,180,0,.4);
}
.btn-outline-pill{
  background:transparent;color:var(--text-dark);
  border-color:var(--text-dark);
}
.btn-outline-pill:hover{
  background:var(--text-dark);color:var(--bg-ivory);
  transform:translateY(-3px);
}
.btn-tert{
  background:transparent;color:var(--amber);
  border-color:transparent;text-decoration:underline;
  text-underline-offset:5px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── RESPONSIVE ───
   ══════════════════════════════════════════════════════════════════ */
@media (max-width:1024px){
  #checkout-main{grid-template-columns:1fr;gap:32px;}
  .order-summary{position:relative;top:0;order:-1;}
  .cc-layout{grid-template-columns:1fr;gap:24px;}
  .cc-preview-wrap{padding-top:0;}
}
@media (max-width:768px){
  .checkout-bar{padding:14px 20px;}
  .brand-name{display:none;}
  .checkout-progress{gap:4px;}
  .cp-step span:not(.cp-check){display:none;}
  .cp-step{padding:6px 8px;min-width:28px;justify-content:center;}
  .cp-line{width:16px;}
  .back-link span:not(.back-arrow){display:none;}

  #checkout-main{padding:24px 20px 80px;gap:24px;}
  .field-row-2,.field-row-3{grid-template-columns:1fr;gap:24px;}
  .express-grid{grid-template-columns:1fr;}
  .cc-preview{max-width:280px;}

  .order-summary{
    padding:20px 18px;
    display:none;
  }
  .order-summary.is-open{display:flex;}
  .os-mobile-toggle{display:flex;}

  #checkout-success{padding:60px 20px 90px;}
  .confirmation-card{grid-template-columns:1fr;gap:16px;padding:24px;}
  .success-timeline{
    grid-template-columns:1fr 1fr;gap:32px 16px;
  }
  .success-timeline::before{display:none;}
  .success-actions{flex-direction:column;align-items:stretch;max-width:280px;margin:48px auto 0;}
}

/* ══════════════════════════════════════════════════════════════════
   ─── REDUCED MOTION ───
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion:reduce){
  .cc-inner{transition:none!important;}
  .place-order-btn::before{transition:none!important;}
  .delivery-note{transition:none!important;}
}

/* ════════════════════════════════════════════════
   FROM product.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   PRODUCT.HTML — standalone product detail (no header/footer yet)
   ══════════════════════════════════════════════════════════════════ */

/* ─── GLOBAL RESET ─── */
*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* ─── DESIGN TOKENS ─── */
:root{
  --bg-cream:#FFF8E7;
  --bg-ivory:#FFFDF6;
  --bg-deep:#2A1810;
  --honey:#F4B400;
  --honey-soft:#F8D14F;
  --amber:#E89B2F;
  --coral:#F58C7A;
  --sand:#F5DEB3;
  --text-dark:#2A1810;
  --text-muted:#8B7355;
  --gold-stroke:#C9A961;
}
body{
  background:var(--bg-cream);
  color:var(--text-dark);
  font-family:'Cormorant Garamond',Georgia,serif;
  cursor:none;
}

/* ─── SKIP LINK ─── */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:99999;
  background:var(--text-dark);color:var(--bg-ivory);
  padding:12px 20px;border-radius:0 0 6px 0;
  font-family:'Space Mono',monospace;font-size:12px;letter-spacing:.18em;
  text-decoration:none;text-transform:uppercase;
}
.skip-link:focus{left:0;}

/* ─── CURSOR ─── */
#cursor-dot{
  position:fixed;top:0;left:0;width:10px;height:10px;
  background:var(--honey);border-radius:50%;
  pointer-events:none;z-index:9999;transform:translate(-50%,-50%);
}
#cursor-ring{
  position:fixed;top:0;left:0;width:44px;height:44px;
  border:1.5px solid var(--honey);border-radius:50%;
  pointer-events:none;z-index:9998;transform:translate(-50%,-50%);
  transition:width .3s ease,height .3s ease,border-color .3s ease;
}
#cursor-ring.cursor-hover{width:96px;height:96px;}
@media (hover:none){
  body{cursor:auto;}
  #cursor-dot,#cursor-ring{display:none;}
}

/* ─── FILM GRAIN ─── */
#grain{
  position:fixed;inset:0;z-index:9990;
  pointer-events:none;opacity:.04;
}

/* ─── SHARED UTILITIES ─── */
.eyebrow{
  font-family:'Space Mono',monospace;
  font-size:11px;letter-spacing:.22em;
  color:var(--amber);text-transform:uppercase;
  margin-bottom:24px;
}
.chapter-heading{margin-bottom:32px;}
.chapter-heading .line{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:clamp(56px,10vw,180px);
  font-weight:900;line-height:.9;
  color:var(--text-dark);letter-spacing:-.02em;
  will-change:transform;
}
.chapter-heading .line-2{
  color:transparent;
  -webkit-text-stroke:1px rgba(42,24,16,.35);
}
.chapter-subtitle{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:20px;color:var(--text-muted);
  margin-top:8px;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 1: BREADCRUMB BAR ───
   ══════════════════════════════════════════════════════════════════ */
.breadcrumb-bar{
  padding:28px 48px;max-width:100%;margin:0 auto;
  background:var(--bg-cream);
  padding-top: 40px;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:16px;
}
.crumb-trail{
  display:flex;align-items:center;gap:12px;
  font-family:'Space Mono',monospace;
  font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  flex-wrap:wrap;
}
.crumb-trail a{
  color:var(--text-muted);text-decoration:none;
  transition:color .3s ease;
}
.crumb-trail a:hover{color:var(--amber);}
.crumb-sep{color:var(--gold-stroke);}
.crumb-current{color:var(--text-dark);font-weight:700;}
.crumb-actions{
  display:flex;gap:12px;
}
.crumb-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;
  background:transparent;
  border:1px solid rgba(201,169,97,.3);
  border-radius:50px;
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:11px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--text-dark);
  cursor:none;
  transition:all .3s ease;
  position:relative;overflow:visible;
}
.crumb-btn:hover{
  border-color:var(--honey);
  background:var(--honey-soft);
}
.crumb-btn svg{width:14px;height:14px;}
.crumb-btn.is-active svg{
  fill:var(--coral);stroke:var(--coral);
}
.crumb-btn .crumb-spark{
  position:absolute;left:50%;top:50%;
  width:6px;height:6px;border-radius:50%;
  background:var(--coral);
  pointer-events:none;
  transform:translate(-50%,-50%);
  opacity:0;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 2: MAIN PRODUCT ───
   ══════════════════════════════════════════════════════════════════ */
#product-main{
  padding:40px 48px 100px;
  max-width:1320px;margin:0 auto;
}
.product-inner{
  display:grid;grid-template-columns:1.3fr 1fr;
  gap:80px;
}

/* ─── GALLERY ─── */
.product-gallery{position:relative;}
.gallery-main{
  width:100%;aspect-ratio:1/1;
  border-radius:12px;overflow:hidden;
  background:linear-gradient(135deg,var(--bg-ivory) 0%,var(--bg-cream) 100%);
  position:relative;perspective:1500px;
  box-shadow:0 30px 60px rgba(42,24,16,.1);
  display:flex;align-items:center;justify-content:center;
}
.gallery-main-inner{
  width:100%;height:100%;position:relative;
  transform-style:preserve-3d;will-change:transform;
  display:flex;align-items:center;justify-content:center;
}
.gallery-main-inner::before{
  content:"";position:absolute;
  width:60%;height:60%;
  top:60%;left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(244,180,0,.18) 0%,transparent 70%);
  pointer-events:none;
  transition:transform .5s ease;
}
.gallery-main:hover .gallery-main-inner::before{transform:translate(-50%,-50%) scale(1.2);}
.gallery-main img{
  max-width:90%;max-height:90%;
  object-fit:contain;
  transform:translateZ(40px);
  transition:transform .5s ease,opacity .35s ease;
  will-change:transform;
}
.gallery-badge{
  position:absolute;top:20px;right:20px;z-index:3;
  padding:8px 16px;
  background:var(--honey);color:var(--text-dark);
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.22em;text-transform:uppercase;
  border-radius:50px;
  box-shadow:0 6px 18px rgba(244,180,0,.4);
  will-change:transform;
}
.gallery-expand{
  position:absolute;top:20px;left:20px;z-index:3;
  width:36px;height:36px;border-radius:50%;
  background:rgba(42,24,16,.8);color:var(--bg-ivory);
  display:flex;align-items:center;justify-content:center;
  cursor:none;border:none;
  transition:transform .3s ease,background .3s ease;
}
.gallery-expand:hover{
  background:var(--text-dark);
  transform:scale(1.1);
}
.gallery-expand svg{width:16px;height:16px;}

.gallery-thumbs{
  display:grid;grid-template-columns:repeat(5,1fr);
  gap:12px;margin-top:16px;
}
.gallery-thumb{
  aspect-ratio:1/1;border-radius:6px;
  overflow:hidden;cursor:none;
  background:var(--bg-ivory);
  border:2px solid transparent;
  position:relative;
  transition:all .3s ease;
  padding:0;
  display:flex;align-items:center;justify-content:center;
  will-change:transform;
}
.gallery-thumb img{
  max-width:88%;max-height:88%;
  object-fit:contain;
  transition:transform .3s ease;
}
.gallery-thumb:hover{
  border-color:rgba(244,180,0,.5);
  transform:translateY(-3px);
}
.gallery-thumb.is-active{
  border-color:var(--honey);
  box-shadow:0 8px 20px rgba(244,180,0,.3);
}

/* ─── LIGHTBOX ─── */
.lightbox{
  position:fixed;inset:0;z-index:10000;
  background:rgba(42,24,16,.95);
  display:none;align-items:center;justify-content:center;
  padding:48px;
}
.lightbox.is-open{display:flex;}
.lightbox img{
  max-width:90%;max-height:90vh;
  object-fit:contain;
}
.lightbox-close{
  position:absolute;top:24px;right:24px;
  width:48px;height:48px;border-radius:50%;
  background:var(--bg-ivory);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  border:none;cursor:none;
  font-size:24px;font-weight:700;
}

/* ─── DETAILS ─── */
.product-details{
  display:flex;flex-direction:column;gap:24px;
}
.product-eyebrow{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.22em;color:var(--amber);
  text-transform:uppercase;
}
.product-name{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(48px,5vw,80px);
  color:var(--text-dark);line-height:1;letter-spacing:-.02em;
  margin:0;
}
.product-tagline{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:20px;color:var(--text-muted);line-height:1.5;
}
.product-rating{
  display:flex;align-items:center;gap:12px;flex-wrap:wrap;
}
.star-row{display:inline-flex;gap:2px;}
.star{
  width:18px;height:18px;color:var(--honey);
  opacity:0;transform:scale(.5);
  will-change:transform,opacity;
}
.star.is-lit{opacity:1;transform:scale(1);}
.rating-text{
  font-family:'Space Mono',monospace;font-size:12px;
  color:var(--text-muted);letter-spacing:.06em;
}
.rating-sep{
  width:1px;height:16px;background:var(--gold-stroke);
}
.rating-tica{
  font-family:'Space Mono',monospace;font-size:11px;
  color:var(--honey);letter-spacing:.12em;
}

.product-price-block{
  padding:20px 0;
  border-top:1px solid rgba(201,169,97,.3);
  border-bottom:1px solid rgba(201,169,97,.3);
  display:flex;flex-direction:column;gap:6px;
}
.price-main{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:52px;color:var(--text-dark);line-height:1;
}
.price-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:16px;color:var(--text-muted);
}
.price-foot{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.2em;color:var(--text-muted);text-transform:uppercase;
  margin-top:4px;
}

.product-desc p{
  font-family:'Montserrat',sans-serif;font-weight:400;
  font-size:15px;color:var(--text-dark);line-height:1.7;
  margin-bottom:14px;
}
.product-desc p:last-child{margin-bottom:0;}

.specs-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:16px 32px;
}
.spec{display:flex;flex-direction:column;gap:4px;}
.spec-label{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.2em;color:var(--text-muted);
  text-transform:uppercase;
}
.spec-value{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:16px;color:var(--text-dark);
}

/* ─── PAYMENT ─── */
.payment-heading{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:22px;color:var(--text-dark);
  margin-top:8px;
}
.payment-options{
  display:grid;grid-template-columns:1fr 1fr;
  gap:16px;
}
.payment-card{
  position:relative;
  padding:24px 20px;
  background:var(--bg-ivory);
  border:2px solid rgba(201,169,97,.3);
  border-radius:10px;
  cursor:none;
  transition:transform .4s cubic-bezier(.22,1,.36,1),
             background .4s ease,
             border-color .4s ease,
             box-shadow .4s ease;
  transform-style:preserve-3d;
  display:flex;flex-direction:column;gap:8px;
}
.payment-card:hover{
  transform:translateY(-6px) translateZ(20px);
  border-color:var(--honey);
  box-shadow:0 16px 32px rgba(42,24,16,.12);
}
.payment-card.is-selected{
  border-color:var(--text-dark);
  background:linear-gradient(135deg,var(--bg-ivory) 0%,#FFF0CC 100%);
  box-shadow:0 16px 32px rgba(42,24,16,.12);
}
.payment-card input[type="radio"]{
  position:absolute;opacity:0;pointer-events:none;
}
.payment-badge{
  position:absolute;top:-10px;right:16px;
  padding:4px 10px;border-radius:12px;
  font-family:'Space Mono',monospace;font-size:9px;
  letter-spacing:.2em;text-transform:uppercase;
}
.payment-badge.popular{background:var(--coral);color:#fff;}
.payment-badge.save{background:var(--honey);color:var(--text-dark);}
.payment-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:18px;color:var(--text-dark);
}
.payment-amount{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:36px;color:var(--amber);line-height:1;
}
.payment-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:14px;color:var(--text-muted);line-height:1.5;
}
.payment-check{
  position:absolute;top:14px;left:14px;
  width:24px;height:24px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:900;
  opacity:0;transform:scale(0) rotate(-180deg);
  transition:transform .5s cubic-bezier(.34,1.56,.64,1),opacity .3s ease;
}
.payment-card.is-selected .payment-check{
  opacity:1;transform:scale(1) rotate(0);
}

/* ─── ACTION BUTTONS ─── */
.btn-reserve{
  width:100%;padding:22px 32px;
  background:var(--text-dark);color:var(--bg-ivory);
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:14px;letter-spacing:.2em;text-transform:uppercase;
  border:none;border-radius:50px;
  position:relative;overflow:hidden;
  cursor:none;
  transition:all .4s ease;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
}
.btn-reserve::before{
  content:"";position:absolute;top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(244,180,0,.4),transparent);
  transition:left .6s ease;
}
.btn-reserve:hover{
  background:var(--honey);color:var(--text-dark);
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(244,180,0,.35);
}
.btn-reserve:hover::before{left:100%;}
.btn-secondary-row{
  display:flex;gap:12px;margin-top:12px;
}
.btn-secondary{
  flex:1;padding:14px 20px;
  background:transparent;color:var(--text-dark);
  border:2px solid var(--text-dark);border-radius:50px;
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:12px;letter-spacing:.15em;text-transform:uppercase;
  text-decoration:none;cursor:none;
  display:inline-flex;align-items:center;justify-content:center;
  transition:all .35s ease;
}
.btn-secondary:hover{
  background:var(--text-dark);color:var(--bg-ivory);
  transform:translateY(-3px);
  box-shadow:0 16px 28px rgba(42,24,16,.2);
}

/* ─── TRUST ROW ─── */
.trust-row{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:16px;margin-top:24px;
}
.trust-item{
  display:flex;flex-direction:column;align-items:center;
  gap:8px;text-align:center;
}
.trust-icon{
  width:40px;height:40px;border-radius:50%;
  background:var(--honey-soft);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
}
.trust-label{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.18em;color:var(--text-muted);
  text-transform:uppercase;line-height:1.3;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 3: TABS ───
   ══════════════════════════════════════════════════════════════════ */
#product-tabs{
  padding:80px 48px;
  background:var(--bg-ivory);
}
.tabs-inner{
  max-width:1100px;margin:0 auto;
}
.tabs-nav{
  display:flex;gap:0;
  border-bottom:1px solid rgba(201,169,97,.3);
  margin-bottom:48px;
  position:relative;
  overflow-x:auto;
  scrollbar-width:none;
}
.tabs-nav::-webkit-scrollbar{display:none;}
.tab-btn{
  padding:16px 24px;
  background:transparent;border:none;
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:13px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--text-muted);cursor:none;
  white-space:nowrap;
  transition:color .3s ease;
}
.tab-btn:hover{color:var(--text-dark);}
.tab-btn.is-active{color:var(--text-dark);}
.tab-indicator{
  position:absolute;bottom:-1px;left:0;
  height:2px;background:var(--honey);
  width:0;
  transition:left .5s cubic-bezier(.22,1,.36,1),
             width .5s cubic-bezier(.22,1,.36,1);
}
.tab-panel{
  display:none;opacity:0;
  transition:opacity .4s ease;
}
.tab-panel.is-active{display:block;opacity:1;}
.tab-panel h3{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:28px;color:var(--text-dark);
  margin-bottom:20px;letter-spacing:-.01em;
}
.tab-panel p{
  font-family:'Cormorant Garamond',serif;font-weight:400;
  font-size:18px;line-height:1.7;color:var(--text-dark);
  margin-bottom:16px;
}
.tab-panel p:last-child{margin-bottom:0;}
.tab-checklist{
  list-style:none;padding:0;margin:0 0 24px;
  display:flex;flex-direction:column;gap:12px;
}
.tab-checklist li{
  display:flex;align-items:flex-start;gap:14px;
  font-family:'Cormorant Garamond',serif;font-size:17px;
  color:var(--text-dark);line-height:1.5;
}
.tab-checklist .check-circle{
  width:24px;height:24px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:900;flex-shrink:0;margin-top:2px;
}

/* pedigree tree */
.pedigree-tree{
  display:flex;flex-direction:column;align-items:center;
  gap:24px;margin-bottom:24px;
}
.ped-row{
  display:flex;gap:16px;flex-wrap:wrap;justify-content:center;
}
.ped-card{
  flex:1 1 140px;min-width:140px;max-width:220px;
  padding:14px 16px;
  background:var(--bg-cream);
  border:1px solid rgba(201,169,97,.3);
  border-radius:8px;
  text-align:center;
}
.ped-name{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:15px;color:var(--text-dark);
}
.ped-meta{
  font-family:'Space Mono',monospace;font-size:9px;
  letter-spacing:.18em;color:var(--text-muted);
  text-transform:uppercase;margin-top:4px;
}
.ped-champ{
  font-size:12px;color:var(--honey);margin-top:4px;
}
.ped-current{
  background:var(--honey);border-color:var(--honey);
}
.ped-current .ped-meta{color:var(--text-dark);}

/* shipping cards */
.ship-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.ship-card{
  padding:24px 20px;
  background:var(--bg-cream);
  border:1px solid rgba(201,169,97,.3);
  border-radius:10px;
  display:flex;flex-direction:column;gap:8px;
}
.ship-icon{font-size:28px;}
.ship-title{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:18px;color:var(--text-dark);
}
.ship-price{
  font-family:'Space Mono',monospace;font-size:11px;
  letter-spacing:.18em;color:var(--honey);text-transform:uppercase;
}
.ship-desc{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:15px;color:var(--text-muted);line-height:1.5;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 4: RELATED CAROUSEL ───
   ══════════════════════════════════════════════════════════════════ */
#product-related{
  padding:120px 48px;
  background:var(--bg-cream);
  position:relative;overflow:hidden;
  max-width:1320px;margin:0 auto;
}
.related-head{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-bottom:60px;gap:24px;flex-wrap:wrap;
}
.related-head .chapter-heading{margin-bottom:0;}
.related-head .chapter-heading .line{font-size:clamp(40px,7vw,110px);}
.view-all{
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--text-dark);text-decoration:none;
  padding-bottom:4px;
  border-bottom:1.5px solid transparent;
  transition:border-color .3s ease,color .3s ease;
  white-space:nowrap;
}
.view-all:hover{
  border-bottom-color:var(--honey);color:var(--amber);
}

.related-viewport{
  width:100%;overflow:hidden;position:relative;
}
.related-track{
  display:flex;gap:32px;
  will-change:transform;
  transition:transform .7s cubic-bezier(.22,1,.36,1);
}
.related-card{
  flex:0 0 calc((100% - 96px) / 4);
  background:var(--bg-ivory);
  border:1px solid rgba(201,169,97,.25);
  border-radius:8px;
  padding:0 0 24px;
  cursor:none;
  text-decoration:none;color:inherit;
  transition:transform .5s ease,box-shadow .5s ease;
  box-shadow:0 8px 20px rgba(42,24,16,.06);
  display:flex;flex-direction:column;
  position:relative;
}
.related-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 48px rgba(42,24,16,.15);
}
.related-img-wrap{
  width:100%;height:220px;padding:24px;
  background:radial-gradient(circle,rgba(244,180,0,.1) 0%,transparent 70%);
  display:flex;align-items:center;justify-content:center;
  position:relative;border-radius:8px 8px 0 0;
  overflow:hidden;
}
.related-img-wrap img{
  max-width:80%;max-height:100%;
  object-fit:contain;will-change:transform;
  transition:transform .5s cubic-bezier(.22,1,.36,1);
}
.related-card:hover .related-img-wrap img{
  transform:scale(1.08) rotate(-2deg);
}
.related-status{
  position:absolute;top:14px;right:14px;
  padding:4px 10px;border-radius:50px;
  font-family:'Space Mono',monospace;font-size:9px;
  letter-spacing:.2em;text-transform:uppercase;
}
.related-status.available{background:var(--honey);color:var(--text-dark);}
.related-status.reserved{background:var(--coral);color:#fff;}
.related-status.sold{background:var(--text-muted);color:var(--bg-ivory);}
.related-body{padding:20px 24px 0;}
.related-gen{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.22em;color:var(--amber);
  text-transform:uppercase;
}
.related-name{
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:22px;color:var(--text-dark);margin-top:8px;
  letter-spacing:-.01em;
}
.related-trait{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:14px;color:var(--text-muted);margin-top:4px;
  line-height:1.4;
}
.related-foot{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 24px 0;
  margin-top:auto;
}
.related-price{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:22px;color:var(--text-dark);
}
.related-view{
  font-family:'Montserrat',sans-serif;font-weight:700;
  font-size:11px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--honey);
}

.related-arrow{
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:56px;height:56px;border-radius:50%;
  background:var(--bg-ivory);
  border:1.5px solid var(--honey);
  color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  cursor:none;z-index:5;
  box-shadow:0 8px 24px rgba(42,24,16,.12);
  transition:transform .3s ease,background .3s ease,opacity .3s ease;
}
.related-arrow svg{width:20px;height:20px;}
.related-arrow.prev{left:-20px;}
.related-arrow.next{right:-20px;}
.related-arrow:hover{
  background:var(--honey);transform:translateY(-50%) scale(1.08);
}
.related-arrow.is-disabled{
  opacity:.35;pointer-events:none;
}

/* ══════════════════════════════════════════════════════════════════
   ─── SECTION 5: HELP CTA ───
   ══════════════════════════════════════════════════════════════════ */
#product-help{
  padding:100px 48px;
  background:var(--bg-deep);color:var(--bg-ivory);
  text-align:center;
}
.help-inner{max-width:700px;margin:0 auto;}
.help-inner .eyebrow{color:var(--honey);}
.help-h{
  font-family:'Playfair Display',serif;font-weight:900;
  font-size:clamp(40px,5vw,64px);
  color:var(--bg-ivory);line-height:1.1;
  letter-spacing:-.02em;
}
.help-sub{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:20px;color:rgba(245,234,213,.8);
  margin:16px auto 40px;line-height:1.5;
}
.help-methods{
  display:flex;gap:24px;justify-content:center;flex-wrap:wrap;
}
.help-method{
  display:flex;flex-direction:column;align-items:center;gap:8px;
  text-decoration:none;color:inherit;
  padding:16px 24px;
  border-radius:12px;
  transition:transform .35s ease,background .35s ease;
  min-width:200px;
}
.help-method:hover{
  transform:translateY(-4px);
  background:rgba(244,180,0,.08);
}
.help-method-icon{
  width:40px;height:40px;border-radius:50%;
  background:var(--honey);color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
}
.help-method-label{
  font-family:'Space Mono',monospace;font-size:10px;
  letter-spacing:.22em;color:var(--honey);text-transform:uppercase;
}
.help-method-value{
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:18px;color:var(--bg-ivory);
}

/* ══════════════════════════════════════════════════════════════════
   ─── RESPONSIVE ───
   ══════════════════════════════════════════════════════════════════ */
@media (max-width:1024px){
  .product-inner{grid-template-columns:1fr;gap:48px;}
  .related-card{flex:0 0 calc((100% - 32px) / 2);}
  .related-arrow.prev{left:8px;}
  .related-arrow.next{right:8px;}
}
@media (max-width:768px){
  .breadcrumb-bar{padding:18px 24px;flex-direction:column;align-items:flex-start;}
  .crumb-actions{width:100%;justify-content:flex-start;flex-wrap:wrap;}

  #product-main{padding:24px 24px 80px;}
  .gallery-main{aspect-ratio:4/5;}
  .gallery-thumbs{gap:8px;}

  .product-name{font-size:clamp(40px,12vw,64px);}
  .price-main{font-size:42px;}
  .payment-options{grid-template-columns:1fr;}
  .specs-grid{gap:14px 18px;}
  .btn-secondary-row{flex-direction:column;}
  .trust-row{grid-template-columns:repeat(2,1fr);gap:18px 12px;}

  #product-tabs{padding:60px 24px;}
  .tabs-nav{margin-bottom:32px;}
  .tab-btn{padding:14px 16px;font-size:12px;}
  .ship-grid{grid-template-columns:1fr;}

  #product-related{padding:80px 24px;}
  .related-head{flex-direction:column;align-items:flex-start;gap:16px;}
  .related-card{flex:0 0 80%;}
  .related-arrow{display:none;}

  #product-help{padding:80px 24px;}
  .help-methods{flex-direction:column;align-items:center;gap:14px;width:100%;}
  .help-method{width:100%;max-width:320px;}
}

/* ══════════════════════════════════════════════════════════════════
   ─── REDUCED MOTION ───
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion:reduce){
  .gallery-badge{animation:none!important;}
  .star{opacity:1!important;transform:none!important;transition:none!important;}
  .payment-check{transition:opacity .2s ease!important;}
  .tab-indicator{transition:none!important;}
}

/* ════════════════════════════════════════════════
   FROM products.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* Styles already present in assets/css/style.css — products.html was built natively against the global stylesheet. */

/* ════════════════════════════════════════════════
   FROM blog-detail.html (Part 9 — page conversion)
   ════════════════════════════════════════════════ */
/* Styles already present in assets/css/style.css (bd- block) — blog-detail.html was built natively against the global stylesheet. */


/* ════════════════════════════════════════════════
   HEADER — DUAL LOGO + INNER-PAGE LIGHT VARIANT
   Home: transparent header → white logo over hero (existing).
   Inner: solid-white header, dark logo, dark nav text + clearance.
   ════════════════════════════════════════════════ */

/* default: show light logo, hide dark (home page over hero) */
.header-logo-dark { display: none; }
.header-logo-light { display: block; }

/* ── INNER PAGES (everything except home) ── */
body:not(.page-home) .main-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height:130px;
}

/* swap logo on inner pages */
body:not(.page-home) .main-header .header-logo-light { display: none; }
body:not(.page-home) .main-header .header-logo-dark  { display: block; }

/* dark nav text on white header */
body:not(.page-home) .main-header .nav-link {
  color: #1a1a1a;
}
body:not(.page-home) .main-header .nav-link:hover,
body:not(.page-home) .main-header .nav-dropdown-trigger:hover,
body:not(.page-home) .main-header .nav-dropdown-trigger[aria-expanded="true"] {
  color: var(--honey, #f4b400);
  background: rgba(244, 180, 0, 0.08);
}

/* dark icon buttons */
body:not(.page-home) .main-header .header-icon-btn {
  color: #1a1a1a;
}
body:not(.page-home) .main-header .header-icon-btn:hover {
  color: var(--honey, #f4b400);
  background: rgba(244, 180, 0, 0.10);
}

/* hamburger lines dark on inner pages */
body:not(.page-home) .main-header .ham-line {
  background: #1a1a1a;
}

/* keep scrolled-dark override OFF on inner pages — header stays white */
body:not(.page-home) .main-header.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── HOME PAGE ON SCROLL → solid white bar, colorful logo, dark nav ──
   At the top the header stays transparent (white logo over hero).
   Once scrolled, mirror the inner-page light treatment. */
body.page-home .main-header.scrolled {
  background: #ffffff;
  height: 130px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* swap to colorful logo on scroll */
body.page-home .main-header.scrolled .header-logo-light { display: none; }
body.page-home .main-header.scrolled .header-logo-dark  { display: block; }

/* dark nav text on the white scrolled bar */
body.page-home .main-header.scrolled .nav-link {
  color: #1a1a1a;
}
body.page-home .main-header.scrolled .nav-link:hover,
body.page-home .main-header.scrolled .nav-dropdown-trigger:hover,
body.page-home .main-header.scrolled .nav-dropdown-trigger[aria-expanded="true"] {
  color: var(--honey, #f4b400);
  background: rgba(244, 180, 0, 0.08);
}

/* dark icon buttons + hamburger on scroll */
body.page-home .main-header.scrolled .header-icon-btn {
  color: #1a1a1a;
}
body.page-home .main-header.scrolled .header-icon-btn:hover {
  color: var(--honey, #f4b400);
  background: rgba(244, 180, 0, 0.10);
}
body.page-home .main-header.scrolled .ham-line {
  background: #1a1a1a;
}

/* ── HEADER CLEARANCE — push inner page content below fixed 88px header ── */
body:not(.page-home):not(.page-login) {
  padding-top: 88px;
}

@media (max-width: 768px) {
  body:not(.page-home):not(.page-login) {
    padding-top: 60px;
  }
}

/* login: full-screen auth layout — give the layout itself the clearance
   instead of body padding (auth-layout is sized to viewport) */
body.page-login .auth-layout {
  padding-top: 88px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  body.page-login .auth-layout {
    padding-top: 60px;
  }
}


/* ─── BLOG ARTICLE (detail page) ─── */
.blog-article { padding: 120px 24px 100px; background: var(--bg-cream, #faf6ee); }
.blog-article-inner { max-width: 760px; margin: 0 auto; }
.blog-article-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: "Space Mono", monospace; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #888; margin-bottom: 20px;
}
.blog-article-cat { color: var(--honey, #f4b400); font-weight: 700; }
.blog-article-dot { color: #ccc; }
.blog-article-title {
  font-family: "Playfair Display", serif; font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #1a1a1a; margin: 0 0 36px;
}
.blog-article-hero {
  width: 100%; border-radius: 14px; overflow: hidden; margin-bottom: 44px;
  aspect-ratio: 16 / 9; background: #efe9dc;
}
.blog-article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-article-body {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; line-height: 1.75; color: #2b2b2b;
}
.blog-article-body p { margin: 0 0 24px; }
.blog-article-body h2 { font-family: "Playfair Display", serif; font-size: 30px; font-weight: 700; margin: 44px 0 16px; }
.blog-article-body h3 { font-family: "Playfair Display", serif; font-size: 24px; font-weight: 700; margin: 36px 0 14px; }
.blog-article-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 28px 0; }
.blog-article-body ul, .blog-article-body ol { margin: 0 0 24px; padding-left: 28px; }
.blog-article-body li { margin-bottom: 10px; }
.blog-article-body a { color: var(--honey, #f4b400); text-decoration: underline; }
.blog-article-body blockquote { border-left: 3px solid var(--honey, #f4b400); padding-left: 20px; margin: 28px 0; font-style: italic; color: #555; }
.blog-article-back { margin-top: 60px; padding-top: 28px; border-top: 1px solid rgba(0,0,0,0.1); }
.blog-article-back a { font-family: "Space Mono", monospace; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: #555; text-decoration: none; }
.blog-article-back a:hover { color: var(--honey, #f4b400); }
@media (max-width: 768px) { .blog-article { padding: 100px 18px 70px; } .blog-article-body { font-size: 18px; } }

/* ─── BLOG BREADCRUMB ─── */
.blog-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-family: "Space Mono", monospace; font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase; color: #999; margin-bottom: 24px;
}
.blog-breadcrumb a { color: #666; text-decoration: none; transition: color 0.2s; }
.blog-breadcrumb a:hover { color: var(--honey, #f4b400); }
.blog-breadcrumb .bc-sep { color: #ccc; }
.blog-breadcrumb .bc-current {
  color: #1a1a1a; max-width: 320px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (max-width: 768px) { .blog-breadcrumb .bc-current { max-width: 160px; } }

/* ─── BLOG LISTING PAGE ─── */
.blog-listing { padding: 120px 24px 100px; background: var(--bg-cream, #faf6ee); min-height: 70vh; }
.blog-listing-inner { max-width: 1200px; margin: 0 auto; }
.blog-listing-head { margin-bottom: 56px; }
.blog-listing-title {
  font-family: "Playfair Display", serif; font-size: clamp(44px, 7vw, 84px);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1; margin: 12px 0 14px; color: #1a1a1a;
}
.blog-listing-sub { font-family: "Cormorant Garamond", serif; font-size: 20px; color: #666; max-width: 600px; margin: 0; }
.blog-listing-count { color: #999; }
.blog-listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 36px; }
.blog-listing-empty { text-align: center; padding: 80px 24px; font-family: "Cormorant Garamond", serif; font-size: 20px; color: #888; }
/* Card layout — mirror .blog-row scoped rules for the listing grid */
.blog-listing-grid .blog-card {
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
.blog-listing-grid .blog-frame {
  height: 240px;
  /* clip-path starts fully clipped on home (JS opens it); on listing page show immediately */
  clip-path: inset(0 0 0 0) !important;
}
.blog-listing-grid .blog-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1) !important; /* no parallax zoom on listing */
}
.blog-listing-grid .blog-body {
  padding: 28px 28px 32px;
  flex: 1;
}
.blog-listing-grid .blog-title {
  font-size: 24px;
}
.blog-listing-grid .blog-excerpt {
  font-size: 16px;
}
@media (max-width: 768px) {
  .blog-listing { padding: 100px 18px 70px; }
  .blog-listing-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-listing-grid .blog-card {
    flex: none;
    max-width: 100%;
    scroll-snap-align: unset;
  }
}

/* ─── VIEW ALL BUTTON (home blog section) ─── */
.blog-viewall { text-align: center; margin-top: 48px; }
.blog-viewall-btn {
  display: inline-block; padding: 14px 32px;
  border: 1.5px solid #1a1a1a; border-radius: 50px;
  font-family: "Space Mono", monospace; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #1a1a1a; text-decoration: none; transition: all 0.25s;
}
.blog-viewall-btn:hover { background: #1a1a1a; color: #fff; }

/* ─── LENIS SMOOTH SCROLL ─── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ─── HEADER SEARCH SUGGESTIONS ─── */
.header-search-box { position: relative; }

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 320px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  display: none;
  z-index: 9999;
  max-height: 420px;
  overflow-y: auto;
}
.search-results.is-open { display: block; }

.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  text-decoration: none;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.15s;
}
.search-item:last-child { border-bottom: none; }
.search-item:hover { background: #faf6ee; }

.search-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #efe9dc;
  display: block;
}
.search-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.search-item-img--ph { background: #efe9dc; }

.search-item-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.search-item-title {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1a1a1a;
}
.search-item-meta {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
}
.search-item-price {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--honey, #f4b400);
  flex-shrink: 0;
}
.search-empty {
  padding: 20px 16px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: #999;
}

/* ─── FULL-SCREEN SEARCH OVERLAY ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.search-overlay-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.search-overlay-close:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }

.search-overlay-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  top: 18vh;
  transform: translateY(-20px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.search-overlay.is-open .search-overlay-inner { transform: translateY(0); }

.search-overlay-label {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  text-align: center;
}

.search-overlay-field {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 0 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}
.search-overlay-icon { color: #b0a898; flex-shrink: 0; }

.search-overlay-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #1a1a1a;
  padding: 22px 0;
  -webkit-appearance: none;
}
.search-overlay-input::placeholder { color: #c8bfb4; font-weight: 400; }
.search-overlay-input::-webkit-search-cancel-button { -webkit-appearance: none; }

.search-overlay-results {
  margin-top: 12px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  max-height: 52vh;
  overflow-y: auto;
  display: none;
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
}
.search-overlay-results.is-open { display: block; }

/* result items — scoped under overlay to avoid conflict */
.search-overlay-results .search-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  text-decoration: none;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.15s;
}
.search-overlay-results .search-item:last-child { border-bottom: none; }
.search-overlay-results .search-item:hover { background: #faf6ee; }
.search-overlay-results .search-item-img {
  width: 54px; height: 54px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0; background: #efe9dc; display: block;
}
.search-overlay-results .search-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.search-overlay-results .search-item-text { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.search-overlay-results .search-item-title {
  font-family: "Playfair Display", serif; font-size: 17px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #1a1a1a;
}
.search-overlay-results .search-item-meta {
  font-family: "Space Mono", monospace; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase; color: #999;
}
.search-overlay-results .search-item-price {
  font-family: "Playfair Display", serif; font-size: 17px;
  font-weight: 900; color: var(--honey, #f4b400); flex-shrink: 0;
}

.search-overlay-hint {
  margin-top: 16px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}
.search-overlay-results .search-empty {
  padding: 24px 20px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  color: #999;
}

@media (max-width: 768px) {
  .search-overlay-inner { top: 10vh; }
  .search-overlay-close { top: 14px; right: 14px; width: 44px; height: 44px; }
  .search-overlay-field { padding: 0 16px; border-radius: 12px; }
  .search-overlay-results { max-height: 55vh; }
}

/* ─── HEADER AUTH STATE ─── */
.header-account-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-account-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-account-btn:hover { color: var(--honey, #f4b400); }
.header-account-name { display: none; }
@media (min-width: 1024px) { .header-account-name { display: inline; } }
.header-logout-btn {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}
.header-logout-btn:hover { color: var(--honey, #f4b400); }
.header-login-btn { color: inherit; }

/* ─── AUTH FORM ERRORS / FLASH ─── */
.auth-errors {
  background: #fef0f0;
  border: 1px solid #f5c6c6;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.auth-error-msg {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: #c0392b;
}
.auth-error-msg:last-child { margin-bottom: 0; }
.auth-flash {
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}
.auth-flash--success { background: #d4edda; border: 1px solid #b8ddc4; color: #155724; }
.auth-flash--error   { background: #fef0f0; border: 1px solid #f5c6c6; color: #c0392b; }

/* ─── CLIENT DASHBOARD ─── */
.dashboard { padding: 120px 24px 100px; background: var(--bg-cream, #faf6ee); min-height: 70vh; }
.dashboard-inner { max-width: 1100px; margin: 0 auto; }

.dash-flash {
  border-radius: 10px; padding: 14px 20px; margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif; font-size: 17px;
}
.dash-flash--success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.dash-flash--error   { background: #fdecea; border: 1px solid #f5b7b1; color: #c0392b; }

.dash-head { margin-bottom: 40px; }
.dash-title {
  font-family: "Playfair Display", serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; margin: 8px 0 0; color: #1a1a1a; line-height: 1.1;
}

/* two-col layout: sidebar + main */
.dash-layout { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .dash-layout { grid-template-columns: 1fr; } }

/* sidebar */
.dash-sidebar { position: sticky; top: 100px; }
.dash-nav {
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px; padding: 10px; overflow: hidden;
}
.dash-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 8px; text-decoration: none;
  color: #555; font-family: "Space Mono", monospace; font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.dash-nav-link svg { flex-shrink: 0; opacity: 0.6; }
.dash-nav-link:hover { background: #faf6ee; color: #1a1a1a; }
.dash-nav-link:hover svg { opacity: 1; }
.dash-nav-link.is-active { background: var(--honey, #f4b400); color: #000; font-weight: 700; }
.dash-nav-link.is-active svg { opacity: 1; }
.dash-nav-badge {
  margin-left: auto; background: #1a1a1a; color: #fff;
  font-size: 10px; padding: 2px 7px; border-radius: 20px;
}
.dash-nav-logout {
  color: #c0392b; margin-top: 6px;
  border-top: 1px solid rgba(0,0,0,0.06); padding-top: 14px;
}
.dash-nav-logout:hover { background: #fdecea; color: #c0392b; }
@media (max-width: 900px) {
  .dash-sidebar { position: static; }
  .dash-nav { flex-direction: row; flex-wrap: wrap; }
  .dash-nav-logout { margin-top: 0; border-top: none; padding-top: 12px; }
}

/* main content card */
.dash-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px; padding: 32px 36px;
}
@media (max-width: 600px) { .dash-card { padding: 24px 20px; } }
.dash-card-title {
  font-family: "Playfair Display", serif; font-size: 26px;
  font-weight: 700; margin: 0 0 28px; color: #1a1a1a;
}

/* overview stats */
.dash-stats { display: flex; gap: 40px; margin-bottom: 28px; flex-wrap: wrap; }
.dash-stat { display: flex; flex-direction: column; gap: 4px; }
.dash-stat-num {
  font-family: "Playfair Display", serif; font-size: 40px;
  font-weight: 900; color: var(--honey, #f4b400); line-height: 1;
}
.dash-stat-label {
  font-family: "Space Mono", monospace; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: #999;
}
.dash-welcome-text {
  font-family: "Cormorant Garamond", serif; font-size: 18px;
  color: #666; line-height: 1.65;
}
.dash-welcome-text a { color: var(--honey, #f4b400); text-decoration: underline; }

/* quick-link cards */
.dash-quick-links { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.dash-quick-card {
  flex: 1; min-width: 130px; background: #fff;
  border: 1px solid rgba(0,0,0,0.08); border-radius: 12px;
  padding: 24px 18px; text-decoration: none; color: #1a1a1a;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: border-color 0.2s, box-shadow 0.2s;
}
.dash-quick-card:hover { border-color: var(--honey, #f4b400); box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.dash-quick-icon { font-size: 28px; line-height: 1; }
.dash-quick-label {
  font-family: "Space Mono", monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #555;
}

/* orders */
.dash-empty { text-align: center; padding: 56px 20px; }
.dash-empty-icon { font-size: 48px; margin-bottom: 12px; }
.dash-empty p { font-family: "Cormorant Garamond", serif; font-size: 18px; color: #888; margin: 0 0 24px; }
.dash-btn {
  display: inline-block; background: var(--honey, #f4b400); color: #000;
  border: none; padding: 13px 28px; border-radius: 50px;
  font-family: "Space Mono", monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.dash-btn:hover { background: #e0a300; }
.dash-orders { display: flex; flex-direction: column; gap: 0; }
.dash-order-header {
  display: grid; grid-template-columns: 56px 70px 1fr 120px 110px 90px; gap: 14px;
  padding: 10px 16px; border-bottom: 2px solid #f0ece4;
  font-family: "Space Mono", monospace; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #999;
}
.dash-order-row {
  display: grid; grid-template-columns: 56px 70px 1fr 120px 110px 90px; gap: 14px;
  align-items: center; padding: 16px; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: "Cormorant Garamond", serif; font-size: 17px;
  transition: background 0.15s;
}
.dash-order-row:last-child { border-bottom: none; }
.dash-order-row:hover { background: #faf6ee; }
.dash-order-thumb {
  width: 56px; height: 56px; border-radius: 8px;
  object-fit: cover; background: #eee;
}
.dash-order-id { font-weight: 700; color: #1a1a1a; }
.dash-order-name { color: #1a1a1a; }
.dash-order-date { color: #666; }
.dash-order-status {
  font-family: "Space Mono", monospace; font-size: 11px;
  text-transform: uppercase; color: var(--honey, #f4b400);
}
.dash-order-total { font-weight: 700; text-align: right; }
@media (max-width: 600px) {
  .dash-order-header { display: none; }
  .dash-order-row {
    grid-template-columns: 56px 1fr auto; gap: 12px 14px;
    row-gap: 4px;
  }
  .dash-order-thumb { grid-row: 1 / span 2; }
  .dash-order-id { grid-column: 2; }
  .dash-order-name { grid-column: 2; font-size: 15px; color: #666; }
  .dash-order-date { grid-column: 2; font-size: 14px; }
  .dash-order-status { grid-column: 3; grid-row: 1; }
  .dash-order-total { grid-column: 3; grid-row: 2; }
}

/* profile form */
.dash-form { display: flex; flex-direction: column; gap: 22px; max-width: 480px; }
.dash-field { display: flex; flex-direction: column; gap: 8px; }
.dash-field label {
  font-family: "Space Mono", monospace; font-size: 11px;
  letter-spacing: 0.09em; text-transform: uppercase; color: #555;
}
.dash-field input {
  border: 1px solid #ddd; border-radius: 8px; padding: 13px 16px;
  font-family: "Cormorant Garamond", serif; font-size: 17px;
  background: #faf6ee; color: #1a1a1a; transition: border-color 0.2s;
  outline: none;
}
.dash-field input:focus { border-color: var(--honey, #f4b400); background: #fff; }
.dash-field input:disabled { background: #eee; color: #999; cursor: not-allowed; }
.dash-field small { color: #aaa; font-size: 12px; font-family: "Space Mono", monospace; }
.dash-msg {
  padding: 13px 18px; border-radius: 8px; margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif; font-size: 17px;
}
.dash-msg--success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.dash-msg--error   { background: #fdecea; border: 1px solid #f5b7b1; color: #c0392b; }

/* ─── CHECKOUT PAGE ─── */
.checkout { padding: 120px 24px 100px; background: var(--bg-cream, #faf6ee); min-height: 70vh; }
.checkout-inner { max-width: 1100px; margin: 0 auto; }

/* topbar */
.checkout-topbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.checkout-back {
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  font-family: "Space Mono", monospace; font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase; color: #666;
  transition: color 0.2s;
}
.checkout-back:hover { color: var(--honey, #f4b400); }
.checkout-steps { display: flex; align-items: center; gap: 8px;
  font-family: "Space Mono", monospace; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; }
.ck-step { color: #ccc; }
.ck-step.is-done { color: var(--honey, #f4b400); font-weight: 700; }
.ck-step.is-current { color: #1a1a1a; font-weight: 700; }
.ck-step-sep { color: #ddd; font-size: 12px; }

/* title */
.checkout-title {
  font-family: "Playfair Display", serif; font-size: clamp(30px, 5vw, 52px);
  font-weight: 900; color: #1a1a1a; margin: 0 0 28px; line-height: 1.1;
}

/* errors */
.checkout-errors {
  background: #fdecea; border: 1px solid #f5b7b1; border-radius: 10px;
  padding: 16px 20px; margin-bottom: 24px;
}
.checkout-error-item {
  font-family: "Cormorant Garamond", serif; font-size: 16px;
  color: #c0392b; margin-bottom: 4px;
}
.checkout-error-item:last-child { margin-bottom: 0; }

/* 2-col grid */
.checkout-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}
@media (max-width: 960px) { .checkout-grid { grid-template-columns: 1fr; } }

/* form sections */
.ck-section { margin-bottom: 32px; }
.ck-section-h {
  font-family: "Playfair Display", serif; font-size: 20px;
  font-weight: 700; color: #1a1a1a; margin: 0 0 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ck-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ck-row--3 { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 600px) { .ck-row, .ck-row--3 { grid-template-columns: 1fr; } }

.ck-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.ck-field:last-child { margin-bottom: 0; }
.ck-field label {
  font-family: "Space Mono", monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #555;
}
.ck-req { color: var(--honey, #f4b400); }
.ck-optional { color: #aaa; font-size: 10px; }
.ck-field input, .ck-field textarea {
  border: 1px solid #ddd; border-radius: 8px; padding: 13px 16px;
  font-family: "Cormorant Garamond", serif; font-size: 17px;
  background: #fff; color: #1a1a1a; transition: border-color 0.2s; outline: none;
  width: 100%; box-sizing: border-box;
}
.ck-field input:focus, .ck-field textarea:focus { border-color: var(--honey, #f4b400); }
.ck-field textarea { resize: vertical; min-height: 80px; }

/* payment options */
.ck-payopts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .ck-payopts { grid-template-columns: 1fr; } }
.ck-payopt {
  border: 2px solid #e5e0d8; border-radius: 12px; padding: 18px 16px;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; position: relative;
  display: block; background: #fff;
}
.ck-payopt input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.ck-payopt:hover { border-color: #c9a961; }
.ck-payopt.is-selected { border-color: var(--honey, #f4b400); box-shadow: 0 0 0 3px rgba(244,180,0,0.15); }
.ck-payopt-badge {
  display: inline-block; background: var(--honey, #f4b400); color: #000;
  font-family: "Space Mono", monospace; font-size: 9px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px; margin-bottom: 8px;
}
.ck-payopt-badge--save { background: #1a1a1a; color: #fff; }
.ck-payopt-title { font-family: "Playfair Display", serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ck-payopt-amount { font-family: "Playfair Display", serif; font-size: 26px; font-weight: 900; color: #1a1a1a; }
.ck-payopt-sub { font-family: "Cormorant Garamond", serif; font-size: 14px; color: #888; margin-top: 4px; line-height: 1.4; }

/* submit */
.ck-submit-section { display: flex; flex-direction: column; gap: 14px; }
.checkout-paynote { font-family: "Cormorant Garamond", serif; font-size: 15px; color: #999; margin: 0; }

/* buttons */
.checkout-btn {
  display: inline-block; background: var(--honey, #f4b400); color: #000;
  border: none; padding: 14px 30px; border-radius: 50px;
  font-family: "Space Mono", monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.checkout-btn:hover { background: #e0a300; transform: translateY(-1px); }
.checkout-btn--ghost {
  background: transparent; border: 1.5px solid #1a1a1a; color: #1a1a1a;
}
.checkout-btn--ghost:hover { background: #1a1a1a; color: #fff; }
.checkout-btn--lg { font-size: 13px; padding: 16px 36px; width: 100%; text-align: center; }

/* summary sidebar */
.checkout-summary {
  background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px;
  padding: 28px; position: sticky; top: 100px;
}
.ck-summary-h {
  font-family: "Playfair Display", serif; font-size: 20px;
  font-weight: 700; margin: 0 0 20px; color: #1a1a1a;
}
.ck-summary-img {
  width: 100%; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden;
  background: #efe9dc; margin-bottom: 16px;
}
.ck-summary-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ck-summary-name {
  font-family: "Playfair Display", serif; font-size: 20px;
  font-weight: 700; margin-bottom: 4px; color: #1a1a1a;
}
.ck-summary-gen { font-family: "Space Mono", monospace; font-size: 11px; color: #888; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.ck-summary-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.ck-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: "Cormorant Garamond", serif; font-size: 17px; color: #444;
}
.ck-status { font-family: "Space Mono", monospace; font-size: 11px; text-transform: uppercase; }
.ck-status--available { color: #27ae60; }
.ck-status--reserved  { color: #e67e22; }
.ck-status--sold      { color: #c0392b; }
.ck-summary-divider { height: 1px; background: #f0ece4; margin: 16px 0; }
.ck-summary-payinfo { font-family: "Cormorant Garamond", serif; font-size: 16px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.ck-summary-trust { display: flex; flex-direction: column; gap: 8px; }
.ck-trust-item { font-family: "Cormorant Garamond", serif; font-size: 15px; color: #777; }

/* success state */
.checkout-success {
  max-width: 600px; margin: 60px auto; text-align: center; padding: 0 16px;
}
.checkout-success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--honey, #f4b400);
  color: #000; font-size: 32px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-weight: 900;
}
.checkout-success-h {
  font-family: "Playfair Display", serif; font-size: clamp(34px, 6vw, 56px);
  font-weight: 900; margin: 0 0 16px; color: #1a1a1a;
}
.checkout-success-p {
  font-family: "Cormorant Garamond", serif; font-size: 20px; color: #444;
  line-height: 1.6; margin-bottom: 16px;
}
.checkout-success-note {
  font-family: "Cormorant Garamond", serif; font-size: 16px; color: #888;
  margin-bottom: 32px; line-height: 1.6;
}
.checkout-success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* no-cat empty state */
.checkout-empty { max-width: 500px; margin: 60px auto; text-align: center; }
.checkout-empty p { font-family: "Cormorant Garamond", serif; font-size: 18px; color: #666; margin: 12px 0; }

/* payment option JS toggle */
.ck-payopt input[type="radio"]:checked + .ck-payopt-content .ck-payopt-amount { color: var(--honey, #f4b400); }

@media (max-width: 768px) { .checkout { padding: 100px 16px 70px; } }

/* ══════════════════════════════════════════════════════════════════
   LEGAL PAGES — Privacy Policy, Terms & Conditions, Return Policy
   Shared layout for all three (visual consistency)
   ══════════════════════════════════════════════════════════════════ */
.legal-page { padding:120px 24px 100px; background:var(--bg-cream,#faf6ee); min-height:70vh; }
.legal-inner { max-width:780px; margin:0 auto; }
.legal-breadcrumb { display:flex; gap:8px; align-items:center; font-family:"Space Mono",monospace; font-size:12px; text-transform:uppercase; letter-spacing:0.06em; color:#999; margin-bottom:20px; }
.legal-breadcrumb a { color:#666; text-decoration:none; }
.legal-breadcrumb a:hover { color:var(--honey,#f4b400); }
.legal-breadcrumb span { color:#ccc; }
.legal-title { font-family:"Playfair Display",serif; font-size:clamp(40px,6vw,60px); font-weight:900; line-height:1.1; margin:0 0 8px; color:#1a1a1a; }
.legal-updated { font-family:"Space Mono",monospace; font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:#999; margin:0 0 40px; }
.legal-body { font-family:"Cormorant Garamond",Georgia,serif; font-size:18px; line-height:1.75; color:#2b2b2b; }
.legal-body p { margin:0 0 18px; }
.legal-body h2 { font-family:"Playfair Display",serif; font-size:24px; font-weight:700; margin:40px 0 14px; color:#1a1a1a; }
.legal-body ul, .legal-body ol { margin:0 0 22px; padding-left:24px; }
.legal-body li { margin-bottom:8px; }
.legal-body a { color:var(--honey,#f4b400); text-decoration:underline; }
.legal-body strong { color:#1a1a1a; }
.legal-note { margin-top:32px; padding:18px 22px; background:rgba(244,180,0,0.12); border-left:4px solid var(--honey,#f4b400); border-radius:6px; }
@media (max-width:768px){ .legal-page{ padding:100px 18px 70px; } .legal-body{ font-size:17px; } }

/* ─── 404 ERROR PAGE ─── */
.error-page {
  padding: 140px 24px 120px;
  background: var(--bg-cream, #faf6ee);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-inner { max-width: 600px; }
.error-code {
  font-family: "Playfair Display", serif;
  font-size: clamp(100px, 20vw, 180px);
  font-weight: 900;
  line-height: 1;
  color: var(--honey, #f4b400);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.error-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
}
.error-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 36px;
}
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.error-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.error-btn {
  background: var(--honey, #f4b400);
  color: #000;
}
.error-btn:hover { background: #e0a300; transform: translateY(-2px); }
.error-btn--ghost {
  background: transparent;
  color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
}
.error-btn--ghost:hover { background: #1a1a1a; color: #fff; }
.error-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-links a {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
}
.error-links a:hover { color: var(--honey, #f4b400); }
@media (max-width: 768px) {
  .error-page { padding: 110px 18px 80px; }
  .error-text { font-size: 18px; }
}

/* ─── THANK YOU PAGE ─── */
.thankyou-page {
  padding: 140px 24px 120px;
  background: var(--bg-cream, #faf6ee);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thankyou-inner { max-width: 560px; }
.thankyou-icon {
  width: 110px; height: 110px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(244,180,0,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--honey, #f4b400);
}
.thankyou-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 16px;
}
.thankyou-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 36px;
}
.thankyou-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.thankyou-btn {
  display: inline-block; padding: 14px 32px; border-radius: 50px;
  font-family: "Space Mono", monospace; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  transition: all 0.25s;
  background: var(--honey, #f4b400); color: #000;
}
.thankyou-btn:hover { background: #e0a300; transform: translateY(-2px); }
.thankyou-btn--ghost {
  background: transparent; color: #1a1a1a; border: 1.5px solid #1a1a1a;
}
.thankyou-btn--ghost:hover { background: #1a1a1a; color: #fff; }
@media (max-width: 768px) {
  .thankyou-page { padding: 110px 18px 80px; }
  .thankyou-text { font-size: 18px; }
}

/* ─── CELEBRATION PAGES (account-created / thank-you) ─── */
.celebrate-page {
  position: relative;
  padding: 140px 24px 120px;
  background: var(--bg-cream, #faf6ee);
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.celebrate-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.celebrate-inner {
  position: relative; z-index: 2; max-width: 560px;
  animation: celebrateIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes celebrateIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.celebrate-icon {
  width: 96px; height: 96px; margin: 0 auto 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.18), rgba(76,175,80,0.05));
  display: flex; align-items: center; justify-content: center;
  color: #2e9e4f;
  animation: pop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}
@keyframes pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
.celebrate-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 900; color: #1a1a1a; line-height: 1.1; margin: 0 0 16px;
}
.celebrate-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px; color: #666; line-height: 1.6; margin: 0 0 36px;
}
.celebrate-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.celebrate-btn {
  display: inline-block; padding: 14px 32px; border-radius: 50px;
  font-family: "Space Mono", monospace; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  transition: all 0.25s; background: var(--honey, #f4b400); color: #000;
}
.celebrate-btn:hover { background: #e0a300; transform: translateY(-2px); }
.celebrate-btn--ghost { background: transparent; color: #1a1a1a; border: 1.5px solid #1a1a1a; }
.celebrate-btn--ghost:hover { background: #1a1a1a; color: #fff; }
@media (max-width: 768px) {
  .celebrate-page { padding: 110px 18px 80px; }
  .celebrate-text { font-size: 18px; }
}
