@font-face {
  font-family: Inter;
  src: url("../../cf-fonts/v/inter/5.2.8/latin/wght/normal.woff2");
}
@font-face {
  font-family: Sofia;
  src: url("../../cf-fonts/v/sofia-sans-condensed/5.2.8/latin/wght/normal.woff2");
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f8f9fa;
  color: #111;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1290px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  position: relative;
  z-index: 50;
  background: #111;
  color: #fff;
}
.site-header__inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 235px;
  font-family: Sofia, Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.brand img {
  width: 58px;
  height: 66px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 14px;
  font-weight: 700;
}
.site-nav > a {
  position: relative;
  padding: 35px 0;
}
.site-nav > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 28px;
  height: 2px;
  background: #fe3d00;
  transition: 0.3s;
}
.site-nav > a:hover:after {
  right: 0;
}
.site-nav .nav-cta {
  padding: 14px 22px;
  background: #fe3d00;
}
.site-nav .nav-cta:after {
  display: none;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  width: 42px;
  padding: 8px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
}
.page-hero {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 68px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2)),
    url("../images/page-hero.jpg") center/cover;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: #fe3d00;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.eyebrow:before {
  content: "";
  width: 30px;
  height: 2px;
  background: #fe3d00;
}
.page-hero h1,
.section-title {
  font-family: Sofia, Inter, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1.7px;
  line-height: 0.96;
}
.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(52px, 7vw, 92px);
}
.breadcrumb {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.breadcrumb span {
  color: #fe3d00;
}
.section {
  padding: 105px 0;
}
.section--dark {
  background: #111;
  color: #fff;
}
.section--white {
  background: #fff;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}
.section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
}
.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: #666;
  font-size: 18px;
}
.section--dark .lead {
  color: #aaa;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 27px;
  border: 0;
  background: #fe3d00;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  cursor: pointer;
}
.btn:hover {
  background: #e32600;
}
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
}
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e9e9e9;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card-body {
  padding: 25px;
}
.card h3,
.card h4 {
  margin: 0 0 9px;
  font-family: Sofia, Inter, sans-serif;
  font-size: 27px;
  line-height: 1.05;
  text-transform: uppercase;
}
.card p {
  margin: 0;
  color: #6e6e6e;
}
.meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #fe3d00;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.player-card {
  position: relative;
  background: #171717;
  color: #fff;
  border: 0;
}
.player-card .card-image {
  aspect-ratio: 4/5;
}
.player-card .card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 55px 25px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}
.player-card p {
  color: #fe3d00;
  font-weight: 700;
  text-transform: uppercase;
}
.player-number {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  font-family: Sofia;
  font-size: 42px;
  font-weight: 800;
}
.match-card {
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: #fff;
  border: 1px solid #e4e4e4;
  text-align: center;
}
.team-side img {
  width: 76px;
  height: 76px;
  margin: 0 auto 13px;
  object-fit: contain;
}
.team-side h4 {
  margin: 0;
  font-family: Sofia;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1;
}
.match-time strong {
  display: block;
  font-family: Sofia;
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}
.match-time span {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 12px;
}
.score {
  font-family: Sofia;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.table-wrap {
  overflow: auto;
  background: #fff;
}
.league-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.league-table th,
.league-table td {
  padding: 17px 18px;
  border-bottom: 1px solid #e9e9e9;
  text-align: center;
}
.league-table th {
  background: #111;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.league-table th:nth-child(2),
.league-table td:nth-child(2) {
  text-align: left;
}
.league-team {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.league-team img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 8;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 20px 17px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  font-family: Sofia;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.article-card .card-image {
  aspect-ratio: 16/10;
}
.article-card h3 {
  font-size: 30px;
}
.article-content {
  max-width: 900px;
  margin: auto;
}
.article-content img {
  width: 100%;
  margin: 0 0 35px;
}
.article-content p {
  font-size: 18px;
  color: #555;
}
.article-content h2 {
  font-family: Sofia;
  font-size: 43px;
  line-height: 1;
  text-transform: uppercase;
}
.product-card {
  position: relative;
}
.product-card .card-image {
  aspect-ratio: 1/1;
  background: #eee;
}
.product-card .price {
  color: #fe3d00;
  font-weight: 800;
}
.sale {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  background: #fe3d00;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 35px;
}
.contact-list strong {
  display: block;
  color: #fe3d00;
  font-size: 12px;
  text-transform: uppercase;
}
.contact-list a,
.contact-list span {
  font-family: Sofia;
  font-size: 25px;
  font-weight: 700;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #fe3d00;
}
.field textarea {
  min-height: 155px;
  resize: vertical;
}
.notice {
  margin-bottom: 25px;
  padding: 15px 18px;
  background: #e9f8ee;
  color: #167139;
  border-left: 4px solid #1aa354;
}
.notice.error {
  background: #fff0ee;
  color: #a32719;
  border-color: #fe3d00;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 28px;
}
.stat {
  padding: 20px;
  background: #f2f2f2;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: Sofia;
  font-size: 35px;
}
.stat span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.about-split img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}
.site-footer {
  padding: 80px 0 0;
  background: #111;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}
.footer-brand {
  margin-bottom: 22px;
}
.footer-grid h6 {
  margin: 0 0 19px;
  color: #fe3d00;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-grid p {
  max-width: 390px;
  color: #a8a8a8;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: #ccc;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #292929;
  color: #888;
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .site-nav {
    gap: 17px;
  }
  .site-nav > a {
    font-size: 12px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .menu-button {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 24px 25px;
    background: #111;
  }
  .site-nav.active {
    display: flex;
  }
  .site-nav > a {
    padding: 13px 0;
    border-bottom: 1px solid #292929;
  }
  .site-nav > a:after {
    display: none;
  }
  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid,
  .about-split {
    grid-template-columns: 1fr;
  }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 6;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: min(100% - 30px, 1290px);
  }
  .site-header__inner {
    height: 78px;
  }
  .brand {
    min-width: 0;
    font-size: 15px;
  }
  .brand img {
    width: 46px;
    height: 54px;
  }
  .site-nav {
    top: 78px;
  }
  .page-hero {
    min-height: 350px;
    padding: 90px 0 50px;
  }
  .page-hero h1 {
    font-size: 48px;
  }
  .section {
    padding: 72px 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-title {
    font-size: 43px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .match-card {
    grid-template-columns: 1fr 82px 1fr;
    padding: 22px 12px;
    gap: 8px;
  }
  .team-side img {
    width: 55px;
    height: 55px;
  }
  .team-side h4 {
    font-size: 18px;
  }
  .match-time strong {
    font-size: 21px;
  }
  .gallery-grid {
    grid-auto-rows: 210px;
  }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 12;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .about-split img {
    min-height: 350px;
  }
}
