:root {
  --cream: #fbf3e7;
  --cream-strong: #f2dfc3;
  --ink: #3d2418;
  --muted: #765d50;
  --orange: #e67e22;
  --orange-dark: #bd5e16;
  --brown: #6d351d;
  --paper: rgba(255, 252, 246, 0.82);
  --line: rgba(95, 50, 28, 0.15);
  --shadow: 0 24px 70px rgba(78, 39, 20, 0.14);
  --focus: #bd5e16;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(230, 126, 34, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 15%, rgba(109, 53, 29, 0.08), transparent 24rem),
    linear-gradient(135deg, #fffaf2 0%, var(--cream) 52%, #f7e7cf 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  padding: 28px 0;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

.brand img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(85, 44, 23, 0.15);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.58);
  transform: translateY(-2px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(230, 126, 34, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

.nav-mobile {
  display: none;
  position: relative;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.nav-toggle::-webkit-details-marker { display: none; }

.nav-toggle-icon {
  width: 16px;
  height: 12px;
  position: relative;
  background: linear-gradient(var(--ink), var(--ink)) center / 100% 2px no-repeat;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.nav-toggle-icon::before { top: 0; }
.nav-toggle-icon::after { bottom: 0; }

.nav-mobile[open] .nav-toggle {
  background: rgba(255, 252, 246, 0.95);
}

.nav-mobile-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  width: min(280px, calc(100vw - 32px));
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 18px 40px rgba(78, 39, 20, 0.14);
  backdrop-filter: blur(16px);
}

.nav-mobile-list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-mobile-list a:hover,
.nav-mobile-list a:focus-visible {
  background: rgba(242, 223, 195, 0.55);
}

.nav-mobile-list li:last-child {
  padding-top: 6px;
}

.status-pill--menu {
  width: 100%;
  justify-content: flex-start;
  white-space: normal;
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: 54px 0 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 { font-size: clamp(2.85rem, 7vw, 6.4rem); }
h1 em { color: var(--orange-dark); font-style: normal; }

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 15px;
  background: var(--ink);
  color: #fff8ef;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(61, 36, 24, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  background: #28170f;
  box-shadow: 0 18px 40px rgba(61, 36, 24, 0.28);
}

.hero-secondary-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.secondary-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.secondary-link:hover {
  color: var(--orange-dark);
}

.microcopy {
  margin: 22px 0 0;
  color: #9a7e6f;
  font-size: 0.9rem;
}

.mascot-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mascot-card {
  position: relative;
  z-index: 2;
  width: min(390px, 82vw);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  background: var(--paper);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  animation: float 5s ease-in-out infinite;
}

.mascot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  aspect-ratio: 1;
  object-fit: cover;
}

.tiny-label {
  position: absolute;
  top: 38px;
  left: 38px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(61, 36, 24, 0.86);
  color: #fff7ec;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mascot-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px 2px;
  align-items: end;
}

.mascot-note strong { font-size: 1.02rem; }
.mascot-note span { color: var(--muted); font-size: 0.88rem; text-align: right; }

.orbit {
  position: absolute;
  border: 1px solid rgba(109, 53, 29, 0.17);
  border-radius: 50%;
}

.orbit-one { width: min(480px, 90%); aspect-ratio: 1; height: auto; }
.orbit-two {
  width: min(370px, 72%);
  aspect-ratio: 1;
  height: auto;
  border-style: dashed;
  animation: spin 28s linear infinite;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(95, 50, 28, 0.12);
  border-radius: 14px;
  background: rgba(255, 251, 244, 0.88);
  box-shadow: 0 12px 30px rgba(78, 39, 20, 0.12);
  backdrop-filter: blur(8px);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 700;
}

.chip-one { top: 13%; right: 1%; transform: rotate(5deg); }
.chip-two { bottom: 18%; left: 2%; transform: rotate(-6deg); }
.chip-three { bottom: 6%; right: 6%; transform: rotate(3deg); }

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 9vw, 130px);
  align-items: end;
  padding: clamp(30px, 6vw, 72px);
  margin: 0 0 40px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 252, 246, 0.64);
  backdrop-filter: blur(12px);
}

.manifesto h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); }
.manifesto p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.06rem;
}

.explore {
  margin: 0 0 56px;
}

.explore-intro {
  max-width: 42rem;
  margin-bottom: 28px;
}

.explore-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.explore h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.explore-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(78, 39, 20, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.explore-card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 50, 28, 0.22);
  box-shadow: 0 18px 42px rgba(78, 39, 20, 0.12);
}

.explore-eyebrow {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.explore-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.15;
}

.explore-card p:not(.explore-eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.explore-link:hover {
  color: var(--orange-dark);
}

.site-footer {
  padding: 22px 0 36px;
  border-top: 1px solid var(--line);
  color: #8a7063;
  font-size: 0.82rem;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.6; }
}

@keyframes float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(0.5deg) translateY(-12px); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
  }

  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-secondary-links { justify-content: center; }
  .mascot-stage { min-height: 470px; }
  .manifesto { grid-template-columns: 1fr; }
  .explore-intro { text-align: center; margin-inline: auto; }
  .explore-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-mobile { display: block; }
}

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

@media (max-width: 560px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .site-header { padding-top: 18px; gap: 12px; }
  .brand span { font-size: 1rem; }
  .hero { padding-top: 30px; padding-bottom: 56px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .primary-button { width: 100%; }
  .hero-secondary-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .mascot-stage { min-height: 390px; }
  .orbit-one { width: min(340px, 88%); }
  .orbit-two { width: min(280px, 72%); }
  .chip-one { right: 4%; }
  .chip-two { left: 4%; }
  .chip-three { display: none; }
  .manifesto { border-radius: 24px; }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 375px) {
  .brand span { max-width: 9ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-toggle-label { display: none; }
  .nav-toggle { padding: 0 12px; }
}

@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;
  }
}
