:root {
  color-scheme: light;

  /*
   * Agency palette — Burnt Studio
   * Inspired by: creative studio atmosphere, terracotta/burnt orange,
   * warm cream canvases, charcoal ink, and natural craft materials.
   * Must NOT overlap creator palettes (green, pink, gold, noir).
   */
  --page-bg: #F4EEE5;
  --page-bg-alt: #EBE3D6;
  --panel: rgba(255, 251, 244, 0.82);
  --panel-strong: #FFFBF4;
  --panel-muted: rgba(255, 251, 244, 0.58);
  --text: #1C1915;
  --muted: #6B6259;
  --line: rgba(28, 25, 21, 0.11);
  --line-strong: rgba(28, 25, 21, 0.22);
  --accent: #BF5630;
  --accent-hover: #A04828;
  --accent-soft: rgba(191, 86, 48, 0.10);
  --shadow: 0 1px 3px rgba(31, 23, 15, 0.06), 0 8px 24px rgba(31, 23, 15, 0.08);

  /* Typography */
  --display-font: "Canela", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --body-font: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --mono-font: "SFMono-Regular", "IBM Plex Mono", "Menlo", monospace;

  /* Layout */
  --radius-xl: 2rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.5rem;
  --shell-width: min(72rem, calc(100% - 3rem));
}

/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.6;
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

/* ==========================================================================
   Shared structural — used by agency root, 404, and creator pages
   ========================================================================== */

.page {
  position: relative;
  min-height: 100vh;
}

.site-shell {
  width: var(--shell-width);
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 1.25rem;
}

.brand-lockup {
  display: grid;
  gap: 0.1rem;
  text-decoration: none;
}

.brand-lockup__eyebrow,
.micro-label {
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-lockup__title {
  font-family: var(--display-font);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.nav-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-muted);
  font-size: 0.9rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-link:hover,
.button:hover,
.nav-link:focus-visible,
.button:focus-visible {
  border-color: var(--line-strong);
}

.nav-link[aria-current="page"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.button--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.button--ghost {
  background: transparent;
}

.button--block {
  width: 100%;
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ==========================================================================
   Agency root page
   ========================================================================== */

.agency-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: 3rem 0 4rem;
}

.agency-hero__content {
  max-width: 34rem;
}

.agency-hero__tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.agency-hero__headline {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.agency-hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.agency-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.agency-hero__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--page-bg-alt);
}

.agency-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agency-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(28, 25, 21, 0.08);
  pointer-events: none;
}

@media (max-width: 48rem) {
  .agency-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0 3rem;
  }

  .agency-hero__visual {
    aspect-ratio: 3 / 2;
    max-height: 24rem;
    order: -1;
  }
}

.agency-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
}

.agency-section__header {
  margin-bottom: 2.25rem;
}

.agency-section__title {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}

.agency-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.agency-service {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.agency-service:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.agency-service__number {
  display: inline-block;
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.agency-service__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agency-service p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 36rem) {
  .agency-services {
    grid-template-columns: 1fr;
  }
}

/* About — highlight variant */
.agency-section--highlight {
  background: var(--page-bg-alt);
  border-top: none;
  border-radius: var(--radius-xl);
  padding: 3rem clamp(1.5rem, 3vw, 2.5rem);
  margin: 1rem 0;
}

.agency-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.agency-about__header .agency-section__title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.agency-about__body p {
  color: var(--muted);
  line-height: 1.7;
}

.agency-about__body p + p {
  margin-top: 1rem;
}

@media (max-width: 48rem) {
  .agency-about {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.agency-contact p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.agency-footer {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   404 page
   ========================================================================== */

.section {
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel);
}

.section-title {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.section-copy {
  color: var(--muted);
  line-height: 1.65;
  max-width: 44rem;
  margin: 0.45rem 0 1rem;
}

/* ==========================================================================
   Creator hub components — used by creator pages only
   ========================================================================== */

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: clip;
  z-index: 0;
}

.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
}

.ambient::before {
  width: 24rem;
  height: 24rem;
  top: -4rem;
  right: -6rem;
  background: rgba(204, 149, 96, 0.34);
}

.ambient::after {
  width: 30rem;
  height: 30rem;
  bottom: -10rem;
  left: -8rem;
  background: rgba(122, 87, 65, 0.2);
}

.route-page {
  background: var(--page-bg);
}

.hero-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--mono-font);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.hub-panel,
.hub-card,
.gate-card,
.empty-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hub-panel {
  position: sticky;
  top: 1rem;
  border-radius: calc(var(--radius-xl) + 0.4rem);
  overflow: hidden;
}

.hub-panel__hero {
  min-height: min(46rem, 78vh);
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
}

.hub-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.hub-path {
  font-family: var(--mono-font);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hub-title {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: -0.04em;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 0.9;
}

.hub-card,
.empty-card,
.gate-card {
  border-radius: var(--radius-lg);
  padding: 1.1rem;
}

.hub-copy,
.empty-card p,
.gate-copy {
  color: var(--muted);
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.hub-subtitle {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.4;
  letter-spacing: normal;
}

.hub-statbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hub-stat {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.hub-stat strong {
  display: block;
  font-size: 1.25rem;
}

.hub-stack {
  display: grid;
  gap: 1rem;
}

.hub-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.hub-card p {
  margin: 0;
}

.hub-card--feature {
  min-height: 14rem;
}

.hub-card--empty {
  padding: 1.3rem;
  border-style: dashed;
}

.hub-link-list {
  display: grid;
  gap: 0.7rem;
}

.hub-link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

/* Make room for badge on ag18 links */
.hub-link[data-type="ag18"] {
  padding-right: 2.8rem;
}

.hub-link span:last-child {
  color: var(--muted);
}

.hub-link.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

/* ==========================================================================
   18+ Age Gate Badge — shield icon on NSFW links
   ========================================================================== */

.ag18-badge {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 250ms ease, color 250ms ease;
  z-index: 1;
}

.ag18-badge__icon {
  width: 1.35rem;
  height: 1.5rem;
  display: block;
}

[data-type="ag18"]:hover .ag18-badge {
  opacity: 0.9;
  color: var(--accent);
}

/* Theme-specific badge colors */
.theme-claire [data-type="ag18"]:hover .ag18-badge {
  color: var(--rose, var(--accent));
}

.theme-lola .ag18-badge {
  color: var(--brass);
  opacity: 0.45;
}

.theme-lola [data-type="ag18"]:hover .ag18-badge {
  color: var(--beige);
  opacity: 0.85;
}

/* Lola: badge must invert when hover slide fills */
.theme-lola .le-link:hover .ag18-badge {
  color: var(--noir);
}

.theme-vivienne [data-type="ag18"]:hover .ag18-badge {
  color: var(--accent);
}

/* Lola link badge spacing */
.le-link[data-type="ag18"] {
  padding-right: 2.8rem;
}

.gate {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 10, 12, 0.64);
  backdrop-filter: blur(18px);
  z-index: 10;
}

.gate[hidden] {
  display: none;
}

.gate-card {
  width: min(34rem, 100%);
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.empty-card {
  text-align: center;
  padding: 1.5rem;
}

.empty-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.footer-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   Creator themes — color overrides
   ========================================================================== */

.theme-claire {
  --page-bg: #eff1ec;
  --page-bg-alt: #dae1d6;
  --panel: rgba(247, 244, 239, 0.78);
  --panel-strong: #fbf8f2;
  --panel-muted: rgba(252, 248, 243, 0.58);
  --text: #163026;
  --muted: #54645d;
  --line: rgba(22, 48, 38, 0.12);
  --line-strong: rgba(22, 48, 38, 0.24);
  --accent: #2e5a48;
  --accent-hover: #1f4435;
  --accent-soft: rgba(46, 90, 72, 0.12);
  --rose: #c9a09a;
  --display-font: "Didot", "Playfair Display", "Baskerville", "Iowan Old Style", serif;
  --body-font: "Montserrat", "Avenir Next", "Helvetica Neue", sans-serif;
}

.theme-vivienne {
  --page-bg: #f6efe3;
  --page-bg-alt: #eadbc4;
  --panel: rgba(255, 249, 239, 0.78);
  --panel-strong: #fffdfa;
  --panel-muted: rgba(255, 252, 246, 0.62);
  --text: #422d18;
  --muted: #7a6145;
  --line: rgba(66, 45, 24, 0.12);
  --line-strong: rgba(66, 45, 24, 0.24);
  --accent: #b28a42;
  --accent-hover: #96742f;
  --accent-soft: rgba(178, 138, 66, 0.16);
  --display-font: "Cormorant Garamond", "Playfair Display", "Baskerville", "Palatino Linotype", serif;
  --body-font: "Lato", "Montserrat", "Avenir Next", sans-serif;
}

.theme-lola {
  --page-bg: #0A0A0A;
  --page-bg-alt: #131313;
  --panel: rgba(12, 12, 12, 0.84);
  --panel-strong: #1C1C1C;
  --panel-muted: rgba(28, 28, 28, 0.7);
  --text: #D8C8B0;
  --muted: #bba98c;
  --line: rgba(138, 110, 59, 0.22);
  --line-strong: rgba(216, 200, 176, 0.32);
  --accent: #D8C8B0;
  --accent-hover: #F2ECE0;
  --accent-soft: rgba(216, 200, 176, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --noir: #0A0A0A;
  --beige: #D8C8B0;
  --bone: #F2ECE0;
  --oxblood: #5C1A1B;
  --brass: #8A6E3B;
  --graphite: #1C1C1C;
  --display-font: "Bodoni 72", "Didot", "Times New Roman", serif;
  --body-font: "Inter", "IBM Plex Sans", "Avenir Next", sans-serif;
  --mono-font: "IBM Plex Mono", "SFMono-Regular", monospace;
}

/* ==========================================================================
   Shared creator components
   ========================================================================== */

.creator-footer {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ==========================================================================
   Claire Velvet — Editorial Feet Art & Intimate Luxury
   Pine Green + Soft Rose | Gallery aesthetic, quiet luxury
   ========================================================================== */

.theme-claire .ambient::before {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  right: -4rem;
  background: rgba(201, 160, 154, 0.25);
}

.theme-claire .ambient::after {
  width: 28rem;
  height: 28rem;
  bottom: -8rem;
  left: -6rem;
  background: rgba(46, 90, 72, 0.12);
}

.cv-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.cv-hero__headline {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}

.cv-hero__tagline {
  font-family: var(--body-font);
  font-size: 1.05rem;
  color: var(--muted);
  font-style: italic;
}

.cv-manifest {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem 0 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.cv-manifest p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.cv-manifest p + p {
  margin-top: 0.75rem;
}

.cv-threshold {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.cv-enter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--body-font);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.cv-enter-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.cv-threshold__note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.cv-hub {
  padding: 3rem 0;
  max-width: 28rem;
  margin: 0 auto;
}

.cv-hub__title {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.4rem;
}

.cv-hub__intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.theme-claire .hub-link {
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.theme-claire .hub-link:hover {
  border-color: var(--line-strong);
  box-shadow: 0 2px 12px rgba(22, 48, 38, 0.08);
}

.theme-claire .hub-link--cta {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.cv-hub__footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1.5rem;
  font-style: italic;
}

.cv-gate-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  text-align: center;
}

.cv-gate__title {
  font-family: var(--display-font);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Lola Eden — Noir Mistress & Merciless Temptation
   70% Noir / 22% Beige / 5% Bone / 2% Oxblood / 1% Brass
   Cold, precise, dominant. Commands, not offers.
   ========================================================================== */

.theme-lola .page {
  background: var(--noir);
}

.theme-lola .ambient { display: none; }

.le-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.le-wordmark {
  font-family: var(--display-font);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}

.le-nav {
  display: flex;
  gap: 1.5rem;
}

.le-nav__link {
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 200ms ease;
}

.le-nav__link:hover {
  color: var(--beige);
}

.le-statement {
  padding: 8rem 0 6rem;
  max-width: 40rem;
}

.le-statement__text {
  font-family: var(--display-font);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--beige);
  margin: 0;
}

.le-manifest {
  max-width: 32rem;
  padding: 2rem 0 3rem;
}

.le-manifest p {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.le-threshold {
  padding: 3rem 0;
  text-align: center;
}

.le-enter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--oxblood);
  border-radius: 0;
  background: transparent;
  color: var(--beige);
  font-family: var(--mono-font);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 400ms ease-out, color 400ms ease-out;
}

.le-enter-btn:hover {
  background: var(--oxblood);
  color: var(--bone);
}

.le-threshold__note {
  margin-top: 0.75rem;
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--brass);
}

/* Lola Hub */
.le-hub {
  padding: 3rem 0;
  max-width: 36rem;
}

.le-hub__title {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 2rem;
}

.le-link-list {
  display: grid;
  gap: 0;
}

.le-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0.5rem;
  border-bottom: 1px solid var(--brass);
  text-decoration: none;
  color: var(--beige);
  transition: background 400ms ease-out, color 400ms ease-out;
  position: relative;
  overflow: hidden;
}

.le-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--beige);
  transform: translateX(-101%);
  transition: transform 400ms ease-out;
  z-index: 0;
}

.le-link:hover::before {
  transform: translateX(0);
}

.le-link:hover {
  color: var(--noir);
}

.le-link__name,
.le-link__tagline {
  position: relative;
  z-index: 1;
}

.le-link__name {
  font-family: var(--display-font);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.le-link__tagline {
  font-family: var(--mono-font);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  transition: color 400ms ease-out;
}

.le-link:hover .le-link__tagline {
  color: var(--noir);
}

.le-link--dm {
  margin-top: 1rem;
  border: 1px solid var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  padding: 1.2rem 0.75rem;
}

.le-link--dm::before {
  background: var(--oxblood);
}

.le-link--dm:hover {
  color: var(--bone);
}

.le-link--dm:hover .le-link__tagline {
  color: var(--bone);
}

.le-hub__footer {
  margin-top: 2rem;
  font-family: var(--mono-font);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--brass);
}

.le-footer {
  border-top-color: rgba(138, 110, 59, 0.18);
}

/* Lola Gate */
.le-gate {
  background: rgba(10, 10, 10, 0.92);
}

.le-gate-card {
  background: var(--graphite);
  border: 1px solid var(--brass);
  max-width: 30rem;
  text-align: center;
}

.le-gate__title {
  font-family: var(--display-font);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--beige);
  margin-bottom: 0.75rem;
}

.le-gate-card .gate-copy {
  font-family: var(--mono-font);
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
}

.le-btn-primary {
  background: var(--oxblood) !important;
  border-color: var(--oxblood) !important;
  color: var(--bone) !important;
  font-family: var(--mono-font);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
}

.le-btn-primary:hover {
  background: #7a2223 !important;
  border-color: #7a2223 !important;
}

.theme-lola .button--ghost {
  color: var(--muted);
  border-color: var(--brass);
  border-radius: 0;
  font-family: var(--mono-font);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theme-lola .button--ghost:hover {
  color: var(--beige);
  border-color: var(--beige);
}

/* ==========================================================================
   Vivienne Gold — Gilded Temptation & Velvet Authority
   Champagne Gold + Beige Satin + Cream | Warm, commanding, sparkle
   ========================================================================== */

.theme-vivienne .ambient::before {
  width: 24rem;
  height: 24rem;
  top: -4rem;
  right: -6rem;
  background: rgba(212, 182, 114, 0.2);
}

.theme-vivienne .ambient::after {
  width: 30rem;
  height: 30rem;
  bottom: -10rem;
  left: -8rem;
  background: rgba(178, 138, 66, 0.1);
}

.vg-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.vg-hero__headline {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

.vg-hero__tagline {
  font-family: var(--body-font);
  font-size: 1.05rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.vg-manifest {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem 0 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.vg-manifest p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  font-style: italic;
}

.vg-threshold {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.vg-enter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--body-font);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.vg-enter-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.vg-threshold__note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.vg-hub {
  padding: 3rem 0;
  max-width: 28rem;
  margin: 0 auto;
}

.vg-hub__title {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 0.4rem;
  font-style: italic;
}

.vg-hub__intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.theme-vivienne .hub-link {
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.theme-vivienne .hub-link:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 16px rgba(178, 138, 66, 0.12);
}

.theme-vivienne .hub-link--cta {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.vg-hub__footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1.5rem;
  font-style: italic;
}

.vg-gate-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  text-align: center;
}

.vg-gate__title {
  font-family: var(--display-font);
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.is-hidden {
  display: none;
}

/* ==========================================================================
   Language selector
   ========================================================================== */

.lang-selector {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-left: auto;
  z-index: 20;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0.3rem;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: border-color 180ms ease, opacity 180ms ease;
  opacity: 0.5;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  opacity: 0.85;
}

.lang-btn--active {
  opacity: 1;
  border-color: var(--accent, currentColor);
}

.lang-flag {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

/* Lola theme overrides for lang selector */
.theme-lola .lang-btn--active {
  border-color: var(--brass);
}

/* Ensure topbar can anchor the selector */

@media (max-width: 48rem) {
  .topbar,
  .le-hero {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .hub-layout {
    grid-template-columns: 1fr;
  }

  .hub-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --shell-width: min(100% - 1rem, 72rem);
  }

  .topbar,
  .hub-kicker {
    align-items: start;
    flex-direction: column;
  }

  .topnav {
    justify-content: start;
  }

  .hub-statbar {
    grid-template-columns: 1fr;
  }

  .hub-title {
    max-width: none;
  }

  /* Claire / Vivienne mobile */
  .cv-hero,
  .vg-hero {
    padding: 3.5rem 0 2.5rem;
  }

  /* Lola mobile */
  .le-statement {
    padding: 4rem 0 3rem;
  }

  .le-statement__text {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 640px) and (orientation: landscape) {
  .site-shell {
    padding-top: 0.8rem;
  }

  .hub-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hub-panel__hero {
    min-height: min(34rem, 130vh);
  }

  .hub-statbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
