/* =========================================================
   ON THE MEND – SITE STYLES
   Brand palette:
   Teal #89BAB3 · Coral #FE7B6E · Off-white #E8F1E8 · Navy #214767
   Support: #0D2B50, #000829
   ========================================================= */
:root {
  --teal: #89BAB3;
  --coral: #FE7B6E;
  --offwhite: #E8F1E8;
  --navy: #214767;
  --navy-dark: #0D2B50;
  --navy-deep: #000829;
  --white: #FDFEFD;
  --radius: 20px;
  --shadow: 0 14px 40px rgba(13, 43, 80, .14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", "Segoe UI", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 14px;
}
.lede { font-size: 1.15rem; opacity: .88; max-width: 56ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(232, 241, 232, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(33, 71, 103, .1);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.brand img { height: 44px; width: auto; }
.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav a {
  padding: 8px 14px; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  transition: background .2s;
}
.nav a:hover { background: rgba(137, 186, 179, .25); }
.nav a.active { background: var(--navy); color: var(--offwhite); }
.nav .cta { background: var(--coral); color: var(--navy-deep); margin-left: 8px; }
.nav .cta:hover { background: #ff8f84; }
.menu-btn { display: none; margin-left: auto; background: none; border: none; cursor: pointer; }
.menu-btn svg { width: 30px; height: 30px; stroke: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; font-family: var(--font-body);
  border: none; cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 20px; height: 20px; }
.btn-coral { background: var(--coral); color: var(--navy-deep); }
.btn-navy { background: var(--navy); color: var(--offwhite); }
.btn-ghost { background: transparent; color: inherit; border: 2px solid currentColor; }
.btn-white { background: var(--offwhite); color: var(--navy); }

/* ---------- Hero ---------- */
.hero { background: var(--navy); color: var(--offwhite); overflow: hidden; position: relative; }
.hero::after {
  content: ""; position: absolute; right: -180px; top: -180px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(137,186,179,.25), transparent 70%);
}
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
  align-items: center; padding-top: 84px; padding-bottom: 84px;
  position: relative; z-index: 1;
}
.hero h1 .accent { color: var(--teal); font-style: italic; }
.hero .lede { color: rgba(232, 241, 232, .85); margin: 22px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: 0 30px 60px rgba(0, 8, 41, .45); }
.hero-chip {
  position: absolute; top: -16px; right: -8px;
  background: var(--coral); color: var(--navy-deep);
  font-weight: 700; font-size: .85rem;
  padding: 8px 16px; border-radius: 999px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}
.now-chip {
  position: absolute; left: -18px; bottom: 26px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(0, 8, 41, .82); backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 241, 232, .18);
  border-radius: 16px; padding: 13px 20px;
  box-shadow: 0 18px 44px rgba(0, 8, 41, .45);
  animation: floaty 6s ease-in-out infinite;
  max-width: 78%;
  transition: border-color .25s;
}
.now-chip:hover { border-color: var(--coral); }
.now-chip .eq { display: flex; gap: 3px; align-items: flex-end; height: 20px; flex-shrink: 0; }
.now-chip .eq i {
  width: 4px; background: var(--coral); border-radius: 2px;
  animation: eq 1.1s ease-in-out infinite;
}
.now-chip .eq i:nth-child(2) { animation-delay: .25s; }
.now-chip .eq i:nth-child(3) { animation-delay: .5s; }
.now-chip .eq i:nth-child(4) { animation-delay: .12s; }
.now-text { line-height: 1.3; min-width: 0; }
.now-text b { display: block; font-size: .82rem; color: var(--offwhite); }
.now-text small { display: block; font-size: .76rem; color: rgba(232, 241, 232, .65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes eq { 0%, 100% { height: 5px; } 50% { height: 20px; } }
@media (prefers-reduced-motion: reduce) {
  .now-chip, .now-chip .eq i, .marquee-track { animation: none; }
}
.platform-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.platform-row span { font-size: .85rem; font-weight: 600; opacity: .7; margin-right: 6px; }
.platform-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(232, 241, 232, .12);
  transition: background .2s, transform .2s;
}
.platform-row a:hover { background: var(--coral); transform: translateY(-3px); }
.platform-row a:hover svg { fill: var(--navy-deep); }
.platform-row svg { width: 20px; height: 20px; fill: var(--offwhite); }

/* ---------- Marquee ---------- */
.marquee { background: var(--coral); color: var(--navy-deep); overflow: hidden; padding: 14px 0; }
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap; width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.marquee-track span::after { content: "✦"; margin-left: 48px; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section.alt { background: var(--white); }
.section.navy { background: var(--navy); color: var(--offwhite); }
.section.navy .eyebrow { color: var(--teal); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 18px rgba(13, 43, 80, .07);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy-dark); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-media img { transform: scale(1.04); }
.card-media .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s; background: rgba(0, 8, 41, .35);
}
.card:hover .card-media .play { opacity: 1; }
.play-badge {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--coral); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.play-badge svg { width: 24px; height: 24px; fill: var(--navy-deep); margin-left: 3px; }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.28rem; }
.card-meta { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.card-desc { font-size: .95rem; opacity: .85; flex: 1; }
.card-guest { font-size: .88rem; opacity: .7; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .78rem; font-weight: 600;
  background: rgba(137, 186, 179, .22); color: var(--navy);
  padding: 4px 12px; border-radius: 999px;
}
.tag-loc {
  background: transparent;
  border: 1.5px solid rgba(33, 71, 103, .35);
  display: inline-flex; align-items: center; gap: 5px;
}
.tag-loc::before { content: "📍"; font-size: .72rem; }
.card-actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.card-actions .btn { padding: 10px 18px; font-size: .88rem; }

.coming-card .card-media {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex; align-items: center; justify-content: center;
}
.coming-card .card-media .badge-art { font-family: var(--font-display); color: var(--teal); font-size: 1.4rem; font-style: italic; padding: 20px; text-align: center; }

/* ---------- Clips row ---------- */
.clips-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: 220px;
  gap: 20px; overflow-x: auto; padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}
.clip-card { scroll-snap-align: start; }
.clip-card .card-media { aspect-ratio: 9/16; }
.clip-card .card-body { padding: 16px; }
.clip-card h3 { font-size: .98rem; font-family: var(--font-body); font-weight: 700; }

/* ---------- Search ---------- */
.search-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: 999px;
  padding: 8px 12px 8px 24px;
  box-shadow: 0 4px 18px rgba(13, 43, 80, .08);
  border: 2px solid transparent;
  max-width: 640px;
}
.search-bar:focus-within { border-color: var(--teal); }
.search-bar svg { width: 22px; height: 22px; stroke: var(--navy); flex-shrink: 0; opacity: .6; }
.search-bar input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font-body); font-size: 1.05rem; color: var(--navy);
  padding: 10px 0;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  border: 1.5px solid rgba(33, 71, 103, .3); background: transparent;
  color: var(--navy); font-weight: 600; font-size: .88rem;
  padding: 7px 16px; border-radius: 999px; cursor: pointer;
  transition: all .2s; font-family: var(--font-body);
}
.chip:hover, .chip.active { background: var(--navy); color: var(--offwhite); border-color: var(--navy); }
.results-count { font-size: .92rem; opacity: .7; margin: 28px 0 18px; }
.no-results {
  text-align: center; padding: 70px 20px;
  background: var(--white); border-radius: var(--radius);
}
.no-results h3 { margin-bottom: 8px; }

/* ---------- Streams (what we talk about) ---------- */
.stream-card {
  border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.stream-card.teal { background: var(--teal); color: var(--navy-deep); }
.stream-card.coral { background: var(--coral); color: var(--navy-deep); }
.stream-card h3 { font-size: 1.6rem; }
.stream-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.stream-card li { padding-left: 26px; position: relative; font-weight: 500; }
.stream-card li::before { content: "✦"; position: absolute; left: 0; opacity: .7; }

/* ---------- Platform cards ---------- */
.platform-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.platform-card {
  background: rgba(232, 241, 232, .08);
  border: 1px solid rgba(232, 241, 232, .15);
  border-radius: var(--radius); padding: 28px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; font-weight: 700;
  transition: transform .2s, background .2s;
}
.platform-card:hover { transform: translateY(-5px); background: rgba(232, 241, 232, .16); }
.platform-card svg { width: 34px; height: 34px; fill: var(--offwhite); }
.platform-card small { font-weight: 500; opacity: .65; font-size: .8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--offwhite); border-radius: 28px;
  padding: 64px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: -100px; bottom: -140px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(254,123,110,.35), transparent 70%);
}
.cta-band h2 { margin-bottom: 14px; position: relative; }
.cta-band p { max-width: 54ch; margin: 0 auto 30px; opacity: .85; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white); border-radius: 16px;
  margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 3px 12px rgba(13, 43, 80, .06);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 26px; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  color: var(--navy); text-align: left;
}
.faq-q .icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--offwhite); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 1.1rem;
  transition: transform .25s, background .25s;
}
.faq-item.open .icon { transform: rotate(45deg); background: var(--coral); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px; opacity: .88; }
.faq-a-inner a { color: var(--coral); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 4px 18px rgba(13, 43, 80, .07);
  transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.contact-icon.teal { background: rgba(137, 186, 179, .3); }
.contact-icon.coral { background: rgba(254, 123, 110, .25); }
.contact-icon.navy { background: rgba(33, 71, 103, .12); }
.contact-card p { font-size: .95rem; opacity: .85; flex: 1; }

.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 18px; align-items: start; }
.step-num {
  counter-increment: step; flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display); font-size: 1.15rem;
}
.step-num::before { content: counter(step); }

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: rgba(137, 186, 179, .16);
  border-left: 4px solid var(--teal);
  border-radius: 12px; padding: 20px 24px;
  font-size: .92rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(232, 241, 232, .8); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.site-footer h4 { color: var(--offwhite); font-family: var(--font-display); margin-bottom: 14px; font-size: 1.05rem; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer a:hover { color: var(--coral); }
.footer-brand img { height: 52px; margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; max-width: 40ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(232, 241, 232, .1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--coral); }
.footer-social a:hover svg { fill: var(--navy-deep); }
.footer-social svg { width: 17px; height: 17px; fill: rgba(232, 241, 232, .85); }
.footer-legal {
  border-top: 1px solid rgba(232, 241, 232, .12);
  padding-top: 26px; font-size: .82rem; opacity: .75;
  display: flex; flex-direction: column; gap: 8px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--navy); color: var(--offwhite); padding: 72px 0 64px; }
.page-hero .lede { color: rgba(232, 241, 232, .85); margin-top: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--offwhite); flex-direction: column; padding: 18px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { width: 100%; text-align: center; }
  .menu-btn { display: block; }
  .now-chip { left: 8px; }
}
@media (max-width: 620px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 48px 26px; }
  .section { padding: 60px 0; }
}
