/* Art direction: quiet travel/essay journal -> restrained, literary, continuous
   Palette: warm neutral (Nexus) + single teal accent, tag colors used sparingly as data-color only
   Typography: Fraunces (display, editorial serif) + Inter (body) -- literary but legible
   Density: spacious, generous whitespace, slow motion throughout */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
}
body {
  min-height: 100dvh; line-height: 1.6;
  display: flex; flex-direction: column;
  font-family: var(--font-body, sans-serif); font-size: var(--text-base);
  color: var(--color-text); background-color: var(--color-bg);
  overflow-x: hidden;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; }
p { text-wrap: pretty; max-width: 72ch; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:root, [data-theme="light"] {
  --color-bg: #f7f6f2; --color-surface: #f9f8f5; --color-surface-2: #fbfbf9;
  --color-surface-offset: #f3f0ec; --color-divider: #dcd9d5; --color-border: #d4d1ca;
  --color-text: #28251d; --color-text-muted: #7a7974; --color-text-faint: #bab9b4;
  --color-text-inverse: #f9f8f4;
  --color-primary: #01696f; --color-primary-hover: #0c4e54;
  --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem; --radius-xl: 1rem; --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16,1,0.3,1);
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 80 / 0.12);
  --content-default: 1100px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;
  --text-xs: clamp(.75rem,.7rem + .25vw,.875rem);
  --text-sm: clamp(.875rem,.8rem + .35vw,1rem);
  --text-base: clamp(1rem,.95rem + .25vw,1.125rem);
  --text-lg: clamp(1.125rem,1rem + .75vw,1.5rem);
  --text-xl: clamp(1.5rem,1.2rem + 1.25vw,2.25rem);
  --text-2xl: clamp(2rem,1.2rem + 2.5vw,3.5rem);
  --text-3xl: clamp(2.5rem,1rem + 4vw,5rem);
}
[data-theme="dark"] {
  --color-bg: #14140f; --color-surface: #1a1a14; --color-surface-2: #1e1e17;
  --color-surface-offset: #201f19; --color-divider: #2a2a22; --color-border: #33322a;
  --color-text: #e8e6df; --color-text-muted: #a8a69c; --color-text-faint: #6d6b62;
  --color-text-inverse: #1a1a14;
  --color-primary: #5fb3ba; --color-primary-hover: #7ec5cb;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.5);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-8);
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-divider);
  gap: var(--space-4);
}
.brand { display: flex; align-items: center; gap: var(--space-3); min-width: 0; }
.brand svg { width: 32px; height: 32px; flex-shrink: 0; color: var(--color-text); }
.brand-name {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.main-nav { display: flex; align-items: center; gap: var(--space-6); flex-shrink: 0; }
.main-nav a {
  font-size: var(--text-sm); color: var(--color-text-muted); padding: var(--space-2) 0;
  border-bottom: 2px solid transparent; transition: color var(--transition-interactive), border-color var(--transition-interactive);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-text); border-color: var(--color-primary); }
.theme-toggle { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); flex-shrink: 0; }
.theme-toggle:hover { background: var(--color-surface-offset); }
.theme-toggle svg { width: 18px; height: 18px; }

/* ===== VIEWS / CONTINUITY ===== */
main { position: relative; flex: 1 0 auto; width: 100%; }
.view {
  animation: viewFadeIn 620ms cubic-bezier(0.16,1,0.3,1);
}
@keyframes viewFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HOME ===== */
.hero {
  padding: var(--space-24) var(--space-8) var(--space-16);
  max-width: var(--content-default); margin: 0 auto;
}
.hero-eyebrow { font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: var(--space-4); }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  max-width: 40ch;
  margin-bottom: var(--space-6);
}
.hero p { color: var(--color-text-muted); font-size: var(--text-lg); max-width: 52ch; }

.explore-grid {
  max-width: var(--content-default); margin: 0 auto; padding: var(--space-8);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
}
.explore-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface);
  box-shadow: 0 1px 2px oklch(0.2 0.01 80 / 0.06), 0 8px 24px oklch(0.2 0.01 80 / 0.05);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.explore-card[data-collection] { cursor: pointer; }
.explore-card:hover { box-shadow: 0 2px 4px oklch(0.2 0.01 80 / 0.08), 0 16px 36px oklch(0.2 0.01 80 / 0.08); transform: translateY(-2px); }
.explore-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.explore-card figcaption { padding: var(--space-4); font-size: var(--text-sm); color: var(--color-text-muted); }

.section-title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; margin-bottom: var(--space-2); }
.section-label { font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-faint); }

.worldline-section { max-width: var(--content-default); margin: 0 auto; padding: var(--space-16) var(--space-8); }
.worldline-copy { color: var(--color-text-muted); margin: var(--space-2) 0 var(--space-8); max-width: 60ch; }
.worldline-shell {
  position: relative; height: 140px; border-radius: var(--radius-lg);
  background: linear-gradient(to right, var(--color-surface-offset), var(--color-surface), var(--color-surface-offset));
  overflow: hidden;
}
.worldline-dot {
  position: absolute; top: 50%; width: 9px; height: 9px; border-radius: 50%;
  transform: translate(-50%,-50%); cursor: pointer;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  background: var(--dot-color); color: var(--dot-color);
  background: color-mix(in oklab, var(--dot-color) 82%, var(--color-text));
  color: color-mix(in oklab, var(--dot-color) 82%, var(--color-text));
  outline: 1px solid color-mix(in oklab, var(--dot-color) 58%, var(--color-text));
  outline-offset: 1px;
  box-shadow: 0 0 0 4px color-mix(in oklab, currentColor 18%, transparent);
}
.worldline-dot:hover { transform: translate(-50%,-50%) scale(1.6); }

.latest-grid { max-width: var(--content-default); margin: 0 auto; padding: var(--space-16) var(--space-8) var(--space-24); }
.latest-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px,100%),1fr)); gap: var(--space-6); margin-top: var(--space-8); }
.latest-card {
  background: var(--color-surface); border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: 0 1px 2px oklch(0.2 0.01 80 / 0.06), 0 6px 20px oklch(0.2 0.01 80 / 0.04);
  cursor: pointer; transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.latest-card:hover { box-shadow: 0 2px 6px oklch(0.2 0.01 80 / 0.08), 0 14px 32px oklch(0.2 0.01 80 / 0.07); transform: translateY(-2px); }
.latest-card .tag-dot { width: 8px; height: 8px; border-radius: 50%; margin-bottom: var(--space-3); }
.latest-card h3 { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: var(--space-2); }
.latest-card p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* Share section: commented out in index.html by default.
   See README.md "Bringing back Join the Community" for how to re-enable. */
.share-section { max-width: var(--content-default); margin: 0 auto; padding: var(--space-16) var(--space-8); text-align: left; }
.share-btn { display: inline-block; margin-top: var(--space-4); padding: var(--space-3) var(--space-6); background: var(--color-primary); color: var(--color-text-inverse); border-radius: var(--radius-md); font-size: var(--text-sm); }

/* ===== FLOATING VIEWS (Blogs / Photographs) ===== */
.float-view { max-width: 1400px; margin: 0 auto; padding: var(--space-8); }
.view[data-view="photographs"] .float-view { padding-bottom: var(--space-12); }
.float-header { padding: 0 var(--space-4); margin-bottom: var(--space-4); }
.float-title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; }

/* The homepage collections are a first layer over Home. Their existing
   letter/photo detail panel remains a smaller second layer above this one. */
body.collection-layer-open { overflow: hidden; }
.collection-overlay {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-6);
  background: color-mix(in oklab, var(--color-bg) 64%, transparent);
  backdrop-filter: blur(5px);
  opacity: 0; pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.16,1,0.3,1);
}
.collection-overlay.open { opacity: 1; pointer-events: auto; }
.collection-panel {
  width: min(1180px, 92vw); height: min(760px, 84vh);
  overflow-y: auto; overscroll-behavior: contain;
  padding: var(--space-8); background: var(--color-surface-2);
  border: 1px solid var(--color-divider); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(0.985);
  transition: transform 420ms cubic-bezier(0.16,1,0.3,1);
}
.collection-overlay.open .collection-panel { transform: translateY(0) scale(1); }
.collection-back {
  margin: 0 var(--space-4) var(--space-6); color: var(--color-text-faint);
  font-size: var(--text-xs); letter-spacing: 0.04em;
  transition: color var(--transition-interactive), transform var(--transition-interactive);
}
.collection-back:hover { color: var(--color-text); transform: translateX(-2px); }
.collection-header { margin-bottom: 0; }
.collection-copy { margin-top: var(--space-2); color: var(--color-text-muted); font-size: var(--text-sm); }

.float-stage {
  position: relative; width: 100%; margin: 0 auto; padding: 0 var(--space-4);
  /* Top padding reserves clear space below the header/title so drifting
     bubbles can never overlap the section heading text, at any screen size. */
  padding-top: var(--space-16);
  /* Height is computed dynamically by JS based on item count so the field
     always fills the viewport width without overflow or big empty gaps. */
}

.float-bubble {
  position: absolute; cursor: pointer;
  transition: left 9s cubic-bezier(0.37,0,0.18,1), top 11s cubic-bezier(0.37,0,0.18,1), box-shadow var(--transition-interactive);
  animation: driftBob 22s ease-in-out infinite;
  will-change: transform;
}
.float-bubble:hover { z-index: 30 !important; }
.float-bubble:hover .bubble-inner { transform: scale(1.08); }
@keyframes driftBob {
  0%   { transform: translate(-50%,-50%) translate(0px, 0px); }
  25%  { transform: translate(-50%,-50%) translate(6px, -9px); }
  50%  { transform: translate(-50%,-50%) translate(-4px, -3px); }
  75%  { transform: translate(-50%,-50%) translate(-7px, 6px); }
  100% { transform: translate(-50%,-50%) translate(0px, 0px); }
}
.bubble-inner { transition: transform var(--transition-interactive); width: 100%; height: 100%; }

.blog-bubble {
  width: clamp(96px, 10vw, 148px);
  height: clamp(96px, 10vw, 148px);
  border-radius: 50%; background: var(--color-surface); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: var(--space-3); border: 2px solid transparent;
}
.blog-bubble .bubble-inner { display: flex; align-items: center; justify-content: center; }
.blog-bubble .tag-dot { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; }
.blog-bubble h3 { font-size: var(--text-xs); font-weight: 600; line-height: 1.3; }

.photo-bubble {
  width: clamp(84px, 8.5vw, 128px); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); position: relative;
}
.photo-bubble img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.photo-bubble .photo-caption {
  position: absolute; inset: auto 0 0 0; padding: var(--space-2);
  background: linear-gradient(to top, oklch(0 0 0 / 0.55), transparent);
  color: white; font-size: var(--text-xs); opacity: 0; transition: opacity var(--transition-interactive);
}
.photo-bubble:hover .photo-caption { opacity: 1; }
.linked-dot {
  position: absolute; top: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%;
  background: #d19900; box-shadow: 0 0 0 2px white, 0 0 6px 1px #d19900;
  animation: pulseGold 2.4s ease-in-out infinite;
}
@keyframes pulseGold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.25); }
}

/* Day/night ambience -- a soft, wordless gradient wash across the photo
   stage that echoes the light-to-dark spread of the bubbles themselves.
   No labels: the light does the explaining. */
.photo-stage-ambience {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; border-radius: var(--radius-lg);
  background: linear-gradient(to right,
    color-mix(in oklab, #0b0c14 14%, transparent) 0%,
    transparent 45%, transparent 55%,
    color-mix(in oklab, #fff6df 22%, transparent) 100%);
}

.combined-stage-ambience {
  position: absolute; inset: 0; pointer-events: none; border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 28% 32%, color-mix(in oklab, var(--ambient-blue) 10%, transparent), transparent 38%),
    radial-gradient(circle at 72% 68%, color-mix(in oklab, var(--ambient-teal) 9%, transparent), transparent 40%);
}
.combined-item { z-index: 1; }
.combined-item.linked-active {
  z-index: 25;
  box-shadow: 0 0 0 3px color-mix(in oklab, #d19900 58%, transparent), 0 12px 30px color-mix(in oklab, #d19900 18%, transparent);
}
.collection-empty {
  position: absolute; inset: 45% auto auto 50%; transform: translate(-50%,-50%);
  color: var(--color-text-faint); font-family: var(--font-display); font-size: var(--text-lg);
}

/* ===== DETAIL OVERLAY ===== */
.detail-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: color-mix(in oklab, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: var(--space-6);
  opacity: 0; pointer-events: none; transition: opacity 420ms cubic-bezier(0.16,1,0.3,1);
}
.detail-overlay.open { opacity: 1; pointer-events: auto; }
.detail-panel {
  background: var(--color-surface); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  max-width: 640px; width: 100%; max-height: 84vh; overflow-y: auto; padding: var(--space-8);
  transform: translateY(16px) scale(0.98); transition: transform 420ms cubic-bezier(0.16,1,0.3,1);
}
.detail-overlay.open .detail-panel { transform: translateY(0) scale(1); }
.detail-close { float: right; width: 32px; height: 32px; border-radius: 50%; }
.detail-close:hover { background: var(--color-surface-offset); }
.detail-panel img { width: 100%; border-radius: var(--radius-lg); margin-bottom: var(--space-4); }
.detail-panel h2 { font-family: var(--font-display); font-size: var(--text-xl); margin-bottom: var(--space-2); }
.detail-meta { font-size: var(--text-xs); color: var(--color-text-faint); margin-bottom: var(--space-4); }
.detail-panel .body-text p { margin-bottom: var(--space-4); color: var(--color-text); }
.linked-story-note { margin-top: var(--space-4); padding: var(--space-3) var(--space-4); background: var(--color-surface-offset); border-radius: var(--radius-md); font-size: var(--text-sm); color: var(--color-text-muted); cursor: pointer; }
.linked-story-note:hover { background: var(--color-divider); }
.linked-story-note + .linked-story-note { margin-top: var(--space-2); }

.footer-note { flex: 0 0 auto; text-align: center; padding: var(--space-8) var(--space-8) var(--space-10); color: var(--color-text-faint); font-size: var(--text-xs); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-bubble {
  width: clamp(90px, 13vw, 130px);
  height: clamp(90px, 13vw, 130px);}
  .photo-bubble { width: clamp(80px, 11vw, 112px); }
}

@media (max-width: 640px) {
  .site-header { padding: var(--space-3) var(--space-4); gap: var(--space-2); }
  .brand-name { font-size: var(--text-sm); }
  .main-nav { gap: var(--space-3); }
  .main-nav a { font-size: var(--text-xs); }
  .hero { padding: var(--space-16) var(--space-4) var(--space-10); }
  .hero h1 { font-size: var(--text-xl); }
  .explore-grid { grid-template-columns: 1fr; padding: var(--space-4); }
  .float-header { padding: 0 var(--space-4); }
  .collection-overlay { padding: var(--space-3); }
  .collection-panel { width: 100%; height: 86vh; padding: var(--space-5); }
  .collection-back { margin-left: 0; }
  .float-stage { padding-top: var(--space-12); }
  .blog-bubble {
  width: clamp(76px, 30vw, 108px);
  height: clamp(76px, 30vw, 108px);
  padding: var(--space-2);}
  .blog-bubble h3 { font-size: var(--text-xs); }
  .photo-bubble { width: clamp(68px, 26vw, 96px); }
  .worldline-shell { height: 110px; }
  .detail-panel { padding: var(--space-5); max-height: 90vh; }
}

/* ===== MINIMAL V10 REPLACEMENT ADJUSTMENTS =====
   Keeps the newer view, worldline, floating fields, and JavaScript hooks intact.
   Restores the older home imagery, ambient color field, left-grouped tabs,
   theme-aware logo treatment, and responsive spacing. */

:root,
[data-theme="light"] {
  --color-bg: #f4f2ec;
  --color-surface: rgba(250, 249, 246, 0.88);
  --color-surface-2: rgba(252, 251, 248, 0.94);
  --color-surface-offset: rgba(239, 237, 231, 0.88);
  --ambient-blue: #7da8d8;
  --ambient-coral: #dca49b;
  --ambient-teal: #83b9b2;
  --ambient-opacity: 0.13;
}

[data-theme="dark"] {
  --color-bg: #151713;
  --color-surface: rgba(28, 30, 26, 0.9);
  --color-surface-2: rgba(31, 34, 29, 0.94);
  --color-surface-offset: rgba(34, 37, 31, 0.9);
  --color-divider: #30342b;
  --color-border: #393d33;
  --ambient-blue: #4a90e2;
  --ambient-coral: #d96f6f;
  --ambient-teal: #4ecdc4;
  --ambient-opacity: 0.12;
}

body {
  position: relative;
  background-color: var(--color-bg);
}

#ambient-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#ambient-field .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  opacity: var(--ambient-opacity);
  animation: ambientDrift 40s ease-in-out infinite;
  will-change: transform;
}

#ambient-field .orb-a {
  width: min(42vw, 440px);
  aspect-ratio: 1;
  top: -120px;
  left: -90px;
  background: var(--ambient-blue);
}

#ambient-field .orb-b {
  width: min(38vw, 380px);
  aspect-ratio: 1;
  right: -80px;
  bottom: -130px;
  background: var(--ambient-coral);
  animation-delay: -9s;
}

#ambient-field .orb-c {
  width: min(32vw, 320px);
  aspect-ratio: 1;
  top: 38%;
  left: 58%;
  background: var(--ambient-teal);
  animation-delay: -17s;
}

@keyframes ambientDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(28px, -36px, 0) scale(1.07); }
}

.site-header,
main,
.footer-note {
  position: relative;
}

main,
.footer-note {
  z-index: 1;
}

.site-header {
  justify-content: flex-start;
  background: color-mix(in oklab, var(--color-bg) 82%, transparent);
}

.main-nav {
  margin-left: clamp(var(--space-4), 3vw, var(--space-10));
}

.theme-toggle {
  margin-left: auto;
}

.brand-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .brand-logo {
  filter: invert(1);
  mix-blend-mode: screen;
}

.hero-visual {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--space-8) var(--space-8);
}

.hero-image {
  width: 100%;
  height: clamp(260px, 43vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .site-header {
    padding: var(--space-3) var(--space-4);
  }

  .brand-name {
    display: none;
  }

  .main-nav {
    margin-left: 0;
    gap: var(--space-3);
  }

  .theme-toggle {
    width: 34px;
    height: 34px;
  }

  .hero-visual {
    padding: 0 var(--space-4) var(--space-4);
  }

  .hero-image {
    height: clamp(220px, 62vw, 340px);
    border-radius: var(--radius-lg);
  }

  #ambient-field .orb-a {
    width: 330px;
    top: -120px;
    left: -170px;
  }

  #ambient-field .orb-b {
    width: 300px;
    right: -165px;
    bottom: -80px;
  }

  #ambient-field .orb-c {
    width: 250px;
    left: 42%;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: var(--space-2);
  }

  .main-nav {
    gap: var(--space-2);
  }

  .main-nav a {
    font-size: 0.72rem;
  }
}
