:root {
  --ink: #101820;
  --ink-soft: #263441;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --gold: #c69235;
  --sage: #5c7b6f;
  --wine: #7f3d4b;
  --muted: #6d7480;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 60px rgba(16, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 56px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--surface);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  background: rgba(198, 146, 53, 0.14);
}

.nav-more {
  position: relative;
}

.nav-more button {
  border: 0;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-more:hover button,
.nav-more:focus-within button {
  background: rgba(198, 146, 53, 0.14);
}

.nav-more-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: none;
  min-width: 170px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 24, 32, 0.14);
}

.nav-more:hover .nav-more-menu,
.nav-more:focus-within .nav-more-menu {
  display: grid;
  gap: 4px;
}

.nav-more-menu a {
  border-radius: 6px;
}

.header-action,
.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-action,
.primary-btn {
  border: 0;
  color: #ffffff;
  background: var(--ink);
}

.primary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.ghost-btn {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 56px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.94), rgba(16, 24, 32, 0.72) 48%, rgba(16, 24, 32, 0.24)),
    url("index1_files/photo-1478737270239-2f02b77fc618") center / cover;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 6vw, 78px);
  bottom: 34px;
  width: min(280px, 34vw);
  height: min(280px, 34vw);
  background: url("KerussoOrg/kerusso-radio-logo.jpeg") center / contain no-repeat;
  opacity: 0.18;
  content: "";
  pointer-events: none;
}

.hero-copy,
.player-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.split-section p,
.contact-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.player-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.live-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 900;
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #62d68b;
  box-shadow: 0 0 0 7px rgba(98, 214, 139, 0.13);
}

audio {
  width: 100%;
  min-height: 44px;
}

.now-playing {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.now-playing span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.share-row {
  margin-top: 16px;
}

.section,
.split-section,
.contact-section,
.section-band {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stat {
  min-height: 130px;
  padding: 30px;
  background: var(--surface);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--wine);
  font-size: 2rem;
}

.stat span {
  margin-top: 8px;
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.current-program {
  display: grid;
  gap: 6px;
  margin: -4px 0 22px;
  padding: 18px 22px;
  border: 1px solid rgba(198, 146, 53, 0.38);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: #fff8ec;
}

.current-program span,
.on-air-badge {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading p,
.split-section p,
.contact-section p {
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.program-card,
.reflection-card,
.mission-grid article,
.contact-panel a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.program-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 230px;
  padding: 24px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.program-card:hover,
.reflection-card:hover,
.contact-panel a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 24, 32, 0.1);
}

.program-card.is-current {
  border-color: rgba(198, 146, 53, 0.7);
  box-shadow: 0 18px 44px rgba(198, 146, 53, 0.18);
}

.on-air-badge {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(198, 146, 53, 0.16);
}

.program-card time {
  color: var(--sage);
  font-size: 0.86rem;
  font-weight: 900;
}

.program-card h3,
.reflection-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.program-card p,
.reflection-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(26px, 5vw, 58px);
  background: #f0f3ef;
}

.mission-grid {
  display: grid;
  gap: 14px;
}

.mission-grid article {
  padding: 24px;
}

.mission-grid span {
  color: var(--gold);
  font-weight: 900;
}

.mission-grid p {
  margin: 10px 0 0;
}

.reflections {
  background: var(--ink);
  color: #ffffff;
}

.reflections .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.reflection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.section-actions .primary-btn {
  background: var(--gold);
}

.reflection-card {
  padding: 24px;
  color: var(--ink);
}

.reflection-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 0.84rem;
  font-weight: 900;
}

.reflection-audio {
  width: 100%;
  margin-top: 16px;
}

.testimonials {
  background: #f0f3ef;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.request-contact-section {
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.58fr) minmax(360px, 1fr);
}

.contact-info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.08);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a {
  display: grid;
  gap: 7px;
  padding: 22px;
  text-decoration: none;
}

.contact-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel strong {
  overflow-wrap: anywhere;
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.request-form-expanded p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.request-form-expanded .form-two {
  gap: 12px;
}

.request-form h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: #1f9d55;
  box-shadow: 0 16px 34px rgba(31, 157, 85, 0.38);
  font-weight: 900;
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
}

.footer {
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    justify-content: flex-start;
    flex-basis: 100%;
    overflow-x: auto;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .header-action {
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero::after {
    display: none;
  }

  .intro-band,
  .program-grid,
  .reflection-list {
    grid-template-columns: 1fr;
  }

  .secondary-btn,
  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

.requests-preview-page {
  background: #f7f8fb;
}

.requests-preview {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.requests-hero {
  padding: 28px 0 34px;
}

.requests-hero h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.requests-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.requests-public-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
}

.direct-whatsapp-box,
.request-form-preview,
.request-ticket {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.08);
}

.direct-whatsapp-box,
.request-form-preview {
  padding: 28px;
}

.box-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-whatsapp-box h2,
.request-form-preview h2,
.admin-requests-preview h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.direct-whatsapp-box p,
.request-form-preview p,
.admin-requests-preview .section-heading p {
  color: var(--muted);
}

.contact-email-inline {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-email-inline span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-email-inline a {
  color: var(--ink);
  text-decoration: none;
}

.contact-email-inline strong {
  overflow-wrap: anywhere;
}

.whatsapp-real-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin-top: 16px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  background: #16a75c;
  font-weight: 900;
  text-decoration: none;
}

.whatsapp-real-button svg {
  width: 30px;
  height: 30px;
}

.form-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.request-form-preview label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.request-form-preview input,
.request-form-preview select,
.request-form-preview textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fbfaf6;
  font: inherit;
}

.consent-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.consent-row input {
  width: auto;
  margin-top: 4px;
}

.request-submit-preview {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 900;
}

.admin-requests-preview {
  margin-top: 54px;
}

.request-admin-board {
  display: grid;
  gap: 16px;
}

.request-ticket {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.request-ticket strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.28rem;
}

.request-ticket p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ticket-status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-status.new {
  color: #0f6f3c;
  background: #daf7e8;
}

.ticket-status.read {
  color: #805400;
  background: #fff1cf;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ticket-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  font-weight: 800;
}

@media (max-width: 820px) {
  .requests-public-layout,
  .form-two {
    grid-template-columns: 1fr;
  }
}
