/* Tiny Girl Gang - Home page (production CSS for GHL + local) */
/* Self-contained: shared/css/styles.css + homepage overrides + visual art direction. */
/* Fonts: load once via HTML <link> (shared/partials/site-fonts.html) — not @import. */


/* ==========================================================================
   SITEWIDE CSS
   Also paste deploy/ghl-home/ghl-ready/sitewide.css into GHL
   Site Settings → Custom CSS (once) so every page gets these styles.
   ========================================================================== */

/* === shared/css/scrollbar.css === */
/* Tiny Girl Gang — sitewide scrollbar
   Lavender thumb on a soft/transparent track (matches category + sale rails).
*/

:root {
  --scrollbar-size: 8px;
  --scrollbar-thumb: #dca3ed;
  --scrollbar-thumb-hover: #c88de0;
  --scrollbar-track: transparent;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb, var(--color-lavender, var(--tgg-lavender, #dca3ed)))
    var(--scrollbar-track, transparent);
}

*::-webkit-scrollbar {
  width: var(--scrollbar-size, 8px);
  height: var(--scrollbar-size, 8px);
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track, transparent);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb, var(--color-lavender, var(--tgg-lavender, #dca3ed)));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(
    --scrollbar-thumb-hover,
    var(--color-lavender-deep, #c88de0)
  );
}

*::-webkit-scrollbar-corner {
  background: transparent;
}
/* === /shared/css/scrollbar.css === */


/* === shared/css/styles.css === */

/* ==========================================================================
   Tiny Girl Gang MPLS — Phase 1 Static Styles
   ========================================================================== */



/* --- Design Tokens --- */
:root {
  --color-lavender: #dca3ed;
  --color-cream: #faf6ee;
  --color-purple: #4e0c6b;
  --color-orange: #f16a3a;
  --color-ink: #30123d;
  --color-white: #ffffff;
  --color-border: rgba(48, 18, 61, 0.18);
  --color-border-strong: rgba(48, 18, 61, 0.35);
  --color-overlay: rgba(30, 8, 40, 0.55);
  --color-lavender-soft: #e8c4f2;
  --color-lavender-deep: #c88de0;
  --color-lavender-card: #d9c0d8;
  --color-hero-script: #755080;
  --color-hero-orange: #dc6b50;

  --font-display: "Shrikhand", "Georgia", serif;
  --font-serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-sans: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-script: "Allura", "Segoe Script", cursive;

  --container-max: 72rem;
  --space-xs: clamp(0.5rem, 0.45rem + 0.25vw, 0.625rem);
  --space-sm: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  --space-md: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  --space-lg: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  --space-xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --space-2xl: clamp(3rem, 2rem + 5vw, 6rem);
  --space-section: clamp(2rem, 1.65rem + 1.25vw, 2.75rem);

  --radius-sm: 2px;
  --radius-md: 4px;
  --border-thin: 1px solid var(--color-border-strong);
  --shadow-soft: 0 4px 24px rgba(48, 18, 61, 0.08);
  --transition: 180ms ease;

  --header-height: 5.75rem;
  --header-height-mobile: 4.25rem;
  --touch-min: 2.75rem;
  --bp-tablet: 800px;
  --bp-desktop-nav: 900px;

  /* Placeholder aspect ratios */
  --ratio-hero: 16 / 9;
  --ratio-story: 4 / 5;
  --ratio-category: 1 / 1;
  --ratio-product: 3 / 4;
  --ratio-editorial: 21 / 9;
  --ratio-market: 16 / 10;
  --ratio-tote: 3 / 4;
  --ratio-offer: 4 / 3;
  --hero-card-ratio: 0.74;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--color-ink);
  background-color: var(--color-cream);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.section--compact-top {
  padding-top: clamp(1rem, 0.75rem + 1vw, 1.5rem);
}

.brand-intro.section {
  padding-bottom: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-orange);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-purple);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* --- Focus --- */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

/* --- Placeholder System --- */
.placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border: var(--border-thin);
  background:
    linear-gradient(145deg, var(--color-lavender-soft) 0%, var(--color-cream) 45%, var(--color-lavender) 100%);
}

.placeholder__label {
  position: relative;
  z-index: 1;
  padding: 0.2rem 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(78, 12, 107, 0.55);
  background: rgba(250, 246, 238, 0.65);
  border: 1px solid rgba(48, 18, 61, 0.12);
  border-radius: var(--radius-sm);
}

.editorial-brand-collage .placeholder__label {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  opacity: 0.45;
  background: rgba(48, 18, 61, 0.35);
  color: rgba(250, 246, 238, 0.7);
  border-color: transparent;
}

.hero-market-scene {
  width: 100%;
  height: 100%;
  min-height: clamp(12rem, 34vw, 18rem);
  aspect-ratio: auto;
  border: none;
}

.hero-market-scene .placeholder__label {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  opacity: 0.4;
}

.story-editorial-image {
  aspect-ratio: var(--ratio-story);
}

.category-vintage-found,
.category-apparel-textiles,
.category-handmade-goods,
.category-jewelry-accessories,
.category-crystals-curiosities {
  aspect-ratio: var(--ratio-category);
}

.category-vintage-found {
  background: linear-gradient(160deg, #e8d5c4 0%, var(--color-cream) 50%, var(--color-lavender-soft) 100%);
}

.category-apparel-textiles {
  background: linear-gradient(160deg, var(--color-lavender-soft) 0%, #f0e6d8 50%, var(--color-cream) 100%);
}

.category-handmade-goods {
  background: linear-gradient(160deg, #d4c4b0 0%, var(--color-cream) 50%, var(--color-lavender) 100%);
}

.category-jewelry-accessories {
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-lavender-soft) 50%, #c9b8a8 100%);
}

.category-crystals-curiosities {
  background: linear-gradient(160deg, var(--color-lavender) 0%, var(--color-cream) 50%, var(--color-lavender-deep) 100%);
}

.product-one,
.product-two,
.product-three,
.product-four,
.sale-one,
.sale-two,
.sale-three {
  aspect-ratio: var(--ratio-product);
}

.sale-one {
  background: linear-gradient(180deg, #f0e4dc 0%, var(--color-lavender-soft) 100%);
}

.sale-two {
  background: linear-gradient(180deg, #f5d8e4 0%, var(--color-cream) 100%);
}

.sale-three {
  background: linear-gradient(180deg, #f8ebe0 0%, #e8d4c8 100%);
}

.offer-ritual-kit,
.offer-tgg-closet {
  aspect-ratio: var(--ratio-offer);
  min-height: 100%;
  border: none;
  border-radius: 0;
}

.offer-ritual-kit {
  background: linear-gradient(145deg, #e8ddd0 0%, var(--color-cream) 45%, var(--color-lavender-soft) 100%);
}

.offer-tgg-closet {
  background: linear-gradient(145deg, var(--color-lavender-soft) 0%, #f0e6d8 50%, var(--color-cream) 100%);
}

.product-one {
  background: linear-gradient(180deg, #f5ebe0 0%, var(--color-lavender-soft) 100%);
}

.product-two {
  background: linear-gradient(180deg, #e8ddd0 0%, var(--color-cream) 100%);
}

.product-three {
  background: linear-gradient(180deg, var(--color-lavender-soft) 0%, #d4c8bc 100%);
}

.product-four {
  background: linear-gradient(180deg, #ddd0e8 0%, var(--color-lavender) 100%);
}

.editorial-brand-collage {
  aspect-ratio: auto;
  height: 100%;
  min-height: clamp(11rem, 28vw, 18rem);
  border: none;
  background: linear-gradient(180deg, #2a1038 0%, #4e0c6b 40%, #30123d 100%);
}

.market-booth-image {
  aspect-ratio: var(--ratio-market);
}

.decorative-tote-image {
  aspect-ratio: var(--ratio-tote);
  max-width: 8rem;
  border: none;
  background: linear-gradient(145deg, var(--color-purple) 0%, var(--color-lavender) 100%);
  opacity: 0.85;
}

.commissions-garment {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: 100%;
  min-height: clamp(16rem, 52vw, 28rem);
  border: none;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(220, 163, 237, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 65%, rgba(241, 106, 58, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #f3e8f0 0%, var(--color-cream) 42%, #e8c4d8 100%);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: var(--touch-min);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn--solid {
  color: var(--color-white);
  background-color: var(--color-purple);
  border: 2px solid var(--color-purple);
}

.btn--solid:hover {
  background-color: var(--color-ink);
  border-color: var(--color-ink);
}

.btn--solid::after {
  content: " \2192";
}

.btn--solid:active {
  transform: translateY(1px);
}

.btn--outline {
  color: var(--color-purple);
  background-color: transparent;
  border: var(--border-thin);
}

.btn--outline:hover {
  background-color: rgba(220, 163, 237, 0.2);
  border-color: var(--color-purple);
}

.btn--outline:active {
  transform: translateY(1px);
}

.btn--text {
  padding-inline: 0;
  min-height: auto;
  color: var(--color-orange);
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.btn--text:hover {
  color: var(--color-purple);
}

.btn--text::after {
  content: " \2192";
}

.btn--full {
  width: 100%;
}

.btn--submit {
  flex-shrink: 0;
  white-space: nowrap;
}

/* --- Icon Buttons --- */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0.5rem;
  color: var(--color-purple);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition);
}

.icon-btn:hover {
  background-color: rgba(220, 163, 237, 0.25);
}

.icon-btn:active {
  transform: scale(0.97);
}

/* --- Announcement Bar --- */
.announcement-bar {
  background-color: var(--color-lavender);
  padding-block: 0.5rem;
}

.announcement-bar__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  padding-inline: 1rem;
  font-size: clamp(0.5625rem, 0.5rem + 0.35vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-purple);
  line-height: 1.4;
}

.announcement-bar__sep {
  color: var(--color-orange);
}

.announcement-bar__star {
  color: var(--color-purple);
  font-size: 0.625rem;
}

.announcement-bar__star--end {
  display: none;
}

.announcement-bar__mobile {
  display: none;
}

.announcement-bar__full {
  display: contents;
}

@media (min-width: 480px) {
  .announcement-bar__star--end {
    display: inline;
  }
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 246, 238, 0.94);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-purple);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

/* Over light sections → dark chrome */
.site-header.is-on-light {
  background-color: rgba(30, 10, 42, 0.94);
  border-bottom-color: rgba(220, 163, 237, 0.22);
  color: #f7efe4;
  box-shadow: 0 10px 28px rgba(8, 2, 14, 0.28);
}

.site-header.is-on-light .site-header__inner .logo,
.site-header.is-on-light .site-nav__link,
.site-header.is-on-light .site-nav__dropdown-toggle,
.site-header.is-on-light .site-header__inner .icon-btn {
  color: #f7efe4;
}

.site-header.is-on-light .site-nav__link:hover,
.site-header.is-on-light .site-nav__dropdown-toggle:hover,
.site-header.is-on-light .icon-btn:hover {
  color: var(--color-lavender);
}

.site-header.is-on-light .icon-btn:hover {
  background-color: rgba(220, 163, 237, 0.16);
}

.site-header.is-on-light .site-nav__dropdown {
  background: var(--color-cream);
  border-color: var(--color-border);
}

.site-header.is-on-light .site-nav__dropdown-link {
  color: var(--color-purple);
}

.site-header.is-on-light .site-nav__dropdown-link:hover,
.site-header.is-on-light .site-nav__dropdown-link:focus-visible {
  color: var(--color-orange);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-sm);
  min-height: var(--header-height-mobile);
}

.site-header__menu-toggle {
  grid-column: 1;
  justify-self: start;
}

.site-header__inner .logo {
  grid-column: 2;
  justify-self: center;
}

.site-header__actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.125rem, 0.25vw, 0.5rem);
}

.site-header__cart-mobile {
  display: inline-flex;
}

.site-nav--desktop {
  display: none;
}

.site-nav--left {
  justify-self: start;
}

.site-nav--right {
  margin-right: clamp(0.25rem, 0.5vw, 0.75rem);
}

.site-nav--right .site-nav__list {
  justify-content: flex-end;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.site-nav__item--dropdown {
  position: relative;
}

.site-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__dropdown-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.site-nav__item--dropdown.is-open .site-nav__dropdown-icon {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  z-index: 120;
  min-width: 13.5rem;
  padding: 0.35rem 0;
  background: var(--color-cream);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
}

/* Invisible hover bridge so the pointer can reach the menu without closing it */
.site-nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.55rem;
}

.site-nav__dropdown-link {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-purple);
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition);
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
  background-color: rgba(220, 163, 237, 0.18);
  color: var(--color-orange);
}

.site-nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-purple);
  transition: color var(--transition);
  padding-block: 0.25rem;
}

.site-nav__link:hover {
  color: var(--color-orange);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--color-purple);
  line-height: 1.1;
}

.logo__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 0.95rem + 1vw, 1.75rem);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.logo__location {
  font-family: var(--font-sans);
  font-size: clamp(0.625rem, 0.55rem + 0.3vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  margin-top: 0.15rem;
}

.logo-compact .logo__wordmark {
  font-size: 1rem;
}

.site-header__utility {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

@media (max-width: 899px) {
  .site-nav--desktop {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.mobile-nav:not([hidden]) {
  pointer-events: auto;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: min(100%, 22rem);
  height: 100%;
  padding: var(--space-md);
  background: var(--color-cream);
  border-right: var(--border-thin);
  box-shadow: var(--shadow-soft);
  transform: translateX(-100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(48, 18, 61, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.site-header .mobile-nav .logo,
.site-header .mobile-nav .logo .logo__wordmark,
.site-header .mobile-nav .logo .logo__location,
.site-header.is-on-light .mobile-nav .logo,
.site-header.is-on-light .mobile-nav .logo .logo__wordmark,
.site-header.is-on-light .mobile-nav .logo .logo__location,
.site-header.is-on-dark .mobile-nav .logo,
.site-header.is-on-dark .mobile-nav .logo .logo__wordmark,
.site-header.is-on-dark .mobile-nav .logo .logo__location {
  color: var(--color-purple);
  transition: none;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--space-lg);
}

.mobile-nav__link {
  display: block;
  padding: 0.875rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-purple);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__link:hover {
  color: var(--color-orange);
}

.mobile-nav__utility {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 900px) and (max-width: 1023px) {
  .site-nav__list {
    gap: clamp(0.5rem, 1vw, 0.875rem);
  }

  .site-nav__link,
  .site-nav__dropdown-link {
    font-size: 0.75rem;
  }
}

@media (min-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    min-height: var(--header-height);
    padding-block: 0.35rem;
  }

  .site-nav--desktop {
    display: block;
  }

  .site-nav--left {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav--right {
    display: block;
  }

  .site-header__menu-toggle,
  .site-header__cart-mobile {
    display: none;
  }

  .site-header__utility {
    display: flex;
  }

  .site-header__inner .logo {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header__actions {
    grid-column: 3;
    grid-row: 1;
  }
}

/* --- Hero --- */
.hero {
  width: 100%;
}

.hero__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.hero__visual {
  flex-shrink: 0;
  width: 100%;
}

.hero__visual .hero-market-scene {
  aspect-ratio: var(--ratio-hero);
  min-height: clamp(11rem, 32vw, 16rem);
  border: none;
}

.hero-card {
  position: relative;
  z-index: 2;
  flex: none;
  width: clamp(20.625rem, 29vw, 24.5rem);
  max-width: 24.5rem;
  height: auto;
  margin-inline: auto;
  aspect-ratio: var(--hero-card-ratio);
  display: block;
  background: transparent;
  color: var(--color-purple);
  isolation: isolate;
  overflow: visible;
}

.hero-card__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.hero-card__panel-shape {
  fill: var(--color-lavender-card);
  stroke: none;
}

.hero-card__frame-line {
  fill: none;
  stroke: var(--color-purple);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.hero-card__frame-inner {
  opacity: 0.68;
}

.hero-card__starburst {
  position: absolute;
  z-index: 2;
  top: clamp(1.75rem, 7.5%, 2.35rem);
  width: 0.8125rem;
  height: 0.8125rem;
  fill: var(--color-purple);
  pointer-events: none;
}

.hero-card__starburst--tl {
  left: clamp(1.75rem, 10.5%, 2.5rem);
}

.hero-card__starburst--tr {
  right: clamp(1.75rem, 10.5%, 2.5rem);
}

.hero-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding:
    clamp(2rem, 7.5%, 2.75rem)
    clamp(1.75rem, 8%, 2.25rem)
    clamp(2rem, 7.5%, 2.5rem);
  text-align: center;
  overflow: visible;
}

.hero-card__brand,
.hero-card__message,
.hero__actions {
  width: 100%;
}

.hero-card__brand {
  align-self: start;
}

.hero-card__message {
  display: grid;
  justify-items: center;
  gap: clamp(1.1rem, 2.5vh, 1.4rem);
  align-self: start;
  margin-top: clamp(0.8rem, 2vh, 1.1rem);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.35rem, 2.8vh, 1.65rem);
  align-self: end;
  margin: 0;
}

.hero__eyebrow {
  margin: 0 0 clamp(0.75rem, 1.6vh, 1rem);
  font-size: clamp(0.675rem, 0.7vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.1vw, 4.5rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-purple);
  margin: 0 0 clamp(0.75rem, 1.5vh, 1rem);
}

.hero__title-logo {
  display: block;
  width: min(100%, 15.5rem);
  height: auto;
  margin-inline: auto;
  mix-blend-mode: screen;
}

.hero__title-line {
  display: block;
  margin: 0;
}

.hero__title-line + .hero__title-line {
  margin-top: -0.04em;
}

.hero__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 1.25vw, 0.9rem);
  margin: 0;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.hero__location-ornament {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.3rem, 0.55vw, 0.42rem);
  min-width: 2.5rem;
  color: var(--color-hero-orange);
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
}

.hero__location-ornament > span {
  display: block;
  width: clamp(0.25rem, 0.3vw, 0.3rem);
  height: clamp(0.25rem, 0.3vw, 0.3rem);
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: var(--color-hero-orange);
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.hero__location-text {
  letter-spacing: 0.25em;
}

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 2.3vw, 2.35rem);
  font-weight: 400;
  color: var(--color-hero-script);
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.hero__descriptor {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: min(100%, 17rem);
  max-width: 17rem;
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--color-hero-orange);
}

.hero__descriptor-line {
  display: block;
}

.hero-card__inner .btn--hero {
  width: 84%;
  max-width: 84%;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  letter-spacing: 0.1em;
}

.hero-card__inner .btn--hero::after {
  content: none;
}

.hero-card__inner .btn__star {
  font-size: 0.6875rem;
  margin-left: 0.3rem;
}

.hero-card__inner .btn--hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: auto;
  padding: 0 0 0.15rem;
  font-size: clamp(0.775rem, 0.85vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.065em;
  text-align: center;
  color: var(--color-purple);
  text-decoration: none;
}

.hero-card__inner .btn--hero-secondary::after {
  content: none;
  display: none;
}

.hero-card__inner .btn--hero-secondary > span:first-child {
  text-decoration: underline;
  text-decoration-color: var(--color-purple);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.hero-card__inner .btn--hero-secondary .btn__arrow {
  display: inline-block;
  color: var(--color-hero-orange);
  font-size: 1em;
  line-height: 1;
  text-decoration: none;
}

.hero-card__inner .btn--hero-secondary:hover {
  color: var(--color-ink);
}

.hero-card__inner .btn--hero-secondary:hover > span:first-child {
  text-decoration-color: var(--color-ink);
}

@media (max-width: 799px) {
  /* Ticker collapse only. Mobile hero geometry lives in home-visual.css. */
  .category-ticker {
    display: none;
    margin: 0;
    padding: 0;
    border: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }
}

@media (min-width: 800px) {
  .hero__stage {
    position: relative;
    display: block;
    min-height: clamp(34rem, 58vh, 40rem);
    padding-block: clamp(1.5rem, 6vh, 2.5rem);
  }

  .hero__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }

  .hero__visual .hero-market-scene {
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .hero-card {
    position: absolute;
    left: clamp(2rem, 6.5vw, 6rem);
    top: 50%;
    transform: translateY(-50%);
    margin-inline: 0;
  }
}

/* --- Category Ticker --- */
.category-ticker {
  background-color: var(--color-lavender);
  border-block: 1px solid var(--color-border);
  padding-block: 0.875rem;
}

.category-ticker__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  padding-inline: 1rem;
}

.category-ticker__link {
  font-size: clamp(0.625rem, 0.55rem + 0.35vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-purple);
  white-space: nowrap;
  transition: color var(--transition);
}

.category-ticker__link:hover {
  color: var(--color-orange);
}

.category-ticker__sep {
  color: var(--color-orange);
  font-size: 0.5rem;
  user-select: none;
}

/* --- Section Typography --- */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: var(--space-xs);
}

.section-subheading {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: clamp(1rem, 0.85rem + 0.75vw, 1.5rem);
  text-align: center;
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.25rem + 1.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.section-header__star {
  color: var(--color-purple);
  font-size: 0.75rem;
  opacity: 0.7;
}

.section-header::before,
.section-header::after {
  content: "";
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-purple) 0,
    var(--color-purple) 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.35;
}

.section-header--compact {
  margin-bottom: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

.section-eyebrow {
  margin: 0 0 0.35rem;
  font-size: clamp(0.625rem, 0.58rem + 0.2vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-purple);
}

.last-chance__header .section-eyebrow {
  text-align: left;
}

@media (min-width: 800px) {
  .section-eyebrow {
    text-align: center;
  }

  .last-chance__header .section-eyebrow {
    text-align: left;
  }
}

/* --- Brand Intro --- */
.brand-intro__grid {
  display: grid;
  gap: clamp(1.5rem, 1.25rem + 1.5vw, 2.5rem);
  align-items: center;
}

.brand-intro__frame {
  position: relative;
  max-width: clamp(18rem, 85%, 26rem);
  margin-inline: auto;
}

.brand-intro__frame .story-editorial-image {
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-soft);
}

.brand-intro__frame::before {
  content: "";
  position: absolute;
  inset: -0.75rem -0.5rem 0.5rem 0.75rem;
  z-index: -1;
  background: var(--color-white);
  border: var(--border-thin);
  transform: rotate(2deg);
}

.brand-intro__star {
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  font-size: 1.25rem;
  color: var(--color-purple);
}

.brand-intro__body {
  max-width: 32rem;
  margin-bottom: clamp(1rem, 0.85rem + 0.75vw, 1.5rem);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.7;
}

@media (min-width: 800px) {
  .brand-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 1.5rem + 2vw, 3rem);
  }

  .brand-intro__frame {
    max-width: min(100%, 28rem);
    margin-inline: 0 auto;
  }
}

/* --- Shop Categories --- */
.shop-categories.section {
  padding-block: clamp(1.75rem, 1.4rem + 1.2vw, 2.75rem);
}

.shop-categories .section-header {
  margin-bottom: clamp(1rem, 0.75rem + 0.8vw, 1.5rem);
}

.category-rail {
  width: 100%;
  max-width: 100%;
  padding-inline: 1rem;
  overflow: visible;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 0.55rem + 0.4vw, 0.9rem);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.category-cards > li {
  min-width: 0;
  display: flex;
}

.category-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  text-decoration: none;
  color: #f7efe4;
  border: 0;
  border-radius: 0.55rem;
  overflow: hidden;
  background-color: #1a0a24;
  box-shadow: 0 10px 28px rgba(24, 8, 30, 0.18);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card:focus-visible {
  outline: 2px solid var(--color-lavender);
  outline-offset: 3px;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24, 8, 30, 0.28);
}

.category-card:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(24, 8, 30, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(24, 8, 30, 0.28);
  }

  .category-card:hover .category-card__arrow {
    transform: translateX(2px);
  }

  .category-card:hover .category-card__image {
    transform: scale(1.035);
  }
}

.category-card__media {
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.category-card__media .placeholder {
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 4.5rem 0.85rem 1.05rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(14, 4, 18, 0) 0%,
    rgba(18, 6, 24, 0.42) 38%,
    rgba(14, 4, 18, 0.88) 100%
  );
  pointer-events: none;
}

.category-card__star {
  display: block;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1;
  color: #d7b4e8;
  text-shadow: 0 0 10px rgba(215, 180, 232, 0.55);
}

.category-card__title {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
  line-height: 1.15;
  color: #f7efe4;
}

.category-card__action {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.28rem;
  margin-top: 0.15rem;
  min-width: 3.25rem;
  color: #f7efe4;
}

.category-card__action-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

.category-card__rule {
  position: relative;
  display: block;
  height: 1px;
  margin-right: 0.55em;
  background: currentColor;
}

.category-card__arrow {
  position: absolute;
  top: 50%;
  right: -0.05em;
  width: 0.42em;
  height: 0.42em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translate(50%, -50%) rotate(45deg);
  transition: transform 220ms ease;
}

.category-card:focus-visible .category-card__arrow {
  transform: translate(calc(50% + 2px), -50%) rotate(45deg);
}

.shop-categories__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 0.8rem + 0.7vw, 1.35rem);
}

.shop-categories__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
  color: var(--color-purple);
  transition: color var(--transition);
}

.shop-categories__all:hover,
.shop-categories__all:focus-visible {
  color: var(--color-orange);
}

.shop-categories__all:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 3px;
}

@media (min-width: 800px) {
  .category-rail {
    padding-inline: 1rem;
  }

  .category-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 0.55rem + 0.6vw, 1.15rem);
  }

  .category-card__media,
  .category-card__media .placeholder {
    aspect-ratio: 4 / 5;
  }

  .category-card__overlay {
    padding: 5rem 1rem 1.2rem;
    gap: 0.4rem;
  }

  .category-card__title {
    font-size: clamp(1.15rem, 1rem + 0.35vw, 1.45rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-card,
  .category-card__arrow,
  .category-card__image {
    transition: none;
  }

  .category-card:hover,
  .category-card:focus-visible,
  .category-card:active {
    transform: none;
  }

  .category-card:hover .category-card__arrow,
  .category-card:focus-visible .category-card__arrow {
    transform: translate(50%, -50%) rotate(45deg);
  }

  .category-card:hover .category-card__image {
    transform: none;
  }
}

/* --- Custom Commissions --- */
.commissions.section {
  padding-block: clamp(1.75rem, 1.5rem + 1vw, 2.75rem);
}

.commissions__panel {
  position: relative;
  isolation: isolate;
  padding: clamp(1.25rem, 1rem + 1.5vw, 2.5rem);
  background-color: var(--color-cream);
  overflow: visible;
}

.commissions__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.commissions__frame-line {
  fill: none;
  stroke: var(--color-purple);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.commissions__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 1.25rem + 1.5vw, 2.75rem);
  align-items: center;
}

.commissions__visual {
  position: relative;
  min-width: 0;
}

.commissions__wash {
  position: absolute;
  inset: -8% -6% -10% -8%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 40% 45%, rgba(220, 163, 237, 0.38) 0%, transparent 62%),
    radial-gradient(ellipse at 70% 70%, rgba(241, 180, 170, 0.28) 0%, transparent 55%);
  pointer-events: none;
}

.commissions__media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(78, 12, 107, 0.18);
}

.commissions__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(220, 163, 237, 0.55);
  transform-origin: left center;
  transition: opacity 0.9s ease, transform 1s ease;
}

.commissions__panel.is-revealed .commissions__overlay {
  opacity: 0;
  transform: scaleX(0);
  pointer-events: none;
}

.commissions__swatches {
  position: absolute;
  z-index: 3;
  left: clamp(0.75rem, 2vw, 1.25rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.45rem;
  background: rgba(250, 246, 238, 0.92);
  border: 1px solid rgba(78, 12, 107, 0.2);
  box-shadow: var(--shadow-soft);
}

.commissions__swatch {
  display: block;
  width: clamp(1.75rem, 4vw, 2.25rem);
  height: clamp(1.1rem, 2.5vw, 1.35rem);
  border: 1px solid rgba(78, 12, 107, 0.15);
  transition: transform 0.35s ease;
}

.commissions__swatch--lavender {
  background: #c9a0d8;
}

.commissions__swatch--blush {
  background: #e8a8b8;
}

.commissions__swatch--peach {
  background: #f0c4a8;
}

@media (hover: hover) {
  .commissions__swatch:hover {
    transform: scale(1.08) rotate(-2deg);
  }
}

.commissions__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 0.7rem + 0.6vw, 1.25rem);
  min-width: 0;
}

.commissions__eyebrow {
  margin: 0;
  font-size: clamp(0.625rem, 0.58rem + 0.2vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.commissions__headline-block {
  position: relative;
  padding-right: 0;
}

.commissions__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.55rem + 2vw, 3.25rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--color-purple);
}

.commissions__title em {
  font-style: italic;
  font-weight: 500;
}

.commissions__accent {
  position: relative;
  top: auto;
  right: auto;
  display: inline-block;
  margin: 0.15rem 0 0;
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  line-height: 1;
  color: var(--color-orange);
  transform: rotate(-4deg);
  pointer-events: none;
}

.commissions__body {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--color-ink);
}

.commissions__steps {
  display: grid;
  gap: 0.65rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.commissions__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.65rem 0.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

@media (hover: hover) {
  .commissions__step:hover {
    background-color: rgba(220, 163, 237, 0.14);
    border-color: rgba(78, 12, 107, 0.18);
    transform: translateX(2px);
  }
}

.commissions__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-purple);
  border: 1px solid var(--color-purple);
  border-radius: 50%;
}

.commissions__step-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.commissions__step-title::before {
  content: "✦ ";
  font-size: 0.65em;
  opacity: 0.7;
}

.commissions__step-text {
  margin: 0;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  line-height: 1.55;
  color: var(--color-ink);
}

.commissions__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.commissions__cta {
  width: 100%;
  justify-content: center;
}

.commissions__cta--primary::after {
  content: none;
  display: none;
}

.commissions__cta--primary:hover {
  background-color: var(--color-ink);
  border-color: var(--color-ink);
}

.commissions__note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  max-width: 28rem;
  margin-inline: auto;
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1.0625rem);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  color: var(--color-purple);
}

.commissions__note-star {
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.75;
}

[data-commissions-reveal],
[data-commissions-step] {
  opacity: 0;
  transform: translateY(0.85rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.commissions__panel.is-revealed [data-commissions-reveal],
.commissions__panel.is-revealed [data-commissions-step] {
  opacity: 1;
  transform: translateY(0);
}

.commissions__panel.is-revealed [data-commissions-reveal]:nth-of-type(1) { transition-delay: 0.08s; }
.commissions__panel.is-revealed .commissions__headline-block { transition-delay: 0.16s; }
.commissions__panel.is-revealed .commissions__body { transition-delay: 0.24s; }
.commissions__panel.is-revealed .commissions__actions { transition-delay: 0.55s; }
.commissions__panel.is-revealed .commissions__note { transition-delay: 0.65s; }

.commissions__panel.is-revealed [data-commissions-step]:nth-child(1) { transition-delay: 0.32s; }
.commissions__panel.is-revealed [data-commissions-step]:nth-child(2) { transition-delay: 0.4s; }
.commissions__panel.is-revealed [data-commissions-step]:nth-child(3) { transition-delay: 0.48s; }

.commissions__swatches {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

.commissions__panel.is-revealed .commissions__swatches {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .commissions__overlay,
  [data-commissions-reveal],
  [data-commissions-step],
  .commissions__swatches,
  .commissions__swatch,
  .commissions__step {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .commissions__overlay {
    opacity: 0 !important;
  }
}

@media (min-width: 800px) {
  .commissions__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.75rem, 1.5rem + 2vw, 3rem);
  }

  .commissions-garment {
    aspect-ratio: 4 / 5;
    min-height: clamp(22rem, 36vw, 30rem);
  }

  .commissions__headline-block {
    padding-right: clamp(4rem, 10vw, 7rem);
  }

  .commissions__accent {
    position: absolute;
    top: -0.55rem;
    right: clamp(0rem, 2vw, 1.5rem);
    margin: 0;
    transform: rotate(-6deg);
  }

  .commissions__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .commissions__cta {
    width: auto;
  }

  .commissions__cta--primary {
    min-width: 15rem;
  }

  .commissions__note {
    margin-inline: 0;
    align-items: flex-start;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .commissions__panel {
    padding: clamp(1.75rem, 1.5rem + 1.5vw, 2.75rem) clamp(1.75rem, 1.5rem + 2vw, 3rem);
  }

  .commissions__title {
    max-width: 18ch;
  }
}

/* --- Just Found --- */
.just-found.section {
  padding-block: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
}

.just-found__support {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(1rem, 0.85rem + 0.75vw, 1.5rem);
  text-align: center;
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  color: var(--color-ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 0.65rem + 0.5vw, 1rem);
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-ink);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--color-cream);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.product-card__media {
  position: relative;
  overflow: hidden;
}

.product-card__media .placeholder {
  border: none;
  border-radius: 0;
}

.product-card__badge {
  position: absolute;
  top: var(--space-xs);
  left: var(--space-xs);
  z-index: 2;
  padding: 0.2rem 0.45rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-purple);
  background: rgba(250, 246, 238, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.product-card__footer {
  padding: 0.75rem 0.625rem 0.875rem;
  background-color: var(--color-cream);
  border-top: var(--border-thin);
  text-align: center;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-purple);
  margin-bottom: 0.25rem;
}

.product-card__price {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-ink);
}

@media (min-width: 800px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
  }
}

/* --- The Last Chance Rack --- */
.last-chance.section {
  padding-block: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
}

.last-chance__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: clamp(1rem, 0.85rem + 0.75vw, 1.5rem);
}

.last-chance__intro {
  width: 100%;
}

.last-chance__intro .section-header {
  justify-content: flex-start;
  text-align: left;
}

.last-chance__intro .section-header::before,
.last-chance__intro .section-header::after {
  display: none;
}

.last-chance__support {
  max-width: 36rem;
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--color-ink);
}

.last-chance__cta {
  flex-shrink: 0;
  min-height: var(--touch-min);
  align-self: flex-start;
}

.last-chance__cta::after {
  content: none;
  display: none;
}

.sale-rail {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-lavender) transparent;
}

.sale-rail::-webkit-scrollbar {
  height: 4px;
}

.sale-rail::-webkit-scrollbar-thumb {
  background: var(--color-lavender);
  border-radius: 2px;
}

.sale-grid {
  display: flex;
  gap: clamp(0.75rem, 0.65rem + 0.5vw, 1rem);
  width: max-content;
  min-width: 0;
  padding-bottom: 0.35rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.sale-grid > li {
  flex: 0 0 clamp(9.5rem, 72vw, 14rem);
  max-width: 14rem;
}

.sale-grid .product-card {
  height: 100%;
}

.product-card__badge--sale {
  color: var(--color-white);
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.product-card__price-original {
  font-size: 0.75rem;
  color: rgba(48, 18, 61, 0.55);
}

.product-card__price-original s {
  text-decoration-thickness: 1px;
}

.product-card__price-sale {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-orange);
}

@media (min-width: 768px) {
  .last-chance__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-lg);
  }

  .last-chance__cta {
    align-self: flex-end;
    margin-left: auto;
  }

  .sale-rail {
    overflow: visible;
  }

  .sale-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
    padding-bottom: 0;
  }

  .sale-grid > li {
    flex: none;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .sale-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Membership Offers --- */
.membership-offers.section {
  padding-block: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
}

.membership-offers__grid {
  display: grid;
  gap: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--color-cream);
}

.offer-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
  padding: clamp(1.25rem, 1rem + 1vw, 2rem);
}

.offer-card__eyebrow {
  margin: 0;
  font-size: clamp(0.625rem, 0.58rem + 0.2vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.offer-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.offer-card__body {
  max-width: 28rem;
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1.0625rem);
  line-height: 1.65;
  color: var(--color-ink);
}

.offer-card__cta {
  align-self: flex-start;
  margin-top: clamp(0.35rem, 0.3rem + 0.25vw, 0.75rem);
}

.offer-card__media {
  position: relative;
  min-height: clamp(11rem, 38vw, 16rem);
}

.offer-card__media .placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.offer-card__seal {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.25rem);
  right: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.25rem, 12vw, 5rem);
  height: clamp(4.25rem, 12vw, 5rem);
  padding: 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(0.5rem, 0.45rem + 0.15vw, 0.5625rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  color: var(--color-purple);
  background: var(--color-lavender);
  border: 2px solid var(--color-purple);
  border-radius: 50%;
}

@media (min-width: 800px) {
  .membership-offers__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }

  .offer-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: clamp(16rem, 22vw, 20rem);
  }

  .offer-card__media {
    min-height: auto;
  }

  .offer-card__content {
    padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  }
}

/* --- Editorial Statement --- */
.editorial-statement {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: clamp(11rem, 28vw, 16rem);
  overflow: hidden;
}

.editorial-statement__visual {
  grid-area: 1 / 1;
  min-height: inherit;
}

.editorial-statement__visual .editorial-brand-collage {
  width: 100%;
  height: 100%;
  min-height: clamp(11rem, 28vw, 16rem);
}

.editorial-statement__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.editorial-statement__content {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.5rem) 1rem;
  text-align: center;
}

.editorial-statement__quote {
  max-width: 28rem;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 0.95rem + 1vw, 1.625rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
}

.editorial-statement__badge {
  display: none;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  padding: 0.75rem;
  font-family: var(--font-serif);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  color: var(--color-purple);
  background: var(--color-lavender);
  border: 2px solid var(--color-purple);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 800px) {
  .editorial-statement {
    min-height: clamp(13.75rem, 22vw, 18.75rem);
  }

  .editorial-statement__visual .editorial-brand-collage {
    min-height: clamp(13.75rem, 22vw, 18.75rem);
  }

  .editorial-statement__quote {
    max-width: 36rem;
    font-size: clamp(1.25rem, 1rem + 0.85vw, 1.75rem);
  }

  .editorial-statement__content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 2vw, 3rem);
    padding-inline: clamp(1rem, 3vw, 2rem);
  }

  .editorial-statement__badge {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .editorial-statement {
    min-height: 18.75rem;
  }

  .editorial-statement__visual .editorial-brand-collage {
    min-height: 18.75rem;
  }
}

/* --- Meet Us IRL --- */
.meet-irl.section {
  padding-block: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
}

.meet-irl__grid {
  display: grid;
  gap: clamp(1.25rem, 1rem + 1vw, 2rem);
  align-items: center;
}

.meet-irl__body {
  max-width: 24rem;
  margin-bottom: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  line-height: 1.65;
}

.meet-irl__photo .market-booth-image {
  aspect-ratio: var(--ratio-market);
}

.market-card {
  padding: clamp(1rem, 0.85rem + 0.75vw, 1.5rem);
  background-color: var(--color-lavender);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
}

.market-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-strong);
}

.market-card__details {
  display: grid;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}

.market-card__event {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-purple);
}

.market-card__date,
.market-card__time {
  font-weight: 600;
  font-size: 0.9375rem;
}

.market-card__location {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.market-card__link {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--color-purple);
}

.market-card__link:hover {
  color: var(--color-orange);
}

.market-card__link::after {
  content: " \2192";
}

@media (min-width: 800px) {
  .meet-irl__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr) minmax(0, 0.95fr);
    gap: clamp(1rem, 0.75rem + 1.25vw, 1.75rem);
    align-items: center;
  }

  .meet-irl .section-heading {
    font-size: clamp(1.75rem, 1.5rem + 1.25vw, 2.25rem);
  }
}

/* --- Join the Gang --- */
.join-gang {
  background-color: var(--color-lavender);
  padding-block: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  border-top: 1px solid var(--color-border);
}

.join-gang__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.join-gang__star {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 1.5rem;
  color: var(--color-purple);
}

.join-gang__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: 0.375rem;
}

.join-gang__body {
  max-width: 22rem;
  line-height: 1.6;
}

.form-field__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-purple);
}

.form-field__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-field__input {
  width: 100%;
  min-height: var(--touch-min);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-white);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field__input::placeholder {
  color: rgba(48, 18, 61, 0.45);
}

.form-field__input:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(78, 12, 107, 0.15);
}

.form-field__input[aria-invalid="true"] {
  border-color: var(--color-orange);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.join-gang__status {
  margin: 0.4rem 0 0;
  min-height: 1.35em;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--color-purple);
}

.join-gang__status[data-state="success"],
.join-gang__status[data-state="pending"] {
  color: var(--color-purple);
}

.join-gang__status[data-state="error"] {
  color: var(--color-orange);
}

.join-gang__consent {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(48, 18, 61, 0.75);
  max-width: 28rem;
}

.join-gang__consent-toggle {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-purple);
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.join-gang__consent-toggle:hover,
.join-gang__consent-toggle:focus-visible {
  color: var(--color-ink);
}

.join-gang__consent-detail {
  display: block;
  margin-top: 0.35rem;
  color: rgba(48, 18, 61, 0.78);
}

.join-gang__consent-detail[hidden] {
  display: none;
}

.join-gang__deco {
  display: none;
  justify-content: flex-end;
}

@media (min-width: 480px) {
  .form-field__row {
    flex-direction: row;
    align-items: stretch;
  }

  .form-field__input {
    flex: 1;
  }
}

@media (min-width: 800px) {
  .join-gang__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr) auto;
    gap: clamp(1rem, 0.75rem + 1.5vw, 2rem);
    align-items: center;
  }

  .join-gang__deco {
    display: flex;
  }
}

/* --- Footer --- */
.site-footer {
  padding-block: clamp(1.25rem, 1rem + 1vw, 2rem);
  background-color: var(--color-cream);
  border-top: 1px solid var(--color-border);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 0.85rem + 0.6vw, 1.5rem);
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links--primary {
  gap: 0.45rem 1.35rem;
}

.site-footer__links--legal {
  gap: 0.25rem 1rem;
}

.site-footer__item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-purple);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.site-footer__links--legal a,
.site-footer__links a.site-footer__link--legal {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.58;
  min-height: 2.25rem;
}

.site-footer__links--legal a:hover,
.site-footer__links--legal a:focus-visible,
.site-footer__links a.site-footer__link--legal:hover,
.site-footer__links a.site-footer__link--legal:focus-visible {
  opacity: 1;
}

.site-footer__links a:hover {
  color: var(--color-orange);
}

.site-footer__links a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.site-footer__instagram {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--color-purple);
}

.site-footer__instagram:hover {
  color: var(--color-orange);
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: rgba(48, 18, 61, 0.7);
}

.site-footer__copyright,
.site-footer__credit {
  margin: 0;
}

@media (min-width: 800px) {
  .site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto minmax(0, 1fr);
    align-items: center;
    text-align: left;
    gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
  }

  .site-footer__nav {
    align-items: flex-start;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .site-footer__social {
    text-align: center;
    padding-inline: clamp(1rem, 0.75rem + 1vw, 1.5rem);
    border-inline: 1px solid var(--color-border);
    justify-self: center;
  }

  .site-footer__meta {
    text-align: right;
    justify-self: end;
  }
}


/* === Homepage / GHL full-bleed overrides === */

/* Homepage / GHL full-bleed overrides */

.page-home {
  /* Page marker for homepage-specific hooks */
}

/*
  GHL custom-code rows inject ~10px side padding, which insets the entire
  homepage embed. Cancel that so section shells can go full-bleed.
*/
.c-row:has(#tgg-home-root),
.c-row:has(.page-home),
.c-row:has(.hero) {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-inline: 0 !important;
}

.c-column:has(#tgg-home-root),
.c-column:has(.page-home),
.c-column:has(.hero),
.vertical.inner:has(#tgg-home-root),
.vertical.inner:has(.page-home),
.vertical.inner:has(.hero),
.custom-code-container:has(#tgg-home-root),
.custom-code-container:has(.page-home),
.custom-code-container:has(.hero),
.c-custom-code:has(#tgg-home-root),
.c-custom-code:has(.page-home),
.c-custom-code:has(.hero) {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-inline: 0 !important;
  margin-inline: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

#tgg-home-root.page-home,
.page-home {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  box-sizing: border-box;
  overflow-x: clip;
}

@media (max-width: 760px) {
  html:has(.page-home),
  html:has(#tgg-home-root),
  html:has(.hero),
  body:has(.page-home),
  body:has(#tgg-home-root),
  body:has(.hero) {
    overflow-x: clip;
  }

  .page-home .container,
  .page-home .site-header__inner.container,
  #tgg-home-root .container,
  #tgg-home-root .site-header__inner.container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: clamp(16px, 5vw, 22px);
    box-sizing: border-box;
  }
}


/* === pages/home/home-visual.css === */

/* ==========================================================================
   Tiny Girl Gang — Homepage visual art direction
   Scoped to #tgg-home-root / .page-home. Reuses contact-page tokens + CDN art.
   Does not alter commerce structure, grids, or form behavior.
   ========================================================================== */

#tgg-home-root,
.page-home {
  --tgg-midnight: #1a0a24;
  --tgg-midnight-deep: #120616;
  --tgg-gold: #b8944a;
  --tgg-gold-soft: rgba(184, 148, 74, 0.55);
  --tgg-rose: #c46b5a;
  --font-display-home: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --paper: var(--color-cream);
  --paper-field: rgba(250, 246, 238, 0.78);
  --postal-frame-stroke: #8d6891;
  --paper-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.55 0 0 0 0 0.42 0 0 0 0 0.32 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  --home-art-celestial: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa8bbfb03687f733ec35a4f.png");
  --home-art-divider: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa9a101c73b042e1413c3a5.png");
  --home-art-botanical-l: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa8bdff9f8b31b6ab16a962.png");
  --home-art-botanical-r: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa8bdffa4d512c32b682f68.png");
  --home-art-stamp: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa9a5419f8b31b6ab2e279e.png");
  --home-art-moon: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa99cdecb032a1c8e046c36.png");
  --home-art-social: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa8bc0e03687f733ec35bc7.png");
  --home-art-moth: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa8bee27498b077e6328bcb.png");
  --home-art-sun: url("https://assets.cdn.filesafe.space/ZboKH5RLuye3gbWWewaj/media/6aa8bee249f830e49b2eda38.png");
  --home-notch: polygon(
    0 12px,
    12px 12px,
    12px 0,
    calc(100% - 12px) 0,
    calc(100% - 12px) 12px,
    100% 12px,
    100% calc(100% - 12px),
    calc(100% - 12px) calc(100% - 12px),
    calc(100% - 12px) 100%,
    12px 100%,
    12px calc(100% - 12px),
    0 calc(100% - 12px)
  );
}

#tgg-home-root,
.page-home {
  background-color: var(--color-cream);
  background-image: var(--paper-texture);
  background-size: 180px 180px;
  background-blend-mode: multiply;
  color: var(--color-ink);
}

#tgg-home-root .section,
.page-home .section {
  position: relative;
}

#tgg-home-root .section::before,
.page-home .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: var(--paper-texture);
  background-size: 220px 220px;
  mix-blend-mode: multiply;
}

#tgg-home-root .section > *,
.page-home .section > * {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Header / announcement — light cohesion
   -------------------------------------------------------------------------- */
#tgg-home-root .announcement-bar,
.page-home .announcement-bar {
  background:
    linear-gradient(180deg, rgba(26, 10, 36, 0.04), transparent 70%),
    var(--color-lavender);
  border-bottom: 1px solid rgba(78, 12, 107, 0.18);
}

#tgg-home-root .site-header,
.page-home .site-header {
  background-color: rgba(250, 246, 238, 0.94);
  background-image: var(--paper-texture);
  background-size: 180px 180px;
  background-blend-mode: multiply;
  border-bottom: 1px solid rgba(141, 104, 145, 0.28);
}

#tgg-home-root .site-header.is-on-light,
.page-home .site-header.is-on-light {
  background-color: rgba(22, 8, 29, 0.94);
  background-image: none;
  background-blend-mode: normal;
  border-bottom-color: rgba(220, 163, 237, 0.24);
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */
#tgg-home-root .section-heading,
#tgg-home-root .section-header__title,
.page-home .section-heading,
.page-home .section-header__title {
  font-family: var(--font-display-home);
  font-weight: 600;
  letter-spacing: 0.04em;
}

#tgg-home-root .section-subheading.script,
.page-home .section-subheading.script {
  color: var(--color-hero-script);
}

#tgg-home-root .section-header,
.page-home .section-header {
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

#tgg-home-root .section-header::before,
#tgg-home-root .section-header::after,
.page-home .section-header::before,
.page-home .section-header::after {
  max-width: 5.5rem;
  height: 10px;
  opacity: 0.85;
  background: var(--home-art-divider) center / contain no-repeat;
  background-repeat: no-repeat;
}

#tgg-home-root .section-header__star,
.page-home .section-header__star {
  color: var(--tgg-gold);
  opacity: 0.9;
  font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   Hero atmosphere
   -------------------------------------------------------------------------- */
#tgg-home-root .hero,
.page-home .hero {
  background-color: var(--tgg-midnight);
  isolation: isolate;
}

#tgg-home-root .hero__stage,
.page-home .hero__stage {
  position: relative;
  overflow: clip;
}

#tgg-home-root .hero__visual,
.page-home .hero__visual {
  position: relative;
  background-color: var(--tgg-midnight);
}

#tgg-home-root .hero__visual::before,
.page-home .hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      115deg,
      rgba(18, 6, 22, 0.55) 0%,
      rgba(26, 10, 36, 0.2) 42%,
      rgba(78, 12, 107, 0.18) 100%
    ),
    var(--home-art-celestial);
  background-size: cover;
  background-position: center 35%;
  filter: saturate(1.05) contrast(1.04);
}

#tgg-home-root .hero__visual::after,
.page-home .hero__visual::after {
  content: "";
  position: absolute;
  inset: auto -6% -8% auto;
  width: min(38vw, 15rem);
  height: min(38vw, 15rem);
  z-index: 1;
  pointer-events: none;
  background: var(--home-art-moon) center / contain no-repeat;
  opacity: 0.55;
  mix-blend-mode: screen;
  transform: rotate(-8deg);
}

#tgg-home-root .hero-market-scene,
.page-home .hero-market-scene {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(220, 163, 237, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(184, 148, 74, 0.12), transparent 50%),
    linear-gradient(160deg, rgba(26, 10, 36, 0.15), rgba(18, 6, 22, 0.45));
  border: none;
  min-height: inherit;
}

#tgg-home-root .hero-market-scene .placeholder__label,
.page-home .hero-market-scene .placeholder__label {
  opacity: 0;
  pointer-events: none;
}

#tgg-home-root .hero__deco,
.page-home .hero__deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

#tgg-home-root .hero__deco--botanical-l,
.page-home .hero__deco--botanical-l,
#tgg-home-root .hero__deco--botanical-r,
.page-home .hero__deco--botanical-r {
  display: none;
}

#tgg-home-root .hero__deco--star,
.page-home .hero__deco--star {
  color: var(--tgg-gold);
  font-size: clamp(0.65rem, 1.2vw, 0.9rem);
  opacity: 0.85;
  text-shadow: 0 0 12px rgba(184, 148, 74, 0.35);
}

#tgg-home-root .hero__deco--star-a,
.page-home .hero__deco--star-a {
  left: 8%;
  top: 12%;
}

#tgg-home-root .hero__deco--star-b,
.page-home .hero__deco--star-b {
  right: 14%;
  bottom: 18%;
  font-size: 0.55rem;
}

#tgg-home-root .hero-card,
.page-home .hero-card {
  filter: drop-shadow(0 18px 40px rgba(8, 2, 14, 0.45));
}

#tgg-home-root .hero-card__panel-shape,
.page-home .hero-card__panel-shape {
  fill: #f7f0e4;
}

#tgg-home-root .hero-card__paper-texture,
.page-home .hero-card__paper-texture {
  display: none;
}

#tgg-home-root .hero-card__inner,
.page-home .hero-card__inner {
  background-image: var(--paper-texture);
  background-size: 160px 160px;
  background-blend-mode: multiply;
}

#tgg-home-root .hero__title,
.page-home .hero__title {
  font-family: var(--font-display-home);
  margin-bottom: clamp(0.35rem, 1vh, 0.65rem);
}

#tgg-home-root .hero__title-logo,
.page-home .hero__title-logo {
  width: min(100%, 16.25rem);
  max-width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.05);
}

#tgg-home-root .hero__descriptor,
.page-home .hero__descriptor {
  width: min(100%, 20.5rem);
  max-width: 20.5rem;
}

#tgg-home-root .hero__eyebrow,
.page-home .hero__eyebrow {
  color: var(--tgg-gold);
  letter-spacing: 0.28em;
}

/* --------------------------------------------------------------------------
   Brand intro — found-paper collage
   -------------------------------------------------------------------------- */
#tgg-home-root .brand-intro,
.page-home .brand-intro {
  background-color: #f7efe4;
  background-image:
    var(--paper-texture),
    linear-gradient(180deg, rgba(250, 246, 238, 0.92), rgba(247, 240, 228, 0.98));
  background-size: 420px 420px, auto;
  background-blend-mode: multiply, normal;
}

/* Contact note-card grain, kept light over the post-hero cream field */
#tgg-home-root .brand-intro.section::before,
.page-home .brand-intro.section::before {
  opacity: 0.11;
  background-size: 420px 420px;
}

#tgg-home-root .category-ticker,
.page-home .category-ticker {
  background-color: var(--color-lavender);
  background-image: var(--paper-texture);
  background-size: 420px 420px;
  background-blend-mode: multiply;
}

#tgg-home-root .brand-intro__visual,
.page-home .brand-intro__visual {
  overflow: visible;
  padding-top: clamp(3rem, 11vw, 4.25rem);
}
#tgg-home-root .brand-intro__frame,
.page-home .brand-intro__frame {
  padding: 0.85rem;
  background:
    var(--paper-texture),
    linear-gradient(155deg, #fdfbf7 0%, #f3ebe0 55%, #efe2f3 100%);
  background-blend-mode: multiply, normal;
  background-size: 200px 200px, auto;
  border: 1px solid rgba(141, 104, 145, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 14px 32px rgba(48, 18, 61, 0.1);
  transform: rotate(-1deg);
}

#tgg-home-root .brand-intro__frame::before,
.page-home .brand-intro__frame::before {
  inset: -0.9rem -0.65rem 0.35rem 0.9rem;
  background:
    var(--paper-texture),
    #faf6ee;
  background-blend-mode: multiply;
  background-size: 180px 180px, auto;
  border: 1px solid rgba(48, 18, 61, 0.16);
  box-shadow: 0 10px 24px rgba(48, 18, 61, 0.08);
  transform: rotate(2.5deg);
}

#tgg-home-root .brand-intro__frame .story-editorial-image,
.page-home .brand-intro__frame .story-editorial-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transform: none;
  box-shadow: none;
  border: 1px solid rgba(78, 12, 107, 0.22);
  background: #2a1235;
}

#tgg-home-root .brand-intro__postal,
.page-home .brand-intro__postal {
  position: absolute;
  top: -3.6rem;
  right: -0.35rem;
  width: clamp(10rem, 52vw, 13.5rem);
  max-width: 62%;
  height: auto;
  z-index: 4;
  opacity: 1;
  transform: rotate(3deg);
  filter:
    brightness(0.72)
    contrast(1.28)
    drop-shadow(0 1px 0 rgba(250, 246, 238, 1))
    drop-shadow(0 12px 22px rgba(48, 18, 61, 0.3));
  pointer-events: none;
}

#tgg-home-root .brand-intro__star,
.page-home .brand-intro__star {
  color: var(--tgg-gold);
  top: -0.65rem;
  left: -0.35rem;
}

#tgg-home-root .brand-intro__heading,
.page-home .brand-intro .section-heading {
  font-family: var(--font-display-home);
}

/* --------------------------------------------------------------------------
   Category cards — collectible editorial grid
   -------------------------------------------------------------------------- */
#tgg-home-root .shop-categories.section,
.page-home .shop-categories.section {
  padding-block: clamp(1.85rem, 1.5rem + 1.2vw, 2.85rem);
}

#tgg-home-root .shop-categories .section-header,
.page-home .shop-categories .section-header {
  margin-bottom: clamp(1rem, 0.8rem + 0.7vw, 1.4rem);
}

#tgg-home-root .category-card,
.page-home .category-card {
  border: 0;
  border-radius: 0.55rem;
  background: #1a0a24;
  box-shadow: 0 12px 30px rgba(24, 8, 30, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

#tgg-home-root .category-card:focus-visible,
.page-home .category-card:focus-visible {
  outline: 2px solid #d7b4e8;
  outline-offset: 3px;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(24, 8, 30, 0.3);
}

#tgg-home-root .category-card:focus-visible .category-card__arrow,
.page-home .category-card:focus-visible .category-card__arrow {
  transform: translate(calc(50% + 2px), -50%) rotate(45deg);
}

#tgg-home-root .category-card:active,
.page-home .category-card:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(24, 8, 30, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  #tgg-home-root .category-card:hover,
  .page-home .category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(24, 8, 30, 0.3);
  }

  #tgg-home-root .category-card:hover .category-card__arrow,
  .page-home .category-card:hover .category-card__arrow {
    transform: translate(calc(50% + 2px), -50%) rotate(45deg);
  }

  #tgg-home-root .category-card:hover .category-card__image,
  .page-home .category-card:hover .category-card__image {
    transform: scale(1.04);
  }
}

#tgg-home-root .category-card__media,
.page-home .category-card__media {
  position: relative;
  outline: none;
  aspect-ratio: 4 / 5;
}

#tgg-home-root .category-card__image,
.page-home .category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  background: #2a1235;
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 800px) {
  #tgg-home-root .category-card__media,
  .page-home .category-card__media {
    aspect-ratio: 4 / 5;
  }
}

#tgg-home-root .category-card__media::after,
.page-home .category-card__media::after {
  content: none;
}

#tgg-home-root .category-card__overlay,
.page-home .category-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(14, 4, 18, 0) 0%,
    rgba(22, 8, 30, 0.38) 36%,
    rgba(12, 3, 16, 0.9) 100%
  );
}

#tgg-home-root .category-card__star,
.page-home .category-card__star {
  color: #dcc0ea;
  text-shadow: 0 0 12px rgba(220, 192, 234, 0.65);
}

#tgg-home-root .category-card__title,
.page-home .category-card__title {
  font-family: var(--font-display-home);
  color: #f7efe4;
  text-shadow: 0 1px 10px rgba(8, 2, 12, 0.35);
}

#tgg-home-root .category-card__action,
.page-home .category-card__action {
  color: #f3ebe0;
}

#tgg-home-root .shop-categories__all,
.page-home .shop-categories__all {
  color: var(--color-purple);
}

#tgg-home-root .category-card .placeholder__label,
.page-home .category-card .placeholder__label {
  opacity: 0.35;
  font-size: 0.55rem;
}

/* --------------------------------------------------------------------------
   Product grids — subtle paper framing
   -------------------------------------------------------------------------- */
#tgg-home-root .product-card,
.page-home .product-card {
  border: 1px solid rgba(78, 12, 107, 0.2);
  background: #fdfbf7;
  box-shadow: 0 6px 16px rgba(48, 18, 61, 0.06);
  overflow: hidden;
}

#tgg-home-root .product-card__media,
.page-home .product-card__media {
  outline: 1px solid rgba(141, 104, 145, 0.15);
  outline-offset: -1px;
}

#tgg-home-root .product-card__footer,
.page-home .product-card__footer {
  background:
    var(--paper-texture),
    var(--color-cream);
  background-blend-mode: multiply;
  background-size: 160px 160px, auto;
}

#tgg-home-root .product-card__badge,
.page-home .product-card__badge {
  background: rgba(250, 246, 238, 0.95);
  border-color: rgba(184, 148, 74, 0.45);
  color: var(--color-purple);
  letter-spacing: 0.1em;
}

#tgg-home-root .product-card__name,
.page-home .product-card__name {
  font-family: var(--font-display-home);
  text-transform: none;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Last Chance Rack — cream field fades to sampled plum on entrance
   -------------------------------------------------------------------------- */
#tgg-home-root .last-chance,
.page-home .last-chance {
  background-color: var(--color-cream);
  background-image: none;
  border-block: none;
}

#tgg-home-root.js-motion .last-chance,
.page-home.js-motion .last-chance {
  transition:
    background-color 1.15s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 1.15s cubic-bezier(0.4, 0, 0.2, 1);
}

#tgg-home-root .last-chance.is-plum,
.page-home .last-chance.is-plum {
  background-color: #3e213d;
}

#tgg-home-root .last-chance.section::before,
.page-home .last-chance.section::before {
  transition: opacity 1.15s cubic-bezier(0.4, 0, 0.2, 1);
}

#tgg-home-root .last-chance.is-plum.section::before,
.page-home .last-chance.is-plum.section::before {
  opacity: 0;
}

#tgg-home-root .last-chance .section-eyebrow,
.page-home .last-chance .section-eyebrow {
  color: var(--color-orange);
}

#tgg-home-root .last-chance .section-header__title,
.page-home .last-chance .section-header__title,
#tgg-home-root .last-chance .section-header__star,
.page-home .last-chance .section-header__star,
#tgg-home-root .last-chance .last-chance__support,
.page-home .last-chance .last-chance__support,
#tgg-home-root .last-chance .last-chance__cta,
.page-home .last-chance .last-chance__cta {
  transition: color 0.95s cubic-bezier(0.4, 0, 0.2, 1);
}

#tgg-home-root .last-chance.is-plum .section-header__title,
.page-home .last-chance.is-plum .section-header__title {
  color: #f7efe4;
}

#tgg-home-root .last-chance.is-plum .section-header__star,
.page-home .last-chance.is-plum .section-header__star {
  color: #e8d4c8;
}

#tgg-home-root .last-chance.is-plum .last-chance__support,
.page-home .last-chance.is-plum .last-chance__support {
  color: #f3ebe0;
}

#tgg-home-root .last-chance.is-plum .last-chance__cta:hover,
.page-home .last-chance.is-plum .last-chance__cta:hover {
  color: #f7efe4;
}

@media (prefers-reduced-motion: reduce) {
  #tgg-home-root.js-motion .last-chance,
  .page-home.js-motion .last-chance,
  #tgg-home-root .last-chance.section::before,
  .page-home .last-chance.section::before,
  #tgg-home-root .last-chance .section-header__title,
  .page-home .last-chance .section-header__title,
  #tgg-home-root .last-chance .section-header__star,
  .page-home .last-chance .section-header__star,
  #tgg-home-root .last-chance .last-chance__support,
  .page-home .last-chance .last-chance__support,
  #tgg-home-root .last-chance .last-chance__cta,
  .page-home .last-chance .last-chance__cta {
    transition: none;
  }
}

#tgg-home-root .sale-card,
.page-home .sale-card {
  border: 1px solid rgba(78, 12, 107, 0.28);
  box-shadow: 0 8px 22px rgba(48, 18, 61, 0.08);
}

#tgg-home-root .sale-card__badge,
.page-home .sale-card__badge {
  background: rgba(241, 106, 58, 0.92);
  color: #fffaf1;
  border-color: transparent;
}

#tgg-home-root .sale-card__price--sale,
.page-home .sale-card__price--sale {
  color: var(--color-orange);
}

/* --------------------------------------------------------------------------
   Membership offers — field-guide cards
   -------------------------------------------------------------------------- */
#tgg-home-root .offer-card,
.page-home .offer-card {
  border: 1px solid rgba(141, 104, 145, 0.4);
  background:
    var(--paper-texture),
    #fdfbf7;
  background-blend-mode: multiply;
  background-size: 200px 200px, auto;
  box-shadow: 0 12px 28px rgba(48, 18, 61, 0.1);
}

#tgg-home-root .offer-card:nth-child(1),
.page-home .offer-card:nth-child(1) {
  transform: rotate(-0.4deg);
}

#tgg-home-root .offer-card:nth-child(2),
.page-home .offer-card:nth-child(2) {
  transform: rotate(0.5deg);
}

#tgg-home-root .offer-card__eyebrow,
.page-home .offer-card__eyebrow {
  color: var(--tgg-gold);
}

#tgg-home-root .offer-card__title,
.page-home .offer-card__title {
  font-family: var(--font-display-home);
}

#tgg-home-root .offer-card__media,
.page-home .offer-card__media {
  outline: 1px solid rgba(78, 12, 107, 0.15);
  outline-offset: -1px;
}

#tgg-home-root .offer-ritual-kit,
.page-home .offer-ritual-kit {
  background:
    radial-gradient(circle at 70% 20%, rgba(184, 148, 74, 0.25), transparent 40%),
    linear-gradient(160deg, #2a1235 0%, #755080 45%, #e8c4f2 100%);
}

#tgg-home-root .offer-tgg-closet,
.page-home .offer-tgg-closet {
  background:
    radial-gradient(circle at 25% 80%, rgba(241, 106, 58, 0.2), transparent 45%),
    linear-gradient(160deg, #1a0a24 0%, #4e0c6b 50%, #f3ebe0 100%);
}

#tgg-home-root .offer-card__seal,
.page-home .offer-card__seal {
  background:
    var(--paper-texture),
    var(--color-lavender);
  background-blend-mode: multiply;
  border-color: var(--tgg-gold);
  color: var(--color-purple);
  box-shadow: 0 4px 12px rgba(48, 18, 61, 0.18);
}

#tgg-home-root .offer-card__media::before,
.page-home .offer-card__media::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  width: 2.75rem;
  height: 2.75rem;
  z-index: 2;
  pointer-events: none;
  background: var(--home-art-sun) center / contain no-repeat;
  opacity: 0.55;
  mix-blend-mode: screen;
}

#tgg-home-root .offer-card:nth-child(2) .offer-card__media::before,
.page-home .offer-card:nth-child(2) .offer-card__media::before {
  background-image: var(--home-art-moth);
  opacity: 0.5;
  width: 3.25rem;
  height: 3.25rem;
}

/* --------------------------------------------------------------------------
   Dark manifesto band
   -------------------------------------------------------------------------- */
#tgg-home-root .editorial-statement,
.page-home .editorial-statement {
  background-color: var(--tgg-midnight-deep);
}

#tgg-home-root .editorial-statement__visual .editorial-brand-collage,
.page-home .editorial-statement__visual .editorial-brand-collage {
  background:
    linear-gradient(180deg, rgba(18, 6, 22, 0.35), rgba(18, 6, 22, 0.72)),
    var(--home-art-social);
  background-size: cover;
  background-position: center;
  border: none;
  min-height: inherit;
}

#tgg-home-root .editorial-statement__visual .placeholder__label,
.page-home .editorial-statement__visual .placeholder__label {
  opacity: 0;
}

#tgg-home-root .editorial-statement__overlay,
.page-home .editorial-statement__overlay {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(220, 163, 237, 0.18), transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(184, 148, 74, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(18, 6, 22, 0.25), rgba(18, 6, 22, 0.62));
}

#tgg-home-root .editorial-statement__quote,
.page-home .editorial-statement__quote {
  font-family: var(--font-display-home);
  color: #faf6ee;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

/* Badge is no longer part of the quote flex row.
   Final sticker placement lives at the end of this file. */

/* --------------------------------------------------------------------------
   Markets — polaroid + pinned notice
   -------------------------------------------------------------------------- */
#tgg-home-root .meet-irl,
.page-home .meet-irl {
  background:
    linear-gradient(180deg, rgba(232, 196, 242, 0.12), transparent 35%),
    var(--color-cream);
}

#tgg-home-root .meet-irl__photo,
.page-home .meet-irl__photo {
  position: relative;
  padding: 0.75rem 0.75rem 1.6rem;
  background:
    var(--paper-texture),
    #fdfbf7;
  background-blend-mode: multiply;
  background-size: 180px 180px, auto;
  border: 1px solid rgba(48, 18, 61, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 16px 34px rgba(48, 18, 61, 0.12);
  transform: rotate(-1.25deg);
}

#tgg-home-root .meet-irl__photo::after,
.page-home .meet-irl__photo::after {
  content: "";
  position: absolute;
  top: -0.55rem;
  left: 50%;
  width: 3.5rem;
  height: 1.1rem;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(250, 246, 238, 0.72);
  border: 1px solid rgba(141, 104, 145, 0.35);
  box-shadow: 0 2px 6px rgba(48, 18, 61, 0.12);
  pointer-events: none;
}

#tgg-home-root .meet-irl__photo .market-booth-image,
.page-home .meet-irl__photo .market-booth-image {
  border: 1px solid rgba(78, 12, 107, 0.2);
  background:
    radial-gradient(circle at 70% 20%, rgba(220, 163, 237, 0.35), transparent 40%),
    linear-gradient(155deg, #30123d 0%, #755080 45%, #faf6ee 100%);
}

#tgg-home-root .meet-irl__photo .placeholder__label,
.page-home .meet-irl__photo .placeholder__label {
  opacity: 0;
}

#tgg-home-root .market-card,
.page-home .market-card {
  position: relative;
  overflow: visible;
  padding-top: clamp(1.65rem, 1.35rem + 1vw, 2.15rem);
  background:
    var(--paper-texture),
    #f7efe6;
  background-blend-mode: multiply;
  background-size: 180px 180px, auto;
  border: 1px solid rgba(141, 104, 145, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 12px 26px rgba(48, 18, 61, 0.1);
  transform: rotate(0.8deg);
}

#tgg-home-root .market-card::before,
.page-home .market-card::before {
  content: "";
  position: absolute;
  top: -1.65rem;
  right: 0.35rem;
  z-index: 2;
  width: clamp(6.75rem, 32vw, 8rem);
  height: clamp(6.75rem, 32vw, 8rem);
  background: var(--home-art-stamp) center / contain no-repeat;
  opacity: 1;
  pointer-events: none;
  transform: rotate(12deg);
  filter:
    contrast(1.12)
    drop-shadow(0 1px 0 rgba(250, 246, 238, 0.95))
    drop-shadow(0 12px 18px rgba(48, 18, 61, 0.28));
}

#tgg-home-root .market-card__title,
.page-home .market-card__title {
  font-family: var(--font-display-home);
  border-bottom-color: rgba(184, 148, 74, 0.45);
  padding-right: clamp(5.5rem, 28vw, 7.25rem);
}

/* --------------------------------------------------------------------------
   Newsletter — align with contact visual language
   -------------------------------------------------------------------------- */
#tgg-home-root .join-gang,
.page-home .join-gang {
  position: relative;
  background-color: var(--color-lavender);
  background-image:
    var(--paper-texture),
    radial-gradient(ellipse at 12% 18%, rgba(255, 255, 255, 0.2), transparent 42%),
    radial-gradient(ellipse 55% 60% at 92% 88%, rgba(78, 12, 107, 0.28), transparent 68%),
    radial-gradient(ellipse at 78% 72%, rgba(255, 248, 236, 0.18), transparent 45%),
    linear-gradient(160deg, #e4b6ef 0%, #dca3ed 50%, #c88de0 100%);
  background-blend-mode: multiply, normal, normal, normal, normal;
  background-size: 200px 200px, auto, auto, auto, auto;
  border-top: 1px solid rgba(78, 12, 107, 0.18);
  overflow: hidden;
  padding-block: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
}

#tgg-home-root .join-gang__title,
.page-home .join-gang__title {
  font-family: var(--font-display-home);
}

@media (max-width: 799px) {
  #tgg-home-root .join-gang__copy,
  .page-home .join-gang__copy {
    padding-right: 0;
  }
}

#tgg-home-root .join-gang__star,
.page-home .join-gang__star {
  color: var(--tgg-gold);
}

#tgg-home-root .join-gang__form,
.page-home .join-gang__form {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background:
    var(--paper-texture),
    rgba(253, 251, 247, 0.88);
  background-blend-mode: multiply;
  background-size: 180px 180px, auto;
  border: 1px solid rgba(141, 104, 145, 0.4);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(48, 18, 61, 0.1);
}

#tgg-home-root .join-gang__deco,
.page-home .join-gang__deco {
  display: none;
}

#tgg-home-root .join-gang__moon,
.page-home .join-gang__moon {
  display: none !important;
}

/* Mobile: moon removed from newsletter at all breakpoints */
@media (max-width: 799px) {
  #tgg-home-root .join-gang__moon,
  .page-home .join-gang__moon {
    display: none !important;
  }
}

@media (min-width: 800px) {
  #tgg-home-root .join-gang__moon,
  .page-home .join-gang__moon {
    display: none !important;
  }
}

#tgg-home-root .join-gang__grid,
.page-home .join-gang__grid {
  position: relative;
  z-index: 1;
}

#tgg-home-root .join-gang .form-field__input,
.page-home .join-gang .form-field__input {
  font-size: 16px;
  background: #fffaf1;
  border-color: rgba(78, 12, 107, 0.28);
}

#tgg-home-root .join-gang__status[data-state="success"],
#tgg-home-root .join-gang__status[data-state="pending"],
.page-home .join-gang__status[data-state="success"],
.page-home .join-gang__status[data-state="pending"] {
  color: var(--color-purple);
}

#tgg-home-root .join-gang__status[data-state="error"],
.page-home .join-gang__status[data-state="error"] {
  color: var(--color-orange);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
#tgg-home-root .site-footer,
.page-home .site-footer {
  background:
    var(--paper-texture),
    #f3ebe0;
  background-blend-mode: multiply;
  background-size: 180px 180px, auto;
  border-top: 1px solid rgba(141, 104, 145, 0.35);
}

/* --------------------------------------------------------------------------
   Restrained motion
   -------------------------------------------------------------------------- */
@keyframes tgg-home-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes tgg-home-shimmer {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes tgg-join-moon-glow {
  0%,
  100% {
    opacity: 0.52;
  }
  50% {
    opacity: 0.72;
  }
}

@keyframes tgg-home-enter-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

#tgg-home-root.js-motion [data-home-reveal],
.page-home.js-motion [data-home-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

#tgg-home-root.js-motion [data-home-reveal].is-inview,
.page-home.js-motion [data-home-reveal].is-inview {
  opacity: 1;
  transform: none;
}

#tgg-home-root .hero__deco--botanical-l,
#tgg-home-root .hero__deco--botanical-r,
.page-home .hero__deco--botanical-l,
.page-home .hero__deco--botanical-r {
  animation: tgg-home-float 7.5s ease-in-out infinite;
}

#tgg-home-root .hero__deco--botanical-r,
.page-home .hero__deco--botanical-r {
  animation-duration: 9s;
  animation-delay: -2s;
}

#tgg-home-root .hero__deco--star,
.page-home .hero__deco--star {
  animation: tgg-home-shimmer 4.5s ease-in-out infinite;
}

#tgg-home-root .category-card,
#tgg-home-root .product-card,
#tgg-home-root .offer-card,
.page-home .category-card,
.page-home .product-card,
.page-home .offer-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  #tgg-home-root .product-card:hover,
  .page-home .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(48, 18, 61, 0.1);
  }

  #tgg-home-root .offer-card:hover,
  .page-home .offer-card:hover {
    box-shadow: 0 16px 32px rgba(48, 18, 61, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  #tgg-home-root .hero__deco--botanical-l,
  #tgg-home-root .hero__deco--botanical-r,
  #tgg-home-root .hero__deco--star,
  #tgg-home-root .join-gang__moon,
  .page-home .hero__deco--botanical-l,
  .page-home .hero__deco--botanical-r,
  .page-home .hero__deco--star,
  .page-home .join-gang__moon {
    animation: none;
  }

  #tgg-home-root.js-motion [data-home-reveal],
  .page-home.js-motion [data-home-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #tgg-home-root .category-card:hover,
  #tgg-home-root .product-card:hover,
  #tgg-home-root .offer-card:hover,
  .page-home .category-card:hover,
  .page-home .product-card:hover,
  .page-home .offer-card:hover {
    transform: none;
  }

  #tgg-home-root .category-card:hover .category-card__image,
  .page-home .category-card:hover .category-card__image {
    transform: none;
  }

  #tgg-home-root .category-card:hover .category-card__arrow,
  #tgg-home-root .category-card:focus-visible .category-card__arrow,
  .page-home .category-card:hover .category-card__arrow,
  .page-home .category-card:focus-visible .category-card__arrow {
    transform: translate(50%, -50%) rotate(45deg);
  }
}

/* --------------------------------------------------------------------------
   Hero — atmospheric full-viewport system (all breakpoints).
   -------------------------------------------------------------------------- */
#tgg-home-root .hero,
.page-home .hero {
  --hero-header-offset: var(--header-height-mobile);
}

@media (min-width: 800px) {
  #tgg-home-root .hero,
  .page-home .hero {
    --hero-header-offset: var(--header-height);
  }
}

/* Announcement: single editorial line, solid, below the mobile drawer */
#tgg-home-root .announcement-bar,
.page-home .announcement-bar {
  min-height: 1.75rem;
  padding: 0.35rem 0.75rem;
  position: relative;
  z-index: 1;
  background: rgba(201, 164, 204, 0.88);
  background-image: none;
  border-bottom: none;
}

#tgg-home-root .announcement-bar__text,
.page-home .announcement-bar__text {
  display: block;
  padding-inline: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: clamp(0.625rem, 2.6vw, 0.75rem);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

#tgg-home-root .announcement-bar__mobile,
.page-home .announcement-bar__mobile {
  display: block;
}

#tgg-home-root .announcement-bar__full,
.page-home .announcement-bar__full {
  display: none;
}

#tgg-home-root .hero,
.page-home .hero {
  --hero-focus: 0;
  --card-paper-alpha: 0.9;
  --card-warmth: 0%;
  --card-border-outer: 0.62;
  --card-border-inner: 0.38;
  --hero-aura-opacity: 0.68;
  --card-border-alpha: 0.68;
  --card-shift: 0;
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: visible;
  background:
    linear-gradient(
      180deg,
      #16081d 0%,
      #1a0a24 78%,
      #24102f 100%
    );
  padding-bottom: 0;
  margin-top: calc(var(--hero-header-offset, var(--header-height-mobile)) * -1);
  border-bottom: none;
}

#tgg-home-root .hero::before,
.page-home .hero::before,
#tgg-home-root .hero::after,
.page-home .hero::after {
  content: none;
  display: none;
  animation: none;
}

#tgg-home-root .hero__stage,
.page-home .hero__stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: var(--hero-header-offset, var(--header-height-mobile)) 0 0;
  overflow: visible;
  isolation: isolate;
  border-bottom: none;
}

#tgg-home-root .hero__stage::before,
.page-home .hero__stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 50%;
  width: min(115vw, 34rem);
  aspect-ratio: 1 / 1.2;
  height: auto;
  translate: -50% -50%;
  background:
    radial-gradient(
      ellipse at center,
      rgba(220, 163, 237, 0.2) 0%,
      rgba(111, 42, 121, 0.12) 38%,
      rgba(25, 7, 31, 0) 72%
    );
  filter: none;
  opacity: 0.78;
  pointer-events: none;
  animation: none;
}

#tgg-home-root .hero__stage::after,
.page-home .hero__stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(28rem, 100vw, 42rem);
  display: none;
  pointer-events: none;
  background-color: #f3ebe0;
  background-image:
    var(--paper-texture),
    linear-gradient(
      180deg,
      rgba(42, 18, 54, 0.42) 0%,
      rgba(72, 36, 82, 0.28) 24%,
      rgba(148, 102, 128, 0.14) 48%,
      rgba(214, 190, 178, 0.06) 70%,
      rgba(243, 235, 224, 0) 88%,
      rgba(243, 235, 224, 0) 100%
    );
  background-size: 180px 180px, 100% 100%;
  background-repeat: repeat, no-repeat;
  background-position: 0 0, 0 0;
  background-attachment: fixed, scroll;
  background-blend-mode: multiply, normal;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 28%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.82) 72%,
    #000 86%,
    #000 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 28%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.82) 72%,
    #000 86%,
    #000 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

#tgg-home-root .hero__visual,
.page-home .hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  isolation: isolate;
  background-color: #16081d;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.88) 58%,
    rgba(0, 0, 0, 0.52) 72%,
    rgba(0, 0, 0, 0.16) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.88) 58%,
    rgba(0, 0, 0, 0.52) 72%,
    rgba(0, 0, 0, 0.16) 86%,
    transparent 100%
  );
}

#tgg-home-root .hero__visual::before,
.page-home .hero__visual::before {
  background-image:
    radial-gradient(
      ellipse at 50% 36%,
      rgba(124, 73, 137, 0.14) 0%,
      rgba(48, 19, 55, 0.14) 50%,
      rgba(14, 5, 20, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 4, 18, 0.08) 0%,
      rgba(21, 7, 28, 0.06) 48%,
      rgba(31, 11, 38, 0) 100%
    ),
    linear-gradient(
      115deg,
      rgba(18, 6, 22, 0.42) 0%,
      rgba(26, 10, 36, 0.14) 44%,
      rgba(43, 16, 47, 0.1) 100%
    ),
    var(--home-art-celestial);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, 68% center;
  filter: none;
  transform-origin: 68% center;
}

#tgg-home-root .hero-market-scene,
.page-home .hero-market-scene,
#tgg-home-root .hero__visual .hero-market-scene,
.page-home .hero__visual .hero-market-scene {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  background: transparent;
}

#tgg-home-root .hero-market-scene::after,
.page-home .hero-market-scene::after {
  content: none;
  display: none;
}

#tgg-home-root .hero__visual::after,
.page-home .hero__visual::after {
  width: clamp(5.25rem, 24vw, 7rem);
  height: clamp(5.25rem, 24vw, 7rem);
  right: -4%;
  top: 10%;
  bottom: auto;
  opacity: 0.42;
  z-index: 2;
}

#tgg-home-root .hero__deco--botanical-l,
.page-home .hero__deco--botanical-l {
  left: -0.85rem;
  bottom: 6%;
  width: clamp(4.75rem, 24vw, 6.25rem);
  opacity: 0.62;
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(8, 2, 14, 0.45));
}

#tgg-home-root .hero__deco--botanical-r,
.page-home .hero__deco--botanical-r {
  right: -1.1rem;
  top: 14%;
  width: clamp(3.25rem, 16vw, 4.5rem);
  opacity: 0.4;
  z-index: 2;
}

#tgg-home-root .hero__deco--star-a,
.page-home .hero__deco--star-a {
  left: 12%;
  top: 16%;
  z-index: 2;
  opacity: 0.75;
}

#tgg-home-root .hero__deco--star-b,
.page-home .hero__deco--star-b {
  right: 14%;
  bottom: 18%;
  z-index: 2;
  opacity: 0.7;
}

#tgg-home-root .hero-card,
.page-home .hero-card {
  --hero-card-paper: #2a1238;
  --hero-card-paper-opacity: 0.88;
  --hero-card-scale: 1;
  --hero-card-shadow-alpha: 0.55;
  --card-border-color: rgba(220, 186, 236, 0.72);
  position: relative;
  z-index: 4;
  aspect-ratio: 400 / 555;
  height: auto;
  isolation: isolate;
  overflow: visible;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: scale(var(--hero-card-scale, 1));
  transform-origin: center center;
  filter:
    drop-shadow(0 28px 48px rgba(8, 2, 14, 0.62))
    drop-shadow(0 10px 20px rgba(8, 2, 14, 0.42))
    drop-shadow(0 0 22px rgba(156, 92, 178, 0.18));
  transition: transform 420ms ease, filter 420ms ease;
}

@media (max-width: 799px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: min(94vw, 26.875rem);
    max-width: min(94vw, 26.875rem);
    margin: clamp(1.35rem, 4.5vw, 2rem) auto clamp(1.1rem, 3.5vw, 1.75rem);
  }
}

#tgg-home-root .hero-card.is-focused,
.page-home .hero-card.is-focused {
  --hero-card-paper-opacity: 0.92;
}

#tgg-home-root .hero-card::before,
.page-home .hero-card::before,
#tgg-home-root .hero-card::after,
.page-home .hero-card::after,
#tgg-home-root .hero-card__inner::before,
.page-home .hero-card__inner::before,
#tgg-home-root .hero-card__inner::after,
.page-home .hero-card__inner::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

#tgg-home-root .hero-card,
.page-home .hero-card,
#tgg-home-root .hero-card__inner,
.page-home .hero-card__inner,
#tgg-home-root .hero-card::before,
.page-home .hero-card::before,
#tgg-home-root .hero-card::after,
.page-home .hero-card::after,
#tgg-home-root .hero-card__inner::before,
.page-home .hero-card__inner::before,
#tgg-home-root .hero-card__inner::after,
.page-home .hero-card__inner::after {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

#tgg-home-root .hero-card__frame,
.page-home .hero-card__frame,
#tgg-home-root .hero-card__paper,
.page-home .hero-card__paper,
#tgg-home-root .hero-card__paper-texture,
.page-home .hero-card__paper-texture,
#tgg-home-root .hero-card__panel-shape,
.page-home .hero-card__panel-shape,
#tgg-home-root .hero-card__frame-line,
.page-home .hero-card__frame-line {
  shape-rendering: geometricPrecision;
}

#tgg-home-root .hero-card .hero-card__paper,
.page-home .hero-card .hero-card__paper,
#tgg-home-root .hero-card .hero-card__panel-shape,
.page-home .hero-card .hero-card__panel-shape {
  fill: var(--hero-card-paper, #2a1238);
  fill-opacity: var(--hero-card-paper-opacity);
  stroke: none;
  filter: none;
  transition: fill-opacity 420ms ease;
}

#tgg-home-root .hero-card__paper-texture,
.page-home .hero-card__paper-texture {
  display: block;
  fill: rgba(236, 214, 248, 0.55);
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

#tgg-home-root .hero-card__frame-line,
.page-home .hero-card__frame-line {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
  shape-rendering: geometricPrecision;
  vector-effect: non-scaling-stroke;
}

#tgg-home-root .hero-card__frame-outer,
.page-home .hero-card__frame-outer {
  stroke: rgba(232, 198, 244, 0.78);
  stroke-width: 1.15;
  opacity: 1;
}

#tgg-home-root .hero-card__frame-inner,
.page-home .hero-card__frame-inner {
  stroke: rgba(184, 148, 74, 0.42);
  stroke-width: 0.7;
  opacity: 1;
}

#tgg-home-root .hero-card__inner,
.page-home .hero-card__inner {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  align-items: stretch;
  padding:
    clamp(1.55rem, 6.5%, 2.1rem)
    clamp(1.45rem, 8%, 2.05rem)
    clamp(1.6rem, 6.8%, 2.15rem);
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
  overflow: hidden;
}

#tgg-home-root .hero-card__starburst,
.page-home .hero-card__starburst {
  top: clamp(1.9rem, 7%, 2.25rem);
  width: 0.7rem;
  height: 0.7rem;
}

#tgg-home-root .hero-card__starburst--tl,
.page-home .hero-card__starburst--tl {
  left: clamp(1.9rem, 10%, 2.4rem);
}

#tgg-home-root .hero-card__starburst--tr,
.page-home .hero-card__starburst--tr {
  right: clamp(1.9rem, 10%, 2.4rem);
}

#tgg-home-root .hero-card__brand,
.page-home .hero-card__brand {
  align-self: start;
  width: 100%;
}

#tgg-home-root .hero__title,
.page-home .hero__title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

#tgg-home-root .hero__title-logo,
.page-home .hero__title-logo {
  width: min(100%, 24rem);
  max-width: 100%;
  height: auto;
  mix-blend-mode: normal;
  opacity: 1;
  filter:
    drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 18px rgba(220, 163, 237, 0.22))
    contrast(1.08)
    brightness(1.08);
}

#tgg-home-root .hero__eyebrow,
.page-home .hero__eyebrow {
  margin-bottom: clamp(0.65rem, 2.5vw, 0.9rem);
  letter-spacing: 0.18em;
}

#tgg-home-root .hero-card__message,
.page-home .hero-card__message {
  align-self: center;
  justify-self: center;
  margin: 0;
  gap: clamp(0.55rem, 2vw, 0.8rem);
}

#tgg-home-root .hero__script,
.page-home .hero__script {
  margin-bottom: 0;
  white-space: nowrap;
}

#tgg-home-root .hero__descriptor,
.page-home .hero__descriptor {
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.72rem, 3.1vw, 0.92rem);
  letter-spacing: 0.055em;
  white-space: nowrap;
}

#tgg-home-root .hero__actions,
.page-home .hero__actions {
  align-self: end;
  justify-self: center;
  width: 100%;
  margin: 0;
  gap: clamp(0.65rem, 2.5vw, 0.9rem);
}

#tgg-home-root .hero-card__inner .btn--hero,
.page-home .hero-card__inner .btn--hero {
  width: min(92%, 19rem);
  min-height: 2.85rem;
  justify-content: center;
}

#tgg-home-root .hero-card__brand,
.page-home .hero-card__brand,
#tgg-home-root .hero-card__message,
.page-home .hero-card__message,
#tgg-home-root .hero__actions,
.page-home .hero__actions,
#tgg-home-root .hero-card__inner .btn--hero,
.page-home .hero-card__inner .btn--hero,
#tgg-home-root .hero-card__inner .btn--hero-secondary,
.page-home .hero-card__inner .btn--hero-secondary {
  opacity: 1;
}

#tgg-home-root .category-ticker,
.page-home .category-ticker {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

#tgg-home-root .brand-intro,
.page-home .brand-intro,
#tgg-home-root .hero ~ .brand-intro,
.page-home .hero ~ .brand-intro,
#tgg-home-root .category-ticker + .brand-intro,
.page-home .category-ticker + .brand-intro {
  margin-top: -3.5rem;
  padding-top: calc(1.35rem + clamp(0.25rem, 1.2vw, 0.55rem));
  padding-bottom: clamp(2.25rem, 6vw, 3.25rem);
  background-blend-mode: normal;
  border-top: none;
  box-shadow: none;
}

#tgg-home-root .brand-intro:not(.is-light),
.page-home .brand-intro:not(.is-light),
#tgg-home-root .hero ~ .brand-intro:not(.is-light),
.page-home .hero ~ .brand-intro:not(.is-light),
#tgg-home-root .category-ticker + .brand-intro:not(.is-light),
.page-home .category-ticker + .brand-intro:not(.is-light) {
  background-color: #3e213d;
  background-image: none;
}

#tgg-home-root .brand-intro.section::before,
.page-home .brand-intro.section::before {
  content: "";
  opacity: 0.16;
  background-color: transparent;
  background-image: var(--paper-texture);
  background-size: 180px 180px;
  background-repeat: repeat;
  background-position: 0 0;
  background-attachment: scroll;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  -webkit-mask-image: none;
  mask-image: none;
}

#tgg-home-root .brand-intro__postal,
.page-home .brand-intro__postal {
  top: -3.75rem;
}

#tgg-home-root .brand-intro__visual,
.page-home .brand-intro__visual {
  padding-top: 1.15rem;
}

#tgg-home-root .brand-intro__frame::before,
.page-home .brand-intro__frame::before {
  inset: -0.9rem -0.65rem 1.15rem 0.9rem;
}

#tgg-home-root .brand-intro__frame .story-editorial-image,
.page-home .brand-intro__frame .story-editorial-image {
  -webkit-mask-image: none;
  mask-image: none;
  mix-blend-mode: normal;
}

#tgg-home-root .brand-intro__copy,
.page-home .brand-intro__copy {
  padding-top: 0.5rem;
}

#tgg-home-root .brand-intro .section-heading,
.page-home .brand-intro .section-heading {
  color: #f7efe4;
}

#tgg-home-root .brand-intro .section-subheading,
.page-home .brand-intro .section-subheading {
  color: #e8d4c8;
}

#tgg-home-root .brand-intro .brand-intro__body,
.page-home .brand-intro .brand-intro__body {
  color: #f3ebe0;
}

#tgg-home-root .brand-intro .btn--outline,
.page-home .brand-intro .btn--outline {
  color: #f7efe4;
  border-color: rgba(247, 239, 228, 0.55);
}

#tgg-home-root .brand-intro .btn--outline:hover,
.page-home .brand-intro .btn--outline:hover {
  background-color: rgba(247, 239, 228, 0.12);
  border-color: #f7efe4;
  color: #f7efe4;
}

#tgg-home-root .brand-intro__star,
.page-home .brand-intro__star {
  color: #e8d4c8;
}

/* Match Last Chance Rack color-shift timing: soft field + type fade */
#tgg-home-root.js-motion .brand-intro,
.page-home.js-motion .brand-intro {
  transition:
    background-color 1.15s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 1.15s cubic-bezier(0.4, 0, 0.2, 1);
}

#tgg-home-root .brand-intro.section::before,
.page-home .brand-intro.section::before {
  transition: opacity 1.15s cubic-bezier(0.4, 0, 0.2, 1);
}

#tgg-home-root .brand-intro .section-heading,
.page-home .brand-intro .section-heading,
#tgg-home-root .brand-intro .section-subheading,
.page-home .brand-intro .section-subheading,
#tgg-home-root .brand-intro .brand-intro__body,
.page-home .brand-intro .brand-intro__body,
#tgg-home-root .brand-intro .btn--outline,
.page-home .brand-intro .btn--outline,
#tgg-home-root .brand-intro__star,
.page-home .brand-intro__star {
  transition:
    color 0.95s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.95s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.95s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light theme arrives only once Shop by Category has scrolled into view. */
#tgg-home-root .brand-intro.is-light,
.page-home .brand-intro.is-light {
  background-color: #f7efe4;
  background-image: none;
}

#tgg-home-root .brand-intro.is-light.section::before,
.page-home .brand-intro.is-light.section::before {
  opacity: 0.11;
  mix-blend-mode: multiply;
}

#tgg-home-root .brand-intro.is-light .section-heading,
.page-home .brand-intro.is-light .section-heading {
  color: var(--color-purple);
}

#tgg-home-root .brand-intro.is-light .section-subheading,
.page-home .brand-intro.is-light .section-subheading {
  color: var(--color-orange);
}

#tgg-home-root .brand-intro.is-light .brand-intro__body,
.page-home .brand-intro.is-light .brand-intro__body {
  color: var(--color-ink);
}

#tgg-home-root .brand-intro.is-light .btn--outline,
.page-home .brand-intro.is-light .btn--outline {
  color: var(--color-purple);
  border-color: var(--color-purple);
}

#tgg-home-root .brand-intro.is-light .btn--outline:hover,
.page-home .brand-intro.is-light .btn--outline:hover {
  background-color: rgba(220, 163, 237, 0.2);
  border-color: var(--color-purple);
  color: var(--color-purple);
}

#tgg-home-root .brand-intro.is-light .brand-intro__star,
.page-home .brand-intro.is-light .brand-intro__star {
  color: var(--tgg-gold);
}

@media (prefers-reduced-motion: reduce) {
  #tgg-home-root.js-motion .brand-intro,
  .page-home.js-motion .brand-intro,
  #tgg-home-root .brand-intro.section::before,
  .page-home .brand-intro.section::before,
  #tgg-home-root .brand-intro .section-heading,
  .page-home .brand-intro .section-heading,
  #tgg-home-root .brand-intro .section-subheading,
  .page-home .brand-intro .section-subheading,
  #tgg-home-root .brand-intro .brand-intro__body,
  .page-home .brand-intro .brand-intro__body,
  #tgg-home-root .brand-intro .btn--outline,
  .page-home .brand-intro .btn--outline,
  #tgg-home-root .brand-intro__star,
  .page-home .brand-intro__star {
    transition: none;
  }
}

#tgg-home-root .shop-categories.section,
.page-home .shop-categories.section {
  margin-top: 0;
  padding-top: clamp(2.25rem, 6vw, 3rem);
  background-color: var(--color-cream);
  background-image: none;
  border-top: none;
  box-shadow: none;
}

#tgg-home-root .site-header,
.page-home .site-header {
  background-color: transparent;
  background-image: none;
  background-blend-mode: normal;
  border-bottom: none;
  box-shadow: none;
  color: #f7efe4;
}

/* Over dark hero/sections: stay translucent so the celestial scene shows through */
#tgg-home-root .site-header.is-on-dark,
.page-home .site-header.is-on-dark {
  background-color: transparent;
  background-image: none;
  border-bottom: none;
  box-shadow: none;
}

/* Over light sections: match desktop opaque dark chrome */
#tgg-home-root .site-header.is-on-light,
.page-home .site-header.is-on-light {
  background-color: rgba(22, 8, 29, 0.94);
  background-image: none;
  background-blend-mode: normal;
  border-bottom: 1px solid rgba(220, 163, 237, 0.24);
  box-shadow: 0 10px 28px rgba(8, 2, 14, 0.28);
  color: #f7efe4;
}

#tgg-home-root .site-header.is-hero-logo-suppressed:not(.is-on-light),
.page-home .site-header.is-hero-logo-suppressed:not(.is-on-light) {
  background-color: transparent;
  background-image:
    linear-gradient(
      180deg,
      rgba(14, 5, 20, 0.14) 0%,
      rgba(14, 5, 20, 0) 100%
    );
}

#tgg-home-root .site-header:not(.is-hero-logo-suppressed):not(.is-on-light),
.page-home .site-header:not(.is-hero-logo-suppressed):not(.is-on-light) {
  background-color: transparent;
  background-image: linear-gradient(
    180deg,
    rgba(14, 5, 20, 0.22) 0%,
    rgba(14, 5, 20, 0) 100%
  );
  border-bottom: none;
}

#tgg-home-root .site-header__inner .icon-btn,
.page-home .site-header__inner .icon-btn,
#tgg-home-root .site-header .logo-primary,
.page-home .site-header .logo-primary,
#tgg-home-root .site-header .logo-primary .logo__wordmark,
.page-home .site-header .logo-primary .logo__wordmark,
#tgg-home-root .site-header .logo-primary .logo__location,
.page-home .site-header .logo-primary .logo__location {
  color: #f7efe4;
}

#tgg-home-root .site-header .site-nav__link,
.page-home .site-header .site-nav__link,
#tgg-home-root .site-header .site-nav__dropdown-toggle,
.page-home .site-header .site-nav__dropdown-toggle {
  color: #f7efe4;
}

#tgg-home-root .site-header .site-nav__link:hover,
.page-home .site-header .site-nav__link:hover,
#tgg-home-root .site-header .site-nav__dropdown-toggle:hover,
.page-home .site-header .site-nav__dropdown-toggle:hover,
#tgg-home-root .site-header .site-nav__link:focus-visible,
.page-home .site-header .site-nav__link:focus-visible,
#tgg-home-root .site-header .site-nav__dropdown-toggle:focus-visible,
.page-home .site-header .site-nav__dropdown-toggle:focus-visible {
  color: var(--color-lavender);
}

#tgg-home-root .mobile-nav .logo,
#tgg-home-root .mobile-nav .logo .logo__wordmark,
#tgg-home-root .mobile-nav .logo .logo__location,
#tgg-home-root .site-header.is-on-light .mobile-nav .logo,
#tgg-home-root .site-header.is-on-light .mobile-nav .logo .logo__wordmark,
#tgg-home-root .site-header.is-on-light .mobile-nav .logo .logo__location,
#tgg-home-root .site-header.is-on-dark .mobile-nav .logo,
#tgg-home-root .site-header.is-on-dark .mobile-nav .logo .logo__wordmark,
#tgg-home-root .site-header.is-on-dark .mobile-nav .logo .logo__location,
.page-home .mobile-nav .logo,
.page-home .mobile-nav .logo .logo__wordmark,
.page-home .mobile-nav .logo .logo__location,
.page-home .site-header.is-on-light .mobile-nav .logo,
.page-home .site-header.is-on-light .mobile-nav .logo .logo__wordmark,
.page-home .site-header.is-on-light .mobile-nav .logo .logo__location,
.page-home .site-header.is-on-dark .mobile-nav .logo,
.page-home .site-header.is-on-dark .mobile-nav .logo .logo__wordmark,
.page-home .site-header.is-on-dark .mobile-nav .logo .logo__location {
  color: var(--color-purple);
  transition: none;
}

#tgg-home-root .site-header .logo-primary,
.page-home .site-header .logo-primary {
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms ease;
}

#tgg-home-root .site-header.is-hero-logo-suppressed .logo-primary,
.page-home .site-header.is-hero-logo-suppressed .logo-primary {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.2rem);
}

#tgg-home-root:not(.is-reduced-motion) .hero__visual::before,
.page-home:not(.is-reduced-motion) .hero__visual::before {
  animation: none;
}

#tgg-home-root:not(.is-reduced-motion) .hero__deco--botanical-l,
.page-home:not(.is-reduced-motion) .hero__deco--botanical-l {
  animation: tgg-hero-drift 11s ease-in-out infinite;
}

#tgg-home-root:not(.is-reduced-motion) .hero__deco--star-a,
#tgg-home-root:not(.is-reduced-motion) .hero__deco--star-b,
.page-home:not(.is-reduced-motion) .hero__deco--star-a,
.page-home:not(.is-reduced-motion) .hero__deco--star-b {
  animation: tgg-hero-twinkle 12s ease-in-out infinite;
}

/* Dark glass depth + fiber overlay. Must follow the mobile hero-card disables. */
#tgg-home-root .hero-card,
.page-home .hero-card {
  filter:
    drop-shadow(0 1px 0 rgba(255, 230, 255, 0.14))
    drop-shadow(0 12px 24px rgba(8, 2, 14, 0.48))
    drop-shadow(0 34px 64px rgba(8, 2, 14, 0.62))
    drop-shadow(0 0 28px rgba(156, 92, 178, 0.2));
}

#tgg-home-root .hero-card__frame,
.page-home .hero-card__frame {
  z-index: 0;
}

#tgg-home-root .hero-card::after,
.page-home .hero-card::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 255, 0.16),
    inset 0 -34px 48px rgba(0, 0, 0, 0.28) !important;
  background-color: transparent !important;
  opacity: 1;
  mix-blend-mode: soft-light;
  clip-path: polygon(
    4.5% 0,
    95.5% 0,
    100% 3.33%,
    100% 96.67%,
    95.5% 100%,
    4.5% 100%,
    0 96.67%,
    0 3.33%
  );
  background-image:
    radial-gradient(circle at 20% 12%, rgba(255, 240, 255, 0.22), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(220, 163, 237, 0.16), transparent 30%),
    radial-gradient(circle at 50% 42%, rgba(247, 238, 229, 0.06), transparent 48%),
    radial-gradient(circle at 82% 88%, rgba(0, 0, 0, 0.28), transparent 36%),
    linear-gradient(
      180deg,
      rgba(58, 22, 76, 0.18) 0%,
      rgba(42, 14, 58, 0.08) 42%,
      rgba(12, 3, 18, 0.34) 100%
    ),
    var(--paper-texture) !important;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat !important;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 220px 220px !important;
  background-blend-mode: soft-light, soft-light, soft-light, multiply, normal, multiply;
}

#tgg-home-root .hero-card__inner,
.page-home .hero-card__inner {
  position: relative;
  z-index: 2;
}

#tgg-home-root .hero-card__starburst,
.page-home .hero-card__starburst {
  z-index: 4;
}

/* Tarot invitation: dark glass placard, luminous borders, cream hierarchy */
#tgg-home-root .hero-card,
.page-home .hero-card {
  filter:
    drop-shadow(0 1px 0 rgba(255, 230, 255, 0.16))
    drop-shadow(0 14px 28px rgba(8, 2, 14, 0.5))
    drop-shadow(0 36px 70px rgba(8, 2, 14, 0.66))
    drop-shadow(0 0 30px rgba(156, 92, 178, 0.22));
}

#tgg-home-root .hero-card::after,
.page-home .hero-card::after {
  background-image:
    radial-gradient(circle at 18% 10%, rgba(255, 240, 255, 0.24), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(220, 163, 237, 0.18), transparent 28%),
    radial-gradient(circle at 50% 40%, rgba(247, 238, 229, 0.07), transparent 46%),
    radial-gradient(circle at 84% 90%, rgba(0, 0, 0, 0.3), transparent 34%),
    linear-gradient(
      180deg,
      rgba(78, 34, 98, 0.2) 0%,
      rgba(42, 14, 58, 0.06) 46%,
      rgba(10, 2, 16, 0.36) 100%
    ),
    var(--paper-texture) !important;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat !important;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 220px 220px !important;
}

#tgg-home-root .hero-card::before,
.page-home .hero-card::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  opacity: 0.92;
  clip-path: polygon(
    4.5% 0,
    95.5% 0,
    100% 3.33%,
    100% 96.67%,
    95.5% 100%,
    4.5% 100%,
    0 96.67%,
    0 3.33%
  );
  background-image:
    radial-gradient(18% 14% at 8% 6%, rgba(238, 194, 116, 0.22), transparent 72%),
    radial-gradient(18% 14% at 92% 6%, rgba(238, 194, 116, 0.18), transparent 72%),
    radial-gradient(16% 12% at 8% 94%, rgba(220, 163, 237, 0.16), transparent 74%),
    radial-gradient(16% 12% at 92% 94%, rgba(220, 163, 237, 0.14), transparent 74%),
    radial-gradient(circle at 20% 54%, rgba(236, 214, 248, 0.55) 0 0.9px, transparent 1.3px),
    radial-gradient(circle at 80% 54%, rgba(236, 214, 248, 0.48) 0 0.9px, transparent 1.3px),
    radial-gradient(circle at 16% 60%, rgba(238, 194, 116, 0.45) 0 0.7px, transparent 1.1px),
    radial-gradient(circle at 84% 60%, rgba(238, 194, 116, 0.4) 0 0.7px, transparent 1.1px),
    radial-gradient(circle at 24% 48%, rgba(184, 148, 74, 0.28) 0 0.55px, transparent 0.95px),
    radial-gradient(circle at 76% 48%, rgba(184, 148, 74, 0.24) 0 0.55px, transparent 0.95px) !important;
  background-repeat: no-repeat !important;
}

#tgg-home-root .hero-card__frame-outer,
.page-home .hero-card__frame-outer {
  stroke: rgba(236, 214, 248, 0.82);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 2px rgba(220, 163, 237, 0.45));
}

#tgg-home-root .hero-card__frame-inner,
.page-home .hero-card__frame-inner {
  stroke: rgba(238, 194, 116, 0.48);
  stroke-width: 0.72;
  filter: drop-shadow(0 0 1px rgba(184, 148, 74, 0.35));
}

#tgg-home-root .hero-card__starburst,
.page-home .hero-card__starburst {
  fill: rgba(238, 194, 116, 0.88);
  opacity: 0.92;
  filter: drop-shadow(0 0 3px rgba(220, 163, 237, 0.55));
}

#tgg-home-root .hero-card__inner,
.page-home .hero-card__inner {
  z-index: 3;
  overflow: visible;
}

#tgg-home-root .hero-card__brand,
.page-home .hero-card__brand {
  position: relative;
  z-index: 1;
}

#tgg-home-root .hero-card__brand::before,
.page-home .hero-card__brand::before,
#tgg-home-root .hero__actions::before,
.page-home .hero__actions::before {
  content: none;
  display: none;
}

#tgg-home-root .hero__eyebrow,
.page-home .hero__eyebrow {
  letter-spacing: 0.3em;
  color: rgba(238, 194, 116, 0.94);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#tgg-home-root .hero-card__message,
.page-home .hero-card__message {
  position: relative;
  z-index: 1;
  padding-block: 0.35rem;
}

#tgg-home-root .hero-card__message::before,
.page-home .hero-card__message::before {
  content: "";
  position: absolute;
  inset: -18% -10% -14%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 50% 38%,
      rgba(220, 163, 237, 0.16) 0%,
      rgba(78, 34, 98, 0.08) 48%,
      rgba(78, 34, 98, 0) 74%
    );
}

#tgg-home-root .hero__script,
.page-home .hero__script,
#tgg-home-root .hero__descriptor,
.page-home .hero__descriptor {
  position: relative;
  z-index: 1;
}

#tgg-home-root .hero__script,
.page-home .hero__script {
  color: #fff3e8;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(220, 163, 237, 0.28);
}

#tgg-home-root .hero__descriptor,
.page-home .hero__descriptor {
  color: #f1a08c;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

#tgg-home-root .hero__actions,
.page-home .hero__actions {
  position: relative;
  z-index: 2;
  padding-top: 0.35rem;
}

#tgg-home-root .hero__actions::before,
.page-home .hero__actions::before {
  content: none;
  display: none;
}

#tgg-home-root .hero-card__inner .btn--hero,
.page-home .hero-card__inner .btn--hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 0;
  color: #fff8ef;
  background-color: transparent;
  background-image:
    radial-gradient(
      ellipse at 24% 8%,
      rgba(255, 255, 255, 0.34),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #dca3ed 0%,
      #8e1f86 45%,
      #4b0a54 100%
    );
  border: 1px solid rgba(236, 214, 248, 0.78);
  box-shadow:
    0 14px 28px rgba(10, 2, 16, 0.58),
    0 3px 0 rgba(255, 236, 255, 0.18) inset,
    0 -4px 10px rgba(0, 0, 0, 0.38) inset,
    0 2px 0 rgba(46, 0, 59, 0.75);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-image 180ms ease,
    filter 180ms ease;
}

#tgg-home-root .hero-card__inner .btn--hero::before,
.page-home .hero-card__inner .btn--hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 46%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.1) 36%,
      rgba(255, 255, 255, 0) 58%
    );
}

#tgg-home-root .hero-card__inner .btn--hero::after,
.page-home .hero-card__inner .btn--hero::after {
  content: none;
  display: none;
}

#tgg-home-root .hero-card__inner .btn--hero .btn__star,
.page-home .hero-card__inner .btn--hero .btn__star {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #f8e6b8;
  font-size: 0.95rem;
  line-height: 1;
  transform: translateY(0.02em);
  text-shadow:
    0 0 8px rgba(255, 244, 220, 0.7),
    0 1px 0 rgba(46, 0, 59, 0.4);
}

#tgg-home-root .hero-card__inner .btn--hero:hover,
.page-home .hero-card__inner .btn--hero:hover,
#tgg-home-root .hero-card__inner .btn--hero:focus-visible,
.page-home .hero-card__inner .btn--hero:focus-visible {
  color: #fffaf3;
  background-color: transparent;
  background-image:
    radial-gradient(
      ellipse at 24% 8%,
      rgba(255, 255, 255, 0.4),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #e4b4f2 0%,
      #9c2a94 45%,
      #561062 100%
    );
  border-color: rgba(246, 228, 252, 0.92);
  box-shadow:
    0 16px 32px rgba(10, 2, 16, 0.62),
    0 3px 0 rgba(255, 236, 255, 0.24) inset,
    0 -4px 10px rgba(0, 0, 0, 0.34) inset,
    0 3px 0 rgba(46, 0, 59, 0.72);
  transform: translateY(-2px);
}

#tgg-home-root .hero-card__inner .btn--hero:active,
.page-home .hero-card__inner .btn--hero:active {
  transform: translateY(0);
  background-image:
    radial-gradient(
      ellipse at 24% 8%,
      rgba(255, 255, 255, 0.2),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #b87ecc 0%,
      #72186c 48%,
      #3c044c 100%
    );
  box-shadow:
    0 8px 16px rgba(10, 2, 16, 0.45),
    0 2px 0 rgba(255, 236, 255, 0.12) inset,
    0 -3px 8px rgba(0, 0, 0, 0.42) inset,
    0 1px 0 rgba(46, 0, 59, 0.7);
}

#tgg-home-root .hero-card__inner .btn--hero-secondary,
.page-home .hero-card__inner .btn--hero-secondary {
  color: #fff3e8;
  background: none;
  box-shadow: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

#tgg-home-root .hero-card__inner .btn--hero-secondary > span:first-child,
.page-home .hero-card__inner .btn--hero-secondary > span:first-child {
  text-decoration-color: rgba(238, 194, 116, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

#tgg-home-root .hero-card__inner .btn--hero-secondary .btn__arrow,
.page-home .hero-card__inner .btn--hero-secondary .btn__arrow {
  color: #f1a08c;
}

#tgg-home-root .hero-card__inner .btn--hero-secondary:hover,
.page-home .hero-card__inner .btn--hero-secondary:hover,
#tgg-home-root .hero-card__inner .btn--hero-secondary:focus-visible,
.page-home .hero-card__inner .btn--hero-secondary:focus-visible {
  color: #ffe8d6;
  background: none;
}

#tgg-home-root .hero-card__inner .btn--hero-secondary:hover > span:first-child,
.page-home .hero-card__inner .btn--hero-secondary:hover > span:first-child,
#tgg-home-root .hero-card__inner .btn--hero-secondary:focus-visible > span:first-child,
.page-home .hero-card__inner .btn--hero-secondary:focus-visible > span:first-child {
  text-decoration-color: rgba(241, 160, 140, 0.9);
}


/* --------------------------------------------------------------------------
   Hero viewport phases — atmospheric first screen + plum dissolve below the fold.
   -------------------------------------------------------------------------- */
#tgg-home-root .hero,
.page-home .hero {
  --announcement-height: 1.75rem;
  --hero-visible-height: calc(100vh - var(--announcement-height));
  --hero-visible-height: calc(100svh - var(--announcement-height));
  --hero-transition-depth: clamp(8rem, 26vw, 11rem);
  --hero-seam-plum: #3e213d;
  --hero-art-height: calc(var(--hero-visible-height) + var(--hero-transition-depth));
  min-height: calc(
    var(--hero-visible-height) +
    var(--hero-transition-depth)
  );
  background: #3e213d;
  background-image: none;
}

#tgg-home-root .hero__stage,
.page-home .hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows:
    var(--hero-visible-height)
    var(--hero-transition-depth);
  place-items: unset;
  align-items: stretch;
  justify-items: center;
  min-height: calc(
    var(--hero-visible-height) +
    var(--hero-transition-depth)
  );
  padding: 0;
  overflow: visible;
}

#tgg-home-root .hero__stage::before,
.page-home .hero__stage::before {
  top: calc(var(--hero-visible-height) * 0.48);
}

#tgg-home-root .hero__stage::after,
.page-home .hero__stage::after {
  opacity: 0;
  background: none;
  background-image: none;
  display: none;
}

#tgg-home-root .hero__visual,
.page-home .hero__visual {
  inset: auto;
  top: 0;
  right: 0;
  left: 0;
  bottom: auto;
  height: calc(var(--hero-visible-height) + var(--hero-transition-depth));
  background-color: #3e213d;
  background-image: linear-gradient(
    180deg,
    var(--hero-seam-plum, #3e213d) 0,
    var(--hero-seam-plum, #3e213d) 100%
  );
  -webkit-mask-image: none;
  mask-image: none;
}

#tgg-home-root .hero__visual::before,
.page-home .hero__visual::before {
  background-image:
    linear-gradient(
      180deg,
      rgba(62, 33, 61, 0) 0,
      rgba(62, 33, 61, 0) calc(var(--hero-visible-height) - 2.25rem),
      rgba(62, 33, 61, 0.4) calc(var(--hero-visible-height) - 0.35rem),
      var(--hero-seam-plum) calc(var(--hero-visible-height) + var(--hero-transition-depth)),
      var(--hero-seam-plum) 100%
    ),
    radial-gradient(
      ellipse at 50% 36%,
      rgba(124, 73, 137, 0.1) 0%,
      rgba(48, 19, 55, 0.08) 50%,
      rgba(14, 5, 20, 0.04) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 4, 18, 0.04) 0%,
      rgba(21, 7, 28, 0.03) 48%,
      rgba(31, 11, 38, 0) 100%
    ),
    linear-gradient(
      115deg,
      rgba(18, 6, 22, 0.18) 0%,
      rgba(26, 10, 36, 0.06) 44%,
      rgba(43, 16, 47, 0.04) 100%
    ),
    var(--home-art-celestial);
  background-size:
    100% 100%,
    cover,
    cover,
    cover,
    auto var(--hero-art-height);
  background-repeat: no-repeat;
  background-position: 0 0, center, center, center, 68% top;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0,
    #000 var(--hero-visible-height),
    rgba(0, 0, 0, 0.55) calc(var(--hero-visible-height) + 3.25rem),
    rgba(0, 0, 0, 0.18) calc(var(--hero-visible-height) + 6.25rem),
    rgba(0, 0, 0, 0) calc(var(--hero-visible-height) + var(--hero-transition-depth))
  );
  mask-image: linear-gradient(
    180deg,
    #000 0,
    #000 var(--hero-visible-height),
    rgba(0, 0, 0, 0.55) calc(var(--hero-visible-height) + 3.25rem),
    rgba(0, 0, 0, 0.18) calc(var(--hero-visible-height) + 6.25rem),
    rgba(0, 0, 0, 0) calc(var(--hero-visible-height) + var(--hero-transition-depth))
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

#tgg-home-root .hero__deco--botanical-l,
.page-home .hero__deco--botanical-l,
#tgg-home-root .hero__deco--botanical-r,
.page-home .hero__deco--botanical-r {
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.4) 64%,
    rgba(0, 0, 0, 0) 88%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.4) 64%,
    rgba(0, 0, 0, 0) 88%
  );
}

@media (max-width: 799px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    grid-row: 1 / 2;
    justify-self: center;
    align-self: center;
    width: min(94vw, 26.875rem);
    max-width: min(94vw, 26.875rem);
    margin: calc(var(--hero-header-offset, var(--header-height-mobile)) * 0.85) auto 0.85rem;
  }
}


@media (max-width: 799px) and (max-height: 700px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: min(calc(100% - 2.5rem), 20rem);
    margin-top: calc(var(--hero-header-offset, var(--header-height-mobile)) * 0.72);
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 359px) {
  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 62% top;
  }
}

@media (min-width: 360px) and (max-width: 429px) {
  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 68% top;
  }
}

@media (min-width: 430px) {
  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 72% top;
  }
}

@keyframes tgg-hero-art-drift {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
}

@keyframes tgg-hero-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes tgg-hero-twinkle {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  #tgg-home-root .hero__visual::before,
  #tgg-home-root .hero__stage::before,
  #tgg-home-root .hero__deco--botanical-l,
  #tgg-home-root .hero__deco--botanical-r,
  #tgg-home-root .hero__deco--star-a,
  #tgg-home-root .hero__deco--star-b,
  .page-home .hero__visual::before,
  .page-home .hero__stage::before,
  .page-home .hero__deco--botanical-l,
  .page-home .hero__deco--botanical-r,
  .page-home .hero__deco--star-a,
  .page-home .hero__deco--star-b {
    animation: none !important;
  }

  #tgg-home-root .hero-card,
  .page-home .hero-card,
  #tgg-home-root .hero-card .hero-card__paper,
  .page-home .hero-card .hero-card__paper,
  #tgg-home-root .hero-card__frame-line,
  .page-home .hero-card__frame-line {
    transition: none;
  }

  #tgg-home-root .hero-card,
  .page-home .hero-card {
    transform: none;
    --hero-card-scale: 1;
    --hero-card-paper-opacity: 0.88;
  }

  #tgg-home-root .hero-card__inner .btn--hero,
  .page-home .hero-card__inner .btn--hero,
  #tgg-home-root .hero-card__inner .btn--hero:hover,
  .page-home .hero-card__inner .btn--hero:hover,
  #tgg-home-root .hero-card__inner .btn--hero:focus-visible,
  .page-home .hero-card__inner .btn--hero:focus-visible,
  #tgg-home-root .hero-card__inner .btn--hero:active,
  .page-home .hero-card__inner .btn--hero:active {
    transition: none;
    transform: none;
  }

  #tgg-home-root .site-header .logo-primary,
  .page-home .site-header .logo-primary {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Mobile refinement (non-hero)
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  #tgg-home-root .brand-intro__postal,
  .page-home .brand-intro__postal {
    width: clamp(9.25rem, 54vw, 11.5rem);
    max-width: 68%;
    top: -3.75rem;
    right: -0.4rem;
  }

  #tgg-home-root .offer-card:nth-child(1),
  #tgg-home-root .offer-card:nth-child(2),
  .page-home .offer-card:nth-child(1),
  .page-home .offer-card:nth-child(2) {
    transform: none;
  }

  #tgg-home-root .meet-irl__photo,
  .page-home .meet-irl__photo {
    transform: rotate(-0.5deg);
    max-width: 100%;
  }

  #tgg-home-root .market-card,
  .page-home .market-card {
    transform: none;
  }

  #tgg-home-root .market-card::before,
  .page-home .market-card::before {
    top: -1.25rem;
    right: 0.15rem;
    width: clamp(6.25rem, 36vw, 7.25rem);
    height: clamp(6.25rem, 36vw, 7.25rem);
  }

  #tgg-home-root .join-gang__moon,
  .page-home .join-gang__moon {
    width: clamp(5rem, 32vw, 6.25rem);
    top: 0.75rem;
    right: 0.75rem;
    bottom: auto;
    opacity: 0.6;
  }

  #tgg-home-root .offer-card__media::before,
  .page-home .offer-card__media::before {
    opacity: 0.35;
    width: 2.25rem;
    height: 2.25rem;
  }

  #tgg-home-root .section-header::before,
  #tgg-home-root .section-header::after,
  .page-home .section-header::before,
  .page-home .section-header::after {
    max-width: 2.75rem;
  }
}

@media (max-width: 360px) {
  #tgg-home-root .hero__deco--botanical-r,
  .page-home .hero__deco--botanical-r {
    opacity: 0.28;
    width: 3.25rem;
  }

}

@media (max-width: 430px) {
  #tgg-home-root .hero__deco--star-b,
  .page-home .hero__deco--star-b {
    display: none;
  }

  #tgg-home-root .join-gang__form,
  .page-home .join-gang__form {
    padding: 0.85rem;
  }
}

/* ==========================================================================
   Final hero art polish — production pass
   Must follow all prior hero / viewport-phase rules so geometry,
   material, lighting, and type refinements actually win the cascade.
   ========================================================================== */
/* Shared lighting story: moonlit lavender from top-center */
#tgg-home-root .announcement-bar,
.page-home .announcement-bar {
  background-color: rgba(168, 128, 176, 0.9);
  background-image: var(--paper-texture);
  background-size: 180px 180px;
  background-blend-mode: multiply;
}

#tgg-home-root .hero-card,
.page-home .hero-card {
  --hero-card-paper: #24102f;
  --hero-card-paper-opacity: 0.9;
  --hero-card-scale: 1;
  --hero-card-float: 0px;
  aspect-ratio: 400 / 555;
  transform: translate3d(0, var(--hero-card-float), 0) scale(var(--hero-card-scale, 1));
  transition: none;
  filter:
    drop-shadow(0 1px 0 rgba(255, 236, 255, 0.18))
    drop-shadow(0 16px 28px rgba(8, 2, 14, 0.52))
    drop-shadow(0 40px 72px rgba(8, 2, 14, 0.68))
    drop-shadow(0 0 28px rgba(156, 92, 178, 0.2));
}

@media (max-width: 799px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: min(96vw, 27.5rem);
    max-width: min(96vw, 27.5rem);
    margin: calc(var(--hero-header-offset, var(--header-height-mobile)) * 0.78) auto 0.65rem;
  }
}

#tgg-home-root .hero-card.is-focused,
.page-home .hero-card.is-focused {
  --hero-card-paper-opacity: 0.93;
}

#tgg-home-root .hero-card .hero-card__paper,
.page-home .hero-card .hero-card__paper,
#tgg-home-root .hero-card .hero-card__panel-shape,
.page-home .hero-card .hero-card__panel-shape {
  fill: var(--hero-card-paper, #24102f);
  fill-opacity: var(--hero-card-paper-opacity);
}

#tgg-home-root .hero-card__paper-texture,
.page-home .hero-card__paper-texture {
  display: block;
  fill: rgba(236, 214, 248, 0.62);
  opacity: 0.28;
  mix-blend-mode: soft-light;
}

/* Physical edge lighting + shared grain finish */
#tgg-home-root .hero-card::after,
.page-home .hero-card::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 1;
  mix-blend-mode: soft-light;
  clip-path: polygon(
    4.5% 0,
    95.5% 0,
    100% 3.33%,
    100% 96.67%,
    95.5% 100%,
    4.5% 100%,
    0 96.67%,
    0 3.33%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 236, 255, 0.2),
    inset 0 -36px 52px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(220, 163, 237, 0.08) !important;
  background-color: transparent !important;
  background-image:
    radial-gradient(circle at 50% 14%, rgba(220, 163, 237, 0.22), transparent 32%),
    radial-gradient(circle at 18% 10%, rgba(255, 240, 255, 0.2), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(238, 194, 116, 0.08), transparent 24%),
    radial-gradient(circle at 50% 44%, rgba(247, 238, 229, 0.06), transparent 48%),
    radial-gradient(circle at 78% 86%, rgba(0, 0, 0, 0.3), transparent 36%),
    radial-gradient(circle at 28% 88%, rgba(142, 31, 134, 0.12), transparent 34%),
    linear-gradient(
      180deg,
      rgba(68, 28, 88, 0.16) 0%,
      rgba(36, 16, 47, 0.04) 42%,
      rgba(10, 2, 16, 0.38) 100%
    ),
    var(--paper-texture) !important;
  background-repeat:
    no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat !important;
  background-size:
    100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 200px 200px !important;
  background-blend-mode:
    soft-light, soft-light, soft-light, soft-light, multiply, soft-light, normal, multiply;
}

#tgg-home-root .hero-card::before,
.page-home .hero-card::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  opacity: 0.88;
  clip-path: polygon(
    4.5% 0,
    95.5% 0,
    100% 3.33%,
    100% 96.67%,
    95.5% 100%,
    4.5% 100%,
    0 96.67%,
    0 3.33%
  );
  background-image:
    radial-gradient(18% 14% at 8% 6%, rgba(238, 194, 116, 0.2), transparent 72%),
    radial-gradient(18% 14% at 92% 6%, rgba(238, 194, 116, 0.16), transparent 72%),
    radial-gradient(16% 12% at 8% 94%, rgba(220, 163, 237, 0.14), transparent 74%),
    radial-gradient(16% 12% at 92% 94%, rgba(220, 163, 237, 0.12), transparent 74%),
    radial-gradient(circle at 22% 58%, rgba(236, 214, 248, 0.5) 0 0.85px, transparent 1.25px),
    radial-gradient(circle at 78% 52%, rgba(236, 214, 248, 0.42) 0 0.8px, transparent 1.2px),
    radial-gradient(circle at 34% 72%, rgba(238, 194, 116, 0.38) 0 0.65px, transparent 1px),
    radial-gradient(circle at 68% 66%, rgba(184, 148, 74, 0.28) 0 0.55px, transparent 0.95px),
    radial-gradient(circle at 48% 28%, rgba(255, 246, 255, 0.28) 0 0.45px, transparent 0.85px) !important;
  background-repeat: no-repeat !important;
}

#tgg-home-root .hero-card__frame-outer,
.page-home .hero-card__frame-outer {
  stroke: rgba(240, 224, 248, 0.86);
  stroke-width: 1.22;
  filter:
    drop-shadow(0 0 1.5px rgba(220, 163, 237, 0.5))
    drop-shadow(0 0 0.5px rgba(255, 246, 255, 0.35));
}

#tgg-home-root .hero-card__frame-inner,
.page-home .hero-card__frame-inner {
  stroke: rgba(238, 194, 116, 0.5);
  stroke-width: 0.7;
  filter: drop-shadow(0 0 0.8px rgba(184, 148, 74, 0.4));
}

#tgg-home-root .hero-card__starburst,
.page-home .hero-card__starburst {
  fill: rgba(238, 194, 116, 0.9);
  opacity: 0.92;
  filter: drop-shadow(0 0 2.5px rgba(220, 163, 237, 0.45));
}

#tgg-home-root .hero-card__inner,
.page-home .hero-card__inner {
  position: relative;
  z-index: 3;
}

/* Logo stage glow + faint print grain (behind / over brand zone only) */
#tgg-home-root .hero-card__brand,
.page-home .hero-card__brand {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

#tgg-home-root .hero-card__brand::before,
.page-home .hero-card__brand::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: -12% -8% -8%;
  z-index: -1;
  pointer-events: none;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(
      ellipse at 50% 42%,
      rgba(220, 163, 237, 0.16) 0%,
      rgba(78, 34, 98, 0.08) 46%,
      transparent 74%
    ) !important;
  background-color: transparent !important;
  opacity: 1;
}

#tgg-home-root .hero-card__brand::after,
.page-home .hero-card__brand::after {
  content: "";
  position: absolute;
  inset: 8% 4% 2%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: var(--paper-texture);
  background-size: 140px 140px;
}

#tgg-home-root .hero__actions::before,
.page-home .hero__actions::before {
  content: none;
  display: none;
}

#tgg-home-root .hero__title-logo,
.page-home .hero__title-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 24.5rem);
  max-width: 100%;
  height: auto;
  mix-blend-mode: normal;
  opacity: 1;
  filter:
    drop-shadow(0 3px 0 rgba(0, 0, 0, 0.32))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(220, 163, 237, 0.18))
    contrast(1.04)
    brightness(1.04)
    saturate(0.96);
}

#tgg-home-root .hero__eyebrow,
.page-home .hero__eyebrow {
  color: rgba(238, 194, 116, 0.95);
  letter-spacing: 0.3em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.52);
}

#tgg-home-root .hero-card__message::before,
.page-home .hero-card__message::before {
  background:
    radial-gradient(
      ellipse at 50% 40%,
      rgba(220, 163, 237, 0.14) 0%,
      rgba(78, 34, 98, 0.07) 48%,
      transparent 74%
    );
}

#tgg-home-root .hero__script,
.page-home .hero__script {
  color: #fff6ec;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(220, 163, 237, 0.32);
}

#tgg-home-root .hero__descriptor,
.page-home .hero__descriptor {
  color: #f4a892;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Foil / enamel sticker CTA — not generic glass button */
#tgg-home-root .hero-card__inner .btn--hero,
.page-home .hero-card__inner .btn--hero {
  width: min(92%, 19.25rem);
  min-height: 2.9rem;
  border-radius: 0;
  color: #fff8ef;
  background-color: #6b1478;
  background-image:
    var(--paper-texture),
    linear-gradient(
      180deg,
      rgba(255, 236, 255, 0.18) 0%,
      rgba(255, 236, 255, 0) 28%
    ),
    linear-gradient(
      180deg,
      #c98ad8 0%,
      #8a2488 42%,
      #4e0a56 100%
    );
  background-size: 120px 120px, 100% 100%, 100% 100%;
  background-blend-mode: soft-light, soft-light, normal;
  border: 1px solid rgba(244, 228, 250, 0.72);
  box-shadow:
    0 16px 30px rgba(10, 2, 16, 0.58),
    0 3px 0 rgba(46, 0, 59, 0.72),
    0 1px 0 rgba(255, 236, 255, 0.28) inset,
    0 -5px 12px rgba(0, 0, 0, 0.36) inset,
    0 0 18px rgba(142, 31, 134, 0.18);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

#tgg-home-root .hero-card__inner .btn--hero::before,
.page-home .hero-card__inner .btn--hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 42%;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  opacity: 0.85;
}

#tgg-home-root .hero-card__inner .btn--hero:hover,
.page-home .hero-card__inner .btn--hero:hover,
#tgg-home-root .hero-card__inner .btn--hero:focus-visible,
.page-home .hero-card__inner .btn--hero:focus-visible {
  color: #fffaf3;
  background-image:
    var(--paper-texture),
    linear-gradient(
      180deg,
      rgba(255, 236, 255, 0.22) 0%,
      rgba(255, 236, 255, 0) 30%
    ),
    linear-gradient(
      180deg,
      #d6a0e4 0%,
      #963098 42%,
      #5a1064 100%
    );
  background-size: 120px 120px, 100% 100%, 100% 100%;
  background-blend-mode: soft-light, soft-light, normal;
  border-color: rgba(248, 236, 252, 0.88);
  box-shadow:
    0 18px 34px rgba(10, 2, 16, 0.62),
    0 3px 0 rgba(46, 0, 59, 0.7),
    0 1px 0 rgba(255, 236, 255, 0.34) inset,
    0 -5px 12px rgba(0, 0, 0, 0.32) inset,
    0 0 22px rgba(156, 92, 178, 0.22);
  transform: translateY(-2px);
}

#tgg-home-root .hero-card__inner .btn--hero:active,
.page-home .hero-card__inner .btn--hero:active {
  transform: translateY(0);
  background-image:
    var(--paper-texture),
    linear-gradient(
      180deg,
      rgba(255, 236, 255, 0.1) 0%,
      rgba(255, 236, 255, 0) 26%
    ),
    linear-gradient(
      180deg,
      #a86cba 0%,
      #72186c 48%,
      #3c044c 100%
    );
  background-size: 120px 120px, 100% 100%, 100% 100%;
  background-blend-mode: soft-light, soft-light, normal;
  box-shadow:
    0 8px 16px rgba(10, 2, 16, 0.45),
    0 1px 0 rgba(46, 0, 59, 0.7),
    0 1px 0 rgba(255, 236, 255, 0.14) inset,
    0 -3px 8px rgba(0, 0, 0, 0.4) inset;
}

#tgg-home-root .hero-card__inner .btn--hero-secondary,
.page-home .hero-card__inner .btn--hero-secondary {
  color: #fff3e8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

#tgg-home-root .hero-card__inner .btn--hero-secondary > span:first-child,
.page-home .hero-card__inner .btn--hero-secondary > span:first-child {
  text-decoration-color: rgba(238, 194, 116, 0.78);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

#tgg-home-root .hero-card__inner .btn--hero-secondary .btn__arrow,
.page-home .hero-card__inner .btn--hero-secondary .btn__arrow {
  color: #f1a08c;
}

#tgg-home-root .hero-card__inner .btn--hero-secondary:hover,
.page-home .hero-card__inner .btn--hero-secondary:hover,
#tgg-home-root .hero-card__inner .btn--hero-secondary:focus-visible,
.page-home .hero-card__inner .btn--hero-secondary:focus-visible {
  color: #ffe8d6;
}


/* Short-height: keep poster scale — do not shrink into a delicate card */
@media (max-width: 799px) and (max-height: 700px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: min(94vw, 25.5rem);
    max-width: min(94vw, 25.5rem);
    aspect-ratio: 400 / 530;
    margin-top: calc(var(--hero-header-offset, var(--header-height-mobile)) * 0.62);
    margin-bottom: 0.45rem;
  }

  #tgg-home-root .hero__title-logo,
  .page-home .hero__title-logo {
    width: min(100%, 21.5rem);
  }

  #tgg-home-root .hero-card__inner .btn--hero,
  .page-home .hero-card__inner .btn--hero {
    min-height: 2.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    transition: none;
    transform: none;
  }

  #tgg-home-root .hero-card__inner .btn--hero,
  .page-home .hero-card__inner .btn--hero,
  #tgg-home-root .hero-card__inner .btn--hero:hover,
  .page-home .hero-card__inner .btn--hero:hover,
  #tgg-home-root .hero-card__inner .btn--hero:focus-visible,
  .page-home .hero-card__inner .btn--hero:focus-visible,
  #tgg-home-root .hero-card__inner .btn--hero:active,
  .page-home .hero-card__inner .btn--hero:active {
    transition: none;
    transform: none;
  }
}

/* ==========================================================================
   Final responsive hero structure — conversion layout
   Authoritative source for hero layout across breakpoints.
   Card left / atmospheric art right. Instagram plug lives in announcement bar.
   ========================================================================== */

#tgg-home-root .hero-social-plug,
.page-home .hero-social-plug {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: min(18rem, calc(100vw - 2rem));
  padding: 0.62rem 0.88rem;
  color: #fff3e8;
  background:
    var(--paper-texture),
    rgba(36, 16, 47, 0.52);
  background-size: 140px 140px, auto;
  background-blend-mode: soft-light, normal;
  border: 1px solid rgba(220, 163, 237, 0.28);
  border-radius: 2px;
  box-shadow:
    0 10px 24px rgba(8, 2, 14, 0.28),
    inset 0 1px 0 rgba(255, 236, 255, 0.10);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  opacity: 0.82;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

#tgg-home-root .hero-social-plug__icon,
.page-home .hero-social-plug__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: #dca3ed;
}

#tgg-home-root .hero-social-plug:hover,
.page-home .hero-social-plug:hover,
#tgg-home-root .hero-social-plug:focus-visible,
.page-home .hero-social-plug:focus-visible {
  color: #fffaf1;
  border-color: rgba(247, 239, 228, 0.7);
  background:
    var(--paper-texture),
    rgba(48, 22, 62, 0.88);
  background-size: 140px 140px, auto;
  background-blend-mode: soft-light, normal;
  outline: none;
}

#tgg-home-root .hero-social-plug:focus-visible,
.page-home .hero-social-plug:focus-visible {
  box-shadow:
    0 0 0 2px rgba(247, 239, 228, 0.95),
    0 14px 32px rgba(8, 2, 14, 0.42),
    inset 0 1px 0 rgba(255, 236, 255, 0.14);
}

@media (max-width: 799px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    grid-row: 1 / 2;
    justify-self: center;
    align-self: center;
    width: min(96vw, 27.5rem);
    max-width: min(96vw, 27.5rem);
    margin: calc(var(--hero-header-offset, var(--header-height-mobile)) * 0.78) auto 0.65rem;
  }
}

@media (min-width: 800px) {
  #tgg-home-root,
  .page-home {
    --hero-transition-depth: clamp(7rem, 10vw, 11rem);
  }

  #tgg-home-root .hero,
  .page-home .hero {
    --hero-header-offset: var(--header-height);
    --hero-transition-depth: clamp(7rem, 10vw, 11rem);
    margin-top: calc(var(--header-height) * -1);
    min-height: calc(clamp(40rem, 82vh, 52rem) + var(--hero-transition-depth));
    overflow: hidden;
    background: #3e213d;
    background-image: none;
  }

  #tgg-home-root .hero__stage,
  .page-home .hero__stage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 0.8rem;
    min-height: calc(clamp(40rem, 82vh, 52rem) + var(--hero-transition-depth));
    max-width: 96rem;
    width: 100%;
    margin-inline: auto;
    padding-top: calc(var(--header-height) + clamp(1.25rem, 2.2vh, 1.75rem));
    padding-right: 0;
    padding-bottom: calc(clamp(3rem, 6vh, 4.5rem) + var(--hero-transition-depth));
    padding-left: clamp(5.5vw, 7.5vw, 9vw);
    overflow: hidden;
    isolation: isolate;
    place-items: unset;
  }

  #tgg-home-root .hero__stage::before,
  .page-home .hero__stage::before {
    display: none;
  }

  #tgg-home-root .hero__stage::after,
  .page-home .hero__stage::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    /* Tall enough that solid #3e213d clears the brand-intro overlap */
    height: clamp(24rem, 44vh, 34rem);
    pointer-events: none;
    opacity: 1;
    background-color: transparent;
    background-image: none;
    background:
      linear-gradient(
        180deg,
        rgba(62, 33, 61, 0) 0%,
        rgba(62, 33, 61, 0.2) 22%,
        rgba(50, 24, 48, 0.48) 42%,
        rgba(62, 33, 61, 0.78) 62%,
        #3e213d 78%,
        #3e213d 100%
      );
    -webkit-mask-image: none;
    mask-image: none;
  }

  #tgg-home-root .hero__visual,
  .page-home .hero__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    grid-row: auto;
    grid-column: auto;
    min-height: 100%;
    background:
      linear-gradient(
        90deg,
        rgba(14, 5, 20, 0.72) 0%,
        rgba(14, 5, 20, 0.42) 28%,
        rgba(14, 5, 20, 0.08) 52%,
        transparent 68%
      ),
      linear-gradient(
        180deg,
        #16081d 0%,
        #16081d 42%,
        #24102f 68%,
        #3e213d 100%
      );
  }

  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 52%,
      rgba(0, 0, 0, 0.78) 68%,
      rgba(0, 0, 0, 0.38) 82%,
      rgba(0, 0, 0, 0.1) 92%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 52%,
      rgba(0, 0, 0, 0.78) 68%,
      rgba(0, 0, 0, 0.38) 82%,
      rgba(0, 0, 0, 0.1) 92%,
      transparent 100%
    );
    background-position: 0 0, center, center, center, 62% top;
  }

  #tgg-home-root .hero__visual::after,
  .page-home .hero__visual::after {
    display: none;
  }

  #tgg-home-root .hero__visual .hero-market-scene,
  .page-home .hero__visual .hero-market-scene {
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  #tgg-home-root .hero-card,
  .page-home .hero-card {
    position: relative;
    z-index: 4;
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    justify-self: auto;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: clamp(24rem, 34vw, 30rem);
    max-width: 30rem;
    margin: 0;
    aspect-ratio: 400 / 555;
    max-height: none;
    --hero-card-float: 0px;
  }

  #tgg-home-root .brand-intro,
  .page-home .brand-intro,
  #tgg-home-root .hero ~ .brand-intro,
  .page-home .hero ~ .brand-intro,
  #tgg-home-root .category-ticker + .brand-intro,
  .page-home .category-ticker + .brand-intro {
    margin-top: calc(var(--hero-transition-depth) * -0.72);
  }

  #tgg-home-root .brand-intro:not(.is-light),
  .page-home .brand-intro:not(.is-light),
  #tgg-home-root .hero ~ .brand-intro:not(.is-light),
  .page-home .hero ~ .brand-intro:not(.is-light),
  #tgg-home-root .category-ticker + .brand-intro:not(.is-light),
  .page-home .category-ticker + .brand-intro:not(.is-light) {
    background-color: #3e213d;
    background-image: none;
  }

  #tgg-home-root .brand-intro.is-light,
  .page-home .brand-intro.is-light,
  #tgg-home-root .hero ~ .brand-intro.is-light,
  .page-home .hero ~ .brand-intro.is-light,
  #tgg-home-root .category-ticker + .brand-intro.is-light,
  .page-home .category-ticker + .brand-intro.is-light {
    background-color: #f7efe4;
    background-image: none;
  }

  #tgg-home-root .brand-intro:not(.is-light).section::before,
  .page-home .brand-intro:not(.is-light).section::before {
    /* Avoid a hard texture edge where intro overlaps the hero dissolve */
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 8%,
      #000 18%,
      #000 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 8%,
      #000 18%,
      #000 100%
    );
  }

  #tgg-home-root .brand-intro.is-light.section::before,
  .page-home .brand-intro.is-light.section::before {
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 0.11;
    mix-blend-mode: multiply;
  }
}

@media (min-width: 800px) and (max-width: 1099px) {
  #tgg-home-root .hero,
  .page-home .hero {
    min-height: calc(clamp(40rem, 78vh, 48rem) + var(--hero-transition-depth));
  }

  #tgg-home-root .hero__stage,
  .page-home .hero__stage {
    min-height: calc(clamp(40rem, 78vh, 48rem) + var(--hero-transition-depth));
  }

  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: clamp(23rem, 31vw, 30rem);
    max-width: 30rem;
  }

  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 62% top;
  }
}

@media (min-width: 1100px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: clamp(25rem, 29vw, 31.5rem);
    max-width: 31.5rem;
  }

  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 68% center;
  }
}

@media (min-width: 1440px) {
  #tgg-home-root .hero__stage,
  .page-home .hero__stage {
    max-width: 96rem;
  }

  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: clamp(27rem, 28vw, 32rem);
    max-width: 32rem;
  }

  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 72% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  #tgg-home-root .hero-social-plug,
  .page-home .hero-social-plug {
    transition: none;
  }
}

/* ==========================================================================
   Final desktop hero composition pass
   Pull card into left-center art field, bridge deadspace, unify IG plug.
   Does not alter mobile (max-width: 799px) poster layout.
   ========================================================================== */

@media (min-width: 800px) {
  /* Let starfield read through the sticky nav — no opaque header slab */
  #tgg-home-root .site-header.is-on-dark,
  .page-home .site-header.is-on-dark,
  #tgg-home-root .site-header.is-hero-logo-suppressed:not(.is-on-light),
  .page-home .site-header.is-hero-logo-suppressed:not(.is-on-light),
  #tgg-home-root .site-header:not(.is-hero-logo-suppressed):not(.is-on-light),
  .page-home .site-header:not(.is-hero-logo-suppressed):not(.is-on-light) {
    background-color: transparent;
    background-image: linear-gradient(
      180deg,
      rgba(14, 5, 20, 0.06) 0%,
      rgba(14, 5, 20, 0) 100%
    );
    border-bottom: none;
    box-shadow: none;
  }

  /* Soften left vignette + remove flat dark top slab behind the art */
  #tgg-home-root .hero__visual,
  .page-home .hero__visual {
    background:
      linear-gradient(
        90deg,
        rgba(14, 5, 20, 0.48) 0%,
        rgba(14, 5, 20, 0.22) 18%,
        rgba(14, 5, 20, 0.06) 36%,
        transparent 54%
      ),
      linear-gradient(
        180deg,
        #1a0b24 0%,
        #16081d 28%,
        #24102f 68%,
        #3e213d 100%
      );
  }

  /* Art must cover the full stage, including the zone behind the nav */
  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-size:
      100% 100%,
      cover,
      cover,
      cover,
      cover;
    background-position: 0 0, center, center, center, 58% 18%;
  }

  /* Bridge haze between card and celestial art — desktop/tablet only */
  #tgg-home-root .hero__stage::before,
  .page-home .hero__stage::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: clamp(20rem, 32vw, 34rem);
    height: clamp(16rem, 28vw, 30rem);
    left: clamp(26rem, 40vw, 46rem);
    top: 44%;
    transform: translate(-50%, -50%);
    background:
      radial-gradient(
        ellipse at 42% 48%,
        rgba(220, 163, 237, 0.16) 0%,
        rgba(89, 39, 92, 0.14) 32%,
        rgba(22, 8, 29, 0.06) 58%,
        transparent 76%
      );
    filter: blur(18px);
    opacity: 0.8;
  }
}

@media (min-width: 800px) and (max-width: 1099px) {
  #tgg-home-root .hero__stage,
  .page-home .hero__stage {
    padding-left: clamp(6vw, 10vw, 14vw);
  }

  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: clamp(24rem, 36vw, 30rem);
    max-width: 30rem;
  }

  #tgg-home-root .hero__stage::before,
  .page-home .hero__stage::before {
    left: clamp(28rem, 48vw, 40rem);
    opacity: 0.62;
  }

  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 56% 12%;
  }
}

@media (min-width: 1100px) {
  #tgg-home-root .hero__stage,
  .page-home .hero__stage {
    padding-left: clamp(10vw, 12vw, 14vw);
    gap: 0.9rem;
  }

  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: clamp(26rem, 30vw, 32rem);
    max-width: 32rem;
    aspect-ratio: 400 / 555;
    max-height: none;
  }

  /* Slightly tighten internal rhythm so a wider card does not grow taller */
  #tgg-home-root .hero-card__inner,
  .page-home .hero-card__inner {
    padding:
      clamp(1.65rem, 6.2%, 2.35rem)
      clamp(1.55rem, 7%, 2.15rem)
      clamp(1.55rem, 6%, 2.15rem);
  }

  #tgg-home-root .hero-card__message,
  .page-home .hero-card__message {
    margin-top: clamp(0.5rem, 1.35vh, 0.85rem);
    gap: clamp(0.85rem, 1.9vh, 1.15rem);
  }

  #tgg-home-root .hero__actions,
  .page-home .hero__actions {
    gap: clamp(0.95rem, 2vh, 1.3rem);
    padding-top: 0.15rem;
  }

  #tgg-home-root .hero__title-logo,
  .page-home .hero__title-logo {
    width: min(100%, 23.5rem);
  }

  #tgg-home-root .hero__stage::before,
  .page-home .hero__stage::before {
    width: clamp(22rem, 34vw, 38rem);
    height: clamp(18rem, 30vw, 34rem);
    left: clamp(32rem, 42vw, 48rem);
    top: 42%;
    opacity: 0.85;
  }

  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 64% 16%;
  }
}

@media (min-width: 1440px) {
  #tgg-home-root .hero__stage,
  .page-home .hero__stage {
    padding-left: clamp(11vw, 12.5vw, 14vw);
  }

  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: clamp(26rem, 30vw, 32rem);
    max-width: 32rem;
  }

  #tgg-home-root .hero__stage::before,
  .page-home .hero__stage::before {
    left: clamp(36rem, 42vw, 48rem);
  }

  #tgg-home-root .hero__visual::before,
  .page-home .hero__visual::before {
    background-position: 0 0, center, center, center, 68% 14%;
  }
}

@media (max-width: 799px) {
  #tgg-home-root .hero__stage::before,
  .page-home .hero__stage::before {
    /* Keep mobile atmospheric treatment; never use desktop bridge glow */
    filter: none;
  }
}

/* Final announcement Instagram plug — desktop only */
@media (min-width: 1100px) {
  #tgg-home-root,
  .page-home {
    --announcement-height: 2.85rem;
  }

  #tgg-home-root .announcement-bar,
  .page-home .announcement-bar {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--announcement-height);
    padding: 0.35rem 0.75rem;
  }

  #tgg-home-root .announcement-bar__text,
  .page-home .announcement-bar__text {
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    max-width: 100%;
    text-align: center;
  }

  #tgg-home-root .hero-social-plug,
  .page-home .hero-social-plug {
    display: inline-flex;
    position: absolute;
    right: clamp(0.65rem, 1.5vw, 1.25rem);
    top: 50%;
    left: auto;
    bottom: auto;
    z-index: 2;
    margin: 0;
    transform: translateY(-50%);
    max-width: min(16.5rem, 28vw);
    opacity: 0.92;
  }
}

/* ==========================================================================
   Final homepage constellation/botanical art placement
   One asset per assigned section. Decorative only — never above copy/CTAs.
   ========================================================================== */

#tgg-home-root .section-art,
.page-home .section-art {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
  max-width: none;
  height: auto;
  z-index: 0;
}

/* Hero: constellation vine bridges card ↔ celestial art */
#tgg-home-root .section-art--hero-vine,
.page-home .section-art--hero-vine {
  display: none;
}

@media (min-width: 800px) {
  #tgg-home-root .section-art--hero-vine,
  .page-home .section-art--hero-vine {
    display: block;
    left: clamp(25rem, 34vw, 42rem);
    top: 34%;
    width: clamp(18rem, 28vw, 34rem);
    opacity: calc(0.26 * var(--section-art-breathe, 1));
    transform: rotate(calc(-8deg + var(--section-art-rot, 0deg)))
      translate3d(var(--section-art-x, 0px), var(--section-art-y, 0px), 0);
    z-index: 1;
  }
}

@media (min-width: 1100px) {
  #tgg-home-root .section-art--hero-vine,
  .page-home .section-art--hero-vine {
    left: clamp(28rem, 36vw, 44rem);
    top: 36%;
    width: clamp(20rem, 28vw, 34rem);
    opacity: calc(0.28 * var(--section-art-breathe, 1));
  }
}

@media (min-width: 1440px) {
  #tgg-home-root .section-art--hero-vine,
  .page-home .section-art--hero-vine {
    left: clamp(32rem, 34vw, 42rem);
    opacity: calc(0.3 * var(--section-art-breathe, 1));
  }
}

/* Brand intro: crescent botanical softens the post-hero edge */
#tgg-home-root .brand-intro,
.page-home .brand-intro {
  position: relative;
}

#tgg-home-root .section-art--brand-crescent,
.page-home .section-art--brand-crescent {
  display: none;
}

@media (min-width: 800px) {
  #tgg-home-root .section-art--brand-crescent,
  .page-home .section-art--brand-crescent {
    display: block;
    right: -6rem;
    top: -7rem;
    width: clamp(16rem, 24vw, 28rem);
    opacity: calc(0.16 * var(--section-art-breathe, 1));
    z-index: 0;
    transform: rotate(calc(6deg + var(--section-art-rot, 0deg)))
      translate3d(var(--section-art-x, 0px), var(--section-art-y, 0px), 0);
  }

  #tgg-home-root .brand-intro,
  .page-home .brand-intro {
    overflow-x: clip;
  }

  #tgg-home-root .brand-intro > .brand-intro__grid,
  .page-home .brand-intro > .brand-intro__grid {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1100px) {
  #tgg-home-root .section-art--brand-crescent,
  .page-home .section-art--brand-crescent {
    right: -7rem;
    top: -8rem;
    width: clamp(18rem, 24vw, 28rem);
    opacity: calc(0.18 * var(--section-art-breathe, 1));
  }
}

/* Join the Gang: moth + crystal frames the newsletter CTA */
#tgg-home-root .join-gang,
.page-home .join-gang {
  position: relative;
}

#tgg-home-root .section-art--join-moth,
.page-home .section-art--join-moth {
  display: none;
}

@media (min-width: 800px) {
  #tgg-home-root .section-art--join-moth,
  .page-home .section-art--join-moth {
    display: block;
    left: max(-4rem, -5vw);
    bottom: -6rem;
    width: clamp(14rem, 22vw, 26rem);
    opacity: calc(0.18 * var(--section-art-breathe, 1));
    z-index: 0;
    transform: rotate(calc(-4deg + var(--section-art-rot, 0deg)))
      translate3d(var(--section-art-x, 0px), var(--section-art-y, 0px), 0);
  }

  #tgg-home-root .join-gang > .join-gang__grid,
  .page-home .join-gang > .join-gang__grid {
    position: relative;
    z-index: 1;
  }

  /* Keep the existing moon above the moth layer but below form content */
  #tgg-home-root .join-gang__moon,
  .page-home .join-gang__moon {
    z-index: 0;
  }
}

@media (min-width: 1100px) {
  #tgg-home-root .section-art--join-moth,
  .page-home .section-art--join-moth {
    left: max(-5rem, -4vw);
    bottom: -7rem;
    width: clamp(16rem, 22vw, 26rem);
    opacity: calc(0.2 * var(--section-art-breathe, 1));
  }
}

/* Mobile: keep clean — hide all three decorative assets */
@media (max-width: 799px) {
  #tgg-home-root .section-art--hero-vine,
  .page-home .section-art--hero-vine,
  #tgg-home-root .section-art--brand-crescent,
  .page-home .section-art--brand-crescent,
  #tgg-home-root .section-art--join-moth,
  .page-home .section-art--join-moth {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #tgg-home-root .section-art,
  .page-home .section-art {
    transition: none;
    animation: none;
    will-change: auto;
  }

  #tgg-home-root .section-art--hero-vine,
  .page-home .section-art--hero-vine {
    transform: rotate(-8deg);
  }

  #tgg-home-root .section-art--brand-crescent,
  .page-home .section-art--brand-crescent {
    transform: rotate(6deg);
  }

  #tgg-home-root .section-art--join-moth,
  .page-home .section-art--join-moth {
    transform: rotate(-4deg);
  }
}

/* Final editorial statement sticker placement */
#tgg-home-root .editorial-statement,
.page-home .editorial-statement {
  position: relative;
  overflow: hidden;
}

#tgg-home-root .editorial-statement__content,
.page-home .editorial-statement__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  pointer-events: none;
}

#tgg-home-root .editorial-statement__quote,
.page-home .editorial-statement__quote {
  max-width: min(52rem, 100%);
  margin-inline: auto;
}

#tgg-home-root .editorial-statement__badge,
.page-home .editorial-statement__badge {
  position: absolute;
  z-index: 3;
  right: clamp(6rem, 14vw, 14rem);
  top: clamp(3.25rem, 26%, 5.25rem);
  display: block;
  width: clamp(7rem, 8.5vw, 9.25rem);
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  object-fit: contain;
  transform: rotate(-7deg);
  pointer-events: none;
  filter:
    drop-shadow(0 1px 0 rgba(255, 246, 236, 0.35))
    drop-shadow(0 12px 18px rgba(8, 2, 14, 0.45));
}

@media (min-width: 1440px) {
  #tgg-home-root .editorial-statement__badge,
  .page-home .editorial-statement__badge {
    right: clamp(7.5rem, 15vw, 16rem);
    top: clamp(3rem, 24%, 5rem);
    width: clamp(7.5rem, 7.5vw, 9.5rem);
  }

  #tgg-home-root .editorial-statement__quote,
  .page-home .editorial-statement__quote {
    max-width: min(52rem, 46vw);
  }
}

@media (min-width: 800px) and (max-width: 1099px) {
  #tgg-home-root .editorial-statement__badge,
  .page-home .editorial-statement__badge {
    right: clamp(0.75rem, 2.75vw, 2.25rem);
    top: clamp(2.75rem, 24%, 4rem);
    width: clamp(5rem, 8.5vw, 6.25rem);
    opacity: 0.88;
  }

  #tgg-home-root .editorial-statement__quote,
  .page-home .editorial-statement__quote {
    max-width: min(34rem, 62vw);
  }
}

@media (max-width: 799px) {
  #tgg-home-root .editorial-statement__badge,
  .page-home .editorial-statement__badge {
    display: none;
  }
}

/* Final deployment QA polish */
#tgg-home-root,
.page-home {
  overflow-x: clip;
}

#tgg-home-root .site-header,
.page-home .site-header {
  z-index: 100;
}

#tgg-home-root main > section[id],
.page-home main > section[id] {
  scroll-margin-top: calc(var(--header-height-mobile, 4.25rem) + 0.6rem);
}

@media (min-width: 800px) {
  #tgg-home-root main > section[id],
  .page-home main > section[id] {
    scroll-margin-top: calc(var(--header-height, 5.75rem) + 0.75rem);
  }
}

/* Opaque chrome over cream fields; transparency is only for dark/hero surfaces */
#tgg-home-root .site-header.is-on-light,
.page-home .site-header.is-on-light {
  background-color: rgba(22, 8, 29, 0.96);
}

@media (min-width: 1100px) {
  #tgg-home-root .editorial-statement__quote,
  .page-home .editorial-statement__quote {
    max-width: min(52rem, 48vw);
  }
}

@media (max-width: 767px) {
  #tgg-home-root .sale-rail,
  .page-home .sale-rail {
    overflow: visible;
  }

  #tgg-home-root .sale-grid,
  .page-home .sale-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: clamp(0.65rem, 0.55rem + 0.4vw, 0.9rem);
    padding-bottom: 0;
  }

  #tgg-home-root .sale-grid > li,
  .page-home .sale-grid > li {
    flex: none;
    max-width: none;
  }
}

@media (max-width: 760px) {
  #tgg-home-root .market-card::before,
  .page-home .market-card::before {
    width: clamp(4.5rem, 22vw, 5.75rem);
    height: clamp(4.5rem, 22vw, 5.75rem);
    top: -1rem;
    right: 0.1rem;
    opacity: 0.92;
  }

  #tgg-home-root .market-card__title,
  .page-home .market-card__title {
    padding-right: clamp(4.25rem, 24vw, 6rem);
  }

  #tgg-home-root .brand-intro__postal,
  .page-home .brand-intro__postal {
    width: clamp(8.25rem, 46vw, 10.5rem);
    max-width: 58%;
  }
}

@media (min-width: 800px) {
  #tgg-home-root .join-gang__star,
  .page-home .join-gang__star {
    display: none;
  }
}

/* Final hero card spacing balance */
@media (min-width: 800px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    aspect-ratio: 400 / 555;
    height: auto;
    max-height: none;
  }

  #tgg-home-root .hero-card__inner,
  .page-home .hero-card__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    height: 100%;
    min-height: 0;
    grid-template-rows: none;
    gap: clamp(0.82rem, 1.45vh, 1.12rem);
    padding:
      clamp(1.45rem, 4.8%, 2rem)
      clamp(1.55rem, 7%, 2.15rem)
      clamp(1.3rem, 4.4%, 1.75rem);
  }

  #tgg-home-root .hero-card__brand,
  .page-home .hero-card__brand {
    margin-bottom: clamp(0.35rem, 0.9vh, 0.65rem);
  }

  #tgg-home-root .hero__title-logo,
  .page-home .hero__title-logo {
    width: min(100%, 22.75rem);
  }

  #tgg-home-root .hero-card__message,
  .page-home .hero-card__message {
    margin-top: clamp(0.15rem, 0.55vh, 0.4rem);
    gap: clamp(1.85rem, 4.2vh, 3rem);
  }

  #tgg-home-root .hero__actions,
  .page-home .hero__actions {
    align-self: center;
    margin-top: clamp(0.45rem, 1.2vh, 0.85rem);
    gap: clamp(0.72rem, 1.35vh, 0.95rem);
  }

  #tgg-home-root .hero-card__inner .btn--hero-secondary,
  .page-home .hero-card__inner .btn--hero-secondary {
    margin-top: 0;
    font-size: clamp(0.74rem, 0.72rem + 0.08vw, 0.82rem);
  }
}

@media (min-width: 1100px) {
  #tgg-home-root .hero__title-logo,
  .page-home .hero__title-logo {
    width: min(100%, 23rem);
  }

  #tgg-home-root .hero-card__inner,
  .page-home .hero-card__inner {
    padding-top: clamp(1.5rem, 4.8%, 2.05rem);
    padding-bottom: clamp(1.35rem, 4.3%, 1.8rem);
  }

  #tgg-home-root .hero__actions,
  .page-home .hero__actions {
    margin-top: clamp(0.55rem, 1.25vh, 0.9rem);
  }
}

@media (min-width: 800px) and (max-height: 760px) {
  #tgg-home-root .hero__title-logo,
  .page-home .hero__title-logo {
    width: min(100%, 21.75rem);
  }

  #tgg-home-root .hero-card__inner,
  .page-home .hero-card__inner {
    gap: clamp(0.62rem, 1.2vh, 0.9rem);
    padding-top: clamp(1.25rem, 4%, 1.65rem);
    padding-bottom: clamp(1.1rem, 3.6%, 1.45rem);
  }

  #tgg-home-root .hero-card__message,
  .page-home .hero-card__message {
    gap: clamp(1.05rem, 2.4vh, 1.55rem);
  }

  #tgg-home-root .hero__actions,
  .page-home .hero__actions {
    margin-top: clamp(0.35rem, 0.9vh, 0.65rem);
  }
}

@media (max-width: 799px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: min(92vw, 26.5rem);
    max-width: min(92vw, 26.5rem);
  }

  #tgg-home-root .hero__stage::before,
  .page-home .hero__stage::before {
    width: min(100%, 34rem);
    max-width: 100%;
  }

  #tgg-home-root .section-art,
  .page-home .section-art {
    filter: none;
  }
}

@media (max-width: 359px) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    width: min(calc(100% - 1.5rem), 20.5rem);
    max-width: min(calc(100% - 1.5rem), 20.5rem);
  }
}

#tgg-home-root .section-art,
.page-home .section-art,
#tgg-home-root .hero__deco,
.page-home .hero__deco,
#tgg-home-root .brand-intro__postal,
.page-home .brand-intro__postal,
#tgg-home-root .editorial-statement__badge,
.page-home .editorial-statement__badge,
#tgg-home-root .market-card::before,
.page-home .market-card::before {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #tgg-home-root .hero-card,
  .page-home .hero-card {
    --hero-card-float: 0px;
    transform: none;
  }
}
