/* phoebe EPK · two acts: umaga (cream/espresso world) to gabi (black/oxblood world)
   Palette from the band's BROWN and RED photo sets; orange and blue banned by Angel 2026-07-28 */

:root {
  --night: #0a0507;
  --oxblood: #983546;
  --oxblood-deep: #6e2432;
  --taupe: #856f63;
  --taupe-deep: #6b564c;
  --espresso: #3d2419;
  --cream: #f7ede4;
  --ink: #2b1408;
  --ink-soft: #5c4335;
  --paper-night: #f5e9e4;
  --night-soft: #c9a9a5;

  --display: "Bricolage Grotesque", sans-serif;
  --text: "IBM Plex Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;

  --measure: 34em;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--night); /* night act + pin spacer ground; day sections carry their own cream */
}

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

a { color: inherit; }
a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--oxblood);
  outline-offset: 3px;
}

h1, h2, h3 { font-family: var(--display); line-height: 1.02; }

h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6em;
}

/* ---------- header ---------- */

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem var(--gutter);
  color: var(--ink);
  transition: color 250ms ease;
}

.site-head.head-dark { color: var(--paper-night); }

.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  overflow: hidden;
  display: inline-block;
  pointer-events: none;
}
.wordmark span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}
.head-showname .wordmark { pointer-events: auto; }
.head-showname .wordmark span { transform: translateY(0); }

.site-head nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }

.site-head nav a {
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 2px;
}
.site-head nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.site-head nav a:hover::after, .site-head nav a:focus-visible::after { transform: scaleX(1); }

/* ---------- act I · hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  padding: 5.5rem var(--gutter) 0;
}

.hero-ghosts { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.ghost {
  position: absolute;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.ghost-outline {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: clamp(8rem, 34vw, 34rem);
  top: 4%;
  left: -6%;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(61, 36, 25, 0.14);
}

.ghost-serif {
  font-family: "Newsreader", serif;
  font-weight: 500;
  font-size: clamp(4rem, 15vw, 15rem);
  top: 26%;
  right: -2%;
  color: rgba(61, 36, 25, 0.08);
}

.ghost-mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(2rem, 7vw, 7rem);
  bottom: 8%;
  right: 12%;
  color: rgba(152, 53, 70, 0.13);
}

.hero-name {
  margin: auto 0 clamp(11rem, 30vh, 17rem);
  align-self: center;
  font-size: clamp(5rem, 22vw, 22rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--espresso);
  display: flex;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero-name span {
  --wght: 800;
  font-variation-settings: "wght" var(--wght);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-line {
  position: absolute;
  z-index: 3;
  bottom: 5.25rem;
  left: var(--gutter);
  text-align: left;
  max-width: 17em;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1.2;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 2.2rem;
  left: var(--gutter);
  color: var(--oxblood);
  font-size: 0.95rem;
}

/* ---------- single takeover ---------- */

.takeover {
  background: var(--espresso);
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
}

.takeover-date { font-family: var(--mono); font-size: 0.9rem; margin-bottom: 1rem; }

.takeover h2 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.takeover h2 em { font-style: normal; font-weight: 300; display: block; font-size: 0.5em; }

.takeover-copy > p:not(.takeover-date) { max-width: var(--measure); margin: 1.2rem 0 1.6rem; }

.platform-links { list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem 1.75rem; }
.platform-links a { font-weight: 600; text-underline-offset: 0.3em; }

.takeover-embed iframe { border-radius: 14px; border: 0; }

/* ---------- kwento ---------- */

.kwento {
  background: var(--cream);
  padding: clamp(4rem, 12vh, 9rem) var(--gutter);
}

.kwento h2 { color: var(--oxblood); }

.kwento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.kwento-lead {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.kwento-text p { max-width: var(--measure); color: var(--ink-soft); }
.kwento-text p + p { margin-top: 1rem; }
.kwento-text .kwento-lead { color: var(--ink); }

.kwento-video video { border-radius: 10px; background: #000; width: 100%; }
.kwento-video figcaption, .live-clips figcaption, .tiktok-native figcaption {
  font-size: 0.9rem;
  margin-top: 0.6rem;
  color: var(--ink-soft);
}

/* ---------- banda ---------- */

.banda {
  background: linear-gradient(var(--taupe-deep), #52403a);
  color: var(--cream);
  padding: clamp(4rem, 12vh, 9rem) var(--gutter);
}

.banda-note { max-width: var(--measure); margin-bottom: 2.5rem; color: #efe0d6; }

.banda-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.banda-photo img { border-radius: 10px; width: 100%; }
.banda-photo-alt { transform: translateY(clamp(1.5rem, 4vw, 3.5rem)); }

.roster-list { list-style: none; }
.roster-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(247, 237, 228, 0.3);
}
.roster-list li:last-child { border-bottom: 1px solid rgba(247, 237, 228, 0.3); }
.roster-list strong { font-family: var(--display); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 700; }
.roster-list span { color: #eddbce; font-size: 0.9rem; white-space: nowrap; }

/* ---------- dusk transition (signature) ---------- */

.dusk {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20vh var(--gutter);
  background: linear-gradient(#52403a, var(--night));
  position: relative;
}

.dusk-line {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 14em;
  grid-area: 1 / 1;
}

.dusk-line-day { color: var(--cream); }
.dusk-line-night { color: var(--night-soft); opacity: 0; }

/* ---------- act II shared ---------- */

.tugtog, .live, .tiktok { background: var(--night); color: var(--paper-night); }

/* ---------- tugtog ledger ---------- */

.tugtog { padding: clamp(4rem, 12vh, 9rem) var(--gutter); }

.tugtog h2 { color: var(--paper-night); }

.tugtog-intro { max-width: var(--measure); color: var(--night-soft); margin-bottom: 3rem; }

.ledger { list-style: none; max-width: 62rem; }

.ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: start;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(245, 233, 228, 0.22);
}
.ledger-row:last-child { border-bottom: 1px solid rgba(245, 233, 228, 0.22); }

.ledger-row h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }

.ledger-meta {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--night-soft);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.ledger-credits { font-size: 0.9rem; color: var(--night-soft); margin-top: 0.4rem; }

.ledger-listen summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--paper-night);
  border: 1px solid rgba(245, 233, 228, 0.4);
  border-radius: 999px;
  padding: 0.55em 1.4em;
  transition: border-color 160ms ease, background 160ms ease;
}
.ledger-listen summary::-webkit-details-marker { display: none; }
.ledger-listen summary:hover { border-color: var(--paper-night); background: rgba(245, 233, 228, 0.08); }
.ledger-listen[open] { grid-row: span 2; }
.ledger-listen[open] summary { background: var(--paper-night); color: var(--night); }
.ledger-listen iframe { margin-top: 1rem; border-radius: 14px; border: 0; width: min(80vw, 24rem); }
.ledger-alt { font-size: 0.9rem; margin-top: 0.6rem; color: var(--night-soft); }

/* ---------- live ---------- */

.live { padding: clamp(4rem, 12vh, 9rem) 0 clamp(4rem, 12vh, 8rem); }

.live-body { padding: 0 var(--gutter); }

.venue-ledger {
  list-style: none;
  margin: 0 0 4rem;
}
.venue-ledger li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
  padding: 0.35em 0;
}
.venue-ledger strong {
  font-family: var(--display);
  font-size: clamp(2rem, 5.5vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--paper-night);
}
.venue-ledger span {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--night-soft);
}

.live h2 { color: var(--paper-night); }

.live-quote { max-width: 40em; }
.live-quote p {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
}
.live-quote-gloss { font-size: 1rem; color: var(--night-soft); margin-top: 0.8rem; }
.live-quote cite { display: block; font-style: normal; font-size: 0.9rem; color: var(--night-soft); margin-top: 0.8rem; }

.live-lede { max-width: var(--measure); color: var(--night-soft); margin: 2rem 0 3rem; }

.fete-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
  margin: 0 0 3.5rem;
  max-width: 68rem;
}
.fete-gallery .fete-wide { grid-column: 1 / -1; }
.fete-gallery img { border-radius: 8px; width: 100%; object-fit: cover; }
.fete-gallery figure:not(.fete-wide) img { aspect-ratio: 4 / 5; }
.fete-gallery figcaption { font-size: 0.9rem; color: var(--night-soft); margin-top: 0.6rem; }

.live-clips { display: flex; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; }
.live-clips figure { flex: 1 1 260px; max-width: 380px; }
.live-clips video { border-radius: 10px; background: #000; width: 100%; }
.live-clips figcaption, .tiktok-native figcaption { color: var(--night-soft); }

/* ---------- tiktok ---------- */

.tiktok { padding: clamp(4rem, 12vh, 8rem) var(--gutter); }
.tiktok h2 { color: var(--paper-night); }
.tiktok-intro { color: var(--night-soft); margin-bottom: 2.5rem; }

.tiktok-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.tiktok-native { max-width: 380px; }
.tiktok-native video { border-radius: 10px; background: #000; }

.tiktok-links { list-style: none; }
.tiktok-links a {
  display: block;
  text-decoration: none;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 233, 228, 0.22);
  transition: padding-left 200ms ease;
}
.tiktok-links li:last-child a { border-bottom: 1px solid rgba(245, 233, 228, 0.22); }
.tiktok-links a:hover { padding-left: 0.8rem; }
.tiktok-links strong { font-family: var(--display); font-size: 1.5rem; font-weight: 700; display: block; }
.tiktok-links span { color: var(--night-soft); font-size: 0.95rem; }

/* ---------- press kit ---------- */

.press {
  background: linear-gradient(var(--night), var(--oxblood-deep));
  color: var(--paper-night);
  padding: clamp(4rem, 12vh, 9rem) var(--gutter);
}

.press h2 { color: var(--paper-night); }

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.press-facts div {
  display: grid;
  grid-template-columns: 9em minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(245, 233, 228, 0.25);
}
.press-facts div:last-child { border-bottom: 1px solid rgba(245, 233, 228, 0.25); }
.press-facts dt { font-family: var(--mono); font-size: 0.9rem; color: var(--night-soft); padding-top: 0.15em; }
.press-facts dd { font-weight: 500; }

.press-downloads h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.press-downloads > p { color: var(--night-soft); max-width: var(--measure); }
.press-downloads ul { list-style: none; margin: 1.5rem 0 2.5rem; }
.press-downloads ul a {
  display: inline-block;
  padding: 0.5rem 0;
  font-weight: 600;
  text-underline-offset: 0.3em;
}
.press-contact-line { font-size: 1.15rem; }
.press-contact-line a { font-weight: 700; }

/* ---------- footer ---------- */

.site-foot {
  background: var(--night);
  color: var(--paper-night);
  text-align: center;
  padding: clamp(4rem, 10vh, 7rem) var(--gutter) 0;
  overflow: hidden;
}

.foot-socials {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}
.foot-socials a { font-weight: 600; text-underline-offset: 0.3em; }

.foot-line { color: var(--night-soft); font-size: 0.95rem; }

.foot-bow { position: relative; margin-top: clamp(2.5rem, 6vh, 5rem); }

.foot-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(4rem, 16vw, 12rem);
  letter-spacing: -0.04em;
  line-height: 0.82;
  color: #b04057;
  position: relative;
  z-index: 2;
}

.foot-photo {
  display: block;
  position: relative;
  width: 100vw;
  margin: clamp(-1.5rem, -4vw, -3.5rem) 0 0 calc(50% - 50vw);
}
.foot-photo img { width: 100%; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .takeover, .tiktok-grid, .press-grid { grid-template-columns: minmax(0, 1fr); }
  .kwento-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .kwento-text { grid-column: 1 / -1; }
  .banda-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .banda-photo-alt { display: none; }
  .ledger-row { grid-template-columns: minmax(0, 1fr); }
  .takeover-embed iframe { max-width: 26rem; }
}

@media (max-width: 560px) {
  .site-head { padding: 0.9rem 1rem; }
  .site-head nav { gap: 0.9rem; }
  .site-head nav a { font-size: 0.9rem; }
  .wordmark { font-size: 1.1rem; }
  .hero { padding-top: 6rem; }
  .hero-name { font-size: 24vw; margin-bottom: clamp(13rem, 36vh, 20rem); }
  .hero-line { max-width: 80vw; bottom: 6rem; }
  .kwento-grid { grid-template-columns: minmax(0, 1fr); }
  .banda-grid { grid-template-columns: minmax(0, 1fr); }
  .live-clips figure { max-width: none; }
  .fete-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .press-facts div { grid-template-columns: minmax(0, 1fr); gap: 0.15rem; }
  .ledger-listen iframe { width: 100%; }
}

/* ---------- motion off ---------- */

@media (prefers-reduced-motion: reduce) {
  .dusk-line-day { opacity: 1; }
  .dusk-line-night { opacity: 1; position: relative; margin-top: 2rem; }
  .dusk { display: flex; flex-direction: column; justify-content: center; gap: 2rem; }
  .tiktok-links a { transition: none; }
}
