/* ══════════════════════════════════════════════════════════
   BARKLEY PET — STYLES.CSS
   Synced to index.html
   Gold:        #f7d954
   Brown:       #6b3d28 / #4e2a18
   Dark brown:  #3a1f0e
   Deeper:      #220f05
   Cream:       #f4ede0
══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&family=IM+Fell+French+Canon:ital@0;1&family=Hind+Vadodara:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --gold:         #f7d954;
  --gold-dim:     #c9a83c;
  --gold-dark:    #9a7a1e;
  --brown:        #6b3d28;
  --brown-mid:    #4e2a18;
  --brown-dark:   #3a1f0e;
  --brown-deep:   #220f05;
  --cream:        #f4ede0;
  --cream-dark:   #e8dece;
  --text-on-dark: rgba(244,237,224,0.72);
  --text-muted:   rgba(244,237,224,0.42);

  --serif-display: 'IM Fell French Canon', Georgia, serif;
  --serif-body:    'Frank Ruhl Libre', Georgia, serif;
  --sans:          'Hind Vadodara', 'Helvetica Neue', sans-serif;

  --max-w: 1200px;
  --nav-h: 78px;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--brown-dark);
  overflow-x: hidden;
}
@media (hover: none) { body { cursor: auto; } }
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { border: none; background: none; font-family: var(--sans); }

/* ══════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════ */
h1 {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
}
h2 {
  font-family: var(--serif-body);
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}
h3 {
  font-family: var(--serif-body);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}
p {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  font-size: 0.94rem;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 14px;
}

.gold-rule {
  width: 44px;
  height: 1px;
  background: var(--gold-dim);
  margin: 20px auto;
  transition: width 0.5s var(--ease-out);
}
.gold-rule.wide  { width: 90px; }
.gold-rule--left { margin: 20px 0; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, transform 0.25s var(--ease-out), box-shadow 0.3s;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown-dark);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:hover {
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(247,217,84,0.25);
}
.btn-gold span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid rgba(244,237,224,0.35);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s, transform 0.25s var(--ease-out);
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247,217,84,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.btn-ghost:hover::before { transform: scaleX(1); }
.btn-ghost:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--gold-dim);
  color: var(--gold-dim);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, transform 0.25s var(--ease-out);
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.35s var(--ease-out);
}
.btn-outline:hover::before { transform: translateY(0); }
.btn-outline:hover {
  color: var(--brown-dark);
  transform: translateY(-2px);
}
.btn-outline span { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
   — Layered leather texture matching index.html exactly
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  height: var(--nav-h);
  background-color: var(--brown-mid);
  background-image:
    linear-gradient(
      180deg,
      rgba(255,210,100,0.13) 0%,
      rgba(255,190,60,0.05) 18%,
      transparent 45%
    ),
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(0,0,0,0.22) 100%
    ),
    repeating-linear-gradient(
      38deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.09) 3px,
      rgba(0,0,0,0.09) 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      -38deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.06) 3px,
      rgba(0,0,0,0.06) 4px,
      transparent 4px,
      transparent 8px
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.22 0 0 0 0 0.12 0 0 0 0 0.06 0 0 0 0.28 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:
    100% 100%,
    100% 100%,
    8px 8px,
    8px 8px,
    300px 300px;
  border-bottom: 1px solid rgba(247,217,84,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,200,80,0.08),
    inset 0 -3px 10px rgba(0,0,0,0.3),
    0 2px 16px rgba(0,0,0,0.25);
  transition: background-color 0.4s var(--ease-out), box-shadow 0.4s, height 0.35s;
}
.navbar.scrolled {
  background-color: var(--brown-dark);
  box-shadow: 0 2px 40px rgba(0,0,0,0.55), inset 0 -3px 10px rgba(0,0,0,0.35);
  border-bottom-color: rgba(247,217,84,0.28);
  height: 64px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.nav-logo:hover { opacity: 0.82; transform: scale(0.97); }
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: brightness(1.1);
}
.navbar.scrolled .nav-logo img { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,237,224,0.75);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::before,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  height: 1px;
  background: var(--gold);
  width: 0;
  transition: width 0.3s var(--ease-out);
}
.nav-links a::before { right: 50%; }
.nav-links a::after  { left:  50%; }
.nav-links a:hover,
.nav-links a.active  { color: var(--gold); }
.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-links a.active::before,
.nav-links a.active::after { width: 50%; }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 26px;
  background: var(--gold);
  color: var(--brown-dark);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, color 0.3s;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown-dark);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out);
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta:hover {
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(247,217,84,0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100%);
  height: 100%;
  background: var(--brown-deep);
  border-left: 1px solid rgba(247,217,84,0.12);
  z-index: 950;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--ease-out);
}
.mobile-drawer.open { right: 0; }

.drawer-close {
  align-self: flex-end;
  color: var(--cream);
  font-size: 1.1rem;
  opacity: 0.5;
  margin-bottom: 36px;
  transition: opacity 0.2s, transform 0.3s;
}
.drawer-close:hover { opacity: 1; transform: rotate(90deg); }

.drawer-logo {
  height: 48px;
  margin-bottom: 44px;
  mix-blend-mode: lighten;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.drawer-nav a {
  font-family: var(--serif-body);
  font-size: 1.6rem;
  color: rgba(244,237,224,0.7);
  transition: color 0.2s, transform 0.25s var(--ease-out);
}
.drawer-nav a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════════════
   HERO — Two-column split (matches index.html)
══════════════════════════════════════════════════════════ */
.hero {
  height: auto;
  min-height: 94vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  background: var(--brown-deep);
}

/* Left text panel with leather-texture background */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 72px 100px;
  position: relative;
  z-index: 2;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--brown-deep);
  background-image: 
    radial-gradient(circle at 15% 0%, rgba(247, 217, 84, 0.12) 0%, transparent 60%),
    linear-gradient(110deg, var(--brown-mid) 0%, var(--brown-deep) 65%);
  box-shadow: inset -20px 0 50px rgba(0,0,0,0.4);
  pointer-events: none;
}
.hero-left > * { position: relative; z-index: 1; }

/* Right image panel */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.88) sepia(8%);
  transform: scale(1.05);
  animation: heroImg 1.6s var(--ease-out) 0.1s forwards;
  will-change: transform;
}
@keyframes heroImg {
  to { transform: scale(1); filter: brightness(0.92) sepia(5%); }
}
.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
  z-index: 2;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(26,13,7,0.12) 0%, transparent 30%);
  z-index: 1;
}

/* Hero text animations */
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 22px;
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}
.hero-title {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}
.hero-title em { color: var(--gold); display: block; }

.hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: growLine 1.2s var(--ease-out) 1.5s forwards;
}
@keyframes growLine { to { height: 52px; } }

/* ══════════════════════════════════════════════════════════
   MARQUEE BAR
══════════════════════════════════════════════════════════ */
.marquee-bar {
  background: var(--gold);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 13px 0;
}
.marquee-item span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown-dark);
  padding: 0 28px;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brown-mid);
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR — Full-bleed grid (matches index.html)
══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--brown-deep);
  border-top: 1px solid rgba(247,217,84,0.12);
  border-bottom: 1px solid rgba(247,217,84,0.12);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-card {
  padding: 44px 36px;
  border-right: 1px solid rgba(247,217,84,0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out);
  cursor: default;
}
.trust-card:last-child { border-right: none; }
.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247,217,84,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.trust-card:hover::before { opacity: 1; }
.trust-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}
.trust-card:hover::after { width: 100%; }

.trust-card__icon {
  width: 32px;
  height: 2px;
  background: var(--gold-dim);
  margin-bottom: 18px;
  transition: width 0.4s var(--ease-out), background 0.3s;
}
.trust-card:hover .trust-card__icon { width: 48px; background: var(--gold); }

.trust-card__title {
  font-family: var(--serif-body);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color 0.3s;
}
.trust-card:hover .trust-card__title { color: var(--gold); }

.trust-card__desc {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(244,237,224,0.5);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   SCROLL FEATURE — contained sticky card
══════════════════════════════════════════════════════════ */
.scroll-feature-wrap {
  padding: 80px 40px;
  background: var(--cream-dark);
  border-top: 1px solid rgba(82,52,38,0.08);
  border-bottom: 1px solid rgba(82,52,38,0.08);
}
.scroll-feature {
  position: relative;
  height: 270vh;
  max-width: var(--max-w);
  margin: 0 auto;
}
.scroll-feature-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--cream);
  border: 1px solid rgba(82,52,38,0.12);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(82,52,38,0.1), 0 2px 8px rgba(82,52,38,0.06);
  min-height: 520px;
  display: flex;
  align-items: stretch;
}
.sf-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  width: 100%;
}
.sf-text-panel {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sf-step-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.sf-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(82,52,38,0.18);
  transition: background 0.4s, transform 0.4s var(--ease-out), height 0.4s var(--ease-out);
}
.sf-dot.active { background: var(--gold-dark); height: 22px; }
.sf-dot.done   { background: rgba(82,52,38,0.35); }

.sf-top-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(82,52,38,0.06);
  overflow: hidden;
}
.sf-top-progress-fill {
  height: 100%;
  background: var(--gold-dim);
  width: 0%;
  transition: width 0.08s linear;
}
.sf-texts {
  position: relative;
  min-height: 240px;
}
.sf-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.sf-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.sf-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: block;
}
.sf-title {
  font-family: var(--serif-body);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.sf-desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.93rem;
  color: #6b5040;
  line-height: 1.8;
  max-width: 400px;
}
.sf-counter {
  margin-top: 32px;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(82,52,38,0.25);
  letter-spacing: 0.05em;
}
.sf-counter strong {
  color: var(--brown-mid);
  font-style: normal;
  font-family: var(--serif-body);
}
.sf-image-panel {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(82,52,38,0.1);
}
.sf-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
}
.sf-img.active { opacity: 1; }
.sf-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88) sepia(8%) saturate(0.95);
  transform: scale(1.04);
  transition: transform 0.55s var(--ease-out);
}
.sf-img.active img { transform: scale(1); }
.sf-image-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-dim);
  z-index: 2;
}
.sf-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(82,52,38,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.4s;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}
.sf-scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(82,52,38,0.25);
  animation: bounceDown 0.9s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(-3px); }
  50%       { transform: translateY(3px); }
}
.sf-scroll-hint.hidden { opacity: 0; }

/* Floating side indicator */
.sf-side-indicator {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.sf-side-indicator.visible { opacity: 1; pointer-events: auto; }
.sf-side-pip {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: rgba(82,52,38,0.2);
  transition: background 0.4s, transform 0.4s var(--ease-out), height 0.4s;
}
.sf-side-pip.active { background: var(--gold-dark); height: 18px; }
.sf-side-pip.done   { background: rgba(82,52,38,0.4); }

/* ══════════════════════════════════════════════════════════
   SHARED
══════════════════════════════════════════════════════════ */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header h2 { margin-bottom: 8px; font-size: clamp(2.2rem, 3.5vw, 3.4rem); }
.section-sub {
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   STAT STRIP
══════════════════════════════════════════════════════════ */
.stat-strip {
  background: var(--brown-mid);
  border-top: 1px solid rgba(247,217,84,0.12);
  border-bottom: 1px solid rgba(247,217,84,0.12);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-card {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid rgba(247,217,84,0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(247,217,84,0.04); }

.stat-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,237,224,0.45);
}

/* ══════════════════════════════════════════════════════════
   BUNDLES
══════════════════════════════════════════════════════════ */
.bundles {
  padding: 120px 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}
.bundles::after {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,217,84,0.05) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.bundles .section-header h2    { color: var(--cream); }
.bundles .section-header .eyebrow { color: var(--gold-dim); }
.bundles .section-sub { color: var(--text-on-dark); }

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.bundle-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(247,217,84,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.35s;
}
.bundle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(247,217,84,0.05) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.bundle-card:hover::after { transform: translateX(100%); }
.bundle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
  border-color: rgba(247,217,84,0.3);
}
.bundle-card--featured {
  border-color: rgba(247,217,84,0.35);
  background: rgba(247,217,84,0.04);
}
.bundle-card--featured:hover { border-color: var(--gold-dim); }

.bundle-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 13px;
  z-index: 3;
}
.bundle-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.bundle-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,13,7,0.5) 0%, transparent 50%);
  transition: opacity 0.4s;
}
.bundle-card:hover .bundle-img-wrap::after { opacity: 0.5; }
.bundle-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: brightness(0.82) saturate(0.85);
}
.bundle-card:hover .bundle-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.92) saturate(1);
}
.bundle-body { padding: 28px 26px 30px; }
.bundle-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 9px;
  display: block;
}
.bundle-name {
  font-family: var(--serif-body);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.18;
  transition: color 0.3s;
}
.bundle-card:hover .bundle-name { color: var(--gold); }
.bundle-desc {
  font-size: 0.83rem;
  color: var(--text-on-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}
.bundle-includes {
  margin-bottom: 24px;
  border-top: 1px solid rgba(247,217,84,0.08);
  padding-top: 16px;
}
.bundle-includes li {
  font-size: 0.8rem;
  color: rgba(244,237,224,0.6);
  padding: 6px 0;
  border-bottom: 1px solid rgba(247,217,84,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s;
}
.bundle-includes li:hover { color: var(--cream); }
.bundle-includes li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-dim);
  flex-shrink: 0;
  transition: background 0.25s;
}
.bundle-includes li:hover::before { background: var(--gold); }
.bundle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.bundle-price {
  font-family: var(--serif-body);
  font-size: 1.75rem;
  color: var(--cream);
  line-height: 1;
}
.bundle-price small {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-left: 4px;
}

/* ══════════════════════════════════════════════════════════
   STORY SPLIT
══════════════════════════════════════════════════════════ */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.story-image {
  position: relative;
  overflow: hidden;
}
.story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) sepia(12%);
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  display: block;
}
.story-split:hover .story-image img {
  transform: scale(1.04);
  filter: brightness(0.9) sepia(8%);
}
.story-frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(247,217,84,0.2);
  pointer-events: none;
  transition: inset 0.5s var(--ease-out), border-color 0.4s;
}
.story-split:hover .story-frame {
  inset: 10px;
  border-color: rgba(247,217,84,0.4);
}
.story-text {
  background: var(--brown-mid);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text h2 { color: var(--cream); margin-bottom: 0; }
.story-text p  { color: var(--text-on-dark); font-size: 0.93rem; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--cream-dark);
}
.testimonials .section-header h2    { color: var(--brown-dark); }
.testimonials .section-header .eyebrow { color: var(--gold-dark); }
.testimonials .gold-rule { background: var(--gold-dark); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--cream);
  padding: 40px 34px;
  border-top: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.testi-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--brown-mid);
  transition: height 0.4s var(--ease-out);
  z-index: 0;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(82,52,38,0.14);
  border-top-color: var(--gold);
}
.testi-card:hover::before { height: 4px; }
.testi-card > * { position: relative; z-index: 1; }
.testi-stars {
  font-size: 0.78rem;
  letter-spacing: 3px;
  color: var(--gold-dim);
  margin-bottom: 18px;
  transition: letter-spacing 0.3s;
}
.testi-card:hover .testi-stars { letter-spacing: 5px; }
.testi-quote {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown-dark);
  line-height: 1.65;
  margin-bottom: 26px;
}
.testi-author strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brown);
  margin-bottom: 3px;
}
.testi-author span {
  font-size: 0.73rem;
  color: #a08070;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════ */
.final-cta {
  padding: 130px 40px;
  background: var(--brown-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: 'BARKLEY';
  position: absolute;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 15vw;
  font-weight: 400;
  color: rgba(247,217,84,0.03);
  white-space: nowrap;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 0.1em;
  transition: letter-spacing 6s ease, font-size 6s ease;
}
.final-cta:hover::before { letter-spacing: 0.2em; font-size: 24vw; }
.final-cta-inner h2 {
  color: var(--cream);
  max-width: 540px;
  margin: 0 auto 18px;
}
.final-cta-inner h2 em { font-style: italic; color: var(--gold); }
.final-cta-inner > p { color: var(--text-on-dark); margin-bottom: 44px; }
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--brown-deep);
  border-top: 1px solid rgba(247,217,84,0.1);
  padding-top: 80px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand .footer-logo {
  height: 54px;
  margin-bottom: 20px;
  mix-blend-mode: lighten;
  transition: opacity 0.3s;
}
.footer-brand .footer-logo:hover { opacity: 0.75; }
.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 230px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(247,217,84,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(247,217,84,0.12);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-size: 0.84rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 0;
  transition: color 0.25s, padding-left 0.25s var(--ease-out);
}
.footer-col ul a::before {
  content: '—';
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--gold);
  font-size: 0.6rem;
  transition: opacity 0.25s, left 0.25s var(--ease-out);
}
.footer-col ul a:hover { color: var(--cream); padding-left: 14px; }
.footer-col ul a:hover::before { opacity: 1; left: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p,
.footer-bottom a { font-size: 0.72rem; color: rgba(244,237,224,0.2); }
.footer-bottom a:hover { color: var(--gold-dim); }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* Parallax elements */
[data-parallax] { will-change: transform; }

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .bundle-grid  { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testi-grid   { grid-template-columns: 1fr; }
  .story-split  { grid-template-columns: 1fr; }
  .story-image  { height: 360px; }
  .story-text   { padding: 60px 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; min-height: 280px; order: -1; }
  .hero-right::before { display: none; }
  .hero-left { padding: 56px 24px 80px; }
  .hero-scroll { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card { border-bottom: 1px solid rgba(247,217,84,0.1); padding: 32px 24px; }
  .stat-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-card  { border-bottom: 1px solid rgba(247,217,84,0.1); }
  /* Scroll feature stacked on mobile */
  .scroll-feature-wrap { padding: 40px 20px; }
  .scroll-feature { height: auto; }
  .scroll-feature-sticky { position: relative; top: auto; min-height: auto; flex-direction: column; }
  .sf-inner { grid-template-columns: 1fr; }
  .sf-image-panel { height: 220px; border-left: none; border-top: 1px solid rgba(82,52,38,0.1); }
  .sf-img { position: static; opacity: 1 !important; display: none; height: 100%; }
  .sf-img.active { display: block; }
  .sf-text-panel { padding: 36px 28px 32px; }
  .sf-texts { min-height: auto; }
  .sf-slide { position: static; opacity: 1 !important; transform: none !important; display: none; }
  .sf-slide.active { display: flex; }
  .sf-step-dots    { display: none; }
  .sf-side-indicator { display: none; }
  .sf-scroll-hint  { display: none; }
}

@media (max-width: 600px) {
  :root { --nav-h: 66px; }
  .nav-inner    { padding: 0 22px; }
  .nav-logo img { height: 42px; }
  .section-wrap { padding: 0 22px; }
  .bundles      { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .story-text   { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 22px 50px; }
  .footer-bottom { padding: 22px; }
  .cta-btns     { flex-direction: column; align-items: center; }
  .final-cta    { padding: 90px 22px; }
  .stat-grid    { grid-template-columns: 1fr; }
  .trust-grid   { grid-template-columns: 1fr; }
}