/* ================================================================
   BADDIEHAUS — TYPE SYSTEM + v1 SCAFFOLD
   Night-neon × hard grid. Archivo Variable is the architecture.
   ================================================================ */

@font-face {
  font-family: "Archivo";
  src: url("fonts/Archivo-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* color */
  --ink: #0a0a0c;
  --ink-soft: #131318;
  --bone: #f2ede2;
  --bone-dim: rgba(242, 237, 226, 0.62);
  --pink: #ff2e88;
  --pink-deep: #c4165e; /* AA-safe pink for use on light surfaces */
  --acid: #d9ff3d;
  --cobalt: #2b49ff;

  /* type scale */
  --fs-micro: 11px;
  --fs-micro-ls: 0.16em;
  --fs-body: 16px;
  --fs-promise: clamp(22px, 2.6vw, 36px);
  --fs-statement: clamp(19px, 1.8vw, 26px);
  --fs-sec: clamp(44px, 7vw, 110px);
  --fs-display: clamp(84px, 15vw, 230px);
  --fs-mail: clamp(26px, 5vw, 84px);

  /* structure */
  --gutter: clamp(16px, 3vw, 44px);
  --hairline-dark: 1px solid rgba(242, 237, 226, 0.22);
  --hairline-light: 1px solid rgba(10, 10, 12, 0.28);
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  font-variation-settings: "wght" 420;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--pink); color: var(--ink); }

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

a { color: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--acid); color: var(--ink);
  padding: 10px 16px; z-index: 99;
}
.skip:focus { left: 0; }

/* ---- micro label: the grid discipline ---- */
.micro {
  font-size: var(--fs-micro);
  letter-spacing: var(--fs-micro-ls);
  text-transform: uppercase;
  font-variation-settings: "wght" 560;
}

/* ================= TOP STRIP ================= */
.strip {
  background: var(--pink);
  color: var(--ink);
  border-bottom: var(--hairline-light);
}
.strip p {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 9px var(--gutter);
  font-size: var(--fs-micro);
  letter-spacing: var(--fs-micro-ls);
  text-transform: uppercase;
  font-variation-settings: "wght" 640;
}
.strip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink);
  animation: blink 1.6s steps(2, start) infinite;
}
@keyframes blink { to { visibility: hidden; } }

/* ================= NAV ================= */
.nav {
  border-bottom: var(--hairline-dark);
  background: var(--ink);
  position: sticky; top: 0; z-index: 50;
}
.nav-in {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--gutter);
  gap: 16px;
}
.nav-links {
  display: flex; gap: clamp(14px, 2.4vw, 30px); list-style: none;
}
.nav-links a, .nav-cta {
  font-size: var(--fs-micro);
  letter-spacing: var(--fs-micro-ls);
  text-transform: uppercase;
  text-decoration: none;
  font-variation-settings: "wght" 560;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover { border-color: var(--pink); color: var(--pink); }
.nav-wordmark {
  font-size: clamp(17px, 2.1vw, 24px);
  letter-spacing: 0.02em;
  text-decoration: none;
  font-variation-settings: "wght" 780;
  justify-self: center;
  white-space: nowrap;
}
.nav-cta { justify-self: end; border: 1px solid var(--bone); padding: 8px 14px; }
.nav-cta:hover { background: var(--bone); color: var(--ink); }
.nav-right { display: flex; gap: 10px; justify-self: end; align-items: center; }
.menu-btn {
  display: none;
  background: none; border: 1px solid var(--bone); color: var(--bone);
  font: inherit; font-size: var(--fs-micro); letter-spacing: var(--fs-micro-ls);
  text-transform: uppercase; padding: 8px 14px; cursor: pointer;
  font-variation-settings: "wght" 640;
}
.menu { border-top: var(--hairline-dark); background: var(--ink); }
.menu a {
  display: block;
  padding: 10px var(--gutter);
  border-bottom: var(--hairline-dark);
  text-decoration: none;
  font-size: clamp(28px, 9vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-variation-settings: "wght" 780;
  transition: color 0.2s, padding-left 0.2s;
}
.menu a:hover { color: var(--pink); padding-left: calc(var(--gutter) + 8px); }

/* ================= HERO ================= */
.hero { padding: 0 var(--gutter); border-bottom: var(--hairline-dark); }

.wordmark {
  display: flex; flex-direction: column;
  padding: clamp(24px, 4vw, 56px) 0 0;
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  overflow: clip;
}
.wm-line {
  font-size: var(--fs-display);
  font-variation-settings: "wght" 800;
  display: block;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.wm-haus { animation-delay: 0.12s; }
@keyframes rise {
  from { transform: translateY(110%); }
}
.wm-baddie { align-self: flex-start; }
.wm-haus { align-self: flex-end; color: var(--pink); }
.wm-reg { font-size: 0.12em; vertical-align: super; letter-spacing: 0; }

.hero-meta {
  display: flex; justify-content: space-between; gap: 16px;
  border-top: var(--hairline-dark);
  border-bottom: var(--hairline-dark);
  padding: 10px 0;
  margin-top: clamp(20px, 3vw, 40px);
  color: var(--bone-dim);
}

.hero-band {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: start;
}
.hero-left {
  grid-column: 1 / 6;
  display: flex; flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(28px, 3.5vw, 56px) 0 clamp(24px, 3vw, 48px);
}
.hero-fig {
  grid-column: 6 / 13;
  margin: clamp(32px, 4vw, 64px) calc(-1 * var(--gutter)) 0 0;
}
.hero-fig img {
  width: 100%;
  height: min(88vh, 980px);
  object-fit: contain;
  object-position: center;
  background: #000;
  will-change: opacity;
  transition: opacity .18s ease;
}

.hero-cap {
  display: flex; justify-content: space-between;
  padding: 8px var(--gutter) 0 0;
  color: var(--bone-dim);
}
.promise {
  font-size: var(--fs-promise);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-variation-settings: "wght" 680;
  max-width: 22em;
}
.promise em { font-style: normal; color: var(--acid); font-variation-settings: "wght" 640; }
.promise em { font-style: normal; color: var(--acid); }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-variation-settings: "wght" 700;
  padding: 16px 28px;
  border: 1px solid var(--bone);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-solid { background: var(--bone); color: var(--ink); }
.btn-solid:hover { background: var(--pink); border-color: var(--pink); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--bone); }
.btn-ghost:hover { background: var(--bone); color: var(--ink); }

/* ================= TICKER ================= */
.ticker {
  background: var(--acid);
  color: var(--ink);
  border-bottom: var(--hairline-light);
  overflow: clip;
}
.ticker-track {
  display: flex; width: max-content;
  animation: tick 26s linear infinite;
}
.ticker-track span {
  white-space: nowrap;
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variation-settings: "wght" 740;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ================= SECTION HEADS ================= */
.sec-head {
  padding: clamp(40px, 6vw, 88px) var(--gutter) clamp(20px, 3vw, 40px);
  border-bottom: var(--hairline-dark);
}
.sec-no { color: var(--pink); margin-bottom: 10px; }
.sec-title {
  font-size: var(--fs-sec);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-variation-settings: "wght" 780;
}
.sec-sub { margin-top: 14px; color: var(--bone-dim); max-width: 44em; }

/* ================= LOOKBOOK ================= */
.roster {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(48px, 5.5vw, 84px) clamp(14px, 2vw, 28px);
  padding: clamp(40px, 6vw, 88px) var(--gutter);
}
.frame { position: relative; }
.frame img {
  width: 100%; aspect-ratio: 2 / 3; object-fit: cover;
  filter: saturate(1.06);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.frame:hover img { transform: scale(1.02); }
.frame-hit {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: zoom-in; font: inherit;
}
.frame-hit:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }
.frame figcaption {
  display: flex; justify-content: space-between; gap: 8px;
  border-top: var(--hairline-dark);
  padding-top: 8px; margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.88);
  font-variation-settings: "wght" 560;
}
.frame figcaption span:first-child { color: var(--pink); white-space: nowrap; }

/* ---- residents: dating-profile cards ---- */
.pcard {
  grid-column: 1 / 7;
  background: var(--ink-soft);
  border: 1px solid rgba(242, 237, 226, 0.18);
}
.pcard:nth-child(even) { grid-column: 7 / 13; margin-top: 96px; }
.pcard-media { position: relative; }
.pcard-media .frame-hit { display: block; position: relative; }
.pcard-media .frame-hit::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 34%;
  background: linear-gradient(to top, rgba(10,10,12,0.88), rgba(10,10,12,0));
  pointer-events: none;
}
.pcard-media img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; display: block; }
.pcard-age {
  position: absolute; left: 14px; bottom: 14px;
  color: var(--bone);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-variation-settings: "wght" 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.pcard-dist {
  position: absolute; right: 14px; top: 14px;
  background: rgba(10, 10, 12, 0.72);
  color: var(--bone);
  padding: 6px 10px;
  letter-spacing: 0.14em;
}
.pcard-body { padding: clamp(18px, 2vw, 28px); display: grid; gap: 14px; }
.pcard-head { display: flex; flex-direction: column; gap: 4px; }
.pcard-name {
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-variation-settings: "wght" 800;
}
.pcard-check {
  display: inline-grid; place-items: center;
  width: 0.72em; height: 0.72em; margin-left: 12px; vertical-align: 0.1em;
  background: var(--acid); color: var(--ink);
  font-size: 0.42em; border-radius: 50%;
  font-weight: 900;
}
.pcard-check::before { content: "\2713\FE0E"; line-height: 1; }
.pcard-cap { color: var(--pink); }
.pcard-bio { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.4; color: var(--bone); font-variation-settings: "wght" 520; }
.pcard-want { font-size: 14px; line-height: 1.5; color: rgba(242, 237, 226, 0.82); }
.pcard-k { display: block; color: var(--acid); margin-bottom: 4px; letter-spacing: 0.16em; }
.pcard-gr { display: grid; gap: 12px; }
.flag {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  margin: 0 6px 6px 0;
  border: 1px solid;
}
.flag-g { border-color: rgba(217, 255, 61, 0.55); color: var(--acid); }
.flag-r { border-color: rgba(255, 46, 136, 0.55); color: var(--pink); }
.pcard-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.8);
  background: rgba(242, 237, 226, 0.07);
  padding: 3px 8px;
}
.pcard-foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pcard-cta { border-color: var(--pink); background: var(--pink); color: var(--ink); }
.pcard-cta:hover { background: var(--bone); border-color: var(--bone); }
.pcard-cta:disabled { background: transparent; border-color: var(--acid); color: var(--acid); cursor: default; }
.pcard-match { color: var(--acid); animation: matchpop 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes matchpop { from { opacity: 0; transform: scale(0.9); } }
@media (prefers-reduced-motion: reduce) { .pcard-match { animation: none; } }

/* poster rows — alternating lead side, one uniform offset */

/* ================= AFTER HOURS ================= */
.after-hours { border-top: var(--hairline-dark); }
.ah-roster { padding-top: clamp(32px, 4vw, 64px); padding-bottom: 0; }
.ah-frame { grid-column: span 3; }
.ah-frame img { aspect-ratio: 3 / 4; }
.ah-foot {
  display: flex; justify-content: center;
  padding: clamp(32px, 4vw, 56px) var(--gutter) clamp(48px, 6vw, 88px);
}

/* ================= LIGHTBOX ================= */
.lb {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 10, 12, 0.96);
  display: grid;
  grid-template-rows: 1fr auto;
}
.lb[hidden] { display: none; }
.lb-stage {
  display: grid; place-items: center;
  padding: clamp(12px, 3vh, 32px) clamp(12px, 3vw, 44px) 0;
  min-height: 0;
}
.lb-stage img {
  max-width: 100%; max-height: calc(100dvh - 150px);
  width: auto; height: auto;
  object-fit: contain;
  background: #000;
}
.lb-cap { color: var(--bone); margin-top: 10px; text-align: center; }
.lb-count { color: var(--pink); margin-top: 4px; text-align: center; }
.lb-bar {
  display: flex; justify-content: center; gap: 12px;
  padding: 14px var(--gutter) clamp(16px, 3vh, 28px);
}
.lb-btn {
  background: none; border: 1px solid var(--bone); color: var(--bone);
  font: inherit; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 20px; cursor: pointer;
  font-variation-settings: "wght" 640;
  transition: background 0.2s, color 0.2s;
}
.lb-btn:hover { background: var(--bone); color: var(--ink); }

/* ================= ABOUT ================= */
.about { background: var(--cobalt); color: var(--bone); border-top: var(--hairline-dark); }
.about .sec-head { border-bottom-color: rgba(242, 237, 226, 0.3); }
.about .sec-no, .about .col-k { color: var(--acid); }
.about-lede {
  margin-top: 20px;
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  font-variation-settings: "wght" 740;
  max-width: 14em;
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(40px, 5vw, 72px) var(--gutter) clamp(56px, 7vw, 104px);
}
.about-col + .about-col {
  border-left: 1px solid rgba(242, 237, 226, 0.35);
  padding-left: clamp(20px, 2.5vw, 40px);
}
.col-k { font-size: 12px; letter-spacing: 0.18em; margin-bottom: 18px; }
.statement {
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  font-variation-settings: "wght" 500;
  max-width: 24em;
}

/* ================= DROPS ================= */
.drops { background: var(--pink); color: var(--ink); }
.drops-head { padding: clamp(40px, 6vw, 88px) var(--gutter) 0; }
.drops .sec-no { color: var(--ink); }
.drops-title {
  font-size: clamp(72px, 12.5vw, 190px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-variation-settings: "wght" 800;
}
.drops-body { padding: clamp(48px, 6vw, 88px) var(--gutter) clamp(56px, 7vw, 104px); }
.drops-lede {
  font-size: clamp(24px, 3.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  font-variation-settings: "wght" 740;
  max-width: 18em;
}
.drops-status {
  max-width: 640px;
  margin: clamp(32px, 4vw, 56px) 0;
  border-top: 1px solid var(--ink);
}
.drops-status .row {
  display: flex; justify-content: space-between; gap: 24px;
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
}
.drops-status dt, .drops-status dd {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variation-settings: "wght" 680;
}
@media (max-width: 720px) {
  .drops-status dt, .drops-status dd { font-size: 14px; letter-spacing: 0.1em; }
}
.drops-status dd { text-align: right; }
.drops-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.drops .btn { border-color: var(--ink); background: var(--ink); color: var(--bone); padding: 20px 36px; font-size: 14px; }
.drops .btn:hover { background: var(--bone); color: var(--ink); }
.drops-mail a { text-decoration: underline; text-underline-offset: 3px; }

/* ================= CONTACT / FOOTER ================= */
.contact {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(48px, 6vw, 96px) var(--gutter) clamp(28px, 4vw, 48px);
}
.contact .sec-no { color: var(--pink-deep); margin-bottom: 20px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.contact-right { display: flex; flex-direction: column; gap: 12px; padding-bottom: 6px; }
.contact-right .socials { margin: 0 0 16px; }
.rk { color: rgba(10, 10, 12, 0.55); }
.contact-btn { border-color: var(--ink); background: var(--ink); color: var(--bone); }
.contact-btn:hover { background: var(--pink); border-color: var(--pink); color: var(--ink); }
.mark {
  display: grid; grid-template-columns: repeat(4, auto);
  justify-content: start; gap: clamp(10px, 1.5vw, 18px);
  margin-bottom: 12px;
}
.mark div { width: clamp(56px, 9vw, 116px); aspect-ratio: 1; }
.mark-circle { background: var(--acid); border-radius: 50%; }
.mark-bar { background: var(--pink); }
.mark-half { background: var(--cobalt); border-radius: 0 100% 0 0; }
.mark-square { background: var(--ink); }
.mark-cap { color: rgba(10, 10, 12, 0.62); margin-bottom: clamp(24px, 3vw, 40px); }
.contact-mail {
  display: inline-block;
  font-size: var(--fs-mail);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  font-variation-settings: "wght" 800;
  border-bottom: 4px solid var(--pink);
  padding-bottom: 6px;
  transition: color 0.2s;
}
.contact-mail:hover { color: var(--pink); }
.socials { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: clamp(28px, 4vw, 48px) 0; }
.chip {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 10px 16px;
  transition: background 0.2s, color 0.2s;
}
.chip:hover { background: var(--ink); color: var(--bone); }
.legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  border-top: var(--hairline-light);
  padding-top: 14px;
  color: rgba(10, 10, 12, 0.6);
}
.bm { color: var(--pink-deep); font-variation-settings: "wght" 700; }

/* ================= MOTION ================= */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .ticker-track, .strip-dot, .wm-line { animation: none; }
  .frame:hover img { transform: none; }
  .hero-fig img { transform: none !important; }
}

/* mid-width: after-hours goes 2-up, residents keep the poster rhythm */
@media (max-width: 1080px) {
  .ah-frame { grid-column: span 4 !important; }
}

/* ================= NARROW ================= */
@media (max-width: 720px) {
  .strip p {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
  }
  .strip-dot, .strip-long { display: none; }

  .nav-links { display: none; }
  .nav-in { grid-template-columns: auto 1fr; }
  .nav-wordmark { justify-self: start; }
  .menu-btn { display: inline-block; }
  .hero-meta p { white-space: nowrap; }
  .hm-flavor { display: none; }

  .hero-band { grid-template-columns: 1fr; align-items: start; }
  .hero-left { grid-column: 1 / -1; padding-bottom: 0; }
  .hero-fig {
    grid-column: 1 / -1;
    margin: 32px calc(-1 * var(--gutter)) 0;
    order: -1;
  }
  .hero-fig img { height: min(75svh, 720px); }

  .roster { grid-template-columns: 1fr; gap: 40px; }
  .roster .frame, .roster .pcard { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .ah-frame { grid-column: 1 / -1 !important; }
  .lb-bar { flex-wrap: wrap; }

  .about-grid { grid-template-columns: 1fr; }
  .about-col + .about-col { border-left: 0; border-top: 1px solid rgba(242, 237, 226, 0.35); padding-left: 0; padding-top: 24px; }

  .contact-grid { grid-template-columns: 1fr; align-items: start; }
  .contact-right { padding-bottom: 0; }

  .legal { flex-direction: column; }
}
