.page-home {
  --home-gap: 24px;
  --home-gap-lg: 40px;
  background: var(--color-paper);
}

.page-home .breadcrumb {
  padding: 16px 0 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-stone);
}

.page-home .breadcrumb a {
  color: var(--color-gold);
  text-decoration: none;
}

.page-home .breadcrumb [aria-hidden="true"] {
  padding: 0 6px;
}

.page-home .home-section-head {
  margin-bottom: 28px;
}

.page-home .home-section-head__index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.page-home .home-section-head__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-navy);
  margin: 0 0 10px;
}

.page-home .home-section-head__copy {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-ink);
  max-width: 720px;
  margin: 0;
}

.page-home .home-section-head--light .home-section-head__title {
  color: var(--color-white);
}

.page-home .home-section-head--light .home-section-head__copy {
  color: rgba(255, 255, 255, 0.85);
}

.page-home .home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--color-navy);
  color: var(--color-white);
}

.page-home .home-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-home .home-hero__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, rgba(11, 29, 58, 0.94) 18%, rgba(11, 29, 58, 0.55) 55%, rgba(11, 29, 58, 0.8) 100%);
  z-index: 1;
}

.page-home .home-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: 36px;
}

.page-home .home-hero__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  border-left: 3px solid var(--color-gold);
  padding-left: 12px;
  margin-bottom: 20px;
}

.page-home .home-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.15;
  color: var(--color-white);
  margin: 0 0 16px;
}

.page-home .home-hero__title-accent {
  color: var(--color-gold);
  display: block;
}

.page-home .home-hero__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 0 28px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero__indexnav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 16px;
  padding-top: 4px;
}

.page-home .home-hero__indexnav-link {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s linear, padding-left 0.2s linear;
}

.page-home .home-hero__indexnav-link:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.page-home .home-schedule {
  padding: 56px 0 64px;
  background: var(--color-paper);
}

.page-home .home-statband {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.page-home .home-statband__item {
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  padding: 18px 16px;
  box-shadow: 4px 4px 0 rgba(11, 29, 58, 0.14);
}

.page-home .home-statband__value {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--color-gold);
}

.page-home .home-statband__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-top: 6px;
}

.page-home .home-schedule__rows {
  border-top: 2px solid var(--color-navy);
}

.page-home .home-schedule__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--color-navy);
}

.page-home .home-schedule__row-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-schedule__row-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-clay);
  border: 1px solid var(--color-clay);
  padding: 2px 8px;
  width: fit-content;
}

.page-home .home-schedule__row-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.page-home .home-schedule__row-time,
.page-home .home-schedule__row-venue {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-ink);
}

.page-home .home-schedule__row-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-moss);
}

.page-home .home-schedule__keydata {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 0 8px;
}

.page-home .home-keydata__col {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 20px;
  border-left: 4px solid var(--color-gold);
}

.page-home .home-keydata__label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.page-home .home-keydata__value {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-gold);
}

.page-home .tabs {
  margin-top: 8px;
}

.page-home .tab-list {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-navy);
  margin-bottom: 20px;
}

.page-home .tab-button {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 16px;
  margin-bottom: -2px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-stone);
  cursor: pointer;
  transition: color 0.2s linear, border-color 0.2s linear;
}

.page-home .tab-button[aria-selected="true"] {
  color: var(--color-navy);
  border-bottom-color: var(--color-gold);
}

.page-home .tab-panel {
  display: block;
}

.page-home .tab-panel[hidden] {
  display: none;
}

.page-home .home-shoot {
  padding: 64px 0;
  background: var(--color-navy);
}

.page-home .home-shoot__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-home .home-shoot__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-shoot__rule {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-gold);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-home .home-shoot__rule:hover {
  transform: translateX(6px);
  box-shadow: -4px 4px 0 rgba(232, 163, 61, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.page-home .home-shoot__rule-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--color-white);
  margin: 0 0 8px;
}

.page-home .home-shoot__rule-copy {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.page-home .home-shoot__visual {
  position: relative;
  align-self: start;
  width: 100%;
}

.page-home .home-shoot__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  box-shadow: 8px 8px 0 rgba(232, 163, 61, 0.2);
}

.page-home .home-shoot__pitch {
  position: absolute;
  right: -6px;
  bottom: -14px;
  width: 96px;
  height: auto;
  background: rgba(11, 29, 58, 0.9);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-home .home-platforms {
  padding: 64px 0;
  background: var(--color-paper);
}

.page-home .home-platforms__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .home-platforms__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .home-platforms__card {
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  padding: 24px 20px;
  box-shadow: 6px 6px 0 rgba(11, 29, 58, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-platforms__card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(11, 29, 58, 0.16);
}

.page-home .home-platforms__card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.page-home .home-platforms__card-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--color-navy);
  margin: 0 0 10px;
}

.page-home .home-platforms__card-copy {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-ink);
  margin: 0 0 14px;
}

.page-home .home-platforms__card-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s linear;
}

.page-home .home-platforms__card-link:hover {
  border-bottom-color: var(--color-gold);
}

.page-home .home-platforms__card .btn {
  margin-top: 4px;
}

.page-home .home-platforms__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .home-platforms__img {
  max-width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  border: 2px solid var(--color-navy);
  box-shadow: 8px 8px 0 rgba(11, 29, 58, 0.15);
}

.page-home .home-services {
  position: relative;
  padding: 64px 0;
  background: var(--color-navy);
  overflow: hidden;
}

.page-home .home-services__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-home .home-services__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-home .home-services__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.9) 30%, rgba(11, 29, 58, 0.7) 100%);
}

.page-home .home-services__inner {
  position: relative;
  z-index: 2;
}

.page-home .home-services__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .home-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-services__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 18px;
}

.page-home .home-services__item-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gold);
}

.page-home .home-services__item-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.page-home .home-services__support {
  background: rgba(255, 255, 255, 0.06);
  border-top: 4px solid var(--color-gold);
  padding: 24px 20px;
  align-self: start;
}

.page-home .home-services__support-label {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--color-white);
  margin: 0 0 10px;
}

.page-home .home-services__support-copy {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px;
}

.page-home .home-services__support-copy a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-home .home-services__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .page-home .home-statband {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .page-home .home-schedule__row {
    grid-template-columns: 1.6fr 0.8fr 0.8fr auto;
    align-items: center;
    gap: 12px;
  }

  .page-home .home-schedule__keydata {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .home-services__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    min-height: 720px;
  }

  .page-home .home-hero__content {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .page-home .home-hero__title {
    font-size: 3.2rem;
  }

  .page-home .home-hero__indexnav {
    flex-direction: row;
    justify-content: flex-end;
    gap: 28px;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .page-home .home-hero__indexnav-link {
    border-bottom: none;
    padding: 10px 0;
  }

  .page-home .home-hero__indexnav-link:hover {
    padding-left: 0;
  }

  .page-home .home-section-head__title {
    font-size: 2.4rem;
  }

  .page-home .home-shoot__layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-shoot__pitch {
    width: 120px;
  }

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

  .page-home .home-services__layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
  }
}

@media (min-width: 1280px) {
  .page-home .home-platforms__layout {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
  }
}
