/* ============================================================
   BAREFOOT BUNNY — components.css
   All reusable visual components.
   Variables are defined in base.css.
   ============================================================ */

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--dur-normal) var(--ease-out),
              backdrop-filter var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav__inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--amber);
  white-space: nowrap;
}

.nav__logo-bunny {
  display: inline-block;
  transition: transform var(--dur-slow) var(--ease-in-out);
}

.nav__logo:hover .nav__logo-bunny {
  animation: bunny-breathe 3s var(--ease-in-out);
}

@keyframes bunny-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.nav__menu {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav__link {
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--amber);
  transition: width var(--dur-normal) var(--ease-out);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--amber);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  color: var(--amber);
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 32, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--dur-normal) var(--ease-out);
  }

  .nav__menu.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.5rem;
  }

  .nav__toggle {
    display: block;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1.125rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: transform var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out),
              background var(--dur-normal) var(--ease-out),
              color var(--dur-normal) var(--ease-out);
  will-change: transform;
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--dur-normal) var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--amber);
  color: var(--text-on-amber);
  box-shadow: 0 0 0 0 rgba(212, 146, 62, 0);
}

.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 16px rgba(212, 146, 62, 0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}

.btn--ghost:hover {
  background: var(--amber);
  color: var(--text-on-amber);
  transform: scale(1.01);
}

.btn--large {
  font-size: 1.125rem;
  padding: 1.375rem 2.75rem;
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: var(--space-lg);
  max-width: 720px;
}

.section-header .eyebrow {
  display: block;
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: scale(1.15);
  animation: hero-ken-burns 16s var(--ease-in-out) infinite alternate;
  filter: blur(14px) saturate(0.7) brightness(0.65) contrast(1.05);
  opacity: 0.55;
  will-change: transform, filter;
}

@keyframes hero-ken-burns {
  from { transform: scale(1.15); }
  to { transform: scale(1.22); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    animation: none;
    transform: scale(1.15);
  }
}

.hero__shader {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.25;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(11, 18, 32, 0.15) 20%, rgba(11, 18, 32, 0.92) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.45) 0%, rgba(11, 18, 32, 0.75) 100%);
}

.hero__tint {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--amber);
  mix-blend-mode: overlay;
  opacity: 0.08;
  pointer-events: none;
}

.hero__content {
  text-align: center;
  padding: 0 var(--space-md);
  z-index: 2;
}

.hero__wordmark {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  color: var(--amber);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.hero__bunny {
  display: inline-block;
  animation: hero-bunny-breathe 8s var(--ease-in-out) infinite;
}

@keyframes hero-bunny-breathe {
  0%, 90%, 100% { transform: scale(1); }
  95% { transform: scale(1.05); }
}

.hero__tagline {
  font-size: 1.125rem;
  color: var(--text-primary);
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  opacity: 0.9;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: scroll-hint-bob 2s var(--ease-in-out) infinite;
}

.hero__scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: var(--text-secondary);
  margin: var(--space-xs) auto 0;
}

@keyframes scroll-hint-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-section);
  padding: var(--space-lg) 0;
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.footer__logo {
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.footer__tagline {
  font-style: italic;
  max-width: 240px;
  line-height: var(--lh-normal);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__nav a {
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__nav a:hover {
  color: var(--amber);
}

.footer__disclaimer {
  font-size: var(--fs-eyebrow);
  line-height: var(--lh-normal);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: var(--space-lg) auto 0;
  padding: var(--space-md) var(--space-md) 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: var(--fs-eyebrow);
  color: var(--text-secondary);
}

.footer__credit {
  opacity: 0.6;
}

.footer__credit a {
  color: var(--amber);
}

/* ===== MARKETPLACE ICON ROW ===== */
.marketplace-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

.marketplace-row__item {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}

.marketplace-row__item:hover {
  color: var(--amber);
  background: rgba(212, 146, 62, 0.1);
  transform: scale(1.1);
}

.marketplace-row__item svg {
  width: 18px;
  height: 18px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  isolation: isolate;
}

.gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.gallery-card:hover .gallery-card__img {
  transform: scale(1.03);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.25);
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-out);
  display: grid;
  place-items: center;
  color: var(--text-primary);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__filmstrip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  gap: 2px;
  padding: 4px;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.95), rgba(11, 18, 32, 0));
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out) 200ms;
  z-index: 2;
  pointer-events: none;
}

.gallery-card:hover .gallery-card__filmstrip {
  transform: translateY(0);
}

.gallery-card__filmstrip-frame {
  flex: 1;
  background: rgba(212, 146, 62, 0.3);
  border-radius: 2px;
  min-width: 0;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-out);
}

.lightbox.is-open {
  display: flex;
  opacity: 1;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(22, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--amber);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  transform: scale(1.1);
  background: rgba(212, 146, 62, 0.2);
}

.lightbox__close {
  top: var(--space-md);
  right: var(--space-md);
}

.lightbox__prev {
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.1); }

.lightbox__strip {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-xs);
  background: rgba(22, 27, 42, 0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  max-width: 90vw;
  overflow-x: auto;
}

.lightbox__strip-item {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
}

.lightbox__strip-item.is-active {
  opacity: 1;
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* ===== BIO LEDE ===== */
.bio-lede {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--amber);
  max-width: 700px;
  margin-bottom: var(--space-md);
}

.bio-lede::first-letter {
  font-size: 4rem;
  float: left;
  line-height: 0.9;
  margin-right: var(--space-xs);
  color: var(--amber-glow);
}

.bio-body p {
  font-size: var(--fs-body);
  color: var(--text-primary);
  line-height: var(--lh-loose);
  max-width: 65ch;
  margin-bottom: var(--space-sm);
}

/* ===== FAQ ACCORDION ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.faq__item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--dur-fast) var(--ease-out);
}

.faq__question:hover {
  color: var(--amber);
}

.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--amber);
  transition: transform var(--dur-normal) var(--ease-out);
}

.faq__item[aria-expanded="true"] .faq__chevron {
  transform: rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-normal) var(--ease-out),
              padding var(--dur-normal) var(--ease-out);
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.75;
  line-height: var(--lh-loose);
}

.faq__item[aria-expanded="true"] .faq__answer {
  max-height: 600px;
  padding-bottom: var(--space-md);
}

/* ===== MAILTO CTA BLOCK ===== */
.mailto-block {
  text-align: center;
  padding: var(--space-lg) 0;
}

.mailto-block .btn {
  margin-bottom: var(--space-md);
}

.mailto-block__email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--amber);
  background: var(--bg-card);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.mailto-block__copy {
  opacity: 0.6;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.mailto-block__copy:hover {
  opacity: 1;
}

/* ===== AMBIENT AUDIO TOGGLE ===== */
.audio-toggle {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(22, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  z-index: 500;
  transition: color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.audio-toggle:hover {
  transform: scale(1.08);
}

.audio-toggle[aria-pressed="true"] {
  color: var(--amber);
}

.audio-toggle svg {
  width: 20px;
  height: 20px;
}

.audio-toggle__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(22, 27, 42, 0.95);
  color: var(--text-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-eyebrow);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.audio-toggle:hover .audio-toggle__tooltip {
  opacity: 1;
}

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width var(--dur-fast) var(--ease-out),
                height var(--dur-fast) var(--ease-out),
                background var(--dur-fast) var(--ease-out);
    mix-blend-mode: difference;
  }

  .custom-cursor.is-active {
    width: 48px;
    height: 48px;
    background: rgba(212, 146, 62, 0.3);
  }
}

/* ===== FILM GRAIN OVERLAY ===== */
.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* ============================================================
   THEMED GALLERY + BANNER HERO — added 2026-04-22
   For /gallery index + /gallery-grass + /gallery-close-personal
   + /gallery-golden-hour + banners on /about + /contact
   ============================================================ */

/* ===== HERO BANNER (subpages: about, contact, gallery*) ===== */
.hero-banner {
  position: relative;
  width: 100%;
  height: clamp(420px, 65vh, 720px);
  overflow: hidden;
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: blur(6px) saturate(0.85) brightness(0.6) contrast(1.05);
  transform: scale(1.1);
}

.hero-banner__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(11, 18, 32, 0.2) 40%, rgba(11, 18, 32, 0.85) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.4) 0%, rgba(11, 18, 32, 0.75) 100%);
}

.hero-banner__content {
  position: relative;
  text-align: center;
  padding: 0 var(--space-md) var(--space-lg);
  max-width: 900px;
}

.hero-banner__eyebrow {
  display: block;
  margin-bottom: var(--space-xs);
}

.hero-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--amber);
  line-height: 1.05;
  margin-bottom: var(--space-xs);
}

.hero-banner__subtitle {
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--lh-normal);
}

/* ===== GALLERY INDEX (3 themed collection tiles) ===== */
.gallery-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .gallery-index {
    grid-template-columns: 1fr;
  }
}

.theme-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-normal) var(--ease-out);
  background: var(--bg-card);
  display: block;
}

.theme-card:hover {
  transform: translateY(-6px);
}

.theme-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform var(--dur-slow) var(--ease-out);
}

.theme-card:hover .theme-card__img {
  transform: scale(1.05);
}

.theme-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.15) 0%, rgba(11, 18, 32, 0.95) 100%);
}

.theme-card__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  color: var(--text-primary);
}

.theme-card__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-xs);
}

.theme-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.theme-card__description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.theme-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--amber);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

.theme-card__cta::after {
  content: '→';
  display: inline-block;
  transition: transform var(--dur-normal) var(--ease-out);
}

.theme-card:hover .theme-card__cta::after {
  transform: translateX(4px);
}

/* ===== PRICE STRIP (themed page CTA block) ===== */
.price-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-section);
  border-radius: var(--radius-md);
  text-align: center;
  margin: var(--space-lg) 0;
  border: 1px solid var(--border-subtle);
}

.price-strip__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
}

.price-strip__desc {
  color: var(--text-primary);
  opacity: 0.85;
  font-size: 1rem;
  max-width: 480px;
}

.price-strip__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-md);
}

.price-strip__note {
  font-size: var(--fs-eyebrow);
  color: var(--text-secondary);
  margin-top: var(--space-xs);
  letter-spacing: 0.05em;
}

/* ===== "COMING SOON" TAG (for Fansly CTA while platform pending) ===== */
.cta-coming-soon {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: var(--space-xs);
  padding: 2px 8px;
  background: rgba(154, 141, 122, 0.15);
  border-radius: var(--radius-sm);
  vertical-align: middle;
}

/* ===== BACK LINK (themed pages) ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-secondary);
  font-size: var(--fs-small);
  margin-top: var(--space-md);
  transition: color var(--dur-fast) var(--ease-out);
}

.back-link::before {
  content: '←';
  display: inline-block;
  transition: transform var(--dur-normal) var(--ease-out);
}

.back-link:hover {
  color: var(--amber);
}

.back-link:hover::before {
  transform: translateX(-4px);
}

/* ===== THEME PAGE TEASER GRID (3-4 preview images) ===== */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 560px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }
}

.teaser-grid__item {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.teaser-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.teaser-grid__item:hover img {
  transform: scale(1.03);
}
