/* ============================================================
   SYLVARA CHARMS — theme-navy.css
   "Sylvara Editorial" theme — white + deep navy + silver
   Loaded on every page (after style.css, before page-specific
   CSS): sets the global design-token layer, so page CSS that
   already consumes var(--...) tokens re-themes automatically.
   Component overrides below win via !important only where a
   page-level stylesheet loads after this file and would
   otherwise fight the token layer.
   Paired with js/scroll-reveal.js for the reveal/cursor system.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  /* ---- Deep navy (dark accent surfaces: hero, footer, nav,
     collections band, Instagram band, 925 band) ---- */
  --black: #0a1f3d;
  --black-mid: #071a33;
  --navy-deepest: #041225;

  /* ---- Light surfaces (primary site background: cards,
     panels, product grid, forms) ---- */
  --surface: #ffffff;
  --surface-2: #f7f9fb;
  --surface-3: #f1f3f6;

  /* ---- Borders ---- */
  --border: #dde3ea;
  --border-light: #e3e7eb;
  --border-on-dark: rgba(255, 255, 255, 0.16);

  /* ---- Silver / ink scale — this token set doubles as the
     site's text-color + border + accent gradient, so values
     are chosen to read correctly on the light surfaces above. ---- */
  --silver-bright: #071a33; /* primary heading/text ink */
  --silver: #647389; /* mid silver — accents, borders, fills; darkened from a pale grey so it also reads as text on white */
  --silver-mid: #526173; /* secondary text */
  --silver-dim: #78879b; /* muted text / icons */
  --silver-dark: #8b96a5; /* borders + decorative numerals */

  /* ---- Restrained metallic accent (replaces gold) — tuned to
     read clearly on both white and navy backgrounds for
     eyebrow labels / dividers; dark-section context overrides
     further down lighten it where needed. ---- */
  --gold: #6b7a8f;
  --gold-bright: #ffffff; /* emphasis text specifically on navy */
  --gold-dim: #8f969e;

  --shimmer: #ffffff;
  --shimmer-dark: #e3e7eb;
  --star-gold: #d9a94f;

  /* ---- Text ---- */
  --text-primary: #071a33;
  --text-secondary: #526173;
  --text-muted: #78879b;
  --text-on-dark: #ffffff;

  --white: #ffffff;
  --badge-red: #b23a55;
  --success: #2f9e63;

  /* ---- Typography ---- */
  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --color-heading: #071a33;
  --color-heading2: #0a1f3d;
  --color-subhead: #526173;
  --color-product: #071a33;
  --color-para: #526173;
  --color-muted-ui: #78879b;

  /* ---- Shadows — soft, navy-tinted, never black ---- */
  --sh-xs: 0 1px 4px rgba(7, 26, 51, 0.06);
  --sh-sm: 0 4px 20px rgba(7, 26, 51, 0.08);
  --sh-md: 0 14px 34px rgba(7, 26, 51, 0.1);
  --sh-lg: 0 26px 64px rgba(7, 26, 51, 0.14);
  --sh-gold: 0 0 0 1px rgba(191, 197, 204, 0.5), 0 12px 32px rgba(7, 26, 51, 0.12);
  --sh-silver: 0 10px 28px rgba(7, 26, 51, 0.16);

  /* ---- Motion ---- */
  --t-royal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --t-royal-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Dark-section token override ──
   Several sections are intentionally deep navy (hero, trust
   bar, collections band, Instagram band, the "925" video
   banner, footer, "why sylvara"/about-strip/CTA bands, and
   the best-sellers ranked/grid bands). Every page stylesheet
   already reads text/heading colour through the tokens below,
   so re-declaring them here — scoped to those containers —
   automatically makes ALL descendant text (from any
   stylesheet) light-on-navy, without hunting down every
   individual selector. Surfaces/borders are deliberately left
   alone so light product cards keep working inside a dark
   section. */
.hp-hero-royal, .hp-collections, .hp-insta, .trust-bar,
.hp-sec-dark, .hp-premium, .site-footer, .footer-newsletter,
.page-section-dark, .cta-strip, .bs-ranked-section,
.bs-grid-section, .hp-about-strip {
  --silver-bright: #ffffff;
  --silver-mid: #c3cad3;
  --silver-dim: #a3aebd;
  --silver: #d7dce3;
  --silver-dark: rgba(255, 255, 255, 0.32);
  --text-primary: #ffffff;
  --text-secondary: #c3cad3;
  --text-muted: #a3aebd;
  --color-heading: #ffffff;
  --color-heading2: #f2f4f9;
  --color-subhead: #dfe3e8;
  --color-product: #ffffff;
  --color-para: #c3cad3;
  --color-muted-ui: #a3aebd;
  --gold: var(--silver);
}

/* ── Light cards/panels that sit INSIDE a dark section above
   (product tiles, ranked list rows, form cards, quote card,
   value cards) keep their own light surface — so their text
   must be reset back to the normal dark-on-light values,
   overriding the dark-section scope for just these. ── */
.hp-sec-dark .product-card, .hp-premium .product-card,
.bs-ranked-section .bs-ranked-item, .bs-grid-section .product-card,
.page-section-dark .contact-form-card, .page-section-dark .value-card,
.page-section-dark .contact-info-card,
.page-section-dark .mv-card, .page-section-dark .process-step,
.page-section-dark .info-card,
.hp-about-strip .hp-about-quote {
  --silver-bright: #071a33;
  --silver-mid: #526173;
  --silver-dim: #78879b;
  --silver: #647389;
  --silver-dark: #8b96a5;
  --text-primary: #071a33;
  --text-secondary: #526173;
  --text-muted: #78879b;
  --color-heading: #071a33;
  --color-heading2: #0a1f3d;
  --color-subhead: #526173;
  --color-product: #071a33;
  --color-para: #526173;
  --color-muted-ui: #78879b;
  --gold: #6b7a8f;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white) !important;
  color: var(--text-primary);
  font-family: var(--f-body);
}
h1, h2, h3, h4, h5,
.hp-hero-h1, .hp-title-center, .hp-title-left {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}
a, button, .product-card, .hp-coll-card, .nav-icon-btn,
.hp-hero-cta, .hp-hero-ghost, input, select {
  transition:
    color var(--t-royal-fast),
    background var(--t-royal-fast),
    border-color var(--t-royal-fast),
    box-shadow var(--t-royal-fast),
    transform var(--t-royal-fast),
    opacity var(--t-royal-fast);
}
:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

/* ── Eyebrow / label accents (light-bg default) ── */
.hp-eyebrow-label, .eyebrow, .section-eyebrow {
  color: var(--gold) !important;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.hp-eyebrow-label::before, .eyebrow::before, .section-eyebrow::before {
  content: "\2726";
  font-size: 9px;
  color: var(--gold);
}
/* Eyebrows sitting on navy sections need a light tone */
.hp-hero-royal .eyebrow, .hp-hero-royal .section-eyebrow,
.hp-collections .eyebrow, .hp-collections .section-eyebrow,
.hp-insta .eyebrow, .hp-insta .section-eyebrow,
.trust-bar .eyebrow, .site-footer .eyebrow, .site-footer .section-eyebrow,
.hp-925 .eyebrow, .hp-925 .section-eyebrow {
  color: var(--silver) !important;
}
.hp-hero-royal .eyebrow::before, .hp-collections .eyebrow::before,
.hp-insta .eyebrow::before, .site-footer .eyebrow::before,
.hp-925 .eyebrow::before {
  color: var(--silver);
}
.hp-section-header, .hp-collections .hp-section-header {
  flex-direction: column;
}

/* ── NAV — clean premium white bar, always legible on white
   or dark hero backgrounds since it never sits transparently
   over content ── */
.site-nav {
  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid var(--border) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: none;
  height: 88px !important;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 24px rgba(7, 26, 51, 0.07);
  height: 72px !important;
}
.announce-bar {
  background: var(--surface-2) !important;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.nav-left a, .nav-right-links a {
  position: relative;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--silver-mid) !important;
}
.nav-left a:hover, .nav-right-links a:hover, .nav-left a.active {
  color: var(--black) !important;
}
.nav-left a::after, .nav-right-links a::after {
  background: var(--black) !important;
}
.nav-icon-btn {
  color: var(--black) !important;
}
.nav-icon-btn:hover {
  transform: translateY(-2px);
  color: var(--black) !important;
}

/* Brand wordmark asset is light-grey on transparent (built for
   a dark backdrop) — darken it to navy so it reads clearly on
   the new white nav, without needing a new logo file. */
.logo-img {
  filter: brightness(0);
}
.footer-logo .logo-img {
  filter: brightness(0) invert(1);
}

/* ── Primary buttons — navy fill / white text for buttons that
   sit on the site's light (default) surfaces ── */
.hp-premium-btn, .hp-budget-filled, .product-card-btn, .btn-primary,
.cta-btn, .add-to-cart-btn, .checkout-btn {
  background: var(--black) !important;
  color: #fff !important;
  border: 1px solid var(--black) !important;
  border-radius: 3px;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.hp-premium-btn:hover, .product-card-btn:hover, .btn-primary:hover,
.cta-btn:hover, .add-to-cart-btn:hover, .checkout-btn:hover {
  background: var(--black-mid) !important;
  border-color: var(--silver) !important;
  transform: translateY(-3px);
  box-shadow: var(--sh-silver);
}
.cta-btn::before, .product-card-btn::before, .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.14) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}
.cta-btn:hover::before, .product-card-btn:hover::before, .btn-primary:hover::before {
  transform: translateX(120%);
}
.cta-btn svg, .product-card-btn svg, .btn-primary svg {
  transition: transform var(--t-royal-fast);
}
.cta-btn:hover svg, .product-card-btn:hover svg, .btn-primary:hover svg {
  transform: translateX(4px);
}
.cta-btn:active, .product-card-btn:active, .btn-primary:active,
.add-to-cart-btn:active, .checkout-btn:active {
  transform: scale(0.98);
}

/* ── Buttons that sit ON a navy background — white fill / navy
   text, so they stay visible against the dark sections ── */
.hp-hero-cta, .hp-hero-royal-btn, .newsletter-btn, .hp-insta-follow {
  background: linear-gradient(180deg, #ffffff 0%, #eef1f5 100%) !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: 3px;
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.hp-hero-cta::before, .hp-hero-royal-btn::before, .hp-insta-follow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(10, 31, 61, 0.12) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}
.hp-hero-cta:hover::before, .hp-hero-royal-btn:hover::before, .hp-insta-follow:hover::before {
  transform: translateX(120%);
}
.hp-hero-cta:hover, .hp-hero-royal-btn:hover, .newsletter-btn:hover, .hp-insta-follow:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-silver);
}
.hp-hero-royal-btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t-royal-fast);
}
.hp-hero-royal-btn:hover svg {
  transform: translateX(3px);
}
.hp-hero-cta:active, .hp-hero-royal-btn:active, .newsletter-btn:active, .hp-insta-follow:active {
  transform: scale(0.98);
}

/* ── Ghost / outline buttons — used on the site's light
   pages (filters, secondary page actions) → navy outline ── */
.btn-outline, .btn-secondary {
  background: transparent !important;
  border: 1px solid var(--black) !important;
  color: var(--black) !important;
  border-radius: 3px;
  font-family: var(--f-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-outline:hover, .btn-secondary:hover {
  background: var(--black) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Hero secondary/ghost CTA — stays on the dark hero, so it
   keeps a light outline */
.hp-hero-ghost {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  border-radius: 3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hp-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
  transform: translateY(-3px);
}

/* ── Hero heading emphasis ── */
.hp-hero-h1 em, .hp-title-center em, .hp-title-left em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}

/* ══════════════════════════════════════════════
   HERO — cinematic split layout, deep navy ground
   ══════════════════════════════════════════════ */
.hp-hero-royal {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(191, 197, 204, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(191, 197, 204, 0.05) 0%, transparent 50%),
    linear-gradient(160deg, #0a1f3d 0%, #041225 100%);
  overflow: hidden;
  padding: 140px var(--side-pad) 80px;
}
.hp-hero-royal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
  pointer-events: none;
}
.hp-hero-royal-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hp-hero-royal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
  margin-bottom: 26px;
  animation: royalFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hp-hero-royal-eyebrow::before {
  content: "\2726";
  font-size: 12px;
}
.hp-hero-royal h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(46px, 5.4vw, 74px);
  line-height: 1.06;
  color: #fff;
  margin-bottom: 24px;
  animation: royalFadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hp-hero-royal h1 em {
  font-style: italic;
  color: #fff;
  font-weight: 500;
}
.hp-hero-royal-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 180px;
  margin: 8px 0 24px;
  animation: royalFadeUp 0.9s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hp-hero-royal-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--silver), transparent);
}
.hp-hero-royal-divider::after {
  content: "\2726";
  color: var(--silver);
  font-size: 11px;
}
.hp-hero-royal p {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 38px;
  animation: royalFadeUp 0.9s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hp-hero-royal-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: royalFadeUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hp-hero-royal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 34px;
}

/* Hero image panel */
.hp-hero-royal-media {
  position: relative;
  animation: royalFadeIn 1.1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hp-hero-royal-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(191, 197, 204, 0.3);
  border-radius: 4px;
  pointer-events: none;
}
.hp-hero-royal-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/5;
}
.hp-hero-royal-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-hero-royal-media:hover .hp-hero-royal-frame img {
  transform: scale(1.1);
}
.hp-hero-royal-badge {
  position: absolute;
  bottom: -22px;
  display: none;
  left: -22px;
  background: #ffffff;
  color: var(--black);
  border-radius: 4px;
  padding: 16px 22px;
  box-shadow: var(--sh-md);
  font-family: var(--f-display);
  animation: royalFloat 5s ease-in-out infinite;
}
.hp-hero-royal-badge strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}
.hp-hero-royal-badge span {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-mid);
}

@keyframes royalFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes royalFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes royalFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════
   TRUST BAR — thin navy strip under hero
   ══════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy-deepest);
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
  padding: 30px var(--side-pad);
}
.trust-bar-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  border-right: 1px solid var(--border-on-dark);
}
.trust-bar-item:last-child {
  border-right: none;
}
.trust-bar-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--silver);
  fill: none;
  stroke-width: 1.3;
  transition: transform var(--t-royal);
}
.trust-bar-item:hover svg {
  transform: scale(1.1) rotate(-3deg);
}
.trust-bar-item h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.trust-bar-item p {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════
   COLLECTIONS — navy band, silver-ringed category dials
   ══════════════════════════════════════════════ */
.hp-collections {
  background: #ffffff !important;
  border-top: 1px solid var(--border-on-dark) !important;
  border-bottom: 1px solid var(--border-on-dark) !important;
  padding: 100px 0;
}
.hp-coll-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.hp-coll-card {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
}
.hp-coll-card::before {
  display: none;
}
.hp-coll-num {
  width: 108px;
  height: 108px;
  min-width: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 32% 28%, #14294e 0%, #0a1f3d 70%);
  border: 1px solid rgba(191, 197, 204, 0.35);
  color: #fff;
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 16px;
  overflow: hidden;
  transition: transform var(--t-royal), border-color var(--t-royal), box-shadow var(--t-royal);
}
.hp-coll-num img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-coll-card:hover .hp-coll-num img {
  transform: scale(1.1);
}
.hp-coll-card:hover .hp-coll-num {
  transform: translateY(-6px) scale(1.05);
  border-color: var(--silver);
  box-shadow: var(--sh-gold);
}
.hp-coll-info h3 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.hp-coll-info p {
  display: none;
}
.hp-coll-arrow {
  display: none;
}
.hp-coll-card::after {
  content: "Explore \2192";
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
  transition: color var(--t-royal-fast), letter-spacing var(--t-royal-fast);
}
.hp-coll-card:hover::after {
  color: #fff;
  letter-spacing: 0.18em;
}

/* ── Cards / surfaces — light, editorial ── */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.product-card:hover {
  border-color: var(--silver-dim);
  box-shadow: var(--sh-md);
  transform: translateY(-6px);
}
.product-card-btn, .add-to-cart-btn {
  border-radius: 2px;
}

/* ── Footer ── */
.site-footer, .footer-newsletter {
  background: var(--navy-deepest);
  border-top: 1px solid var(--border-on-dark);
  color: var(--silver);
}
.site-footer h3, .site-footer h4, .footer-col h4 {
  color: #fff;
  font-family: var(--f-display);
}
.pay-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-on-dark);
}
.footer-col a:hover {
  color: #fff !important;
  padding-left: 4px;
}
.social-link:hover {
  border-color: var(--silver) !important;
  color: #fff !important;
  transform: translateY(-3px);
}

/* ── Badges ── */
.badge-new, .product-badge {
  background: var(--black);
  color: #fff;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

::selection {
  background: var(--silver);
  color: var(--black);
}

/* ══════════════════════════════════════════════
   SCROLL-REVEAL SYSTEM (paired w/ js/scroll-reveal.js)
   ══════════════════════════════════════════════ */
.reveal, .reveal-stagger {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible, .reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger,
  .hp-hero-royal-eyebrow, .hp-hero-royal h1, .hp-hero-royal-divider,
  .hp-hero-royal p, .hp-hero-royal-btns, .hp-hero-royal-media {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .hp-hero-royal-grid { grid-template-columns: 1fr; text-align: center; }
  .hp-hero-royal-divider { margin-left: auto; margin-right: auto; }
  .hp-hero-royal p { margin-left: auto; margin-right: auto; }
  .hp-hero-royal-btns { justify-content: center; }
  .hp-hero-royal-media { max-width: 380px; margin: 0 auto; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-bar-item { border-right: none; border-bottom: 1px solid var(--border-on-dark); padding-bottom: 16px; }
  .hp-coll-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .hp-coll-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: 1fr; gap: 0; }
  .trust-bar-item {
    align-items: flex-start;
    gap: 16px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--border-on-dark);
  }
  .trust-bar-item:last-child { border-bottom: none; }
  .trust-bar-item svg { margin-top: 2px; }
}

/* ══════════════════════════════════════════════
   LOGO
   ══════════════════════════════════════════════ */
.logo-img {
  height: 46px;
  max-width: 190px;
}
@media (max-width: 900px) {
  .logo-img { height: 34px; max-width: 150px; }
}
@media (max-width: 420px) {
  .logo-img { height: 28px; max-width: 128px; }
}

/* ══════════════════════════════════════════════
   SYLVARA INSTAGRAM REELS
   ══════════════════════════════════════════════ */

.hp-insta {
  padding: 90px 0 100px;
  background: var(--black-mid);
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
}

.hp-insta-header {
  margin-bottom: 44px;
}


/* ══════════════════════════════════════════════
   GRID
   ══════════════════════════════════════════════ */

.hp-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-bottom: 40px;
  align-items: stretch;
}


/* ══════════════════════════════════════════════
   REEL CARD
   ══════════════════════════════════════════════ */

.hp-insta-reel {
  position: relative;

  width: 100%;
  aspect-ratio: 9 / 15;

  overflow: hidden;

  border-radius: 5px;
  border: 1px solid var(--border-on-dark);

  background: #000;

  isolation: isolate;
}


/* ══════════════════════════════════════════════
   INSTAGRAM EMBED
   ══════════════════════════════════════════════ */

.hp-insta-reel iframe {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100% !important;
  height: 100% !important;

  min-width: 100% !important;
  max-width: none !important;

  min-height: 100% !important;
  max-height: none !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;

  transform: translate(-50%, -50%);

  display: block;

  background: #000;

  overflow: hidden;
}


/* ══════════════════════════════════════════════
   FOLLOW BUTTON
   ══════════════════════════════════════════════ */

.hp-insta-follow {
  display: block;

  width: max-content;

  margin: 0 auto;

  padding: 15px 34px;

  font-size: 12px;

  text-decoration: none;
}


/* ══════════════════════════════════════════════
   TABLET
   ══════════════════════════════════════════════ */

@media (max-width: 1100px) {

  .hp-insta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

}


/* ══════════════════════════════════════════════
   MOBILE
   ══════════════════════════════════════════════ */

@media (max-width: 600px) {

  .hp-insta {
    padding: 65px 0 75px;
  }

  .hp-insta-header {
    margin-bottom: 30px;
  }

  .hp-insta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hp-insta-reel {
    border-radius: 4px;
  }

  .hp-insta-follow {
    margin-top: 5px;
    padding: 14px 26px;
  }

}

/* ══════════════════════════════════════════════
   PREMIUM CUSTOM CURSOR — desktop only, purely
   decorative, disabled under reduced-motion / touch.
   Colour flips automatically based on the actual
   background under the pointer (white ⇄ navy) — see
   js/scroll-reveal.js, which toggles .is-on-dark.
   ══════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  html.sylvara-cursor-on, html.sylvara-cursor-on * {
    cursor: none !important;
  }
  .sylvara-cursor-dot,
  .sylvara-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    will-change: transform;
  }
  .sylvara-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--black);
    transform: translate(-50%, -50%);
    transition: background 0.2s ease;
  }
  .sylvara-cursor-dot.is-on-dark {
    background: #ffffff;
  }
  .sylvara-cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(10, 31, 61, 0.35);
    transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
      height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
      border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  }
  .sylvara-cursor-ring.is-on-dark {
    border-color: rgba(255, 255, 255, 0.55);
  }
  .sylvara-cursor-ring.is-link {
    width: 46px;
    height: 46px;
    border-color: var(--black);
  }
  .sylvara-cursor-ring.is-link.is-on-dark {
    border-color: #ffffff;
  }
  .sylvara-cursor-ring.is-media {
    width: 64px;
    height: 64px;
    background: rgba(10, 31, 61, 0.9);
    border-color: transparent;
  }
  .sylvara-cursor-ring.is-media::after {
    content: "VIEW";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--f-body);
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  /* On a navy backdrop, invert the media "VIEW" bubble to a
     light chip with navy text so it stays visible */
  .sylvara-cursor-ring.is-media.is-on-dark {
    background: rgba(255, 255, 255, 0.92);
  }
  .sylvara-cursor-ring.is-media.is-on-dark::after {
    color: var(--black);
  }
}

/* ══════════════════════════════════════════════
   MOBILE — royal hero / trust bar / collections /
   reels grid, layered on top of existing responsive
   system (mobile.css + mobile-fixes.css load first)
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hp-hero-royal { min-height: auto; padding: 96px 20px 56px; }
  .hp-hero-royal-grid { gap: 40px; }
  .hp-hero-royal h1 { font-size: clamp(34px, 9vw, 48px); }
  .hp-hero-royal p { font-size: 14.5px; }
  .hp-hero-royal-media { order: -1; max-width: 300px; }
  .hp-hero-royal-badge { padding: 12px 16px; bottom: -16px; left: -12px; }
  .hp-hero-royal-badge strong { font-size: 18px; }
  .trust-bar { padding: 24px 20px; }
  .hp-insta-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hp-insta { padding: 60px 0 70px; }
}
@media (max-width: 640px) {
  .hp-hero-royal-btns { width: 100%; }
  .hp-hero-royal-btn { width: 100%; justify-content: center; }
  .hp-coll-grid { gap: 18px; }
  .hp-coll-num { width: 84px; height: 84px; font-size: 24px; }
  .hp-coll-info h3 { font-size: 13.5px; }
  .trust-bar-item svg { width: 22px; height: 22px; }
  .trust-bar-item h4 { font-size: 13px; }
  .trust-bar-item p { font-size: 10px; }
  .hp-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-insta-follow { width: 100%; text-align: center; }
}
@media (max-width: 420px) {
  .hp-hero-royal-eyebrow { font-size: 10px; }
  .hp-hero-royal h1 { font-size: 30px; }
  .hp-coll-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Prevent any horizontal scroll from the new sections */
.hp-hero-royal, .trust-bar, .hp-insta {
  max-width: 100vw;
}