/* ============================================================
   Teman Girls: Members Area
   Shares the stage-1 brand look (palette copied from styles.css).
   ============================================================ */

:root {
  --maroon: #990033;
  --maroon-deep: #6e0025;
  --blush: #f2d4de;
  --blush-soft: #f9e6ec;
  --offwhite: #fff7fa;
  --rose: #cd467c;
  --rose-dark: #b03765;
  --hotpink: #ff66c4;
  --ink: #4a2b36;
  --ink-soft: #8a6b76;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -12px rgba(153, 0, 51, 0.25);
  --shadow-soft: 0 4px 16px -6px rgba(153, 0, 51, 0.15);

  /* Lato hierarchy: 900 display moments, 700 headers/UI, 400 body, 300 light standfirst, italic accents */
  --font-display: "Lato", "Segoe UI", Arial, sans-serif;
  --font-body: "Lato", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--blush);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, var(--offwhite) 0%, transparent 60%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

/* ---------- background blobs ---------- */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.bg-blob--1 { width: 420px; height: 420px; background: var(--hotpink); opacity: 0.16; top: -140px; right: -120px; }
.bg-blob--2 { width: 380px; height: 380px; background: var(--rose); opacity: 0.12; bottom: -160px; left: -140px; }

/* ============================================================
   Landing: Modern Editorial
   Warm paper field, maroon ink, one signature: italic "teman".
   ============================================================ */
body.landing {
  background: var(--offwhite);
  background-image:
    radial-gradient(ellipse 70% 40% at 50% -5%, rgba(255, 102, 196, 0.08), transparent 70%);
}

.gate {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 8vh, 5rem) 1.5rem;
}
@media (max-height: 780px) { .gate { justify-content: flex-start; } }

.gate__inner {
  width: 100%;
  max-width: 460px;
  text-align: center;
  animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

/* masthead */
.gate__logo {
  display: block;
  max-width: min(280px, 72vw);
  max-height: 132px;
  margin: 0 auto;
  object-fit: contain;
}
.gate__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 9vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--maroon);
}
.gate__wordmark em { font-style: italic; font-weight: 400; color: var(--rose); }
body.has-logo .gate__wordmark { display: none; }

/* eyebrow kicker */
.gate__eyebrow {
  margin-top: 1.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
}

/* editorial standfirst: the emotional hero */
.gate__mission {
  margin: 1.1rem auto 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.35rem, 5.2vw, 2rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--maroon);
}
.gate__mission em { font-style: italic; font-weight: 400; color: var(--rose); }

/* actions */
.gate__actions {
  margin: 2.2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: 300px;
}
@media (min-width: 480px) {
  .gate__actions { flex-direction: row; max-width: none; justify-content: center; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
@media (min-width: 480px) { .btn { min-width: 168px; } }
.btn--primary {
  background: var(--maroon);
  color: #fff;
  border: 1.5px solid var(--maroon);
  box-shadow: 0 8px 22px -12px rgba(153, 0, 51, 0.6);
}
.btn--primary:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--maroon);
  border: 1.5px solid rgba(153, 0, 51, 0.35);
}
.btn--ghost:hover { background: var(--blush-soft); border-color: var(--maroon); transform: translateY(-2px); }

.gate__note { margin-top: 0.9rem; color: var(--ink-soft); font-size: 0.82rem; }
.gate__err { margin-top: 0.6rem; color: var(--maroon); font-weight: 700; font-size: 0.85rem; }

/* verification: editorial data block with a hairline */
.gate__verify {
  margin: 2.4rem auto 0;
  padding-top: 1.5rem;
  max-width: 360px;
  border-top: 1px solid rgba(153, 0, 51, 0.18);
}
.gate__count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--maroon);
  letter-spacing: 0.01em;
}
.gate__count span { color: var(--rose); }
.gate__verifyline { margin-top: 0.35rem; color: var(--ink-soft); font-size: 0.86rem; line-height: 1.5; }
.gate__verifyline a {
  color: var(--rose-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.gate__verifyline a:hover { color: var(--maroon); }
/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem 1.5rem;
  animation: rise 0.7s ease both;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.9rem;
}
.spark { color: var(--hotpink); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 12vw, 6.5rem);
  line-height: 0.95;
  color: var(--maroon);
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.hero__tag {
  margin-top: 0.9rem;
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}
.hero__wave {
  display: block;
  width: min(220px, 50vw);
  height: 12px;
  margin: 1.4rem auto 0;
  color: var(--hotpink);
  opacity: 0.8;
}

/* logo image (shows when logo.png exists; wordmark hides) */
.hero__logo {
  display: block;
  max-width: min(300px, 70vw);
  max-height: 140px;
  margin: 0 auto 0.6rem;
  object-fit: contain;
}
body.has-logo .hero__title { display: none; }

/* main nav: quiet uppercase text links (distinct from filter pills) */
.mainnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 1.4rem;
  margin-top: 1.15rem;
  padding: 0 1rem;
  max-width: 100%;
}
.mainnav__btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0.25rem 0;
  color: var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.mainnav__btn:hover {
  color: var(--rose-dark);
  border-bottom-color: var(--rose);
  transform: none;
  box-shadow: none;
}
.mainnav__btn.is-active {
  color: var(--maroon);
  background: none;
  border-bottom-color: var(--maroon);
}
@media (min-width: 560px) {
  .mainnav__btn { font-size: 0.76rem; }
}
.mainnav__btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.mainnav__btn.is-active {
  background: linear-gradient(135deg, var(--rose), var(--maroon));
  border-color: transparent;
  color: #fff;
}

/* ---------- shell ---------- */
.shell {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1rem 4rem;
}

/* ---------- side-by-side panels ---------- */
.panels {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .panels { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .month { position: sticky; top: 1rem; }
}

/* ---------- controls ---------- */
.controls {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin: 1.6rem 0 1.8rem;
  animation: rise 0.7s 0.15s ease both;
}
.controls__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.chip {
  border: 1.5px solid rgba(153, 0, 51, 0.15);
  background: var(--offwhite);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--rose); transform: translateY(-1px); }
.chip.is-active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}

/* host-your-own CTA under the filter chips */
.hostcta {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), var(--maroon));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.hostcta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(153, 0, 51, 0.4); }

/* ---------- status ---------- */
.status {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-style: italic;
}

/* ---------- month view ---------- */
.month {
  background: var(--offwhite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(0.9rem, 3vw, 1.8rem);
  animation: rise 0.7s 0.25s ease both;
}
.month__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.month__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 4.5vw, 1.9rem);
  color: var(--maroon);
}
.month__nav {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(153, 0, 51, 0.15);
  background: transparent;
  color: var(--maroon);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.month__nav:hover { background: var(--maroon); color: #fff; transform: scale(1.06); }

.month__dow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 0.5rem;
  border-bottom: 1.5px dashed rgba(153, 0, 51, 0.15);
  margin-bottom: 0.4rem;
}

.month__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}
.day {
  min-height: 64px;
  border-radius: var(--radius-sm);
  padding: 6px 5px 4px;
  font-size: 0.8rem;
  position: relative;
  background: transparent;
  border: 1.5px solid transparent;
  text-align: left;
  font-family: var(--font-body);
  color: var(--ink);
  cursor: default;
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.day--pad { visibility: hidden; }
.day__num {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1;
}
.day--today {
  border-color: var(--hotpink);
  background: var(--blush-soft);
}
.day--today .day__num { color: var(--maroon); }
.day--has {
  cursor: pointer;
  background: var(--blush-soft);
}
.day--has:hover {
  background: var(--blush);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.day--past { opacity: 0.45; }
.day--selected {
  border-color: var(--maroon);
  background: var(--blush);
}
.day--flash { animation: flashring 0.8s ease 2; }

.day__dots { display: flex; gap: 3px; flex-wrap: wrap; }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  background: var(--rose);
}

.day__label {
  display: none;
  font-size: 0.63rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--maroon);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  min-width: 0;
}
.day__label--more { color: var(--ink-soft); }

@media (min-width: 640px) {
  .day { min-height: 84px; }
  .day__label { display: block; }
  .day__dots { display: none; }
}
@media (max-width: 639px) {
  .day__dots { margin-top: auto; }
}

/* ---------- event card ---------- */
.event {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid rgba(153, 0, 51, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
}
.event:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.event__main { flex: 1; min-width: 0; }
.event__cat {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}
.event__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--maroon);
  line-height: 1.25;
  margin: 2px 0 3px;
}
.event__meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.event__arrow {
  align-self: center;
  color: var(--hotpink);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- list view ---------- */
.list { animation: rise 0.5s ease both; }
.list__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.3rem, 4.5vw, 1.9rem);
  color: var(--maroon);
  margin: 0.4rem 0 1rem;
}
.dategroup { margin-bottom: 1.6rem; display: flex; gap: 1rem; scroll-margin-top: 1rem; }
.dategroup--flash .dategroup__badge {
  animation: flashring 0.8s ease 2;
}
.dategroup__badge {
  flex-shrink: 0;
  width: 58px;
  text-align: center;
  background: var(--offwhite);
  border: 1.5px solid rgba(153, 0, 51, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.2rem;
  box-shadow: var(--shadow-soft);
  height: fit-content;
  position: sticky;
  top: 12px;
}
.dategroup__day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--maroon);
  line-height: 1;
}
.dategroup__mon {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 2px;
}
.dategroup__dow {
  font-size: 0.6rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dategroup__events { flex: 1; min-width: 0; }

.empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
}
.empty__flower { font-size: 2.2rem; display: block; margin-bottom: 0.6rem; }
.empty__text { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }

/* ---------- modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal[hidden] { display: none; }
@media (min-width: 640px) {
  .modal { align-items: center; }
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(110, 0, 37, 0.35);
  backdrop-filter: blur(4px);
  animation: fade 0.25s ease both;
}
.modal__card {
  position: relative;
  background: var(--offwhite);
  border-radius: var(--radius) var(--radius) 0 0;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 1.6rem 1.5rem 2rem;
  box-shadow: 0 -10px 40px rgba(110, 0, 37, 0.3);
  animation: slideup 0.35s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}
@media (min-width: 640px) {
  .modal__card { border-radius: var(--radius); }
}
.modal__close {
  position: absolute;
  top: 12px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 0;
  background: var(--blush);
  color: var(--maroon);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.modal__close:hover { background: var(--maroon); color: #fff; }

.modal__img {
  width: calc(100% + 3rem);
  margin: -1.6rem -1.5rem 1.2rem;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.modal__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}
.modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--maroon);
  line-height: 1.15;
  margin: 6px 0 10px;
}
.modal__row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 5px;
}
.modal__row span:first-child { flex-shrink: 0; }
.modal__desc {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.modal__cta {
  display: inline-block;
  margin-top: 1.3rem;
  background: linear-gradient(135deg, var(--rose), var(--maroon));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.modal__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(153,0,51,0.4); }

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  background: var(--blush-soft);
  color: var(--ink-soft);
  text-align: center;
  padding: 2.2rem 1rem 2.4rem;
  margin-top: 2rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.footer__logo {
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.footer__note {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-top: 0.4rem;
}


/* ---------- animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideup {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes flashring {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 4px rgba(255, 102, 196, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- compact hero variant ---------- */
.hero--compact {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(153, 0, 51, 0.1);
}
.hero--compact .hero__eyebrow { margin-bottom: 0.4rem; }
.hero--compact .hero__title { font-size: clamp(2rem, 7vw, 3rem); font-weight: 700; }
.hero__brand { display: inline-block; line-height: 0; }
.hero--compact .hero__logo {
  max-width: min(220px, 60vw);
  max-height: 48px;
  margin: 0 auto 0.5rem;
}

/* small circular monogram above card pages */
.cardmark {
  display: block;
  width: 52px;
  margin: 5vh auto 1rem;
  position: relative;
  z-index: 1;
  line-height: 0;
  animation: rise 0.6s ease both;
}
.cardmark img { width: 100%; height: auto; display: block; }

/* ---------- profile / setup card ---------- */
.card {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0 auto 8vh;
  background: var(--offwhite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.6rem;
  animation: rise 0.6s ease both;
}
.card__title { font-family: var(--font-display); color: var(--maroon); font-size: 1.8rem; font-weight: 700; }
.card__sub { color: var(--ink-soft); font-size: 0.9rem; margin: 0.3rem 0 1.2rem; }
.card label, .changedlg label { display: block; font-weight: 700; font-size: 0.8rem; color: var(--maroon); margin-bottom: 0.9rem; }
.card input, .card select, .card textarea,
.changedlg input, .changedlg select, .changedlg textarea {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid rgba(153, 0, 51, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
}
.card input:focus, .card select:focus, .card textarea:focus,
.changedlg input:focus, .changedlg select:focus, .changedlg textarea:focus { outline: 2px solid var(--rose); border-color: transparent; }
.card__save { margin-top: 0.4rem; width: 100%; justify-content: center; }
.hint {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-top: 2px;
}
.hint--warn { margin-top: 6px; color: var(--rose-dark); }
.card__nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card__nav a { color: var(--rose); font-weight: 700; font-size: 0.85rem; text-decoration: none; }
.linklike { border: 0; background: none; color: var(--ink-soft); font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; cursor: pointer; }
.linklike:hover { color: var(--maroon); }

/* ---------- profile stats ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.3rem; }
.stat {
  background: var(--blush-soft);
  border: 1.5px solid rgba(153, 0, 51, 0.12);
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}
.stat--on { background: var(--maroon); color: #fff; border-color: var(--maroon); }

/* ---------- event check-in (inside modal) ---------- */
.checkin {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1.5px dashed rgba(153, 0, 51, 0.15);
}
.checkin__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--maroon);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.checkin__row { display: flex; gap: 0.5rem; }
.checkin__row input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid rgba(153, 0, 51, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.checkin__btn { margin-top: 0 !important; white-space: nowrap; }
.checkin__msg { margin-top: 0.5rem; font-size: 0.85rem; color: var(--rose-dark); }
.checkin__msg--ok { color: #1f7a4d; font-weight: 700; }
.checkin__hostbtn {
  border: 1.5px solid rgba(153, 0, 51, 0.2);
  background: var(--blush-soft);
  color: var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
}
.checkin__hostbtn:hover { background: var(--blush); }
.checkin__code {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--maroon);
}

/* ---------- find-a-member results ---------- */
.findverify { margin-top: 1.2rem; text-align: center; color: var(--ink); }
.findverify .card__save { display: inline-flex; width: auto; margin-top: 0.8rem; text-decoration: none; }
.findcard {
  margin-top: 1.2rem;
  border: 1.5px solid rgba(153, 0, 51, 0.12);
  border-radius: var(--radius-sm);
  background: var(--blush-soft);
  padding: 1.1rem 1.2rem;
  animation: rise 0.4s ease both;
}
.findcard__badge { color: #1f7a4d; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.findcard__name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--maroon); margin-top: 2px; }
.findcard__handle { color: var(--rose-dark); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.7rem; }
.findcard__bio { margin-top: 0.7rem; font-size: 0.9rem; color: var(--ink); }

/* shared solid button (forms, cards): matches the landing .btn--primary */
.gate__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--maroon);
  color: #fff;
  border: 1.5px solid var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.gate__google:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); transform: translateY(-2px); }

/* ---------- banned appeal (landing) ---------- */
.gate__appeal { max-width: 380px; margin: 0 auto; }
.gate__appealmsg { color: var(--ink); font-size: 0.95rem; margin-bottom: 1.1rem; line-height: 1.6; }

/* ---------- verify bar (logged-in, unverified) ---------- */
.nudge {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
  border-top: 1px solid rgba(153, 0, 51, 0.2);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 -6px 20px -12px rgba(153, 0, 51, 0.3);
}
.nudge a {
  color: var(--rose-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  white-space: nowrap;
}
.nudge a:hover { color: var(--maroon); }

/* ---------- help line (recovery + WhatsApp) ---------- */
.helpline {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.helpline .linklike { font-size: 0.82rem; }
.helpline a {
  color: var(--rose-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.helpline a:hover { color: var(--maroon); }
.gate__help { margin-top: 1.4rem; font-size: 0.82rem; color: var(--ink-soft); }
.gate__help a {
  color: var(--rose-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.gate__help a:hover { color: var(--maroon); }

/* ---------- danger zone (delete account) ---------- */
.danger {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(153, 0, 51, 0.18);
  text-align: center;
}
.danger__open {
  border: 0;
  background: none;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.danger__open:hover { color: var(--maroon); }
.danger__panel {
  text-align: left;
  background: var(--blush-soft);
  border: 1.5px solid rgba(153, 0, 51, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
}
.danger__warn { color: var(--ink); font-size: 0.88rem; line-height: 1.55; margin-bottom: 0.7rem; }
.danger__warn strong { color: var(--maroon); }
.danger__confirm {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--maroon);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.danger__confirm input {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid rgba(153, 0, 51, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #fff;
}
.danger__actions { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-top: 0.9rem; }
.danger__go {
  border: 1.5px solid var(--maroon);
  background: var(--maroon);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.danger__go:disabled { opacity: 0.4; cursor: not-allowed; }
.danger__go:not(:disabled):hover { background: var(--maroon-deep); }

/* ---------- flagged account card ---------- */
.findcard--flagged { background: var(--blush); border-color: rgba(153, 0, 51, 0.35); }
.findcard__badge--flag { color: var(--maroon); }
.findcard--flagged a { color: var(--rose-dark); font-weight: 700; text-decoration: none; }

/* ---- host an experience ---- */
.card--wide { max-width: 720px; }
.host__intro { margin: 0 0 12px; }
.host__steps { margin: 0 0 12px; padding-left: 20px; }
.host__steps li { margin-bottom: 4px; }
.host__section {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin: 28px 0 10px; padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.12);
}
.host__times { display: flex; gap: 12px; }
.host__times label { flex: 1; min-width: 0; }
.host__times input { min-width: 0; }
@media (max-width: 480px) {
  .host__times { flex-direction: column; gap: 0; }
}
.host__check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .95rem; margin-bottom: 10px;
  font-weight: 400; color: var(--ink);
}
/* .card input is display:block + width:100%; undo that for checkboxes so the
   box sits inline on the left instead of floating on its own line */
.host__check input[type="checkbox"] {
  display: inline-block;
  width: auto;
  flex: 0 0 auto;
  margin: 4px 0 0;
  accent-color: var(--maroon);
}
.fee {
  background: rgba(153, 0, 51, .05); border: 1px solid rgba(153, 0, 51, .15);
  border-radius: 6px; padding: 14px 16px; margin-bottom: 14px; font-size: .95rem;
}
.fee ul { margin: 8px 0; padding-left: 18px; }
.fee li { margin-bottom: 4px; }
.fee__bank { margin-top: 10px; }

/* bank details card: the one thing hosts must act on, so it stands alone */
.bankcard {
  background: #fff;
  border: 1.5px solid rgba(153, 0, 51, 0.35);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 0 0 14px;
  text-align: center;
}
.bankcard__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rose);
}
.bankcard__acct {
  font-family: var(--font-display); font-weight: 900; font-size: 1.7rem;
  letter-spacing: .08em; color: var(--maroon); line-height: 1.2;
}
.bankcard__meta { font-weight: 700; font-size: .92rem; color: var(--ink); margin-bottom: 10px; }
.bankcard__copy {
  border: 1.5px solid rgba(153, 0, 51, .25); background: var(--blush-soft);
  color: var(--maroon); font-family: var(--font-body); font-weight: 700;
  font-size: .8rem; padding: .45rem 1.1rem; border-radius: 999px; cursor: pointer;
}
.bankcard__copy:hover { background: var(--blush); }

/* live character counter inside hints */
.count { float: right; font-weight: 700; color: var(--rose-dark); }

.host__ok { color: #256029; font-weight: 700; }
.req { border: 1px solid rgba(0,0,0,.1); border-radius: 6px; padding: 12px 14px; margin-bottom: 10px; }
.req__head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.req__badge { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.req--pending { color: #8a6d1a; }
.req--info { color: #1c5d8f; }
.req--ok { color: #256029; }
.req--no { color: #8f1c2c; }
.req__reason { margin: 8px 0 4px; font-style: italic; }

/* change-request dialog (profile page) */
.changedlg {
  margin: auto; max-width: 480px; width: calc(100% - 2rem); border: 0;
  border-radius: 8px; padding: 20px 22px; background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.changedlg::backdrop { background: rgba(0, 0, 0, .45); }
.changedlg .host__section { border-top: 0; margin-top: 0; padding-top: 0; }
.changedlg__times { display: flex; gap: 12px; }
.changedlg__times label { flex: 1; }
.changedlg__row {
  display: flex; gap: 12px; justify-content: flex-end;
  align-items: center; margin-top: 14px;
}
@media (max-width: 480px) { .changedlg__times { flex-direction: column; gap: 0; } }

.wafab {
  position: fixed; right: 16px; bottom: 16px; z-index: 50;
  background: #1f7a4d; color: #fff; text-decoration: none;
  padding: 10px 16px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.wafab:hover { background: #196341; }

/* ---- poster page ---- */
.poster__wrap { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
#posterCanvas {
  width: 270px; height: 480px; border: 1px solid rgba(0,0,0,.15);
  border-radius: 8px; flex-shrink: 0; background: #fff;
}
.poster__fields { flex: 1; min-width: 260px; }
@media (max-width: 620px) { .poster__wrap { flex-direction: column; align-items: center; } }

/* ---------- personal calendar overlay ---------- */
.mycal {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(153, 0, 51, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
}
.mycal__title { font-family: var(--font-display); font-weight: 700; color: var(--maroon); margin: 0 0 4px; }
.mycal__body { margin: 0 0 10px; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.mycal__row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.mycal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--maroon);
  color: #fff;
  border: 1.5px solid var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.mycal__btn:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); transform: translateY(-2px); }
.mycal__btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.mycal__later, .mycal__disconnect {
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0;
}
.mycal__later:hover, .mycal__disconnect:hover { color: var(--maroon); }
.mycal__connected { margin-top: 12px; font-size: 0.88rem; color: var(--ink-soft); }
.mycal__note { margin-top: 10px; font-size: 0.88rem; color: var(--ink-soft); }

/* personal events in the list: muted outline card, no arrow */
.event--mine { background: transparent; border: 1.5px dashed rgba(153, 0, 51, 0.35); }
.event--mine .event__cat { color: var(--ink-soft); }

/* personal day dot on the month grid */
.dot--mine { background: #b98a2e; }
