/* Sugar Jelly — Candy Girl fonts/sizes */
@import url("https://fonts.googleapis.com/css2?family=Allura&family=Caudex:wght@400;700&family=Great+Vibes&family=Luckiest+Guy&family=Luxurious+Script&family=Open+Sans:wght@400;600;700&family=Stardos+Stencil:wght@400;700&display=swap");

:root {
  --bg: #000000;
  --text: #e8dfdf;
  --muted: #c9c9c9;
  --title: rgb(245, 59, 195);
  --nav: rgb(249, 24, 166);
  --brand: #ff7bc8;
  --brand-glow:
    0 0 4px rgba(255, 182, 228, 0.95),
    0 0 14px rgba(255, 94, 184, 0.55),
    0 2px 0 rgba(176, 24, 112, 0.35);
  --phone: #bada55;
  --name: #e8dfdf;
  --blush: #321f1f;
  --line: #555555;
  --max: 1120px;
  --font: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-brand: "Luckiest Guy", "Comic Sans MS", cursive;
  --font-nav: "Stardos Stencil", "Stencil Std", Stencil, fantasy;
  --font-phone: "Great Vibes", "Snell Roundhand", cursive;
  --font-script: "Allura", "Luxurious Script", cursive;
  --font-card: "Caudex", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(var(--max), calc(100% - 1.5rem));
  margin: 0 auto;
}

/* Top brand + phones */
.topbar {
  text-align: center;
  padding: 1.35rem 0.75rem 0.85rem;
  background: #000;
  border-bottom: 1px solid #888;
}

.topbar__brand {
  display: inline-block;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(3rem, 13vw, 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--brand);
  text-shadow: var(--brand-glow);
}

.topbar__brand:hover {
  color: #ff9ad8;
  text-shadow:
    0 0 6px rgba(255, 210, 240, 1),
    0 0 18px rgba(255, 110, 196, 0.7),
    0 2px 0 rgba(176, 24, 112, 0.3);
}

.topbar__phones {
  margin: 0.9rem 0 0.25rem;
  line-height: 1.12;
}

.topbar__phones a {
  display: block;
  color: var(--phone);
  font-family: var(--font-phone);
  font-size: clamp(2.2rem, 9vw, 55px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.topbar__phones a + a {
  font-size: clamp(2rem, 8vw, 50px);
}

.topbar__phones a:hover {
  opacity: 0.88;
}

/* Area jump links — stencil + hot pink */
.area-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #000;
  border-bottom: 1px solid #333;
  text-align: center;
  padding: 0.85rem 0.5rem 0.95rem;
}

.area-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
}

.area-bar__link {
  font-family: var(--font-nav);
  font-size: clamp(1.7rem, 6.5vw, 50px);
  font-weight: 700;
  letter-spacing: normal;
  color: var(--nav);
  padding: 0.15rem 0.1rem;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.08em;
}

.area-bar__link.is-active,
.area-bar__link:hover {
  color: #fff;
}

/* Roster */
.roster {
  padding: 1.25rem 0 3rem;
  background: #000;
}

.region {
  margin-bottom: 2.25rem;
  scroll-margin-top: 4.5rem;
}

.region-title {
  margin: 0 0 0.85rem;
  text-align: center;
  font-family: var(--font-nav);
  font-size: clamp(2rem, 7vw, 70px);
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  color: var(--nav);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.1rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .roster-grid {
    max-width: 64rem;
    gap: 1.6rem 1.35rem;
  }
}

.roster-card {
  display: block;
  text-align: center;
}

.roster-card__image {
  overflow: hidden;
  background: var(--blush);
  aspect-ratio: 3 / 4;
  border: 4px solid #fff;
  box-sizing: border-box;
}

.roster-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.roster-card__name {
  margin: 0.35rem 0 0;
  font-family: var(--font-card);
  font-size: clamp(1rem, 2.4vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
  color: var(--nav);
}

/* Profile */
.profile-page {
  padding: 0.5rem 0 3rem;
  background: #000;
}

.profile-name {
  margin: 0.75rem 0 1rem;
  text-align: center;
  font-family: var(--font-script);
  font-size: clamp(3rem, 12vw, 75px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--title);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 450px));
  justify-content: center;
  gap: clamp(1rem, 8vw, 80px);
  width: min(980px, 100%);
  margin: 0 auto 1.75rem;
}

.photo-grid__item {
  margin: 0;
  background: #000;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.profile-stats {
  max-width: 46rem;
  margin: 0 auto 1.5rem;
  padding: 0 0.25rem;
  font-family: var(--font);
  font-size: clamp(1.15rem, 4.6vw, 49px);
  font-weight: 400;
  line-height: 1.8;
  color: #e8dfdf;
  text-align: left;
}

.profile-stats p {
  margin: 0;
}

.back-link {
  display: inline-block;
  margin: 0.75rem 0 0;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: var(--nav);
}

.profile-contact {
  text-align: center;
  margin: 1.25rem 0 0.5rem;
}

.profile-contact a {
  color: var(--phone);
  font-family: var(--font-phone);
  font-size: clamp(2.2rem, 7vw, 55px);
  font-weight: 400;
}

.profile-contact__hint {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Gate */
.gate {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background: #000;
  color: #fff;
}

.gate__panel {
  width: min(32rem, 100%);
  text-align: center;
}

.gate__brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: clamp(2.6rem, 9vw, 3.75rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--brand);
  text-shadow: var(--brand-glow);
}

.gate__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nav);
}

.gate__copy {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.gate__terms {
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.gate__actions {
  display: grid;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--nav);
  background: var(--nav);
  color: #fff;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  color: #fff;
}

.btn:hover {
  opacity: 0.88;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid var(--line);
  background: #000;
}

.policy-block {
  max-width: 40rem;
  margin: 2rem auto 0;
  color: #999;
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

/* Coming soon (under-construction deploy) */
.coming-soon {
  min-height: calc(100dvh - 4.5rem);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(255, 123, 200, 0.14), transparent 60%),
    #000;
}

.coming-soon__panel {
  width: min(36rem, 100%);
  text-align: center;
}

.coming-soon__brand {
  margin: 0 0 1rem;
  font-family: var(--font-brand);
  font-size: clamp(3rem, 14vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--brand);
  text-shadow: var(--brand-glow);
}

.coming-soon__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-nav);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--nav);
}

.coming-soon__copy {
  margin: 0 auto 1.5rem;
  max-width: 22rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.6;
}

.coming-soon__phones {
  margin: 0;
}

.coming-soon__phones a {
  color: var(--phone);
  font-family: var(--font-phone);
  font-size: clamp(2rem, 8vw, 48px);
  font-weight: 400;
}

.coming-soon__phones a:hover {
  opacity: 0.88;
}

.site-footer--minimal {
  border-top: 0;
}
