:root {
      --bg: #0b0d12;
      --bg-soft: #121722;
      --panel: rgba(255,255,255,0.06);
      --panel-strong: rgba(255,255,255,0.1);
      --text: #f5f7fb;
      --muted: #b8c0d0;
      --line: rgba(255,255,255,0.12);
      --gold: #d8b36a;
      --gold-strong: #f0cb85;
      --shadow: 0 18px 50px rgba(0,0,0,0.35);
      --radius: 22px;
      --max: 85%;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top right, rgba(216,179,106,0.18), transparent 40%),
        radial-gradient(circle at top left, rgba(216,179,106,0.18), transparent 40%),
        radial-gradient(circle at left center, rgba(82,113,255,0.08), transparent 22%),
        linear-gradient(180deg, #090b10 0%, #0e1219 100%);
      color: var(--text);
      line-height: 1.6;
    }
.loader{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

@keyframes rotate{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.45rem 0.85rem;
      border: 1px solid rgba(216,179,106,0.28);
      border-radius: 999px;
      background: rgba(216,179,106,0.08);
      color: var(--gold-strong);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 18px rgba(216,179,106,0.85);
    }

    .section-header {
      width: 760px;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      line-height: 1.1;
      margin: 1rem 0;
      letter-spacing: -0.02em;
    }

    .section-header p {
      color: var(--muted);
      font-size: 1.3rem;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      padding: 0.95rem 1.35rem;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
      border: 1px solid transparent;
      white-space: nowrap;
      font-size: 18px;
    }

    .btn:hover {
      transform: translateY(-2px);
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
      color: #141516;
      box-shadow: 0 12px 30px rgba(216,179,106,0.28);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.04);
      border-color: rgba(255,255,255,0.12);
      color: var(--text);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: rgba(8, 10, 14, 0.72);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .brand strong {
      font-size: 1.2rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand span {
      font-size: 0.82rem;
      color: var(--muted);
      letter-spacing: 0.09em;
      text-transform: uppercase;
      margin-top: 0.3rem;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      list-style: none;
    }

    .nav-links a {
      color: var(--muted);
      font-weight: 600;
      font-size: 1.2rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--text);
    }
.simplified-hero .hero-copy h1 {
  max-width: none;
}
.simplified-hero .hero-copy p{
  font-size: 25px;
}
.hero-email {
  margin-top: 1.2rem;
  font-weight: 700;
}

.hero-email a {
  color: var(--gold-strong);
}

.simplified-hero .hero-card-wrap {
  min-height: 520px;
}

.simple-about-section,
.simple-media-section {
  padding: 3rem 0;
}
.simple-about-card p{
  font-size: 23px;
}
.simple-about-card,
.simple-media-copy {
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.simple-about-card {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.simple-about-card .eyebrow {
  justify-content: center;
}

.simple-about-card h2,
.simple-media-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 1rem 0;
}

.simple-about-card p,
.simple-media-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.simple-about-card .btn {
  margin-top: 0.8rem;
  font-size: 23px;
}

.simple-media-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}
.simple-media-copy p{
  font-size: 25px;
}

.simple-video {
  min-height: 420px;
}

@media (max-width: 980px) {
  .simple-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .simplified-hero .hero-card-wrap {
    min-height: auto;
  }

  .simple-about-card,
  .simple-media-copy {
    padding: 1.25rem;
  }
  .simple-about-card{
    width: 100%;
  }

  .simple-video {
    min-height: 320px;
  }
}
    .hero {
      position: relative;
      padding: 5.75rem 0 4rem;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 2rem;
      align-items: center;
    }

    .hero-copy h1 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(3.1rem, 7vw, 6rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      margin: 1rem 0 1.3rem;
      max-width: 12ch;
    }
    .hero-copy h1 span{
      color: var(--gold);
    }

    .hero-copy p {
      font-size: 1.3rem;
      color: var(--muted);
      max-width: 58ch;
      margin-bottom: 1.9rem;
    }

    .hero-metrics {
      margin-top: 2.2rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .metric {
      padding: 1.1rem 1rem;
      border-radius: 18px;
      background: var(--panel);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .metric strong {
      display: block;
      font-size: 1.55rem;
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .metric span {
      color: var(--muted);
      font-size: 1rem;
    }

    .hero-card-wrap {
      position: relative;
      min-height: 620px;
      display: grid;
      place-items: center;
    }

    .hero-portrait {
      width: min(100%, 500px);
      aspect-ratio: 4 / 5.1;
      border-radius: 34px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        url('photos/Derek\ Lux-\ Puppeteer\ Headshot.jpg') center/cover no-repeat;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 30px 60px rgba(0,0,0,0.4);
      position: relative;
    }

    .hero-portrait::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(9,11,16,0.02) 15%, rgba(9,11,16,0.56) 100%);
    }

    .floating-card {
      position: absolute;
      right: 0;
      bottom: 3.5rem;
      width: min(290px, 70%);
      padding: 1.2rem;
      border-radius: 20px;
      background: rgba(11,13,18,0.88);
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .floating-card small {
      display: block;
      color: var(--gold-strong);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 1.5rem;
      margin-bottom: 0.55rem;
      font-weight: 700;
    }

    .floating-card p {
      font-size: 1.3rem;
      font-weight: 600;
      line-height: 1.45;
    }

    .logo-strip {
      padding: 1.2rem 0 1.2rem;
    }

    .logo-bar {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }

    .logo-item {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      color: rgba(255,255,255,0.78);
      border-radius: 16px;
      min-height: 78px;
      display: grid;
      place-items: center;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-size: 0.82rem;
    }

    section {
      padding: 3rem 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.3rem;
    }

    .service-card {
      padding: 1.8rem;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .service-card .number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      margin-bottom: 1rem;
      background: rgba(216,179,106,0.16);
      color: var(--gold-strong);
      font-weight: 800;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
    }

    .service-card p {
      color: var(--muted);
      margin-bottom: 1.1rem;
      font-size: 1.3rem;
    }

    .service-card ul {
      list-style: none;
      display: grid;
      gap: 0.55rem;
      color: #dbe3f4;
      font-size: 0.95rem;
    }

    .service-card li::before {
      content: "• ";
      color: var(--gold-strong);
    }
    .service-card li{
      font-size: 1.1rem;
    }

    .video-section {
      position: relative;
    }

    .video-shell {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1.5rem;
      align-items: stretch;
    }

    .video-frame {
      min-height: 450px;
      border-radius: 30px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(4,6,11,0.12), rgba(4,6,11,0.6)),
        url('photos/Speaking2.jpg') center/cover no-repeat;
      position: relative;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: var(--shadow);
      display: flex;
      align-items: end;
      padding: 1.8rem;
    }

    .play-btn {
      position: absolute;
      inset: 50% auto auto 50%;
      transform: translate(-50%, -50%);
      width: 92px;
      height: 92px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(11,13,18,0.72);
      backdrop-filter: blur(12px);
      display: grid;
      place-items: center;
      box-shadow: 0 20px 38px rgba(0,0,0,0.35);
    }

    .play-btn::before {
      content: "";
      border-left: 22px solid var(--gold-strong);
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      margin-left: 0.25rem;
    }

    .video-caption {
      max-width: 80%;
      font-size: 1.2rem;
      font-weight: 600;
    }

    .video-copy {
      padding: 2rem;
      border-radius: 28px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .video-copy h3 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: 2.2rem;
      line-height: 1.08;
      margin: 1rem 0;
    }

    .video-copy p {
      color: var(--muted);
      margin-bottom: 1.25rem;
      font-size: 1.3rem;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 0.8rem;
      margin: 1.3rem 0 1.8rem;
    }

    .check-list li {
      display: flex;
      gap: 0.8rem;
      align-items: start;
      color: #e8edf7;
      font-size: 1.1rem;
    }

    .check-list li::before {
      content: "✓";
      color: var(--gold-strong);
      font-weight: 800;
      margin-top: 0.05rem;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }

    .testimonial {
      padding: 1.7rem;
      border-radius: 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .testimonial p {
      font-size: 1.2rem;
      color: #eef2fa;
      margin-bottom: 1.15rem;
    }

    .testimonial strong {
      display: block;
      font-size: 1.4rem;
    }

    .testimonial span {
      color: var(--muted);
      font-size: 1.1rem;
    }

    .about-band {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 1.5rem;
      align-items: center;
      padding: 2rem;
      border-radius: 30px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
    }

    .about-photo {
      min-height: 430px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(4,6,11,0.12), rgba(4,6,11,0.5)),
        url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    }

    .about-copy h3 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: 2.4rem;
      line-height: 1.08;
      margin: 1rem 0;
    }

    .about-copy p {
      color: var(--muted);
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .cta-section {
      padding-top: 2rem;
      padding-bottom: 6rem;
    }

    .cta-card {
      position: relative;
      overflow: hidden;
      padding: 2.4rem;
      border-radius: 30px;
      background:
        radial-gradient(circle at top right, rgba(216,179,106,0.22), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .cta-card h2 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1;
      margin-bottom: 0.7rem;
    }

    .cta-card p {
      color: var(--muted);
      max-width: 58ch;
      font-size: 23px;
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1.5rem 0 2.5rem;
      color: var(--muted);
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 1.3rem;
    }

    .footer-links {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
      font-size: 1.3rem;
    }
.bwd {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 1.3rem;
    color: var(--muted);
  }

  .bwd a {
    color: var(--gold-strong);
    font-weight: 600;
    transition: opacity 0.2s ease;
  }

  .bwd a:hover {
    opacity: 0.8;
  }
  .contact-hero {
  padding: 3rem 0 2rem;
}
.contact-header {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.contact-header .eyebrow {
  justify-content: center;
}

.contact-header p {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  font-size: 25px;
}
.contact-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.contact-section {
  padding: 2rem 0 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-panel,
.sidebar-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 2rem;
}

.contact-panel h2,
.sidebar-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.contact-panel h2 {
  font-size: 2.2rem;
  margin: 1rem 0 0.8rem;
}

.contact-panel p,
.sidebar-card p,
.faq-item p {
  color: var(--muted);
  font-size: 20px;
}

.contact-sidebar {
  display: grid;
  gap: 1.2rem;
}

.sidebar-card {
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.55rem;
  margin: 1rem 0 0.75rem;
}

.contact-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #eef2fa;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #96a0b3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(216,179,106,0.5);
  background: rgba(0, 0, 0, 0.9);
}

textarea {
  resize: vertical;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-list strong,
.faq-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 21px;
}

.contact-list a {
  color: var(--gold-strong);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.faq-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-hero .section-header{
  width: 100%;
}
.about-header {
  text-align: center;
  margin: 0 auto;
}

.about-header .eyebrow {
  justify-content: center;
}

.about-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 1rem auto 1.2rem;
}

.about-header p {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 25px;
}

.about-page-section {
  padding: 2rem 0 6rem;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.about-main-card,
.about-side-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-main-card {
  padding: 2rem;
}

.about-main-card h2,
.about-side-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.about-main-card h2 {
  font-size: 2.2rem;
  margin: 1rem 0 1rem;
}

.about-main-card p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-main-card strong,
.about-side-card strong {
  color: var(--text);
}

.about-side-column {
  display: grid;
  gap: 1.2rem;
}

.about-side-card {
  padding: 1.5rem;
}

.about-side-card h3 {
  font-size: 1.55rem;
  margin: 1rem 0 0.75rem;
}

.about-side-card p {
  color: var(--muted);
  font-size: 1.3rem;
}

.about-side-card .check-list {
  margin-top: 1rem;
  font-size: 1.3rem;
}
.media-hero {
  padding: 3rem 0 2rem;
}

.media-header {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.media-header .eyebrow {
  justify-content: center;
}

.media-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 1rem auto 1.2rem;
}

.media-header p {
  margin: 0 auto;
  font-size: 25px;
}

.media-featured-section,
.media-clips-section,
.media-gallery-section,
.media-assets-section {
  padding: 2rem 0 4rem;
}

.media-featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.featured-video-card,
.featured-copy-card,
.clip-card,
.media-assets-card,
.assets-list-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.featured-video-card {
  overflow: hidden;
}

.featured-video-placeholder {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(4,6,11,0.12), rgba(4,6,11,0.58)),
    url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.featured-video-caption {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.featured-copy-card {
  padding: 2rem;
}

.featured-copy-card h2,
.media-assets-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.featured-copy-card h2 {
  font-size: 2.2rem;
  margin: 1rem 0 1rem;
}

.featured-copy-card p,
.clip-content p,
.media-assets-card p,
.asset-item p {
  color: var(--muted);
  font-size: 1.2rem;
}

.media-clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.clip-card {
  overflow: hidden;
}

.clip-thumb {
  min-height: 230px;
  position: relative;
  border-bottom: 1px solid var(--line);
  background-size: cover;
  background-position: center;
}

.clip-one {
  background-image:
    linear-gradient(180deg, rgba(4,6,11,0.12), rgba(4,6,11,0.45)),
    url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1200&q=80');
}

.clip-two {
  background-image:
    linear-gradient(180deg, rgba(4,6,11,0.12), rgba(4,6,11,0.45)),
    url('https://images.unsplash.com/photo-1515169067868-5387ec356754?auto=format&fit=crop&w=1200&q=80');
}

.clip-three {
  background-image:
    linear-gradient(180deg, rgba(4,6,11,0.12), rgba(4,6,11,0.45)),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1200&q=80');
}

.small-play {
  width: 68px;
  height: 68px;
}

.small-play::before {
  border-left: 16px solid var(--gold-strong);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.clip-content {
  padding: 1.35rem;
}

.clip-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  grid-auto-rows: 500px;
}
.media-gallery-section .section-header{
  width: 100%;
}

.gallery-item {
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  background: #0b0d12;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.media-assets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.media-assets-card,
.assets-list-card {
  padding: 2rem;
}

.media-assets-card h2 {
  font-size: 2.2rem;
  margin: 1rem 0 1rem;
}

.assets-list-card {
  display: grid;
  gap: 1rem;
}

.asset-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.asset-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.asset-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.asset-item a {
  color: var(--gold-strong);
  font-weight: 600;
}

.media-cta-section {
  padding: 1rem 0 6rem;
}
.speaking-hero {
  padding: 3rem 0 2rem;
}

.speaking-header {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.speaking-services-section .section-header{
  width: 100%;
}

.speaking-header .eyebrow {
  justify-content: center;
}

.speaking-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 1rem auto 1.2rem;
}

.speaking-header p {
  margin: 0 auto;
  font-size: 25px;
}

.speaking-intro-section,
.speaking-services-section,
.speaking-fit-section,
.speaking-process-section {
  padding: 2rem 0 2rem;
}

.speaking-intro-card,
.speaking-service-card,
.fit-copy-card,
.fit-quote-card,
.process-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.speaking-intro-card {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.speaking-intro-copy h2,
.fit-copy-card h2,
.fit-quote-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.speaking-intro-copy h2 {
  font-size: 2.2rem;
  margin: 1rem 0 1rem;
}

.speaking-intro-copy p,
.point-card p,
.speaking-service-card p,
.fit-copy-card p,
.fit-quote-card p,
.process-card p {
  color: var(--muted);
  font-size: 1.2rem;
}
.speaking-service-card .number,
.process-card .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-strong);
  margin-bottom: 0.5rem;
}
.speaking-intro-points {
  display: grid;
  gap: 1rem;
}

.point-card {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.point-card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.speaking-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.speaking-service-card {
  padding: 1.8rem;
}

.speaking-service-card h3,
.process-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.75rem;
}

.speaking-fit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.fit-copy-card,
.fit-quote-card {
  padding: 2rem;
}

.fit-copy-card h2 {
  font-size: 2.2rem;
  margin: 1rem 0 1rem;
}

.fit-quote-card h3 {
  font-size: 1.9rem;
  margin: 1rem 0 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.process-card {
  padding: 1.6rem;
}

.speaking-cta-section {
  padding: 1rem 0 6rem;
}

@media (max-width: 980px) {
  .speaking-intro-card,
  .speaking-services-grid,
  .speaking-fit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .speaking-header h1 {
    max-width: 10ch;
  }

  .speaking-intro-card,
  .speaking-service-card,
  .fit-copy-card,
  .fit-quote-card,
  .process-card {
    padding: 1.25rem;
  }
}

@media (max-width: 980px) {
  .media-featured-grid,
  .media-assets-grid,
  .media-clips-grid {
    grid-template-columns: 1fr;
  }

  .media-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .media-header h1 {
    max-width: 10ch;
  }

  .featured-copy-card,
  .media-assets-card,
  .assets-list-card,
  .clip-content {
    padding: 1.25rem;
  }

  .featured-video-placeholder {
    min-height: 340px;
  }

  .media-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 450px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 980px) {
  .about-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-main-card,
  .about-side-card {
    padding: 1.25rem;
  }

  .contact-header {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
     .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
      }

      .nav-links {
        flex-wrap: wrap;
        gap: 0.85rem 1rem;
      }
}

@media (max-width: 760px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .sidebar-card {
    padding: 1.25rem;
  }

}
    @media (max-width: 1080px) {
      .hero-grid,
      .video-shell,
      .about-band {
        grid-template-columns: 1fr;
      }

      .hero-card-wrap {
        min-height: auto;
      }

      .floating-card {
        right: 1rem;
        bottom: 1rem;
      }

      .services-grid,
      .testimonial-grid,
      .logo-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-card {
        flex-direction: column;
        align-items: flex-start;
      }
      
    }

    @media (max-width: 800px) {

      .hero {
        padding-top: 2rem;
      }

      .hero-metrics,
      .services-grid,
      .testimonial-grid,
      .logo-bar {
        grid-template-columns: 1fr;
      }

      .hero-copy h1 {
        max-width: 10ch;
      }

      .video-frame,
      .about-photo {
        min-height: 320px;
      }

      .floating-card {
        position: static;
        width: 100%;
        margin-top: 1rem;
      }

      .hero-card-wrap {
        display: block;
      }

      .cta-card,
      .about-band,
      .video-copy,
      .service-card,
      .testimonial {
        padding: 1.35rem;
      }
      .about-header h1{
        font-size: 2.5rem;
      }
    }