/**
 * Theme Name: ICR FM 2026
 * Template:   twentythirteen
 *
 */

   :root {
      --orange: #ff6500;
      --blue: #1d9bf0;
      --black: #000000;
      --white: #ffffff;
      --yellow: #ffe600;
      --purple: #8b35ff;
      --pink: #ff46b7;
      --text: #111111;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--white);
      color: var(--text);
    }

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

    .site-header {
      min-height: 70px;
      padding: 14px 22px 8px;
      display: grid;
      grid-template-columns: 100px 1fr auto;
      align-items: start;
      gap: 20px;
      background: #fff;
    }

    .logo {
      width: 64px;
      height: 64px;
      object-fit: contain;
      display: block;
    }

    .brand {
      text-align: center;
      line-height: 1;
      padding-top: 2px;
    }

    .brand-title {
      margin: 0;
      color: var(--orange);
      font-weight: 900;
      font-size: clamp(1.15rem, 2.4vw, 1.85rem);
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .brand-subtitle {
      margin: 2px 0 0;
      font-size: clamp(.7rem, 1.4vw, .95rem);
      font-weight: 700;
      letter-spacing: .03em;
    }

    .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      padding-top: 0;
      color: var(--orange);
    }

    .social {
      width: 34px;
      height: 34px;
      border: 4px solid currentColor;
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-weight: 900;
      line-height: 1;
      font-size: 22px;
    }

    .social.facebook {
      border-radius: 999px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 26px;
      align-items: end;
    }

    .listen-btn {
      background: var(--orange);
      color: #fff;
      border: 0;
      border-radius: 10px;
      padding: 9px 17px;
      font-weight: 900;
      font-size: .92rem;
      white-space: nowrap;
    }

    .hero {
      width: min(960px, calc(100% - 48px));
      margin: 0 auto 18px;
      position: relative;
    }

    .hero img {
      display: block;
      width: 100%;
      aspect-ratio: 1076 / 717;
      object-fit: cover;
    }

    .hero-strip {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, .42);
      color: #fff;
      font-weight: 900;
      text-align: center;
      padding: 12px 8px;
      font-size: clamp(.9rem, 2vw, 1.35rem);
      letter-spacing: .02em;
      text-shadow: 0 1px 2px rgba(0,0,0,.4);
    }

    .intro {
      background: var(--orange);
      padding: clamp(50px, 7vw, 80px) clamp(24px, 6vw, 70px);
    }

    .intro-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: clamp(30px, 6vw, 78px);
      align-items: center;
    }

    .statement {
      margin: 0 0 28px;
      font-weight: 900;
      line-height: .82;
      letter-spacing: -.04em;
      font-size: clamp(2.8rem, 8vw, 5.8rem);
    }

    .statement .yellow { color: var(--yellow); display: block; }
    .statement .purple { color: var(--purple); display: inline; }
    .statement .white { color: #fff; display: inline; }
    .statement .pink { color: var(--pink); display: block; }

    .intro-copy {
      max-width: 470px;
      font-weight: 700;
      font-size: clamp(.95rem, 1.4vw, 1.1rem);
      line-height: 1.3;
      margin: 0;
    }

    .studio-image {
      width: 100%;
      display: block;
      aspect-ratio: 864 / 572;
      object-fit: cover;
    }

    .schedule {
      background: var(--blue);
      color: #fff;
      min-height: 430px;
      padding: clamp(38px, 5vw, 55px) clamp(28px, 6vw, 70px);
    }

    .schedule-inner { max-width: 1180px; margin: 0 auto; }

    .schedule h2 {
      margin: 0;
      font-size: clamp(3rem, 7vw, 5.8rem);
      line-height: .9;
      font-weight: 900;
      letter-spacing: -.05em;
    }

    .schedule-placeholder {
      margin-top: 42px;
      border: 3px dashed rgba(255,255,255,.35);
      border-radius: 18px;
      padding: 34px;
      font-weight: 800;
      max-width: 850px;
      color: rgba(255,255,255,.8);
    }

    .contact {
      background: #000;
      color: #fff;
      padding: clamp(32px, 5vw, 52px) clamp(24px, 6vw, 64px) 32px;
    }

    .contact-inner { max-width: 1180px; margin: 0 auto; }

    .contact h2 {
      margin: 0;
      font-weight: 900;
      line-height: .9;
      font-size: clamp(2.6rem, 6vw, 5.25rem);
      letter-spacing: -.05em;
    }

    .contact-links {
      margin: 8px 0 16px;
      color: var(--orange);
      font-weight: 900;
      font-size: clamp(.85rem, 1.5vw, 1.15rem);
      text-transform: uppercase;
    }

    .contact-form {
      background: var(--orange);
      border-radius: 8px;
      padding: 18px 28px 14px;
      max-width: 1120px;
    }

    .field { margin-bottom: 12px; }

    label {
      display: block;
      color: #000;
      font-size: .85rem;
      font-weight: 700;
      margin: 0 0 4px;
    }

    input, textarea {
      width: 100%;
      border: 1.5px solid rgba(0,0,0,.65);
      border-radius: 3px;
      background: transparent;
      min-height: 26px;
      padding: 6px 8px;
      font: inherit;
      color: #000;
    }

    textarea { min-height: 44px; resize: vertical; }

    .submit {
      width: 100%;
      border: 0;
      border-radius: 999px;
      background: #000;
      color: #fff;
      min-height: 28px;
      font-weight: 700;
      cursor: pointer;
    }

    .privacy-note {
      color: rgba(0,0,0,.65);
      font-size: .65rem;
      text-align: center;
      margin: 10px 0 0;
      font-weight: 700;
    }

    @media (max-width: 820px) {
      .site-header {
        grid-template-columns: 135px 1fr;
        align-items: center;
      }
      .header-actions { grid-column: 1 / -1; justify-content: center; }
      .logo { width: 54px; height: 54px; }
      .hero { width: 100%; margin-bottom: 0; }
      .intro-grid { grid-template-columns: 1fr; }
      .intro-copy { max-width: none; }
      .schedule { min-height: 300px; }
      .contact-form { padding: 16px; }
    }



