:root {
  --bg: #f8fafd;
  --paper: #ffffff;
  --ink: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --blue: #1a73e8;
  --green: #188038;
  --yellow: #fbbc04;
  --gold: #f2c94c;
  --brand: #102743;
  --shadow: 0 14px 36px rgba(60, 64, 67, 0.16);
  font-family:
    Google Sans, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

code {
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: #eef3fd;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 74px;
  align-items: center;
  gap: 1rem;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 156px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

nav {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 3vw, 2.3rem);
  color: var(--muted);
  font-weight: 800;
}

nav a:hover,
.footer a:hover,
.text-button:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.header-cta,
.primary {
  color: #fff;
  background: var(--blue);
}

.header-cta {
  padding: 0 1rem;
}

.button {
  min-width: 150px;
  padding: 0.85rem 1.1rem;
}

.secondary {
  color: var(--blue);
  border-color: var(--line);
  background: var(--paper);
}

.hero-live {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(2rem, 5vw, 5rem) 4vw;
  background:
    linear-gradient(90deg, rgba(248, 250, 253, 0.98), rgba(248, 250, 253, 0.9) 52%, rgba(248, 250, 253, 0.55)),
    url("assets/hero-karaoke-coppers.png");
  background-size: cover;
  background-position: center;
}

.hero-copy,
.host-profile {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.55rem;
}

.lead,
.muted,
.youtube-copy li {
  color: var(--muted);
  line-height: 1.6;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.button-row,
.quick-links,
.live-strip,
.media-actions,
.queue-header,
.footer {
  display: flex;
  align-items: center;
}

.button-row {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quick-links {
  gap: 0.55rem;
  max-width: min(100%, 780px);
  margin-top: 1.5rem;
  overflow-x: auto;
}

.quick-links span,
.live-strip span {
  flex: 0 0 auto;
  padding: 0.58rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 900;
  white-space: nowrap;
}

.host-profile,
.google-embed-card,
.queue-card,
.youtube-frame,
.youtube-copy,
.map-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.host-profile {
  overflow: hidden;
}

.host-photo {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: center 58%;
  display: block;
}

.host-body {
  padding: 1.15rem;
}

.co-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.co-brand img:first-child {
  width: 146px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}

.co-brand img:last-child {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.rating {
  color: #9a6500;
  font-weight: 1000;
}

.alias {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: #fef7e0;
  color: #8a5b00;
  font-weight: 900;
}

.live-strip {
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 4vw;
  border-block: 1px solid var(--line);
  background: #fff;
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 4vw;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 1.6rem;
}

.request-grid,
.youtube-grid,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: 1rem;
  align-items: start;
}

.google-embed-card,
.queue-card,
.youtube-copy,
.map-card {
  padding: 1.2rem;
}

.empty-google {
  display: grid;
  min-height: 320px;
  place-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px dashed var(--line);
  border-radius: 18px;
  text-align: center;
  background: #f8fafd;
}

.empty-google.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2)),
    url("assets/hero-karaoke-coppers.png");
  background-position: center;
  background-size: cover;
}

.empty-google.dark p {
  color: rgba(255, 255, 255, 0.82);
}

iframe {
  width: 100%;
  border: 0;
  border-radius: 18px;
}

.google-form-frame {
  min-height: 560px;
}

.youtube-frame {
  overflow: hidden;
  padding: 0;
}

.youtube-frame iframe,
.youtube-frame .empty-google {
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.song-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.song-form button,
.song-form .form-status {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

input:focus,
select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(26, 115, 232, 0.16);
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.queue-header {
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
}

.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.queue-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: queue;
}

.queue-list li {
  counter-increment: queue;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafd;
}

.queue-list li::before {
  content: counter(queue);
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #e8f0fe;
  color: var(--blue);
  font-weight: 900;
}

.queue-list small {
  display: block;
  color: var(--muted);
}

.queue-list em {
  justify-self: end;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #fef7e0;
  color: #8a5b00;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
}

.media-section {
  background: #fff;
}

.media-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.media-preview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
}

.media-preview img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.youtube-section,
.visit-section {
  background: #fff;
}

.youtube-copy ul {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.map-card iframe {
  min-height: 360px;
}

.footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 4vw;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-live,
  .request-grid,
  .youtube-grid,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .media-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  nav {
    display: none;
  }

  .brand img {
    width: 128px;
    height: 40px;
  }

  .hero-live,
  .section,
  .live-strip,
  .footer {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .song-form,
  .media-preview {
    grid-template-columns: 1fr;
  }

  .media-preview img {
    height: 235px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
