/* ============================================================
   MagicLens — Site v1 Stylesheet
   Brand tokens and layout per MagicLens_Brand_Standards.md (2026-04-15)
   ============================================================ */

/* ----- Fonts (self-hosted, latin + latin-ext subsets) ----- */
@import url('../fonts/fonts.css');

/* ----- Tokens ----- */
:root {
  /* Logo + brand colours */
  --periwinkle-a: #7E88D0;
  --periwinkle:   #8B8FBE;
  --lavender:     #C4B8D4;
  --gold:         #D9B455;
  --gold-light:   #E8D48A;
  /* Extended palette */
  --night-deep:   #2C3646;
  --night-blue:   #3D4A5C;
  --night-light:  #4E5D70;
  --slate:        #7A8494;
  --ivory:        #F5F0E3;
  --white:        #FFFFFF;

  /* Typography — Silver Northern is the locked display face (Adobe Fonts).
     Philosopher is used as a public-web fallback for display headings until
     the Adobe font is self-hosted in production. */
  --font-display: 'Philosopher', 'Silver Northern', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-card: 0 8px 24px rgba(44, 54, 70, 0.08);
  --shadow-soft: 0 4px 16px rgba(44, 54, 70, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--night-blue);
  background: var(--ivory);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ============================================================
   Brand swatch strip
   ============================================================ */
.swatch-strip {
  display: flex;
  height: 6px;
}
.swatch-strip > div { flex: 1; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--white);
  border-bottom: 1px solid rgba(61, 74, 92, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand img {
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links > li { position: relative; display: flex; align-items: center; }

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--night-blue);
  text-decoration: none;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a.active { color: var(--gold); font-weight: 600; }

.nav-parent { cursor: pointer; }
.nav-momentos { color: #7E88D0 !important; font-weight: 600 !important; }
.nav-momentos:hover { color: var(--gold) !important; }
.nav-icon {
  width: 20px; height: 20px;
  color: #7E88D0;
  flex-shrink: 0;
}
.nav-momentos:hover .nav-icon { color: var(--gold); }
.nav-icon-img {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.nav-studio { color: #7E88D0 !important; font-weight: 600 !important; }
.nav-studio:hover { color: var(--gold) !important; }
.nav-studio .nav-icon-img {
  width: auto;
  height: 22px;
  max-width: 32px;
  max-height: 22px;
}
.nav-login { color: var(--night-blue); font-weight: 500; }

/* Persistent mobile Log in (sits in nav header, not the collapsing drawer).
   Hidden on desktop; the in-drawer .nav-login-desktop-only handles desktop. */
.nav-login-mobile-only {
  display: none;
}
.nav-caret {
  width: 12px; height: 12px;
  transition: transform 0.15s ease;
}
.has-submenu:hover .nav-caret,
.has-submenu.is-open .nav-caret { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid rgba(61, 74, 92, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 110;
}

.has-submenu:hover > .submenu,
.has-submenu.is-open > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li { display: block; }
.submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--night-blue);
}
.submenu a:hover { background: var(--ivory); color: var(--gold); }

.submenu .disabled-link {
  color: #B8BDC7;       /* gray, not-yet-active */
  cursor: not-allowed;
  pointer-events: none;
}
.submenu .disabled-link:hover { background: transparent; color: #B8BDC7; }

.nav-cta {
  background: var(--gold);
  color: var(--night-deep) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger toggle — hidden on desktop, shown on narrow viewports */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--night-blue);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Rotating video banner (homepage hero)
   ============================================================ */
.video-banner {
  position: relative;
  width: 100%;
  background: var(--night-deep);
  overflow: hidden;
}

.video-banner-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 75vh;
  overflow: hidden;
  background: var(--night-deep);
}

.video-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.video-banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.video-banner-slide video,
.video-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 54, 70, 0.1) 0%,
    rgba(44, 54, 70, 0.1) 50%,
    rgba(44, 54, 70, 0.85) 100%
  );
  pointer-events: none;
}

.video-banner-caption {
  position: absolute;
  /* Sit just above the controls band across all widths.
     Controls + gradient padding pushes the visual top of the strip ~130px up;
     add ~20px breathing room. */
  bottom: 128px;
  top: auto;
  left: 6%;
  right: 6%;
  z-index: 2;
  color: var(--ivory);
  max-width: none;      /* let the headline govern width */
}

.video-banner-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
  display: inline-block;
}

.video-banner-caption h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  /* Never wrap — meta_human accepts overflow beyond viewport at extreme widths */
  white-space: nowrap;
}

.video-banner-caption p {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  color: var(--lavender);
  max-width: 520px;
}

/* Controls */
.video-banner-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: linear-gradient(180deg, transparent, rgba(44, 54, 70, 0.6));
}

.video-banner-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  padding: 8px 0;
}
.video-banner-thumbs::-webkit-scrollbar { display: none; }

.video-banner-thumb {
  flex: 0 0 auto;
  width: 140px;
  height: 78px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(245, 240, 227, 0.25);
  overflow: hidden;
  cursor: pointer;
  background: var(--night-blue);
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.video-banner-thumb.active {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.video-banner-thumb video,
.video-banner-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 8px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  color: var(--ivory);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
}

.video-banner-arrow {
  background: rgba(44, 54, 70, 0.6);
  border: 1px solid rgba(245, 240, 227, 0.25);
  color: var(--ivory);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 12px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.video-banner-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--night-deep);
}

.video-banner-arrow svg { width: 20px; height: 20px; }

/* ============================================================
   Standard hero (sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  background: var(--night-deep);
  overflow: hidden;
}

.page-hero > video,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 54, 70, 0.25) 0%,
    rgba(44, 54, 70, 0.1) 40%,
    rgba(44, 54, 70, 0.85) 100%
  );
}

.page-hero-caption {
  position: absolute;
  bottom: 12%;
  left: 6%;
  right: 6%;
  z-index: 2;
  color: var(--ivory);
  max-width: 720px;
}

.page-hero-caption .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

.page-hero-caption h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}
.page-hero-caption h1.page-hero-h1--single {
  white-space: nowrap;
  font-size: clamp(24px, 4.5vw, 56px);
}

.page-hero-caption p {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 300;
  color: var(--lavender);
  max-width: 600px;
}

/* ============================================================
   Shared sections
   ============================================================ */
.section {
  padding: 80px 40px;
}

.section-narrow {
  max-width: 880px;
  margin: 0 auto;
}

.section-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 10px;
  line-height: 1.15;
}

.section .subtitle {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 40px;
}

.section-center { text-align: center; }

/* Problem statement band (legacy — kept for fairy-visit/bunny-visit pages) */
.statement {
  background: var(--ivory);
  padding: 88px 40px;
  text-align: center;
}

.statement blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--night-blue);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Video Momentos statement — homepage */
.momentos-statement {
  background: var(--ivory);
  padding: 56px 40px;   /* reduced from 88px — less dead space before products */
}

/* Dark variant: night-blue bg, ivory text */
.momentos-statement--dark {
  background: #3D4A5C;
}
.momentos-statement--dark .momentos-copy h2 { color: var(--ivory); }
.momentos-statement--dark .momentos-copy p { color: var(--lavender); }

.momentos-statement-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.momentos-mark {
  width: 112px;
  height: 112px;
  object-fit: contain;
  flex-shrink: 0;
}

.momentos-cta {
  margin-top: 20px;
}

.momentos-copy {
  max-width: 560px;
  text-align: left;
}

.momentos-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 12px;
  line-height: 1.1;
}

.momentos-copy p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--night-blue);
  font-weight: 300;
}

/* ============================================================
   Products grid (homepage)
   ============================================================ */
.products {
  background: var(--ivory);
  text-align: center;
  padding: 96px 40px;
}

/* Thin spacer between heading and card grid */
.products-spacer {
  width: 80px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 24px auto 44px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(61, 74, 92, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
  display: block;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.product-card.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.product-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 14px;
}

.product-card .card-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card .card-cta-disabled {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
}

/* ============================================================
   Legacy Momentos browser
   ============================================================ */
.momentos-browser {
  background: var(--ivory);
  padding: 84px 40px 104px;
}

.momentos-browser-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.momentos-browser-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-items: stretch;
}

.momentos-browser-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  min-height: 100%;
}

.momentos-browser-media {
  aspect-ratio: 4 / 3;
  background: #eef0f6;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.momentos-browser-media img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.momentos-browser-media--symbol img {
  width: min(46%, 118px);
  height: min(46%, 118px);
  object-fit: contain;
}

.momentos-browser-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 28px;
}

.momentos-browser-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 8px;
}

.momentos-browser-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 16px;
}

.momentos-browser-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: auto 0 18px;
}

.momentos-browser-meta span {
  border: 1px solid rgba(61, 74, 92, 0.12);
  border-radius: 999px;
  color: var(--night-blue);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
}

.momentos-browser-empty {
  max-width: 520px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px solid rgba(61, 74, 92, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}

.momentos-browser-empty img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.momentos-browser-empty h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--night-blue);
  margin-bottom: 8px;
}

.momentos-browser-empty p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================================
   Immersive feature section
   ============================================================ */
.feature {
  position: relative;
  color: var(--ivory);
  padding: 110px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background-image: url('../images/hero/bedroom-night-wide.webp');
  background-size: cover;
  background-position: center;
  flex-wrap: wrap;
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 54, 70, 0.75);
}

.feature > * {
  position: relative;
  z-index: 1;
}

.feature-text { max-width: 480px; }

.feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 18px;
}

.feature-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--lavender);
  line-height: 1.7;
  margin-bottom: 26px;
}

.feature-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.feature-link:hover { color: var(--gold-light); }

.feature-visual {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #000;                 /* inner black frame: gives the logo headroom */
  display: grid;
  place-items: center;
  border: 3px solid var(--night-blue);
  flex-shrink: 0;
  box-shadow: 0 0 60px rgba(139, 143, 190, 0.2);
  overflow: hidden;
}

.feature-visual img,
.feature-visual video {
  width: 82%;                       /* ~246px — leaves ~27px of black padding around */
  height: 82%;
  object-fit: cover;                /* 16:9 video fills the square, sides cropped by circle */
}

/* ============================================================
   How It Works (3-step)
   ============================================================ */
.steps {
  background: var(--white);
  padding: 96px 40px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  padding: 32px 20px;
}

.step-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.step-num-h {
  color: var(--gold);
  font-weight: 700;
  margin-right: 4px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================================
   The Moment (section 2 — image + text)
   ============================================================ */
.moment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 40px;
}
.moment-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--night-blue);
  line-height: 1.15;
  margin-bottom: 20px;
}
.moment-text .subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--night-blue);
}
.moment-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: block;
  margin: 0 auto;
}

/* ============================================================
   How It Works — 3-column rich layout (image / vertical chooser / image)
   ============================================================ */
.steps-grid--rich {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  align-items: start;
}

.steps-grid--rich .step {
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.step-header .step-icon {
  width: 56px;
  height: 56px;
  margin: 0;
  object-fit: contain;
}
.step-header .step-icon--lg {
  width: auto;
  height: 76px;
  max-width: 96px;
}
.step-header h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.step-image-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.step-image {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  display: block;
}
.step-image--sm {
  max-width: 240px;
}
/* Step 1 + Step 3 same fixed-aspect framed image */
.step-image--equal {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

/* Header without icon (just numbered heading) */
.step-header--no-icon {
  justify-content: center;
  min-height: 76px;
}

.step-text {
  font-size: 16px;
  color: var(--night-blue);
  margin: 0 auto 16px;
  max-width: 480px;
}

.step-chooser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.step-chooser--vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 180px;
  align-items: center;
}
.step-chooser--lg {
  max-width: 260px;
}
.step-chooser--vertical.step-chooser--lg .step-choice,
.step-chooser--lg .step-choice {
  width: 219px;
}
.step-choice {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.step-choice img {
  width: 100%;
  height: auto;
  display: block;
}
.step-chooser--vertical .step-choice {
  width: 140px;
  cursor: default;
}
.step-chooser--vertical .step-choice:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}
.step-chooser:not(.step-chooser--vertical) .step-choice {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step-chooser:not(.step-chooser--vertical) .step-choice:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(44, 54, 70, 0.15);
}
.step-chooser:not(.step-chooser--vertical) .step-choice.is-selected {
  box-shadow: 0 0 0 3px var(--gold), var(--shadow-card);
}
.step-chooser--toys .step-choice img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.step-chooser--toys .step-choice--symbol {
  background: linear-gradient(135deg, var(--ivory), #dfe6ff);
}
.step-chooser--toys .step-choice--symbol img {
  object-fit: contain;
  padding: 24px;
}

/* ============================================================
   The Moment — image-size variant
   ============================================================ */
.moment-image--sm {
  max-width: 380px;
}

/* ============================================================
   Testimonials — optional reaction-image alongside cards
   ============================================================ */
.testimonials-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials-image img {
  width: 100%;
  max-width: 220px;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
.testimonials-row--single {
  grid-template-columns: minmax(180px, 240px) minmax(0, 560px);
  justify-content: center;
  max-width: 900px;
}

/* ============================================================
   Testimonial block — single, no white card, image+quote centered
   ============================================================ */
.testimonial-block {
  background: var(--ivory);
  padding: 96px 24px;
  display: flex;
  justify-content: center;
}
.testimonial-block-inner {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 540px);
  gap: 40px;
  align-items: center;
  max-width: 920px;
}
.testimonial-block-inner--tight {
  gap: 16px;
  grid-template-columns: minmax(260px, 336px) minmax(0, 420px);
  max-width: 800px;
}
.testimonial-block-image {
  width: 100%;
  max-width: 280px;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  display: block;
  margin: 0 auto;
}
.testimonial-block-image--lg {
  max-width: 336px;
}
.testimonial-block-quote {
  text-align: center;
  color: var(--night-blue);
}
.testimonial-block-quote .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-block-quote blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 14px;
  font-style: italic;
}
.testimonial-block-quote cite {
  font-style: normal;
  color: var(--slate);
  font-size: 15px;
}

/* ============================================================
   FAQ compact (2 visible + More toggle)
   ============================================================ */
.faq--compact {
  padding-top: 56px;
}
.faq--compact h2 {
  margin-bottom: 18px;
}
.faq-more[hidden] { display: none; }
.faq-more {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-more-toggle {
  margin-top: 14px;
  background: transparent;
  border: 1px solid var(--periwinkle);
  color: var(--night-blue);
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.faq-more-toggle:hover {
  background: var(--periwinkle);
  color: var(--white);
}

/* ============================================================
   Trust pillars with background image variant
   ============================================================ */
.trust-pillars--bg {
  position: relative;
  isolation: isolate;
  color: var(--ivory);
}
.trust-pillars--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.trust-pillars--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(44, 54, 70, 0.85), rgba(61, 74, 92, 0.78));
}
.trust-pillars--fairy::before {
  background-image: url('../images/fairy/fairy-front.webp');
  background-color: var(--night-blue);
  background-position: center 25%;
}
.trust-pillars--bunny::before {
  background-image: url('../images/bunny/bunny-confirm.webp');
  background-color: var(--night-blue);
  background-position: center 85%;
}
.trust-pillars--toys::before {
  background-image: url('../images/hero/banner-slide-4.webp');
  background-color: var(--night-blue);
  background-position: center 55%;
}
.trust-pillars--bg .trust-pillar h3,
.trust-pillars--bg .trust-pillar p {
  color: var(--ivory);
}
.trust-pillars--bg .trust-pillar__icon { filter: brightness(0) invert(1); }
.trust-pillars--bg .trust-pillar__icon--svg { color: var(--ivory); }

/* ============================================================
   Customization (fairy page)
   ============================================================ */
.customize {
  background: var(--ivory);
  padding: 96px 40px;
}

.customize-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.customize-group {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.customize-group h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 8px;
}

.customize-group .hint {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 20px;
}

.fairy-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.fairy-type {
  background: var(--white);
  border: 1px solid rgba(61, 74, 92, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fairy-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--periwinkle);
}

.fairy-type img {
  width: 110px;
  height: 110px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.fairy-type h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 6px;
}

.fairy-type p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}

/* Colour swatches */
.colour-swatches {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.swatch {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.15s ease;
  position: relative;
}

.swatch:hover { transform: scale(1.08); }

.swatch-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--slate);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.swatch-wrap { text-align: center; }

/* ============================================================
   Bunny gallery
   ============================================================ */
.bunny-gallery {
  background: var(--white);
  padding: 96px 40px;
}

.bunny-gallery-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.bunny-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bunny-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bunny-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.bunny-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bunny-card-body {
  padding: 18px 20px;
}

.bunny-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 6px;
}

.bunny-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}

.bunny-main-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--ivory);
}

.bunny-main-card img {
  aspect-ratio: auto;
  height: 100%;
}

.bunny-main-card .bunny-card-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bunny-main-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--night-blue);
  margin-bottom: 14px;
}

.bunny-main-card .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--night-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  align-self: flex-start;
}

.bunny-main-card p {
  font-size: 15px;
  color: var(--night-blue);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ============================================================
   Testimonial
   ============================================================ */
.testimonial {
  padding: 96px 40px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.testimonial-photo {
  width: 320px;
  height: 320px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.testimonial-content {
  max-width: 520px;
}

.testimonial .stars {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--night-blue);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial cite {
  font-size: 14px;
  color: var(--slate);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ============================================================
   Privacy strip
   ============================================================ */
.privacy {
  background: var(--night-blue);
  color: var(--ivory);
  padding: 72px 40px;
  text-align: center;
}

.privacy-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 0 24px rgba(217, 180, 85, 0.25));
}

.privacy h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--ivory);
  margin-bottom: 14px;
}

.privacy p {
  font-size: 17px;
  color: var(--lavender);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--periwinkle);
  color: var(--white);
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  object-fit: contain;
  opacity: 0.12;
  pointer-events: none;
}

.cta-band > *:not(.cta-band-logo):not(.cta-band-bunny-art):not(.cta-band-copy) {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.cta-band p {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA band — bunny variant (living-room bg + bunny overlay) */
.cta-band--bunny {
  background-image: url('../images/hero/living-room-front.webp');
  background-size: cover;
  background-position: center;
  text-align: left;
  padding: 96px 0;
}

.cta-band--bunny::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(44, 54, 70, 0.82) 0%,
    rgba(44, 54, 70, 0.55) 45%,
    rgba(44, 54, 70, 0.15) 70%,
    rgba(44, 54, 70, 0) 100%
  );
  z-index: 0;
}

.cta-band--bunny .cta-band-bunny-art {
  position: absolute;
  right: 2%;
  bottom: 0;
  top: 0;
  width: 48%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cta-band--bunny .cta-band-bunny-art img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transform: scaleX(-1);   /* mirror so bunny faces the copy on the left */
}

.cta-band--bunny .cta-band-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: 8%;
  color: var(--ivory);
}

/* Mirrored variant: bunny on LEFT, copy on RIGHT (gradient flipped) */
.cta-band--bunny-left::before {
  background: linear-gradient(
    270deg,
    rgba(44, 54, 70, 0.82) 0%,
    rgba(44, 54, 70, 0.55) 45%,
    rgba(44, 54, 70, 0.15) 70%,
    rgba(44, 54, 70, 0) 100%
  );
}

.cta-band--bunny-left .cta-band-bunny-art {
  right: auto;
  left: 2%;
}

.cta-band--bunny-left .cta-band-copy {
  margin-left: auto;
  margin-right: 8%;
  text-align: right;
}

.cta-band--bunny .cta-band-copy h2 {
  color: var(--ivory);
  margin-bottom: 14px;
}

.cta-band--bunny .cta-band-copy p {
  color: var(--lavender);
  margin: 0 0 32px 0;
  max-width: none;
}

.cta-band--toys {
  background-image: linear-gradient(90deg, rgba(44, 54, 70, 0.86), rgba(44, 54, 70, 0.55)), url('../images/hero/banner-slide-4.webp');
  background-size: cover;
  background-position: center 58%;
  text-align: left;
}

.cta-band--toys .cta-band-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: 8%;
  color: var(--ivory);
}

.cta-band--toys .cta-band-copy h2 {
  color: var(--ivory);
}

.cta-band--toys .cta-band-copy p {
  color: var(--lavender);
  margin-left: 0;
  margin-right: 0;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--periwinkle);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--night-deep);
  color: var(--slate);
  padding: 56px 40px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 36px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 13px;
  color: var(--slate);
  max-width: 260px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 18px 40px;
  background: var(--night-deep);
  border-top: 1px solid rgba(245, 240, 227, 0.06);
  font-size: 12px;
  color: var(--night-light);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav { padding: 12px 20px; position: relative; }
  .nav-toggle { display: flex; }

  /* Persistent Log in stays in the header next to the hamburger */
  .nav-login-mobile-only {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    margin-right: 12px;
    color: var(--night-blue);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }
  .nav-login-mobile-only:hover { color: var(--gold); }
  /* Hide in-drawer Log in on mobile to avoid duplication */
  .nav-login-desktop-only { display: none; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 0;
    border-bottom: 1px solid rgba(61, 74, 92, 0.08);
    box-shadow: 0 8px 24px rgba(44, 54, 70, 0.08);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.25s ease, visibility 0.25s ease;
  }
  .nav-links.is-open {
    max-height: 80vh;
    overflow: auto;
    visibility: visible;
  }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(61, 74, 92, 0.04);
  }
  .nav-links a.nav-cta {
    margin: 12px 20px;
    text-align: center;
    justify-content: center;
  }

  /* Submenu becomes inline accordion on mobile */
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: var(--ivory);
    display: none;
    min-width: 0;
  }
  .has-submenu.is-open > .submenu { display: block; }
  .submenu a { padding: 12px 36px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { flex-direction: column-reverse; padding: 80px 24px; gap: 40px; }
  .feature-visual { width: 220px; height: 220px; }
  .feature-visual img { width: 180px; height: 180px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonial { flex-direction: column; padding: 64px 24px; gap: 32px; text-align: center; }
  .testimonial-photo { width: 260px; height: 260px; }
  .testimonial-content { text-align: center; }
  .testimonial .stars { text-align: center; }

  .section { padding: 64px 24px; }
  .statement { padding: 64px 24px; }
  .products { padding: 64px 24px; }
  .customize { padding: 64px 24px; }
  .bunny-gallery { padding: 64px 24px; }
  .privacy { padding: 56px 24px; }
  .cta-band { padding: 72px 24px; }

  .moment {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 24px;
    text-align: center;
  }
  .moment-image img { max-width: 360px; }

  .steps-grid--rich { grid-template-columns: 1fr; gap: 48px; }
  .step-chooser { grid-template-columns: 1fr; gap: 16px; max-width: 280px; }
  .step-chooser--vertical { max-width: 160px; }
  .step-chooser--lg { max-width: 240px; }
  .step-chooser--vertical.step-chooser--lg .step-choice,
  .step-chooser--lg .step-choice { width: 200px; }
  .step-image { max-width: 100%; }
  .step-image--sm { max-width: 320px; }
  .step-image--equal { max-width: 320px; }
  .testimonials-row--single { grid-template-columns: 1fr; }
  .testimonial-block { padding: 56px 24px; }
  .testimonial-block-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .testimonial-block-image { max-width: 240px; }
  .footer { padding: 40px 24px 28px; flex-direction: column; gap: 24px; }

  .video-banner-controls { padding: 10px 12px; }
  .video-banner-thumb { width: 100px; height: 56px; }
  .video-banner-arrow { width: 36px; height: 36px; margin: 0 6px; }
  /* Narrow: controls band is shorter, caption sits just above it. */
  .video-banner-caption {
    bottom: 98px;
    top: auto;
    left: 5%;
    right: 5%;
  }
  .video-banner-caption h1 { font-size: clamp(20px, 5.5vw, 34px); }
  .video-banner-eyebrow { font-size: 11px; letter-spacing: 2.5px; margin-bottom: 6px; }

  .bunny-main-card { grid-template-columns: 1fr; }
  .bunny-main-card img { aspect-ratio: 1 / 1; }
  .bunny-main-card .bunny-card-body { padding: 28px 24px; }

  .momentos-statement-inner { gap: 24px; }
  .momentos-mark { width: 84px; height: 84px; }
  .momentos-copy { text-align: center; max-width: none; }

  .cta-band--bunny { padding: 72px 0; }
  .cta-band--bunny::before,
  .cta-band--bunny-left::before {
    background: linear-gradient(180deg, rgba(44,54,70,0.7) 0%, rgba(44,54,70,0.9) 100%);
  }
  .cta-band--bunny .cta-band-bunny-art,
  .cta-band--bunny-left .cta-band-bunny-art {
    position: absolute;
    left: 0; right: 0; top: auto; bottom: 0;
    width: 100%;
    opacity: 0.35;
    height: 100%;
  }
  .cta-band--bunny .cta-band-copy,
  .cta-band--bunny-left .cta-band-copy {
    margin: 0 24px;
    max-width: none;
    text-align: center;
  }
  .cta-band--toys .cta-band-copy {
    margin: 0 24px;
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .video-banner-thumb { width: 90px; height: 52px; }
  .video-banner-thumb-label { display: none; }
  .video-banner-caption { bottom: 90px; }
  .video-banner-caption h1 { font-size: clamp(17px, 5.2vw, 24px); }
}

/* ============================================================
   Sales page additions (2026-04-24 v4)
   - hero CTA row with icon button
   - reaction-proof section
   - pricing block (3-tier)
   - trust pillars (3-column)
   - testimonials row (3-column)
   - FAQ (details/summary accordion)
   - urgency eyebrow + secondary link on CTA bands
   ============================================================ */

/* Hero CTA row (button + secondary link) */
.hero-cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.hero-cta-secondary {
  color: var(--ivory);
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 227, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* Primary CTA button with icon */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--periwinkle-a);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(44, 54, 70, 0.14);
}
.btn-cta__icon {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}
.btn-cta--light {
  background: var(--ivory);
  color: var(--night-blue);
}
.btn-cta--light .btn-cta__icon { filter: none; }
.btn-cta--light:hover { background: var(--gold); color: var(--white); }
.btn-cta--light:hover .btn-cta__icon { filter: brightness(0) invert(1); }

/* Reaction proof section */
.reaction-proof {
  padding: 72px 32px;
  text-align: center;
  background: var(--ivory);
}
.reaction-proof h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--night-blue);
  margin-bottom: 12px;
}
.reaction-proof .subtitle {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
}
.reaction-proof-image {
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(44, 54, 70, 0.16);
}
.reaction-proof-image img { width: 100%; height: auto; display: block; }
.reaction-proof-caption {
  margin-top: 18px;
  font-size: 14px;
  color: var(--slate);
  font-style: italic;
  letter-spacing: 0.3px;
}

/* Pricing block */
.pricing-page .page-shell {
  background: var(--white);
}

.pricing-hero {
  background:
    linear-gradient(135deg, rgba(44, 54, 70, 0.98), rgba(61, 74, 92, 0.94)),
    url('../images/hero/banner-slide-5.webp');
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  padding: clamp(42px, 5vw, 66px) 32px clamp(30px, 3.5vw, 44px);
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.pricing-hero__copy,
.pricing-hero__summary {
  width: min(100%, 1100px);
}

.pricing-hero__copy {
  justify-self: end;
  max-width: 650px;
}

.pricing-hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pricing-hero h1 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin-bottom: 14px;
  max-width: 720px;
}

.pricing-hero p {
  color: var(--lavender);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  max-width: 560px;
}

.pricing-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.pricing-hero__link {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.pricing-hero__link:hover {
  color: var(--gold-light);
}

.pricing-hero__summary {
  justify-self: start;
  max-width: 430px;
  display: grid;
  gap: 10px;
}

.pricing-hero__stat {
  border: 1px solid rgba(245, 240, 227, 0.22);
  border-radius: 8px;
  background: rgba(245, 240, 227, 0.08);
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}

.pricing-hero__stat strong,
.pricing-hero__stat span {
  display: block;
}

.pricing-hero__stat strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 4px;
}

.pricing-hero__stat span {
  color: var(--lavender);
  font-size: 14px;
  line-height: 1.45;
}

.pricing {
  padding: 42px 32px 64px;
  background: var(--white);
  scroll-margin-top: 92px;
}
.pricing-header {
  text-align: center;
  margin-bottom: 26px;
}
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--night-blue);
  margin-bottom: 8px;
}
.pricing-header .subtitle {
  font-size: 16px;
  color: var(--slate);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--ivory);
  border-radius: 8px;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(44, 54, 70, 0.12); }
.pricing-card--featured {
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 16px 44px rgba(217, 180, 85, 0.22);
  transform: scale(1.02);
  padding-top: 40px;
}
.pricing-card--featured:hover { transform: scale(1.02) translateY(-3px); }
.pricing-card--best { background: var(--ivory); }
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--periwinkle-a);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card__badge--gold {
  background: var(--gold);
  color: var(--night-blue);
}
.pricing-card__label {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--night-blue);
  margin-bottom: 10px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  color: var(--night-blue);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card__content {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 8px;
  line-height: 1.5;
}
.pricing-card__savings {
  display: inline-block;
  background: var(--gold);
  color: var(--night-blue);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.pricing-card__descriptor {
  font-size: 15px;
  color: var(--night-blue);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}
.pricing-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 14px;
  color: var(--slate);
}
.pricing-card__bullets li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.5;
}
.pricing-card__bullets li::before {
  content: "\2713";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.pricing-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--white);
  color: var(--night-blue);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--night-blue);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pricing-card__cta:hover { background: var(--night-blue); color: var(--white); }
.pricing-card__cta--primary {
  background: var(--periwinkle-a);
  color: var(--white);
  border-color: var(--periwinkle-a);
  box-shadow: var(--shadow-soft);
}
.pricing-card__cta--primary .btn-cta__icon { filter: brightness(0) invert(1); }
.pricing-card__cta--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.pricing-footnotes {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
}
.pricing-footnote-secondary {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 8px;
}
.pricing-footnote-images {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.5;
}
.pricing-assurance {
  font-size: 15px;
  color: var(--night-blue);
  font-weight: 600;
  padding: 14px 20px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  display: inline-block;
}

.pricing-page .cta-band {
  padding: 68px 32px;
}

/* Trust pillars row */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 72px 32px;
  background: var(--night-blue);
  color: var(--ivory);
}
.trust-pillar {
  text-align: center;
  color: var(--ivory);
  max-width: 300px;
  margin: 0 auto;
}
.trust-pillar__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.trust-pillar__icon--svg {
  width: 44px;
  height: 44px;
  color: var(--ivory);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-pillar__icon--svg svg { width: 100%; height: 100%; }
.trust-pillar h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 10px;
  line-height: 1.3;
}
.trust-pillar p {
  font-size: 14px;
  color: var(--lavender);
  line-height: 1.6;
  margin: 0 auto;
}

/* Testimonials row (3 brief quotes) */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 32px;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--ivory);
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--night-blue);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 14px;
  quotes: none;
}
.testimonial-card cite {
  font-size: 13px;
  color: var(--slate);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* FAQ (details/summary) */
.faq {
  padding: 72px 32px;
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
}
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--night-blue);
  text-align: center;
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid rgba(122, 132, 148, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-soft); border-color: var(--gold); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 700;
  color: var(--night-blue);
  font-size: 16px;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--night-blue);
  font-size: 15px;
  line-height: 1.65;
}

/* CTA band additions (urgency eyebrow + secondary link) */
.cta-band-urgency {
  display: block;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-band--bunny .cta-band-urgency { color: var(--gold-light); }
.cta-band-secondary {
  display: inline-block;
  margin-top: 16px;
  color: var(--ivory);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 227, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-band-secondary:hover { color: var(--gold); border-color: var(--gold); }
.cta-band .btn-cta { margin-top: 8px; }

/* Bunny gallery intro default styles */
.bunny-gallery-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--night-blue);
  margin-bottom: 12px;
}
.bunny-gallery-intro p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   Studio Page (studio.html)
   ============================================================ */

/* CTA — gold variant (Studio primary) */
.btn-cta--gold {
  background: var(--gold);
  color: var(--night-blue);
}
.btn-cta--gold:hover { background: var(--gold-light); color: var(--night-deep); }
.btn-cta--gold .btn-cta__icon { filter: none; }
.btn-cta__icon-lead {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

/* Studio statement (below banner) */
.studio-statement {
  background: var(--night-deep);
  color: var(--ivory);
  padding: 96px 40px;
}
.studio-statement-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.studio-statement-copy { max-width: 560px; }
.studio-wordmark {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
}
.studio-wordmark .sw-magic { color: var(--periwinkle-a); }
.studio-wordmark .sw-pipe  { color: var(--ivory); margin: 0 6px; font-weight: 300; }
.studio-wordmark .sw-studio { color: var(--gold); }
.studio-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ivory);
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.studio-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--lavender);
  line-height: 1.65;
  margin-bottom: 28px;
}
.studio-cta { padding: 14px 28px; }
.studio-statement-visual {
  display: grid;
  place-items: center;
}
.studio-statement-visual img {
  max-width: 100%;
  width: 420px;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
}

@media (max-width: 900px) {
  .studio-statement-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .studio-statement-copy { margin: 0 auto; }
  .studio-statement-visual img { width: 320px; }
}

/* Studio steps */
.studio-steps {
  background: var(--white);
  padding: 96px 40px;
  text-align: center;
}
.studio-steps > h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--night-blue);
  margin-bottom: 8px;
}
.studio-steps > .subtitle {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 48px;
}
.studio-steps-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto 28px;
  align-items: stretch;
}
.studio-steps-row--graduation {
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
  max-width: 1080px;
}
.studio-step {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.studio-step--featured {
  background: var(--white);
  border: 1px solid rgba(122, 132, 148, 0.18);
  box-shadow: var(--shadow-soft);
}
.studio-step--gold {
  background: linear-gradient(180deg, #FBF6E6 0%, #F7EFD2 100%);
  border-top: 3px solid var(--gold);
}
.studio-step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--periwinkle-a);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
}
.studio-step-num--gold { background: var(--gold); color: var(--night-deep); }
.studio-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--night-blue);
  font-weight: 700;
  margin: 0;
}
.studio-step p {
  font-size: 15px;
  color: var(--night-blue);
  line-height: 1.6;
}
.studio-step-lede {
  font-weight: 600;
  color: var(--night-blue);
}
.studio-step-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 14px;
  color: var(--night-blue);
}
.studio-step-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}
.studio-step-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.4;
}
.studio-step-foot {
  font-size: 13px;
  color: var(--slate);
  margin-top: auto;
}
.studio-learn-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}
.studio-learn-link:hover { color: var(--gold-light); }

/* Step 1 templates row */
.studio-step-templates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}
.studio-template-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 6px;
  text-align: center;
  border: 1px solid rgba(122, 132, 148, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.studio-template-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.studio-template-card span {
  font-size: 11px;
  color: var(--slate);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Step 2 builder visualization */
.studio-builder {
  background: var(--night-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 4px 0;
  box-shadow: 0 10px 30px rgba(44, 54, 70, 0.18);
}
.studio-builder-header {
  display: flex;
  gap: 4px;
  padding: 10px 12px;
  background: var(--night-blue);
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.studio-builder-tab {
  font-size: 11px;
  font-weight: 700;
  color: var(--lavender);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}
.studio-builder-tab.active {
  background: var(--gold);
  color: var(--night-deep);
}
.studio-builder-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.studio-builder-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.studio-builder-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: var(--lavender);
}
.studio-builder-icon svg { width: 16px; height: 16px; }
.studio-builder-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.studio-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--lavender);
  border: 1px dashed rgba(196, 184, 212, 0.3);
}
.studio-pill--filled {
  background: var(--periwinkle-a);
  color: var(--white);
  border: 1px solid var(--periwinkle-a);
}
.studio-builder-swatches {
  display: flex;
  gap: 6px;
}
.studio-swatch {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.15);
}
.studio-swatch--active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(217, 180, 85, 0.3);
}

/* Step 3 test mode badge */
.studio-step-test {
  margin-top: auto;
  text-align: center;
  padding: 16px 0 6px;
}
.studio-test-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 14px 22px;
  background: var(--ivory);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-md);
}
.studio-test-strike {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--slate);
  text-decoration: line-through;
}
.studio-test-discount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.studio-test-label {
  font-size: 12px;
  color: var(--slate);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.studio-test-caption {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Step 4 publish mock */
.studio-step-publish { margin-top: auto; }
.studio-publish-mock {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(217, 180, 85, 0.4);
}
.studio-publish-label {
  font-size: 11px;
  color: var(--slate);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.studio-publish-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--night-blue);
  font-weight: 700;
}
.studio-publish-toggles {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.studio-publish-toggle {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--slate);
  border: 1px solid rgba(122, 132, 148, 0.2);
}
.studio-publish-toggle--active {
  background: var(--gold);
  color: var(--night-deep);
  border-color: var(--gold);
}

/* Step 5 earn callout */
.studio-earn-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--night-deep);
  border-radius: var(--radius-md);
  margin: 6px 0 10px;
}
.studio-earn-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.studio-earn-text {
  font-size: 13px;
  color: var(--ivory);
  line-height: 1.4;
}
.studio-earn-text strong { color: var(--gold-light); }

@media (max-width: 1060px) {
  .studio-steps-row { grid-template-columns: 1fr; max-width: 560px; }
  .studio-steps-row--graduation { grid-template-columns: 1fr; max-width: 560px; }
}

/* Studio access section */
.studio-access {
  background: var(--ivory);
  padding: 96px 40px;
  text-align: center;
}
.studio-access-inner {
  max-width: 720px;
  margin: 0 auto;
}
.studio-access h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--night-blue);
  margin-bottom: 18px;
  line-height: 1.2;
}
.studio-access h2 .text-gold { color: var(--gold); }
.studio-access-body {
  font-size: 17px;
  color: var(--night-blue);
  line-height: 1.65;
  margin-bottom: 24px;
}
.studio-access-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}
.studio-access-price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--night-blue);
  line-height: 1;
}
.studio-access-price-note {
  font-size: 13px;
  color: var(--slate);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.studio-access-ctas {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.studio-access-secondary {
  color: var(--night-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.studio-access-secondary:hover { color: var(--gold); }

/* CTA band — Studio variant */
.cta-band--studio {
  background: linear-gradient(135deg, var(--night-deep) 0%, var(--night-blue) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band--studio::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(217, 180, 85, 0.12) 0, transparent 40%),
                    radial-gradient(circle at 85% 70%, rgba(126, 136, 208, 0.18) 0, transparent 45%);
  pointer-events: none;
}
.cta-band--studio .cta-band-copy { position: relative; z-index: 1; }
.cta-band--studio h2 { color: var(--ivory); }
.cta-band--studio p { color: var(--lavender); }
.cta-band--studio .cta-band-urgency { color: var(--gold-light); }

/* Studio Pro landing */
.studio-pro-page .page-shell {
  background: var(--white);
}

.studio-pro-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 5vw, 66px) 32px clamp(36px, 4vw, 52px);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(44, 54, 70, 0.98), rgba(61, 74, 92, 0.94)),
    url('../images/hero/banner-slide-5.webp');
  background-size: cover;
  background-position: center;
}

.studio-pro-hero__copy {
  width: min(100%, 1100px);
  justify-self: end;
  max-width: 640px;
}

.studio-pro-hero .eyebrow {
  display: inline-block;
  color: var(--periwinkle-a);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.studio-pro-hero h1 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin-bottom: 14px;
}

.studio-pro-hero__copy > p {
  color: var(--lavender);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  max-width: 560px;
}

.studio-pro-hero__audience {
  margin-top: 14px;
  font-size: 15px !important;
  color: rgba(245, 240, 227, 0.92) !important;
}

.studio-pro-hero__audience a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 180, 85, 0.5);
}

.studio-pro-hero__audience a:hover {
  color: var(--gold);
}

.studio-pro-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.studio-pro-hero__link {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--periwinkle-a);
  padding-bottom: 3px;
}

.studio-pro-hero__link:hover {
  color: var(--periwinkle-a);
}

.studio-pro-hero__visual {
  justify-self: start;
  width: min(100%, 1024px);
  margin: 0;
  scroll-margin-top: 92px;
  line-height: 0;
}

.studio-pro-hero__visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 240, 227, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.studio-pro-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.studio-pro-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--night-blue);
  margin-bottom: 8px;
}

.studio-pro-section-head .subtitle {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.55;
}

.eyebrow--dark {
  display: inline-block;
  color: var(--periwinkle-a);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.studio-pro-uses {
  padding: 72px 32px;
  background: var(--white);
}

/* Keep UI screenshot text sharp on 2x displays (1024px asset → max 512px layout width) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .studio-pro-hero__visual img {
    max-width: 512px;
  }
}

.studio-pro-uses__tree {
  max-width: 640px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid rgba(122, 132, 148, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.studio-pro-uses__root {
  font-size: 18px;
  line-height: 1.5;
  color: var(--night-blue);
  margin: 0 0 18px;
}

.studio-pro-uses__root strong {
  color: var(--periwinkle-a);
  font-family: var(--font-display);
  font-size: 22px;
}

.studio-pro-uses__root span {
  margin: 0 8px;
  color: var(--gold);
  font-weight: 800;
}

.studio-pro-uses__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.studio-pro-uses__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--night-blue);
  padding-left: 8px;
}

.studio-pro-uses__branch {
  flex-shrink: 0;
  color: var(--periwinkle-a);
  font-weight: 700;
  font-size: 15px;
}

.studio-pro-compare {
  padding: 72px 32px 64px;
  background: var(--white);
}

.studio-pro-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.studio-pro-compare-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(122, 132, 148, 0.14);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.studio-pro-compare-card--featured {
  background: linear-gradient(180deg, #f4f0ff 0%, #ebe6ff 100%);
  border-color: rgba(126, 136, 208, 0.35);
  box-shadow: var(--shadow-soft);
}

.studio-pro-compare-card__badge {
  align-self: flex-start;
  background: var(--periwinkle-a);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.studio-pro-compare-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--night-blue);
}

.studio-pro-compare-card__lede {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}

.studio-pro-compare-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--night-blue);
  font-size: 15px;
  line-height: 1.55;
}

.studio-pro-compare-card__link,
.studio-pro-compare-card__cta {
  margin-top: auto;
}

.studio-pro-compare-card__link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.studio-pro-compare-card__link:hover {
  color: var(--gold-light);
}

.studio-pro-tutorial-teaser {
  padding: 0 32px 72px;
  background: var(--white);
}

.studio-pro-tutorial-teaser__inner {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(126, 136, 208, 0.45);
  background: linear-gradient(135deg, rgba(126, 136, 208, 0.08), rgba(217, 180, 85, 0.08));
  padding: 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.studio-pro-tutorial-teaser h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--night-blue);
  margin-bottom: 8px;
}

.studio-pro-tutorial-teaser p {
  color: var(--night-blue);
  font-size: 15px;
  line-height: 1.55;
  max-width: 560px;
}

.studio-pro-tutorial-teaser__ctas {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.studio-pro-tutorial-teaser__cta {
  white-space: nowrap;
}

.studio-pro-tutorial-teaser__link {
  flex-shrink: 0;
  color: var(--periwinkle-a);
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;
  border-bottom: 2px solid var(--periwinkle-a);
  padding-bottom: 2px;
  white-space: nowrap;
}

.studio-pro-tutorial-teaser__link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.cta-band--studio-pro {
  background: linear-gradient(135deg, var(--night-deep) 0%, #3a4660 55%, var(--night-blue) 100%);
}

.cta-band--studio-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(126, 136, 208, 0.22) 0, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(217, 180, 85, 0.14) 0, transparent 40%);
  pointer-events: none;
}

.cta-band--studio-pro .cta-band-copy {
  position: relative;
  z-index: 1;
}

.cta-band--studio-pro h2 {
  color: var(--ivory);
}

.cta-band--studio-pro p {
  color: var(--lavender);
}

.cta-band--studio-pro .cta-band-urgency {
  color: var(--periwinkle-a);
}

/* Responsive breakpoints for new sections */
@media (max-width: 960px) {
  .studio-pro-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 24px 36px;
  }
  .studio-pro-hero__copy,
  .studio-pro-hero__visual {
    justify-self: center;
    max-width: 720px;
  }
  .studio-pro-uses__tree {
    padding: 24px 22px;
  }
  .studio-pro-compare__grid {
    grid-template-columns: 1fr;
  }
  .studio-pro-tutorial-teaser__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 24px 36px;
  }
  .pricing-hero__copy,
  .pricing-hero__summary {
    justify-self: center;
    max-width: 720px;
  }
  .pricing-hero__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pricing-grid { grid-template-columns: 1fr; gap: 28px; max-width: 460px; }
  .pricing-card--featured { transform: none; }
  .trust-pillars { grid-template-columns: 1fr; gap: 36px; padding: 56px 32px; }
  .testimonials-row { grid-template-columns: 1fr; gap: 20px; padding: 56px 24px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 560px) {
  .btn-cta { width: 100%; justify-content: center; }
  .pricing-hero {
    padding: 42px 20px 30px;
  }
  .pricing-hero h1 {
    font-size: clamp(30px, 11vw, 40px);
  }
  .pricing-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .pricing-hero__link {
    align-self: center;
  }
  .pricing-hero__summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pricing-hero__stat {
    padding: 11px 14px;
  }
  .pricing-hero__stat strong {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .pricing-hero__stat span {
    font-size: 13px;
  }
  .reaction-proof { padding: 56px 20px; }
  .pricing { padding: 38px 20px 52px; }
  .pricing-page .cta-band { padding: 56px 20px; }
  .faq { padding: 56px 20px; }
  .studio-statement { padding: 64px 24px; }
  .studio-steps { padding: 64px 20px; }
  .studio-access { padding: 64px 24px; }
  .studio-pro-hero {
    padding: 42px 20px 30px;
  }
  .studio-pro-hero h1 {
    font-size: clamp(30px, 11vw, 40px);
  }
  .studio-pro-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .studio-pro-hero__link {
    align-self: center;
  }
  .studio-pro-uses,
  .studio-pro-compare {
    padding: 56px 20px;
  }
}

/* ============================================================
   Site v2 Momentos tiers and catalog browser
   ============================================================ */
.momentos-statement--gradient {
  background: linear-gradient(180deg, var(--night-blue) 0%, var(--lavender) 100%);
  color: var(--ivory);
}
.momentos-statement--gradient .momentos-copy h2,
.momentos-statement--gradient .momentos-copy p {
  color: var(--ivory);
}
.momentos-statement--gradient .momentos-copy strong {
  color: var(--gold-light);
}

.momento-tiers {
  background: var(--ivory);
}
.tier-band {
  padding: 56px 32px 48px;
}
.tier-band--signature {
  background: linear-gradient(180deg, var(--lavender) 0%, var(--ivory) 100%);
}
.tier-band--premium {
  background: var(--ivory);
  border-top: 1px solid rgba(44, 54, 70, 0.08);
}
.tier-band-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tier-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--night-deep);
  line-height: 1.15;
  margin: 0;
}
.tier-meta {
  font-family: var(--font-body);
  color: var(--night-light);
}
.tier-meta strong {
  color: var(--night-deep);
  font-weight: 700;
}
.tier-meta .dollars {
  opacity: 0.62;
}
.tier-meta--lede {
  font-size: 16px;
  margin: 8px 0 4px;
}
.tier-meta--price {
  font-size: 14px;
  margin: 0 0 22px;
}

.tier-filters {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 54, 70, 0.12);
  border-radius: 999px;
  margin-bottom: 22px;
}
.tier-filter-btn {
  min-height: 34px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--night-deep);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
}
.tier-filter-btn.active {
  background: var(--night-deep);
  color: var(--ivory);
}

.ml-carousel-wrap {
  position: relative;
}
.ml-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ml-carousel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.ml-carousel > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.ml-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--night-deep);
  box-shadow: 0 4px 14px rgba(44, 54, 70, 0.2);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  transform: translateY(-50%);
}
.ml-carousel-arrow.prev { left: -12px; }
.ml-carousel-arrow.next { right: -12px; }
.ml-carousel-arrow.disabled {
  opacity: 0;
  pointer-events: none;
}

.sig-card,
.prem-card {
  background: var(--white);
  border: 1px solid rgba(44, 54, 70, 0.08);
  border-radius: var(--radius-md);
  color: inherit;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(44, 54, 70, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sig-card:hover,
.prem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 54, 70, 0.13);
}
.sig-card {
  display: block;
  width: 200px;
  min-height: 170px;
  padding: 24px 16px 18px;
}
.sig-card img,
.sig-card video {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.sig-card .name,
.seeall-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--night-deep);
}
.sig-card .name {
  font-size: 18px;
}
.sig-card.is-coming-soon {
  opacity: 0.72;
}
.card-status {
  margin-top: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prem-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 200px;
  padding: 16px 14px 18px;
}
.prem-card__title {
  display: block;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--night-deep);
}
.prem-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--ivory) 0%, #e6e1d8 100%);
}
.prem-card__media .momento-card-media,
.prem-card__media video {
  display: block;
  width: 100%;
  height: 100%;
}
.prem-card__media .momento-card-media--cover,
.prem-card__media video.momento-card-media--cover {
  object-fit: cover;
  object-position: center;
}
.prem-card__media .momento-card-media--contain {
  width: 58%;
  height: 58%;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  object-position: center;
}
.prem-card__cost {
  display: block;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--periwinkle-a);
  letter-spacing: 0.02em;
}
.prem-card__cost--muted {
  font-weight: 600;
  color: var(--slate);
}
.prem-card--see-all {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.72);
}
.prem-card__media--see-all img {
  width: 52%;
  height: 52%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}
.momento-card-media {
  display: block;
}
.momento-card-media--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.momento-card-media--contain {
  object-fit: contain;
  object-position: center;
}

.seeall-card,
.momento-empty-card {
  border: 2px dashed rgba(44, 54, 70, 0.24);
  border-radius: var(--radius-md);
  color: inherit;
  text-align: center;
  text-decoration: none;
}
.seeall-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 180px;
  min-height: 170px;
  padding: 22px 14px 16px;
  background: transparent;
}
.seeall-card:hover {
  border-color: var(--gold);
}
.seeall-card img,
.momento-empty-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.seeall-card .name {
  font-size: 16px;
}
.see-all-momentos-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  padding: 10px 18px;
  border-bottom: 1px solid var(--periwinkle-a);
  color: var(--night-deep);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.see-all-momentos-link:hover {
  color: var(--periwinkle-a);
}
.momento-empty-card {
  display: grid;
  place-items: center;
  gap: 6px;
  width: 260px;
  min-height: 170px;
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.55);
}
.momento-empty-card strong {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.2;
}
.momento-empty-card span {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.4;
}
.momento-empty-card--wide {
  width: 100%;
  min-height: 210px;
}

.allmomentos-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  position: relative;
  min-height: 60vh;
  background: var(--ivory);
}
.allmomentos-layout.rail-collapsed {
  grid-template-columns: 0 1fr;
}
.allmomentos-layout.rail-collapsed .allmomentos-rail {
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-100%);
}
.allmomentos-layout.rail-collapsed .allmomentos-content {
  padding-left: 110px;
}
.allmomentos-rail {
  position: relative;
  z-index: 5;
  padding: 28px 24px;
  background: var(--night-deep);
  color: var(--ivory);
  font-family: var(--font-body);
  transition: transform 0.28s ease;
}
.filter-catalogue-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.rail-collapse-btn {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  cursor: pointer;
}
.rail-peek {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 10;
  display: none;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--gold);
  color: var(--night-deep);
  box-shadow: 2px 2px 8px rgba(44, 54, 70, 0.18);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 12px 14px;
  text-transform: uppercase;
}
.allmomentos-layout.rail-collapsed .rail-peek {
  display: inline-block;
}
.active-dot {
  display: none;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--periwinkle-a);
  vertical-align: middle;
}
.rail-peek.has-active-filters .active-dot {
  display: inline-block;
}
.filter-group {
  margin: 0 0 22px;
}
.filter-group h4 {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.allmomentos-rail label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13px;
}
.allmomentos-rail label em {
  margin-left: auto;
  font-size: 10px;
  opacity: 0.72;
}
.allmomentos-rail label.is-disabled {
  opacity: 0.5;
}
.allmomentos-rail input {
  accent-color: var(--gold);
}
.price-range-bar {
  display: block;
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--periwinkle-a);
}
.price-range-bar::after {
  content: "";
  position: absolute;
  inset: 0 8% 0 6%;
  border-radius: inherit;
  background: var(--gold);
}
.price-range-numbers {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.82;
}
.buy-credits-rail,
.between-cta button {
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--night-deep);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.buy-credits-rail {
  width: 100%;
  padding: 12px;
}
.buy-credits-rail:disabled,
.between-cta button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}
.price-summary {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.72;
}

.allmomentos-content {
  min-width: 0;
  padding: 56px 32px 48px;
  transition: padding-left 0.28s ease;
}
.allmomentos-section {
  margin: 0 0 36px;
}
.allmomentos-section:last-child {
  margin-bottom: 0;
}
.allmomentos-section-h {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  color: var(--night-deep);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}
.section-h-icon {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  object-fit: contain;
}
.allmomentos-section-meta {
  margin: 0 0 18px;
  color: var(--night-light);
  font-family: var(--font-body);
  font-size: 13px;
}
.tier-tag {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.tier-tag.signature { color: var(--gold); }
.tier-tag.premium { color: var(--periwinkle-a); }
.between-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  background: var(--night-deep);
  color: var(--ivory);
  font-family: var(--font-body);
}
.between-cta button {
  flex: 0 0 auto;
  padding: 12px 24px;
  white-space: nowrap;
}
.between-cta .ctx {
  flex: 1 1 240px;
  min-width: 0;
  font-size: 13px;
  opacity: 0.9;
}
.allmomentos-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.allmomentos-premium-grid > .prem-card {
  width: auto;
  max-width: 100%;
}
.momento-section-empty {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 14px;
}

@media (max-width: 760px) {
  .tier-band { padding: 42px 20px 34px; }
  .tier-filters {
    display: flex;
    width: 100%;
    overflow-x: auto;
  }
  .ml-carousel .sig-card { width: 168px; padding: 18px 12px 14px; }
  .ml-carousel .sig-card img,
  .ml-carousel .sig-card video { width: 70px; height: 70px; }
  .ml-carousel .prem-card { width: 176px; padding: 14px 12px 16px; }
  .ml-carousel .prem-card__title { font-size: 16px; margin-bottom: 10px; }
  .ml-carousel-arrow {
    top: 44px;
    width: 34px;
    height: 34px;
    transform: none;
  }
  .ml-carousel-arrow.prev { left: 4px; }
  .ml-carousel-arrow.next { right: 4px; }

  .allmomentos-layout,
  .allmomentos-layout.rail-collapsed {
    display: block;
  }
  .allmomentos-layout.rail-collapsed .allmomentos-content {
    padding-left: 18px;
  }
  .allmomentos-rail {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    width: 280px;
    max-width: 80vw;
    overflow-y: auto;
    padding-top: 80px;
    box-shadow: 4px 0 18px rgba(0, 0, 0, 0.22);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
  }
  .allmomentos-layout.rail-open .allmomentos-rail {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .rail-peek {
    display: inline-block;
    position: fixed;
    top: 76px;
    z-index: 49;
  }
  .allmomentos-layout.rail-open .rail-peek {
    display: none;
  }
  .allmomentos-layout.rail-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: auto;
  }
  .allmomentos-content {
    width: 100%;
    padding: 72px 18px 40px;
  }
  .allmomentos-section-h {
    margin-top: 8px;
    font-size: 22px;
  }
  .section-h-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }
  .between-cta {
    align-items: stretch;
    flex-direction: column;
    margin: 22px 0 28px;
    padding: 14px 16px;
  }
  .between-cta button {
    width: 100%;
    padding: 13px 16px;
  }
  .between-cta .ctx {
    flex: 0 0 auto;
    text-align: center;
  }
  .allmomentos-premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .allmomentos-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 380px) {
  .allmomentos-premium-grid { grid-template-columns: 1fr; }
}
