/* ============================================
   I SEE YOU FAMILY MEDIA GROUP — brand system
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;600;700;900&display=swap');

:root {
  --black: #0a0a0a;
  --black-soft: #121110;
  --panel: #161412;
  --panel-border: #2a2419;
  --gold: #c6a24d;
  --gold-bright: #d9b862;
  --gold-dim: #8c6d1f;
  --ivory: #f5f1e8;
  --ivory-dim: #ddd6c4;
  --rule: #3a2f1c;
  --header-bg: rgba(10, 10, 10, 0.92);
  --ink: #14110c;

  --font-display: 'Bitter', Georgia, serif;
  --font-accent: Georgia, 'Times New Roman', serif;

  --max: 1180px;
  --edge: clamp(1.25rem, 5vw, 4rem);
}

/* Light mode — mirrors a device/OS light setting, same brand palette inverted */
@media (prefers-color-scheme: light) {
  :root {
    --black: #faf7f0;
    --black-soft: #f2ede0;
    --panel: #ffffff;
    --panel-border: #e2dac2;
    --gold: #9c7327;
    --gold-bright: #7d5c1e;
    --gold-dim: #d3ae64;
    --ivory: #201c14;
    --ivory-dim: #4d473a;
    --rule: #e2dac2;
    --header-bg: rgba(250, 247, 240, 0.92);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-accent);
  font-size: 1.15rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.2s ease, color 0.2s ease;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  color: var(--ivory);
  line-height: 1.1;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: #c6a24d; color: #14110c; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- corner-bracket frame motif ---------- */
.bracket-frame {
  position: relative;
}
.bracket-frame::before,
.bracket-frame::after,
.bracket-frame > .bk-tr,
.bracket-frame > .bk-bl {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
  opacity: 0.85;
}
.bracket-frame::before { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.bracket-frame::after  { bottom: -10px; right: -10px; border-left: none; border-top: none; }
.bracket-frame > .bk-tr { top: -10px; right: -10px; border-left: none; border-bottom: none; }
.bracket-frame > .bk-bl { bottom: -10px; left: -10px; border-right: none; border-top: none; }

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge);
}

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.rule {
  height: 1px;
  background: var(--rule);
  border: none;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  color: var(--gold-bright);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  height: 46px;
  width: auto;
  border-radius: 3px;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ivory);
  letter-spacing: 0.01em;
}
.brand-word span { color: var(--gold); }

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem clamp(0.9rem, 1.6vw, 1.7rem);
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ivory-dim);
  padding: 0.4rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--gold-bright); border-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--panel-border);
  border-radius: 4px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--black);
    border-top: 1px solid var(--panel-border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav ul {
    flex-direction: column;
    padding: 2rem var(--edge);
    gap: 1.4rem;
  }
  .main-nav a { font-size: 1.2rem; }
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(4rem, 11vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(198,162,77,0.12), transparent 70%),
    var(--black);
}
.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.hero-logo { width: clamp(180px, 24vw, 260px); margin: 0 auto 2.2rem; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: -0.01em;
}
.hero h1 .accent {
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--ivory);
}
.hero h1 .gold { color: var(--gold); }
.hero-tagline {
  margin-top: 1.4rem;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--ivory-dim);
}

.social-row {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.social-row a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.social-row a:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 2.1rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:hover, .btn:focus-visible {
  background: transparent;
  color: var(--gold-bright);
  transform: translateY(-1px);
}
.btn.btn-outline {
  background: transparent;
  color: var(--gold-bright);
}
.btn.btn-outline:hover { background: var(--gold); color: var(--ink); }

/* ---------- bio / section headings ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-top: 0.5rem;
}
.section-head .eyebrow { display: block; margin-bottom: 0.6rem; }

.bio-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--ivory-dim);
}
.bio-copy strong { color: var(--gold-bright); font-weight: 600; }
.bio-copy p { margin-bottom: 1.4em; }

.pillars {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pillars div {
  background: var(--black-soft);
  padding: 1.6rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
}
@media (max-width: 700px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- podcast grid ---------- */
.pod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem 1.6rem;
}
@media (max-width: 980px) { .pod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pod-grid { grid-template-columns: 1fr; } }

.pod-card { margin: 10px; }
.pod-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--panel-border);
}
.pod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.pod-card a:hover .pod-thumb img,
.pod-card a:focus-visible .pod-thumb img { transform: scale(1.05); }
.pod-handle {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ivory);
}
.pod-handle::before { content: "\25B6  "; color: var(--gold); font-size: 0.7rem; }

.pod-more {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- events ---------- */
.event-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  padding: 2rem;
}
@media (max-width: 700px) {
  .event-card { grid-template-columns: 1fr; }
}
.event-loc {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.event-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.event-card p { color: var(--ivory-dim); }
.event-card .btn { margin-top: 1.2rem; }

/* ---------- contact ---------- */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-block { grid-template-columns: 1fr; }
}
.contact-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 1rem; }
.contact-info p { color: var(--ivory-dim); }
.contact-email {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-dim);
}

form.contact-form {
  display: grid;
  gap: 1.1rem;
}
form.contact-form label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ivory-dim);
  display: block;
  margin-bottom: 0.4rem;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--ivory);
  font-family: var(--font-accent);
  font-size: 1.05rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
form.contact-form textarea { resize: vertical; min-height: 130px; }
form.contact-form button { justify-self: start; cursor: pointer; }

.form-status {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.form-status.success { color: var(--gold-bright); }
.form-status.error { color: #d97757; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--panel-border);
  padding: 2.6rem 0;
  text-align: center;
}
.site-footer p {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  letter-spacing: 0.02em;
}

/* ---------- hub / preview cards (used on home hub + artist roster) ---------- */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 800px) { .preview-grid { grid-template-columns: 1fr; } }
.preview-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  padding: 1.8rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.preview-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.preview-card .pc-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.preview-card h4 { font-size: 1.3rem; margin: 0.6rem 0 0.6rem; }
.preview-card p { color: var(--ivory-dim); font-size: 0.95rem; }
.preview-card .pc-go {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-bright);
}

/* ---------- large artist-select cards (roster page) ---------- */
.artist-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 800px) { .artist-select-grid { grid-template-columns: 1fr; } }
.artist-select-card {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: var(--panel);
}
.artist-select-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.artist-select-card:hover img { transform: scale(1.05); }
.artist-select-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.35) 45%, transparent 75%);
}
.artist-select-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.8rem;
  z-index: 2;
}
.artist-select-caption .pc-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.artist-select-caption h3 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.5rem 0 0.4rem;
}
.artist-select-caption p { color: var(--ivory-dim); font-size: 0.95rem; }
.artist-select-caption .pc-go {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.page-hero {
  padding: clamp(3.5rem, 9vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(198,162,77,0.1), transparent 70%);
}
.page-hero .eyebrow { display: block; margin-bottom: 0.8rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); }
.page-hero .lede {
  max-width: 640px;
  margin: 1.4rem auto 0;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--ivory-dim);
}
.page-hero .btn { margin-top: 2rem; }

.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ivory-dim);
  font-size: 1.15rem;
}
.prose p { margin-bottom: 1.4em; }

.value-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.value-grid div {
  background: var(--black-soft);
  padding: 2rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}
@media (max-width: 700px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }

.journal-link-block {
  text-align: center;
  padding: 3rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  max-width: 640px;
  margin: 3rem auto 0;
}
.journal-link-block .btn { margin-top: 1.6rem; }
