/* ==========================================================================
   Fly By Radio — design system
   Dark, high-energy, female-fronted rock brand. Hot-pink accent.
   ========================================================================== */

:root {
  --pink:      #ff2e7e;
  --pink-2:    #ff6aa3;
  --pink-deep: #d4155f;
  --bg:        #0c0a10;
  --bg-2:      #131019;
  --surface:   #1b1622;
  --surface-2: #241d2e;
  --line:      rgba(255,255,255,.10);
  --text:      #f6f3f9;
  --muted:     #b7adc4;
  --muted-2:   #8f8499;
  --white:     #ffffff;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,.7);
  --shadow-pink: 0 14px 40px -12px rgba(255,46,126,.5);

  --font-display: "Anton", "Oswald", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pink-2); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--pink); }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.02; letter-spacing: .01em; margin: 0 0 .4em; text-transform: uppercase; }
p { margin: 0 0 1.1em; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- reusable bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--pink);
  margin: 0 0 .9rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--pink); display: inline-block; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-2 { background: var(--bg-2); }
.bg-surface { background: var(--surface); }
.center { text-align: center; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
h2.big { font-size: clamp(2.1rem, 5.5vw, 4rem); }
h2.big .pink, h1 .pink { color: var(--pink); }
.lead { font-size: 1.15rem; color: var(--muted); }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: .95rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: #fff; box-shadow: var(--shadow-pink); }
.btn-pink:hover { background: var(--pink-deep); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,10,16,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 74px; }
.brand-logo { height: 38px; width: auto; }
/* Header wordmark — the winged logo is too detailed to read at header size, so the
   nav uses type instead. The real logo lives in the footer where it has room. */
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.6rem; line-height: 1; letter-spacing: .02em; color: #fff;
  transition: opacity .2s var(--ease);
}
.wordmark .pink { color: var(--pink); }
.brand:hover .wordmark { opacity: .85; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--text); font-weight: 600; font-size: .92rem;
  padding: .55rem .7rem; border-radius: 8px;
}
.site-nav a:hover { color: var(--pink); }
.site-nav a.active { color: var(--pink); }
.site-nav a.nav-cta {
  background: var(--pink); color: #fff; padding: .6rem 1.15rem; border-radius: 999px; margin-left: 8px;
}
.site-nav a.nav-cta:hover { background: var(--pink-deep); color: #fff; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: min(88vh, 760px);
  display: flex; align-items: center;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,16,.55) 0%, rgba(12,10,16,.72) 55%, rgba(12,10,16,.96) 100%),
    radial-gradient(60% 55% at 20% 30%, rgba(255,46,126,.28), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-tagline { max-width: 860px; }
.hero h1 { font-size: clamp(2.8rem, 8.5vw, 6.4rem); line-height: .95; margin-bottom: .3em; }
.hero h1 .pink { color: var(--pink); }
.hero-sub { font-size: clamp(1.05rem, 2.3vw, 1.45rem); color: #efe7f2; max-width: 620px; font-weight: 500; }
.hero .btn-row { margin-top: 2rem; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.stat { background: var(--bg-2); padding: 1.8rem 1rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--pink); line-height: 1; }
.stat .label { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .5rem; }

/* ---------- video feature ---------- */
.video-wrap { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #000; }
.video-facade { position: absolute; inset: 0; cursor: pointer; border: 0; padding: 0; width: 100%; height: 100%; background: #000; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .3s var(--ease), transform .5s var(--ease); }
.video-facade:hover img { opacity: .68; transform: scale(1.03); }
.video-facade .play {
  position: absolute; inset: 0; margin: auto; width: 88px; height: 88px; border-radius: 50%;
  background: var(--pink); display: grid; place-items: center; box-shadow: var(--shadow-pink);
  transition: transform .25s var(--ease);
}
.video-facade:hover .play { transform: scale(1.08); }
.video-facade .play::before { content: ""; border-style: solid; border-width: 15px 0 15px 26px; border-color: transparent transparent transparent #fff; margin-left: 6px; }
/* The iframe REPLACES the facade button, so it is a child of .video-wrap — not of .video-facade. */
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { text-align: center; margin-top: 1rem; color: var(--muted); font-size: .95rem; }

/* ---------- cards / services ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,46,126,.5); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.7rem; margin-bottom: .4rem; }
.card-body p { color: var(--muted); font-size: .98rem; }
.card-link { margin-top: auto; font-weight: 700; color: var(--pink); font-family: var(--font-body); }
.card-link::after { content: " →"; }

/* feature list (icon + text) */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.feature .ic { font-size: 1.6rem; margin-bottom: .6rem; }
.feature h3 { font-size: 1.15rem; text-transform: none; font-family: var(--font-body); font-weight: 800; letter-spacing: 0; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- split (story) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split-media.wide img { aspect-ratio: 4/3; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; position: relative; }
.quote::before { content: "\201C"; font-family: var(--font-display); color: var(--pink); font-size: 4rem; line-height: .6; position: absolute; top: 1.1rem; left: 1.2rem; opacity: .35; }
.quote p { font-size: 1.02rem; position: relative; }
.quote cite { display: block; font-style: normal; font-weight: 700; color: var(--pink-2); margin-top: 1rem; font-size: .92rem; }

/* ---------- service area ---------- */
.regions { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; }
.region h3 { color: var(--pink); font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; font-family: var(--font-body); font-weight: 800; }
.region p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding: clamp(60px, 9vw, 120px) 0; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 120% at 50% 0%, rgba(255,46,126,.35), transparent 65%), var(--bg-2); }
.cta-band .container { position: relative; }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); }

/* ---------- forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--text); }
.field label .req { color: var(--pink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; width: 100%; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); outline: none; background: #17131f; }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff2e7e' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.hp { position: absolute !important; left: -9999px !important; }
.form-status { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-weight: 600; display: none; }
.form-status.ok { display: block; background: rgba(46,255,145,.12); border: 1px solid rgba(46,255,145,.4); color: #b6ffd6; }
.form-status.err { display: block; background: rgba(255,46,126,.12); border: 1px solid rgba(255,46,126,.4); color: #ffc4d9; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pink); font-size: 1.5rem; line-height: 1; transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--muted); }

/* ---------- band grid ---------- */
.band-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 22px; }
.member { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.member-img { aspect-ratio: 3/4; overflow: hidden; }
.member-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.member:hover .member-img img { transform: scale(1.05); }
.member-body { padding: 1.2rem 1.3rem 1.5rem; }
.member-body h3 { font-size: 1.5rem; margin-bottom: .1rem; }
.member-body .role { color: var(--pink); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; display: block; margin-bottom: .7rem; }
.member-body p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- songlist ---------- */
.song-tools { position: sticky; top: 74px; z-index: 20; background: rgba(12,10,16,.9); backdrop-filter: blur(10px); padding: 1rem 0; border-bottom: 1px solid var(--line); margin-bottom: 2.5rem; }
.song-search { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.song-search input { flex: 1; min-width: 220px; font-size: 1rem; padding: .8rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-2); color: var(--text); }
.song-search input:focus { border-color: var(--pink); outline: none; }
.genre-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.chip { font-size: .82rem; font-weight: 600; padding: .45rem .9rem; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; transition: all .2s var(--ease); }
.chip:hover, .chip.active { background: var(--pink); border-color: var(--pink); color: #fff; }
.genre-block { margin-bottom: 2.6rem; }
.genre-block h2 { font-size: 1.9rem; color: var(--text); border-bottom: 2px solid var(--pink); padding-bottom: .5rem; margin-bottom: 1.2rem; }
.song-cols { columns: 2; column-gap: 40px; }
.song { break-inside: avoid; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.song .title { font-weight: 600; }
.song .artist { color: var(--muted); font-size: .9rem; }
.song.hide, .genre-block.hide { display: none; }
.no-results { color: var(--muted); font-style: italic; display: none; }

/* ---------- merch product grid (live products, checkout on Printful) ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(255,46,126,.55); box-shadow: var(--shadow); }
.product-media { background: #fff; aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.product-name { font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1.35; letter-spacing: 0; text-transform: none; margin: 0; color: var(--text); }
.product-price { color: var(--pink); font-weight: 800; font-size: 1.05rem; }
.swatches { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; margin: .1rem 0 .2rem; }
.swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); flex: none; }
.swatch-count { font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-left: .2rem; }
.product-cta { margin-top: auto; padding-top: .6rem; font-weight: 700; font-size: .88rem; color: var(--muted); }
.product-cta::after { content: " →"; }
.product-card:hover .product-cta { color: var(--pink); }
.shop-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 1.6rem; }

/* ---------- calendar / embed ---------- */
.embed-frame { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow); }
.embed-frame iframe { width: 100%; border: 0; border-radius: 10px; display: block; }
.cal-responsive { position: relative; width: 100%; }
.cal-responsive iframe { width: 100%; min-height: 640px; border: 0; border-radius: 10px; background: #fff; }

/* ---------- page hero (interior) ---------- */
.page-hero { position: relative; padding: clamp(80px, 12vw, 150px) 0 clamp(40px, 6vw, 70px); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,10,16,.6), rgba(12,10,16,.9)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 5rem); }
.page-hero p { font-size: 1.15rem; color: #eadff0; max-width: 620px; }

/* ---------- footer ---------- */
.site-footer { background: #08070b; border-top: 1px solid var(--line); padding-top: clamp(48px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 78px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { color: var(--muted); max-width: 320px; }
.footer-links h3, .footer-contact h3 { font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted-2); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; align-items: flex-start; }
.footer-links a { color: var(--text); font-weight: 500; }
.footer-links a:hover { color: var(--pink); }
.footer-contact a { color: var(--text); }
.footer-contact p { color: var(--muted); margin: .4rem 0 1rem; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--text); transition: all .2s var(--ease); }
.socials a:hover { background: var(--pink); border-color: var(--pink); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .features, .quotes { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2,1fr); }

  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 42px; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin-inline: auto; transition: transform .25s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 12px 22px 22px;
    transform: translateY(-120%); transition: transform .3s var(--ease); max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: .9rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav a.nav-cta { margin: 12px 0 0; text-align: center; border-bottom: 0; }
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .song-cols { columns: 1; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
}
