/** Shopify CDN: Minification failed

Line 42:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection (INDEX:4) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:6) */
/* ============================================================
   GENESIS PREMIUM GLOBAL CSS
   Design System — Luxury, Exclusive, High-Converting
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Brand Colors */
  --color-bg:          #5B2D8E;
  --color-bg-soft:     #4A2476;
  --color-bg-card:     #3D1F63;
  --color-surface:     #4A2476;
  --color-border:      rgba(255,255,255,0.08);
  --color-border-gold: rgba(212,175,55,0.35);

  --color-gold:        #D4AF37;
  --color-gold-light:  #F0D060;
  --color-gold-dim:    rgba(212,175,55,0.12);
  --color-white:       #FFFFFF;
  --color-off-white:   #E8E4DC;
  --color-muted:       rgba(255,255,255,0.45);
  --color-purple:      #7C5CBF;
  --color-purple-dim:  rgba(124,92,191,0.15);

  /* Typography */
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, sans-serif;
  --font-size-xs:   0.75rem;
  --font-size-sm:   0.875rem;
  --font-size-base: 1rem;
  --font-size-lg:   1.125rem;
  --font-size-xl:   1.375rem;
  --font-size-2xl:  1.75rem;
  --font-size-3xl:  2.25rem;
  --font-size-4xl:  3rem;
  --font-size-5xl:  4rem;
  --font-size-hero: clamp(2.75rem, 6vw, 5.5rem);

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  9rem;

  /* Effects */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;
  --shadow-gold: 0 0 40px rgba(212,175,55,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-deep: 0 24px 80px rgba(0,0,0,0.6);
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --max-width:   1200px;
  --content-grid: repeat(12, 1fr);
}

/* Base Reset & Body */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--color-bg);
  color: var(--color-off-white);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

h1 { font-size: var(--font-size-hero); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: var(--font-size-xl); }

p {
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  font-size: var(--font-size-lg);
  max-width: 58ch;
  line-height: 1.8;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.full-width { width: 100%; }

.section {
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--color-bg-soft);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.section-header p {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--color-muted);
}

/* ============================================================
   DIVIDERS & DECORATIVE ELEMENTS
   ============================================================ */

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin: var(--space-md) auto;
  border-radius: var(--radius-pill);
}

.divider--left {
  margin-left: 0;
}

/* Gold line top accent */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.6;
}

/* ============================================================
   EYEBROW / BADGE LABELS
   ============================================================ */

.badge, .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 6px 16px;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-pill);
  background: var(--color-gold-dim);
  margin-bottom: var(--space-md);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn:hover::after {
  background: rgba(255,255,255,0.07);
}

.btn-gold {
  background: linear-gradient(135deg, #C9A227, #E8C44A, #C9A227);
  background-size: 200% auto;
  color: #0A0A0A;
  box-shadow: 0 4px 24px rgba(212,175,55,0.35);
}

.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 8px 40px rgba(212,175,55,0.55);
  transform: translateY(-2px);
  color: #0A0A0A;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 20px 48px;
  font-size: var(--font-size-base);
}

.btn-sm {
  padding: 11px 24px;
  font-size: var(--font-size-xs);
}

/* Arrow icon in buttons */
.btn .btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

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

/* ============================================================
   SPACING UTILITIES
   ============================================================ */

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-xs  { margin-bottom: var(--space-xs); }

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-gold    { color: var(--color-gold); }
.text-white   { color: var(--color-white); }
.text-muted   { color: var(--color-muted); }
.text-purple  { color: var(--color-purple); }
.text-xs      { font-size: var(--font-size-xs); }
.text-sm      { font-size: var(--font-size-sm); }
.font-bold    { font-weight: 600; }
.text-uppercase { text-transform: uppercase; }
.text-tracking  { letter-spacing: 0.12em; }

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-gold-dim), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

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

/* ============================================================
   GRID SYSTEMS
   ============================================================ */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}

.animate-in {
  animation: fadeUp 0.7s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.25s; }
.animate-delay-3 { animation-delay: 0.4s; }
.animate-delay-4 { animation-delay: 0.55s; }
.animate-delay-5 { animation-delay: 0.7s; }

/* ============================================================
   GOLD LINE DECORATORS
   ============================================================ */

.gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CUSTOM SECTION WRAPPER
   ============================================================ */

.custom-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.custom-section__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.custom-section__background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.custom-section__content {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: var(--radius-pill);
}

/* ============================================================
   SELECTION STYLING
   ============================================================ */

::selection {
  background: var(--color-gold-dim);
  color: var(--color-gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

@media (max-width: 768px) {
  .section { padding: var(--space-xl) var(--space-sm); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h2 { font-size: var(--font-size-2xl); }
  .btn-lg { padding: 16px 32px; }
}
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:7) */
.genesis-footer {
      background: #4A2476;
  position: relative;
}

.genesis-footer::before { content: none; }

.footer__top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.4;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* Brand */
.footer__brand { display: flex; flex-direction: column; gap: var(--space-md); }

.footer__logo img { max-width: 160px; height: auto; }

.footer__wordmark {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  font-weight: 300;
  max-width: 36ch;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-xs);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--color-border-gold);
  color: var(--color-gold);
  background: var(--color-gold-dim);
}

/* Nav */
.footer__nav-title {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__nav-link {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  font-weight: 400;
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--color-white);
}

/* Bottom */
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.25);
  max-width: none;
}

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

.footer__legal-link {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}

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

.footer__payment {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer__payment-icon {
  height: 20px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity var(--transition);
}

.footer__payment-icon:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-md) var(--space-lg);
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }
}
/* END_SECTION:footer */

/* START_SECTION:genesis-accordion (INDEX:8) */
.accordion__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.accordion__item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.accordion__item[open] {
  border-color: var(--color-border-gold);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}

.accordion__trigger::-webkit-details-marker { display: none; }

.accordion__trigger:hover {
  background: rgba(255,255,255,0.03);
}

.accordion__question {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
}

.accordion__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-gold-dim);
  border: 1px solid var(--color-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: background var(--transition);
}

.accordion__icon svg { width: 14px; height: 14px; }

.accordion__icon-minus { display: none; }

.accordion__item[open] .accordion__icon-plus { display: none; }
.accordion__item[open] .accordion__icon-minus { display: block; }

.accordion__item[open] .accordion__icon {
  background: var(--color-gold);
  color: #0A0A0A;
}

.accordion__content {
  padding: 0 var(--space-lg) var(--space-lg);
}

.accordion__answer {
  color: rgba(255,255,255,0.65);
  font-size: var(--font-size-base);
  line-height: 1.8;
  font-weight: 300;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.accordion__answer p {
  color: inherit;
  font-size: inherit;
  max-width: none;
  margin-bottom: var(--space-sm);
}

.accordion__answer p:last-child { margin-bottom: 0; }
/* END_SECTION:genesis-accordion */

/* START_SECTION:genesis-banner (INDEX:9) */
.genesis-banner {
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, #5B2D8E 50%, var(--color-bg-soft) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.genesis-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124,92,191,0.12), transparent 70%);
  pointer-events: none;
}

/* Ticker */
.banner__ticker {
  background: var(--color-gold);
  overflow: hidden;
  padding: 10px 0;
}

.banner__ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: tickerScroll 24s linear infinite;
  width: max-content;
}

.banner__ticker-item {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A0A0A;
}

.banner__ticker-dot {
  color: rgba(0,0,0,0.35);
  font-size: 0.5rem;
  display: inline-flex;
  align-items: center;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Main content */
.banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.banner__content {
  flex: 1;
  min-width: 280px;
}

.banner__heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.banner__desc {
  color: var(--color-muted);
  max-width: 52ch;
}

.banner__cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .banner__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
  }
  .banner__desc { margin: 0 auto; }
}
/* END_SECTION:genesis-banner */

/* START_SECTION:genesis-contact (INDEX:10) */
.contact__inner {
    max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: start;
  }
  .contact__form { display: flex; flex-direction: column; gap: 1rem; }
  @media (max-width: 768px) {
    .contact__inner { grid-template-columns: 1fr; }
  }
/* END_SECTION:genesis-contact */

/* START_SECTION:genesis-featured-collection (INDEX:11) */
.genesis-featured .featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.featured__card {
  display: block;
  text-decoration: none;
  position: relative;
}

.featured__card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.featured__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured__card:hover .featured__card-image img {
  transform: scale(1.06);
}

.featured__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-md);
}

.featured__card:hover .featured__card-overlay {
  opacity: 1;
}

.featured__card-info {
  padding: var(--space-md) var(--space-sm) var(--space-sm);
}

.featured__card-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.featured__card-price {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-gold);
  max-width: none;
}

.featured__footer {
  text-align: center;
  margin-top: var(--space-xl);
}
/* END_SECTION:genesis-featured-collection */

/* START_SECTION:genesis-hero (INDEX:12) */
.genesis-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-background);
  overflow: hidden;
}

/* Background Image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Multi-layer overlay for cinematic depth */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(91,45,142,0.75) 0%, rgba(91,45,142,0.35) 50%, rgba(91,45,142,0.6) 100%),
      linear-gradient(to top, rgba(91,45,142,1) 0%, transparent 40%);
}

/* Subtle grain texture */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}

/* Inner layout */
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* Portrait */
.hero__portrait {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__portrait-frame {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero__portrait-frame img {
  max-height: 72vh;
  width: auto;
  display: block;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}

.hero__portrait-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(145deg, var(--color-gold), transparent 60%);
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: 0;
}

.hero__portrait-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.25), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* Content */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__heading {
  font-size: var(--font-size-hero);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero__heading em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: var(--space-lg);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
}

.hero__trust {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Scroll Hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.1); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
    gap: var(--space-xl);
  }
  .hero__portrait { order: -1; }
  .hero__portrait-frame img { max-height: 45vh; }
  .hero__content { align-items: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
}
/* END_SECTION:genesis-hero */

/* START_SECTION:genesis-image-with-text (INDEX:13) */
.iwt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.iwt__inner--reverse {
  direction: rtl;
}

.iwt__inner--reverse > * {
  direction: ltr;
}

/* Media */
.iwt__media {
  position: relative;
}

.iwt__media-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.iwt__media-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, var(--color-border-gold), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.iwt__media-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.iwt__media::after {
  content: '';
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, var(--color-gold-dim), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Content */
.iwt__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.iwt__text {
  color: rgba(255,255,255,0.65);
  font-size: var(--font-size-lg);
  font-weight: 300;
  line-height: 1.8;
  margin-top: var(--space-md);
}

.iwt__text p { color: inherit; font-size: inherit; max-width: none; }

@media (max-width: 768px) {
  .iwt__inner,
  .iwt__inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-xl);
  }
}
/* END_SECTION:genesis-image-with-text */

/* START_SECTION:genesis-link-tree (INDEX:14) */
.linktree__inner {
    max-width: 28rem; margin: 0 auto; padding: 0 1.5rem;
    display: flex; flex-direction: column; align-items: center;
  }
  .linktree__avatar {
    width: 6rem; height: 6rem; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--color-gold);
    margin-bottom: 1.5rem;
  }
  .linktree__links { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
  .linktree__link {
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; width: 100%;
    padding: 1.1rem; border: 1px solid var(--color-sapphire);
    color: var(--color-sapphire); font-weight: 700;
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
  }
  .linktree__link:hover {
    background: var(--color-sapphire); color: #fff;
  }
/* END_SECTION:genesis-link-tree */

/* START_SECTION:genesis-newsletter (INDEX:15) */
.genesis-newsletter {
  position: relative;
  overflow: hidden;
}

.genesis-newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06), transparent 70%);
  pointer-events: none;
}

.newsletter__wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__content {
  margin-bottom: var(--space-xl);
}

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

.newsletter__content p {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--color-muted);
}

.newsletter__input-group {
  display: flex;
  gap: var(--space-sm);
  align-items: stretch;
}

.newsletter__input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-white);
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}

.newsletter__input::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter__input:focus {
  border-color: var(--color-border-gold);
  background: rgba(212,175,55,0.04);
}

.newsletter__btn {
  flex-shrink: 0;
}

.newsletter__success {
  margin-top: var(--space-sm);
  color: #6FCF97;
  font-size: var(--font-size-sm);
  font-weight: 500;
  max-width: none;
}

.newsletter__error {
  margin-top: var(--space-sm);
  color: rgba(255,100,100,1);
  font-size: var(--font-size-sm);
  max-width: none;
}

.newsletter__privacy {
  margin-top: var(--space-md);
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.25);
  max-width: none;
}

@media (max-width: 600px) {
  .newsletter__input-group {
    flex-direction: column;
  }
  .newsletter__btn {
    justify-content: center;
  }
}
/* END_SECTION:genesis-newsletter */

/* START_SECTION:genesis-offers (INDEX:16) */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}

.offers__card {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}

.offers__card-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #0A0A0A;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.offers__icon {
  width: 56px;
  height: 56px;
  background: var(--color-gold-dim);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.offers__icon img { width: 36px; height: 36px; object-fit: contain; }

.offers__card-body { flex: 1; display: flex; flex-direction: column; }

.offers__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.offers__desc {
  color: var(--color-muted);
  font-size: var(--font-size-sm);
  line-height: 1.7;
  flex: 1;
  max-width: none;
  margin-bottom: var(--space-md);
}

.offers__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-top: auto;
}

.offers__price-original {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  text-decoration: line-through;
}

.offers__price-main {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-gold);
}
/* END_SECTION:genesis-offers */

/* START_SECTION:genesis-problem-solution (INDEX:17) */
.ps__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.ps__col-header { margin-bottom: var(--space-lg); }

.ps__label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.ps__label--problem {
  background: rgba(255,80,80,0.12);
  color: rgba(255,120,120,1);
  border: 1px solid rgba(255,80,80,0.25);
}

.ps__label--solution {
  background: var(--color-gold-dim);
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
}

.ps__col h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--color-white);
}

.ps__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ps__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}

.ps__item:hover {
  border-color: var(--color-border-gold);
}

.ps__item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.ps__item-icon--problem {
  background: rgba(255,80,80,0.15);
  color: rgba(255,100,100,1);
  border: 1px solid rgba(255,80,80,0.2);
}

.ps__item-icon--solution {
  background: var(--color-gold-dim);
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
}

.ps__item h4 {
  font-size: var(--font-size-base);
  color: var(--color-white);
  margin-bottom: 4px;
}

.ps__item p {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  max-width: none;
}

/* Center arrow */
.ps__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-2xl);
}

.ps__arrow-icon {
  width: 56px;
  height: 56px;
  background: var(--color-gold-dim);
  border: 1px solid var(--color-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.ps__arrow-icon svg { width: 24px; height: 24px; }

.ps__arrow-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .ps__grid {
    grid-template-columns: 1fr;
  }
  .ps__arrow {
    flex-direction: row;
    justify-content: center;
    padding-top: 0;
  }
  .ps__arrow-icon svg {
    transform: rotate(90deg);
  }
}
/* END_SECTION:genesis-problem-solution */

/* START_SECTION:genesis-rich-text (INDEX:18) */
.richtext__inner {
  max-width: 72ch;
}

.richtext__inner--narrow {
  max-width: 52ch;
}

.genesis-richtext.section .section__inner {
  display: flex;
  justify-content: center;
}

.richtext__body {
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  font-size: var(--font-size-lg);
  font-weight: 300;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.richtext__body p {
  color: inherit;
  font-size: inherit;
  max-width: none;
  margin-bottom: var(--space-sm);
}

.richtext__body p:last-child { margin-bottom: 0; }

.richtext__body strong { color: var(--color-white); font-weight: 600; }

.richtext__body em { color: var(--color-gold); font-style: italic; }

.richtext__body a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.richtext__body a:hover {
  text-decoration-color: var(--color-gold);
}

.richtext__body blockquote {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--color-gold-dim);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: var(--font-size-xl);
  font-family: var(--font-heading);
  color: var(--color-off-white);
}
/* END_SECTION:genesis-rich-text */

/* START_SECTION:genesis-stats (INDEX:19) */
.genesis-stats {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.genesis-stats::before {
  content: none;
}

.stats__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-2xl);
  position: relative;
}

.stats__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-border);
}

.stats__item:last-child::after { display: none; }

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats__label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

@media (max-width: 600px) {
  .stats__item {
    padding: var(--space-lg) var(--space-xl);
    width: 50%;
  }
  .stats__item:nth-child(2)::after,
  .stats__item:nth-child(4)::after { display: none; }
}
/* END_SECTION:genesis-stats */

/* START_SECTION:genesis-testimonials (INDEX:20) */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.testimonials__card {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonials__stars {
  color: var(--color-gold);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.testimonials__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-off-white);
  flex: 1;
  position: relative;
  padding-left: var(--space-md);
}

.testimonials__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  border-radius: var(--radius-pill);
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border-gold);
  flex-shrink: 0;
}

.testimonials__avatar--initials {
  background: var(--color-gold-dim);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.testimonials__name {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-white);
  max-width: none;
  margin-bottom: 2px;
}

.testimonials__role {
  font-size: var(--font-size-xs);
  color: var(--color-muted);
  max-width: none;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* END_SECTION:genesis-testimonials */

/* START_SECTION:genesis-video-embed (INDEX:21) */
.video__frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
  aspect-ratio: 16 / 9;
}

.video__frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, var(--color-border-gold), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-xl);
}
/* END_SECTION:genesis-video-embed */

/* START_SECTION:genesis-waffle (INDEX:22) */
.genesis-waffle {
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 9999;
}

.waffle__trigger {
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-muted);
  transition: all var(--transition);
}

.waffle__trigger:hover {
  border-color: var(--color-border-gold);
  color: var(--color-gold);
}

/* Panel */
.waffle__panel {
  position: fixed;
  top: 64px;
  right: var(--space-md);
  width: 320px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
  overflow: hidden;
  z-index: 9998;
  transform: translateY(-8px) scale(0.96);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  pointer-events: none;
}

.waffle__panel--open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.waffle__panel-inner {
  padding: var(--space-lg);
}

.waffle__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.waffle__eyebrow {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 2px;
}

.waffle__title {
  font-size: var(--font-size-lg);
  color: var(--color-white);
  line-height: 1.2;
}

.waffle__close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.waffle__close:hover {
  border-color: var(--color-border-gold);
  color: var(--color-gold);
}

.waffle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.waffle__app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--space-sm) var(--space-xs);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition);
}

.waffle__app:hover {
  background: rgba(212,175,55,0.06);
}

.waffle__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(255,255,255,0.07);
}

.waffle__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Backdrop */
.waffle__backdrop {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
}

.waffle__backdrop--visible {
  pointer-events: auto;
}
/* END_SECTION:genesis-waffle */

/* START_SECTION:header (INDEX:23) */
/* ═══════════════════════════════════
     HEADER — Core
     ═══════════════════════════════════ */
  .genesis-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: linear-gradient(90deg, #1A0A3E 0%, #112952 50%, #0A2342 100%);
    border-bottom: 2px solid rgba(212,175,55,0.15);
    box-shadow: 0 2px 30px rgba(91, 45, 142, 0.15);
  }
  .genesis-header.scrolled {
    box-shadow: 0 2px 20px rgba(80, 38, 180, 0.9);
  }
  .header__inner {
    max-width: 82rem; margin: 0 auto; padding: 0 2rem;
    height: 4rem; display: flex; align-items: center;
    gap: 2rem;
  }

  /* ═══════════════════════════════════
     LOGO
     ═══════════════════════════════════ */
  .header__brand {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none; color: #fff; flex-shrink: 0;
  }
  .header__logo {
    height: auto; object-fit: contain;
  }
  .header__wordmark {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1.2rem; letter-spacing: -0.02em; color: #fff;
    white-space: nowrap;
  }
  .header__tagline {
    font-size: 0.5rem; color: rgba(212,175,55,0.5);
    text-transform: uppercase; letter-spacing: 0.25em; font-weight: 700;
  }

  /* ═══════════════════════════════════
     NAVIGATION — Desktop (centered)
     ═══════════════════════════════════ */
  .header__nav {
    display: flex; align-items: center; gap: 0;
    margin: 0 auto;
  }
  .header__link {
    font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: rgba(255,255,255,0.55);
    padding: 0.5rem 1rem; position: relative;
    transition: color 0.3s ease; background: none; border: none;
    cursor: pointer; font-family: var(--font-body);
    display: flex; align-items: center; white-space: nowrap;
  }
  .header__link:hover { color: #fff; }
  .header__link--active { color: var(--color-gold); }
  .header__link--active::after {
    content: ''; position: absolute; bottom: -2px;
    left: 1rem; right: 1rem; height: 2px;
    background: var(--color-gold);
  }

  /* Dropdown */
  .header__dropdown { position: relative; }
  .header__dropdown-panel {
    display: none; position: absolute; top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%); min-width: 200px;
    background: var(--color-header-bg, #1A0A3E);
    border: 1px solid rgba(91,45,142,0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    padding: 0.5rem 0; z-index: 100;
  }
  .header__dropdown:hover .header__dropdown-panel,
  .header__dropdown-trigger[aria-expanded="true"] + .header__dropdown-panel {
    display: block;
  }
  .header__dropdown-link {
    display: block; padding: 0.6rem 1.5rem;
    font-size: 0.6rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; color: rgba(255,255,255,0.5);
    transition: all 0.2s ease; white-space: nowrap;
  }
  .header__dropdown-link:hover {
    color: var(--color-gold); background: rgba(91,45,142,0.1);
  }
  .header__dropdown-link--active { color: var(--color-gold); }

  /* ═══════════════════════════════════
     RIGHT ACTIONS
     ═══════════════════════════════════ */
  .header__actions {
    display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
  }
  .header__icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 2rem; height: 2rem; border-radius: 50%;
    color: rgba(255,255,255,0.5); transition: color 0.3s ease;
    position: relative;
  }
  .header__icon-btn:hover { color: var(--color-gold); }
  .header__icon-btn svg { width: 17px; height: 17px; }
  .header__cart { position: relative; }
  .header__cart-count {
    position: absolute; top: -3px; right: -3px;
    background: var(--color-gold); color: var(--color-sapphire);
    font-size: 0.45rem; font-weight: 800;
    width: 0.9rem; height: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; line-height: 1;
  }
  .header__cta {
    font-size: 0.5rem; padding: 0.5rem 1.25rem;
    margin-left: 0.25rem;
  }
  .btn-sm { padding: 0.5rem 1.5rem; font-size: 0.6rem; }

  /* ═══════════════════════════════════
     MOBILE TOGGLE
     ═══════════════════════════════════ */
  .header__toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 0.5rem; width: 2.25rem; height: 2.25rem;
    align-items: center; justify-content: center;
  }
  .header__toggle span {
    width: 20px; height: 1.5px; background: #fff;
    transition: all 0.3s ease; display: block;
    transform-origin: center;
  }
  .header__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .header__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* ═══════════════════════════════════
     MOBILE DRAWER
     ═══════════════════════════════════ */
  .header__drawer {
    display: none; background: var(--color-header-bg, #1A0A3E);
    border-top: 1px solid rgba(91,45,142,0.2);
    padding: 1.5rem 2rem 2.5rem; max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }
  .header__drawer.open { display: block; animation: fadeInUp 0.3s ease; }
  .header__drawer-nav { display: flex; flex-direction: column; }
  .header__drawer-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
  }
  .header__drawer-link:hover { color: #fff; padding-left: 0.5rem; }
  .header__drawer-link--active { color: var(--color-gold); }
  .header__drawer-link svg { opacity: 0.3; }
  .header__drawer-link:hover svg { opacity: 1; }
  .header__drawer-parent {
    display: block; padding: 1rem 0 0.5rem;
    font-size: 0.55rem; color: var(--color-gold);
    text-transform: uppercase; letter-spacing: 0.3em; font-weight: 700;
  }
  .header__drawer-child {
    padding-left: 1rem; font-size: 0.8rem;
    border-bottom-color: rgba(255,255,255,0.02);
  }
  .header__drawer-social {
    display: flex; justify-content: center; gap: 1rem;
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .header__drawer-social a {
    width: 2.5rem; height: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(212,175,55,0.2); color: var(--color-gold);
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; transition: all 0.3s ease;
  }
  .header__drawer-social a:hover {
    background: var(--color-gold); color: var(--color-sapphire);
  }

  @media (max-width: 1024px) {
    .header__nav, .header__cta { display: none; }
    .header__toggle { display: flex; }
  }
  @media (max-width: 480px) {
    .header__inner { padding: 0 1rem; }
  }

  /* ═══════════════════════════════════
     WAFFLE MENU (kept from ecosystem-waffle snippet)
     ═══════════════════════════════════ */
  .waffle { position: relative; }
  .waffle__trigger {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.5); padding: 0;
    width: 2rem; height: 2rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.3s ease;
  }
  .waffle__trigger:hover { color: var(--color-gold); }
  .waffle__trigger[aria-expanded="true"] { color: var(--color-gold); }
  .waffle__panel {
    display: none; position: absolute;
    top: calc(100% + 0.75rem); right: 0;
    width: 320px; background: var(--color-header-bg, #1A0A3E);
    border: 1px solid rgba(91,45,142,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5); z-index: 2000;
  }
  .waffle__panel.open { display: block; animation: fadeInUp 0.25s ease; }
  .waffle__header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; gap: 0.15rem;
  }
  .waffle__title { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: #fff; }
  .waffle__subtitle { font-size: 0.5rem; color: rgba(212,175,55,0.45); text-transform: uppercase; letter-spacing: 0.3em; font-weight: 700; }
  .waffle__grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 1rem; gap: 0.25rem; }
  .waffle__app {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    padding: 0.85rem 0.5rem; border-radius: 8px;
    transition: background 0.3s ease; text-decoration: none;
  }
  .waffle__app:hover { background: rgba(255,255,255,0.05); }
  .waffle__icon {
    width: 2.75rem; height: 2.75rem; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; transition: transform 0.3s ease;
  }
  .waffle__app:hover .waffle__icon { transform: scale(1.1); }
  .waffle__label { font-size: 0.55rem; color: rgba(255,255,255,0.55); font-weight: 600; text-align: center; line-height: 1.3; }
  .waffle__footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
  .waffle__workspace-link {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.6rem; font-weight: 700; color: var(--color-gold);
    text-transform: uppercase; letter-spacing: 0.15em; text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .waffle__workspace-link:hover { opacity: 0.8; }
  @media (max-width: 480px) { .waffle__panel { width: calc(100vw - 2rem); right: -1rem; } }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:24) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

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

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:search (INDEX:28) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:39) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:40) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:43) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */