/* =========================================================================
   Remember Kate — site styles
   Brand: Playful. Irreverent. Dark.  Gold #FACA0C · Pink #ED1A91 · Poppins
   Mobile-first. One stylesheet, no framework.
   ========================================================================= */

:root {
  --gold:  #FACA0C;
  --gold-2:#ffd83a;
  --pink:  #ED1A91;
  --pink-2:#ff54b4;
  --black: #000000;
  --ink:   #0B0B0C;
  --ink-2: #16161a;
  --cream: #FAF7EF;
  --cream-2:#f1ecdd;
  --grey:  #6b6b70;
  --line:  rgba(255,255,255,.12);

  --wrap: 1120px;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; position: relative; }
.section--dark  { background: var(--ink);  color: #fff; }
.section--black { background: var(--black); color: #fff; }
/* pink-stick pattern breaks up the flat black (Shop, Watch) */
.section--dark, .section--black { position: relative; overflow: hidden; }
.section--dark::before, .section--black::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url('/static/img/brand/pattern-black-pink-tile.png') center / 620px auto repeat;
  opacity: .4;
}
.section--dark > .wrap, .section--black > .wrap { position: relative; z-index: 1; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--gold  { background: var(--gold);  color: var(--black); }
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--pink); margin: 0 0 14px;
}
.section--dark .eyebrow, .section--black .eyebrow { color: var(--gold); }
.section-title { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
.lede { font-size: 1.12rem; max-width: 60ch; color: inherit; opacity: .92; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold  { background: var(--gold); color: #000; box-shadow: 0 10px 24px rgba(250,202,12,.35); }
.btn--gold:hover { background: var(--gold-2); }
.btn--pink  { background: var(--pink); color: #fff; box-shadow: 0 10px 24px rgba(237,26,145,.35); }
.btn--pink:hover { background: var(--pink-2); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--dark  { background: #000; color: #fff; }
.btn--dark:hover { background: #1c1c1c; }
.btn--sm { padding: 11px 18px; font-size: .9rem; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,12,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 30px; width: auto; }
.nav__brand { color: #fff; font-weight: 700; font-size: 1.05rem; letter-spacing: .01em; }
.nav__links { display: none; align-items: center; gap: 26px; }
.nav__links a { color: rgba(255,255,255,.82); font-weight: 500; font-size: .95rem; }
.nav__links a:hover { color: var(--gold); }
.nav__cta { display: none; }
.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 12px 22px 22px;
  background: var(--ink); border-bottom: 1px solid var(--line);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { color: #fff; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.nav__mobile .btn { margin-top: 14px; justify-content: center; }

@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative; background: radial-gradient(1200px 600px at 70% -10%, #241a02 0%, var(--ink) 55%);
  color: #fff; overflow: hidden; padding: 72px 0 88px;
}
.hero__confetti { position: absolute; inset: 0; pointer-events: none; opacity: .45;
  background: url('/static/img/brand/pattern-black-pink-tile.png') center / 760px auto repeat; }
.hero__in { position: relative; z-index: 2; max-width: 780px; }
.hero__logo { height: 58px; width: auto; margin-bottom: 26px; }
.hero__kicker { display:inline-flex; align-items:center; gap:10px; font-weight:700; font-size:.82rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin:0 0 20px; }
.hero__kicker::before { content:""; width:26px; height:2px; background:var(--gold); display:inline-block; }
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem); font-weight: 800; letter-spacing: -.03em;
  margin-bottom: 18px;
}
.hero h1 .g { color: var(--gold); }
.hero h1 .p { color: var(--pink); }
.hero__sub { font-size: 1.18rem; opacity: .9; max-width: 54ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Email form ---- */
.signup { display: flex; flex-wrap: wrap; gap: 10px; max-width: 480px; }
.signup input[type=email] {
  flex: 1 1 220px; min-width: 0; padding: 15px 18px; border-radius: 999px;
  border: 2px solid rgba(0,0,0,.12); font-family: var(--font); font-size: 1rem;
}
.section--dark .signup input, .section--black .signup input { border-color: rgba(255,255,255,.25); background: #fff; }
.signup input:focus { outline: none; border-color: var(--pink); }
.signup__note { font-size: .82rem; opacity: .7; margin: 10px 0 0; }

/* ---- Generic grid + cards ---- */
.grid { display: grid; gap: 26px; }
@media (min-width: 720px) { .grid--2 { grid-template-columns: 1fr 1fr; } .grid--3 { grid-template-columns: repeat(3,1fr); } }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.08); transition: transform .18s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.14); }
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__thumb { aspect-ratio: 16/9; background: var(--ink-2); object-fit: cover; width: 100%; }

/* ---- Lead magnet ---- */
.lead { display: grid; gap: 34px; align-items: center; }
@media (min-width: 860px) { .lead { grid-template-columns: 1.1fr .9fr; } }
.lead__card {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.lead__badge {
  display: inline-block; background: var(--pink); color: #fff; font-weight: 700;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}

/* ---- Shop ---- */
.product { display: grid; gap: 30px; align-items: center; }
@media (min-width: 820px) { .product { grid-template-columns: .9fr 1.1fr; } }
.product__art {
  border-radius: var(--radius); background: linear-gradient(135deg, var(--pink), #8a0f57);
  aspect-ratio: 4/3; display: grid; place-items: center; box-shadow: var(--shadow);
  color: #fff; text-align: center; padding: 30px;
}
.product__art .k { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 800; letter-spacing:-.02em; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 20px; }
.pill { font-size: .82rem; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid var(--line); }
.section--cream .pill { background: #fff; border-color: rgba(0,0,0,.08); }

/* ---- Dark Angel ---- */
.da { position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(900px 500px at 20% 0%, #2a0016 0%, #08080a 60%); }
.da .eyebrow { color: var(--gold); }
.da__grid { display: grid; gap: 30px; align-items: center; }
@media (min-width: 860px) { .da__grid { grid-template-columns: 1fr 1fr; } }
.da__art { border-radius: var(--radius); aspect-ratio: 16/10; box-shadow: var(--shadow);
  background: linear-gradient(160deg,#1a1030,#050208); overflow: hidden;
  border: 1px solid rgba(237,26,145,.25); position: relative; }
.da__art img { width:100%; height:100%; object-fit: cover; display:block; }
.tag-live { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.8rem;
  letter-spacing:.14em; text-transform:uppercase; color: var(--pink); }
.tag-live::before { content:""; width:9px; height:9px; border-radius:50%; background:var(--pink);
  box-shadow:0 0 0 0 rgba(237,26,145,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(237,26,145,.5);} 70%{box-shadow:0 0 0 12px rgba(237,26,145,0);} 100%{box-shadow:0 0 0 0 rgba(237,26,145,0);} }

/* ---- Blog cards ---- */
.post-card__meta { font-size: .78rem; color: var(--grey); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.post-card h3 { font-size: 1.18rem; font-weight: 700; }
.post-card__cat { color: var(--pink); }
.post-card a.more { color: var(--pink); font-weight: 600; font-size: .92rem; margin-top: auto; }

/* ---- Watch / socials ---- */
.embed { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background:#000; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Click-through "watch" teaser card, used when no embed video id is set */
.watch-teaser {
  display: inline-flex; align-items: center; gap: 18px; max-width: 460px;
  padding: 18px 24px; border-radius: var(--radius); background: #0c0c0d;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  text-decoration: none; color: #fff; transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.watch-teaser:hover { transform: translateY(-2px); border-color: var(--gold); background: #131311; }
.watch-teaser__play {
  flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #000; font-size: 1.1rem; transition: transform .18s ease;
}
.watch-teaser:hover .watch-teaser__play { transform: scale(1.08); }
.watch-teaser__text { display: flex; flex-direction: column; gap: 2px; }
.watch-teaser__text strong { font-size: 1.05rem; }
.watch-teaser__text .muted { font-size: .84rem; }

.socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.social {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid var(--line); color: #fff; font-weight: 600; font-size: .92rem;
}
.social:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.social svg { width: 18px; height: 18px; }

/* ---- Footer ---- */
.footer { background: #050506; color: rgba(255,255,255,.75); padding: 60px 0 34px; }
.footer__grid { display: grid; gap: 34px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; }
.footer a { color: rgba(255,255,255,.75); }
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__logo { height: 40px; margin-bottom: 16px; }
.footer__legal { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: .82rem; }

/* ---- Interior pages (about/projects/contact/legal/post) ---- */
/* Header = blog-banner language: gold + pink-stick field framing a black panel */
.page-hero { background: var(--gold) url('/static/img/brand/pattern-yellow-pink-tile.png') center / 700px auto repeat; padding: 54px 0; }
.page-hero__panel {
  background: var(--ink); color: #fff; border-radius: 22px; padding: 38px 42px;
  max-width: 880px; box-shadow: 0 22px 50px rgba(0,0,0,.30); border: 1px solid rgba(0,0,0,.25);
}
.page-hero .eyebrow { color: var(--gold); margin-bottom: 12px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem,6vw,3.2rem); font-weight: 800; letter-spacing: -.02em; margin: 0; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 62ch; margin: 18px 0 0;
  border-top: 3px solid var(--gold); padding-top: 16px; }
.prose { max-width: 720px; margin: 0 auto; padding: 56px 0; font-size: 1.08rem; }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose a { color: var(--pink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: 12px; margin: 1.4em 0; }
.prose blockquote { border-left: 4px solid var(--gold); margin: 1.4em 0; padding: .2em 0 .2em 20px; color: #333; font-style: italic; }

/* ---- Blog listing ---- */
.blog-grid { display: grid; gap: 26px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

/* ---- Post header ---- */
.post-hero { background: var(--gold) url('/static/img/brand/pattern-yellow-pink-tile.png') center / 700px auto repeat; padding: 54px 0 40px; }
.post-hero__panel { background: var(--ink); color:#fff; border-radius: 22px; padding: 34px 40px;
  box-shadow: 0 22px 50px rgba(0,0,0,.30); border: 1px solid rgba(0,0,0,.25); }
.post-hero .meta { color: var(--gold); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.post-hero a.meta { text-decoration: none; }
.post-hero h1 { font-size: clamp(1.9rem,5vw,2.8rem); font-weight: 800; margin: 12px 0 0; color:#fff; }
.post-banner { max-width: var(--wrap); margin: -1px auto 0; }
.post-banner img { width: 100%; border-radius: 0; }
.post-nav { display:flex; justify-content: space-between; gap: 16px; max-width: 720px; margin: 0 auto 60px; }

/* ---- Projects showcase ---- */
.proj { display: grid; gap: 24px; }
@media (min-width: 720px){ .proj { grid-template-columns: 1fr 1fr; } }
.proj__item { background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.proj__item.flag { grid-column: 1/-1; display:grid; }
.proj__item--wide { grid-column: 1 / -1; }
@media (min-width:720px){ .proj__item.flag { grid-template-columns: 1fr 1fr; } }
.proj__art { aspect-ratio: 16/9; display:grid; place-items:center; color:#fff; font-weight:800; font-size:1.6rem; text-align:center; padding:24px; }
/* full-scene image (e.g. the Worlds Apart cast banner) */
.proj__art--photo { padding:0; }
.proj__art--photo img { width:100%; height:100%; object-fit:cover; display:block; }
/* character "standee" on a branded panel (Rex, Zanzi) */
.proj__art--char { aspect-ratio: 4/5; padding:0; overflow:hidden; position:relative;
  display:flex; align-items:flex-end; justify-content:center; }
.proj__art--char::before { content:""; position:absolute; inset:0; pointer-events:none;
  background:url('/static/img/brand/pattern-black-pink-tile.png') center/360px auto repeat; opacity:.22; }
.proj__art--char img { position:relative; z-index:1; height:95%; width:auto; max-width:88%;
  object-fit:contain; object-position:bottom; filter:drop-shadow(0 12px 20px rgba(0,0,0,.4)); }
.proj__item.flag .proj__art--char { aspect-ratio: auto; min-height: 100%; }
.proj__item.flag .proj__body { display:flex; flex-direction:column; justify-content:center; }
.proj__body { padding: 24px; }
.proj__body h3 { font-size: 1.3rem; }
.badge { display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:5px 11px; border-radius:999px; margin-bottom:10px; }
.badge--flag { background: var(--gold); color:#000; }
.badge--soon { background: var(--pink); color:#fff; }
.badge--done { background:#e7e2d4; color:#333; }

/* ---- Contact ---- */
.contact-grid { display:grid; gap:34px; }
@media (min-width:820px){ .contact-grid { grid-template-columns: 1fr 1fr; } }
.field { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.field label { font-weight:600; font-size:.9rem; }
.field input, .field textarea {
  padding:13px 16px; border-radius:12px; border:2px solid rgba(0,0,0,.12);
  font-family: var(--font); font-size:1rem;
}
.field input:focus, .field textarea:focus { outline:none; border-color: var(--pink); }
.contact-info li { display:flex; gap:10px; margin-bottom:12px; }

/* ---- utility ---- */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; }
.muted { opacity: .7; }
.hide { display: none; }
