/* de'Sires Studios - cinematic static website styles */
:root {
  --bg: #080808;
  --panel: #121212;
  --panel-soft: #1b1b1b;
  --text: #f7f2e8;
  --muted: #b9b2a7;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d6b25e;
  --gold-dark: #a67f2f;
  --charcoal: #222;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  color: var(--muted);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.3rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: #0e0e0e;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.btn {
  align-items: center;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.08rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: #ebc978;
  border-color: #ebc978;
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(214, 178, 94, 0.08);
}

.site-header {
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.94), rgba(12, 10, 6, 0.9), rgba(4, 4, 4, 0.94)),
    url("../images/header-logo-texture.png") center / cover,
    #080808;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 78px;
}

.logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 62px;
  width: 150px;
}

.logo img {
  filter: drop-shadow(0 0 10px rgba(214, 178, 94, 0.18));
  height: 100%;
  mix-blend-mode: screen;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  display: none;
  height: 44px;
  width: 44px;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 5px auto;
  width: 20px;
}

.hero-slider {
  min-height: calc(100vh - 78px);
  overflow: hidden;
  position: relative;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before,
.page-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  display: flex;
  min-height: calc(100vh - 78px);
  padding: 80px 0 120px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.hero-copy p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 720px;
}

.slider-control {
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  z-index: 2;
}

.slider-control.prev {
  left: 22px;
}

.slider-control.next {
  right: 22px;
}

.slider-dots {
  bottom: 34px;
  display: flex;
  gap: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.slider-dot {
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  padding: 0;
  width: 34px;
}

.slider-dot.active {
  background: var(--gold);
}

.trust-bar {
  background: #101010;
  border-block: 1px solid var(--line);
  padding: 22px 0;
}

.trust-grid,
.card-grid,
.portfolio-grid,
.event-grid,
.value-grid,
.testimonial-grid,
.footer-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  align-items: center;
  color: var(--text);
  display: flex;
  font-weight: 800;
  gap: 10px;
}

.trust-item::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 9px;
  width: 9px;
}

.split {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 1.05fr 0.95fr;
}

.media-frame {
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 300px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.portfolio-card,
.testimonial,
.value-card,
.event-card,
.info-panel,
.form-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card,
.testimonial,
.value-card,
.event-card,
.info-panel,
.form-panel {
  padding: 26px;
}

.service-card:hover,
.portfolio-card:hover,
.event-card:hover,
.value-card:hover {
  border-color: rgba(214, 178, 94, 0.55);
  transform: translateY(-4px);
}

.icon-mark {
  align-items: center;
  background: rgba(214, 178, 94, 0.12);
  border: 1px solid rgba(214, 178, 94, 0.28);
  border-radius: var(--radius);
  color: var(--gold);
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  margin-bottom: 18px;
  width: 46px;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.event-grid {
  grid-template-columns: repeat(4, 1fr);
}

.event-pill {
  background: #151515;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  padding: 18px;
}

.bullet-list {
  color: var(--muted);
  margin: 20px 0 28px;
  padding-left: 20px;
}

.bullet-list li {
  margin: 8px 0;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.portfolio-card .card-body {
  padding: 22px;
}

.tag {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial p {
  color: var(--text);
  font-size: 1.05rem;
}

.testimonial strong {
  color: var(--gold);
}

.cta-band {
  background: linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.78)), url("../images/cta-broadcast-production-1800x900.jpg") center / cover;
  padding: 90px 0;
  text-align: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.site-footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding: 58px 0 26px;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
}

.footer-grid a {
  color: var(--muted);
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-grid a:focus-visible {
  color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.footer-social a {
  align-items: center;
  display: flex;
  gap: 9px;
  width: fit-content;
}

.footer-social svg {
  fill: currentColor;
  flex: 0 0 18px;
  height: 18px;
  width: 18px;
}

.copyright {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 34px;
  padding-top: 22px;
}

.page-hero {
  background-position: center;
  background-size: cover;
  min-height: 430px;
  position: relative;
}

.page-hero .container {
  align-items: end;
  display: flex;
  min-height: 430px;
  padding-bottom: 78px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 760px;
}

/* Production partners */
.partners-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(214, 178, 94, 0.14), transparent 30%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.96), rgba(16, 14, 10, 0.88)),
    url("../images/header-logo-texture.png") center / cover;
  min-height: 560px;
}

.partners-hero .container {
  align-items: center;
  min-height: 560px;
  padding-block: 86px;
}

.partners-hero-copy {
  max-width: 920px;
}

.partners-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 900px;
}

.partners-hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 800px;
}

.partner-highlights,
.process-grid,
.client-benefits {
  display: grid;
  gap: 18px;
}

.partner-highlights {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.partner-highlight {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  padding: 20px;
}

.partner-highlight::before,
.client-benefits li::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 8px;
  margin-right: 11px;
  width: 8px;
}

.partner-list {
  display: grid;
  gap: 34px;
}

.partner-profile {
  align-items: stretch;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.4fr);
  overflow: hidden;
  scroll-margin-top: 104px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.partner-profile:hover {
  border-color: rgba(214, 178, 94, 0.45);
  transform: translateY(-3px);
}

.partner-profile:nth-child(even) .partner-logo-wrap {
  order: 2;
}

.partner-logo-wrap {
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(214, 178, 94, 0.1), transparent 62%),
    #0a0a0a;
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 390px;
  padding: clamp(28px, 5vw, 58px);
}

.partner-profile:nth-child(even) .partner-logo-wrap {
  border-left: 1px solid var(--line);
  border-right: 0;
}

.partner-logo-wrap img {
  height: auto;
  max-height: 245px;
  object-fit: contain;
  width: 100%;
}

.partner-logo-wrap.logo-light {
  background: #f4f4f2;
}

.partner-content {
  padding: clamp(30px, 5vw, 58px);
}

.partner-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  margin-bottom: 8px;
}

.partner-specialty {
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.capability-list li {
  background: rgba(214, 178, 94, 0.08);
  border: 1px solid rgba(214, 178, 94, 0.22);
  border-radius: 999px;
  color: #ddd5c8;
  font-size: 0.9rem;
  padding: 7px 12px;
}

.relationship-note,
.partner-disclaimer {
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
  padding-left: 16px;
}

.process-grid {
  counter-reset: partner-step;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  background: #151515;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.process-step::before {
  align-items: center;
  background: rgba(214, 178, 94, 0.12);
  border: 1px solid rgba(214, 178, 94, 0.3);
  border-radius: 999px;
  color: var(--gold);
  content: counter(partner-step, decimal-leading-zero);
  counter-increment: partner-step;
  display: flex;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  margin-bottom: 20px;
  width: 44px;
}

.process-step p {
  margin-bottom: 0;
}

.client-experience {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
}

.client-benefits {
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.client-benefits li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 700;
  padding: 18px;
}

.partner-disclaimer {
  margin-top: 42px;
}

.footer-partners {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 22px;
}

.footer-partners strong {
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}

.footer-partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-partner-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-partner-links a:hover,
.footer-partner-links a:focus-visible {
  color: var(--gold);
}

.value-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-detail,
.roadmap-step {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 42px 0;
}

.service-detail:first-child,
.roadmap-step:first-child {
  padding-top: 0;
}

.service-detail:last-child,
.roadmap-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.event-card {
  min-height: 190px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  background: #161616;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  padding: 0.65rem 1rem;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-grid {
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
}

.google-business-section {
  padding-top: 0;
}

.google-business-card {
  align-items: center;
  background: linear-gradient(135deg, rgba(214, 178, 94, 0.1), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 52px);
}

.google-business-card > div {
  max-width: 700px;
}

.google-business-card h2 {
  margin-bottom: 12px;
}

.google-business-card p {
  margin-bottom: 0;
}

.google-business-card .btn {
  flex: 0 0 auto;
}

.btn-icon {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

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

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  display: block;
  font-weight: 800;
  margin-bottom: 7px;
}

input,
select,
textarea {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  min-height: 48px;
  outline: none;
  padding: 0.78rem 0.9rem;
  width: 100%;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.form-message {
  color: var(--gold);
  font-weight: 800;
  min-height: 26px;
}

.hidden-field {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.open .nav-links {
    background: #090909;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    left: 0;
    padding: 12px 24px 24px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .site-header.open .nav-links a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
  }

  .trust-grid,
  .card-grid,
  .portfolio-grid,
  .testimonial-grid,
  .event-grid,
  .footer-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .service-detail,
  .roadmap-step,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .google-business-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-highlights,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-profile {
    grid-template-columns: 1fr;
  }

  .partner-profile:nth-child(even) .partner-logo-wrap {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    order: 0;
  }

  .partner-logo-wrap {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero-slider,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding: 70px 0 116px;
  }

  .slider-control {
    bottom: 34px;
    top: auto;
    transform: none;
  }

  .slider-control.prev {
    left: 18px;
  }

  .slider-control.next {
    right: 18px;
  }

  .slider-dots {
    bottom: 96px;
  }

  .trust-grid,
  .card-grid,
  .portfolio-grid,
  .testimonial-grid,
  .event-grid,
  .footer-grid,
  .value-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .page-hero,
  .page-hero .container {
    min-height: 360px;
  }

  .partners-hero,
  .partners-hero .container {
    min-height: 520px;
  }

  .partners-hero .cta-actions,
  .partners-hero .btn,
  .cta-band .btn {
    width: 100%;
  }

  .partner-highlights,
  .process-grid,
  .client-experience,
  .client-benefits {
    grid-template-columns: 1fr;
  }

  .partner-logo-wrap {
    min-height: 250px;
    padding: 28px;
  }

  .partner-logo-wrap img {
    max-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .partner-profile {
    transition: none;
  }
}
