:root {
  --color-green: #014a1e;
  --color-green-dark: #001007;
  --color-red: #e52521;
  --color-yellow: #ffcc07;
  --color-white: #ffffff;
  --color-paper: #f5f5f5;
  --color-ink: #010101;
  --font-base: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Singa, "Singa Trial", "Singa Condensed", Impact, "Arial Narrow", sans-serif;
  --container: 1760px;
}

@font-face {
  font-family: "Singa";
  src: url("../../fonts/Singa.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-base);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 16, 7, 0.96);
  color: #ffffff;
}

.site-header__inner,
.site-footer__inner,
.site-main {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__panel {
  display: contents;
}

.site-menu-toggle {
  display: none;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.site-branding__crest {
  width: 68px;
  height: auto;
}

.site-branding__name {
  display: grid;
}

.site-branding__club {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__actions a {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__actions img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.site-header__member {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  padding-inline: 22px;
  background: #e52521;
}

.layout-branded-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: #ffffff;
  background: transparent;
}
.layout-branded-page .site-header__inner {
  width: min(100% - 160px, 1760px);
  min-height: 168px;
  align-items: flex-start;
  padding-top: 48px;
}
.layout-branded-page .site-branding__crest {
  width: 75px;
}
.layout-branded-page .site-branding__name {
  display: none;
}
.layout-branded-page .site-navigation {
  padding-top: 28px;
}
.layout-branded-page .primary-menu {
  gap: 66px;
}
.layout-branded-page .primary-menu a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}
.layout-branded-page .site-header__actions {
  gap: 14px;
  padding-top: 19px;
}
.layout-branded-page .site-header__actions img {
  width: 22px;
  height: 22px;
}
.layout-branded-page .site-header__member {
  min-width: 164px;
  min-height: 50px;
  margin-top: -5px;
  margin-left: 20px;
  padding-inline: 28px;
  border-radius: 3px;
}
.layout-branded-page .site-main {
  width: 100%;
  padding: 0;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
  color: #e52521;
}

.site-main {
  padding-block: 56px 72px;
}

.entry-header {
  max-width: 860px;
  margin-bottom: 32px;
}

.entry-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.entry-content {
  max-width: 860px;
}

.site-footer {
  color: #ffffff;
  background: #001007;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 36px;
}

.site-footer a {
  color: #ffffff;
}

.club-member {
  position: relative;
  height: 851px;
  overflow: hidden;
  background: #f5f5f5;
}

.club-member__heading {
  padding-top: 135px;
  text-align: center;
}
.club-member__heading h2 {
  margin: 0;
  color: #014a1e;
  font-family: var(--font-display);
  font-size: 132px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}
.club-member__heading h2 strong {
  color: #e52521;
  font-weight: 400;
}
.club-member__heading p {
  max-width: 710px;
  margin: 34px auto 0;
  color: #7c7c7c;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.3;
}

.club-member__offers {
  position: absolute;
  top: 413px;
  left: calc(50% - 715px);
  width: 1388px;
  display: grid;
  grid-template-columns: 630px 630px;
  gap: 128px;
}

.club-member__card {
  position: relative;
  min-height: 300px;
  margin: 0;
  background: #e9e7e1;
  border-radius: 8px;
}
.club-member__card h3 {
  position: absolute;
  top: 86px;
  left: 38px;
  z-index: 2;
  width: 240px;
  margin: 0;
  color: #014a1e;
  font-family: var(--font-display);
  font-size: 90px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.76;
  text-transform: uppercase;
}
.club-member__card h3 span {
  display: block;
  color: #e52521;
}
.club-member__card img {
  position: absolute;
  top: 26px;
  right: -47px;
  width: 383px;
  height: 248px;
  object-fit: contain;
}

.club-member__shop {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  color: #001007;
  background: radial-gradient(circle at 50% 50%, #ffffff, #e5e2db);
  border-radius: 8px;
}
.club-member__shop > div {
  position: absolute;
  top: 70px;
  left: 27px;
  z-index: 2;
}
.club-member__shop > div > span {
  display: inline-flex;
  width: 120px;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #001007;
  font-family: "SignPainter", "SignPainter-HouseScript", cursive;
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #ffcc07;
}
.club-member__shop h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 90px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}
.club-member__shop h3 strong {
  color: #e52521;
  font-weight: 400;
}
.club-member__shop p {
  max-width: 220px;
  margin: 15px 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
}
.club-member__shop > img {
  position: absolute;
  top: -42px;
  left: 209px;
  width: 599px;
  height: 399px;
  max-width: none;
  object-fit: cover;
}

.main-footer {
  min-height: 497px;
  padding: 55px 0 39px;
  color: rgba(255, 255, 255, 0.72);
  background: #031711;
}

.main-footer__grid {
  width: min(100% - 160px, 1442px);
  display: grid;
  grid-template-columns: 1.06fr 1.32fr 1.1fr 0.93fr 0.97fr 1.1fr;
  margin-inline: auto;
  padding-bottom: 37px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.main-footer__grid nav {
  min-height: 138px;
  padding-left: 64px;
}
.main-footer__grid nav + nav {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.main-footer__grid h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.main-footer__grid a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  line-height: 1.8;
  text-decoration: none;
}

.main-footer__social {
  width: min(100% - 160px, 1442px);
  display: flex;
  justify-content: center;
  gap: 0;
  margin-inline: auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.main-footer__social a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 55px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-footer__social a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.main-footer__social img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.main-footer__address,
.main-footer__copy {
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-footer__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transform: translateX(-18px);
}
.main-footer__address > img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.main-footer__address p {
  margin: 0;
  text-align: left;
  letter-spacing: 0.26em;
}
.main-footer__address strong {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
}
.main-footer__address p > span {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}
.main-footer__address i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #75bf44;
}

.main-footer__copy {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

@media (max-width: 1180px) {
  .club-member__offers {
    width: min(100% - 48px, 980px);
    top: auto;
    right: 0;
    bottom: -39px;
    left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-inline: auto;
  }
  .club-member__card h3 {
    left: 20px;
    font-size: 72px;
  }
  .club-member__card img {
    width: 300px;
  }
  .club-member__shop > img {
    top: auto;
    right: -80px;
    bottom: 0;
    left: auto;
    width: 70%;
    opacity: 0.58;
  }
  .main-footer__grid,
  .main-footer__social {
    width: min(100% - 48px, 980px);
  }
  .main-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-footer__social {
    flex-wrap: wrap;
    gap: 24px 44px;
  }
  .main-footer__social a {
    padding-inline: 20px;
  }
}
@media (max-width: 680px) {
  .club-member {
    height: auto;
    min-height: 1260px;
    padding: 90px 0 70px;
  }
  .club-member__heading,
  .club-member__offers {
    width: min(100% - 32px, 560px);
    margin-inline: auto;
  }
  .club-member__heading {
    padding-top: 0;
  }
  .club-member__heading h2 {
    font-size: 72px;
  }
  .club-member__heading p {
    font-size: 1.05rem;
  }
  .club-member__offers {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    margin-top: 70px;
  }
  .club-member__card {
    min-height: 360px;
  }
  .club-member__card h3 {
    top: 20px;
    left: 0;
    font-size: 62px;
  }
  .club-member__card img {
    top: 100px;
    right: 0;
    width: 300px;
  }
  .club-member__shop {
    min-height: 380px;
    padding: 38px 24px;
  }
  .club-member__shop h3 {
    font-size: 60px;
  }
  .main-footer {
    padding: 50px 0 36px;
  }
  .main-footer__grid,
  .main-footer__social {
    width: min(100% - 32px, 560px);
  }
  .main-footer__grid {
    gap: 24px 16px;
    padding-bottom: 34px;
  }
  .main-footer__grid nav {
    min-height: 0;
    padding-left: 14px;
  }
  .main-footer__social {
    justify-content: flex-start;
    gap: 20px 28px;
  }
  .main-footer__social a {
    padding: 0;
    border-left: 0;
  }
  .main-footer__address {
    width: min(100% - 32px, 560px);
    transform: none;
  }
  .main-footer__copy {
    width: min(100% - 32px, 560px);
  }
}
.home .site-header {
  background: linear-gradient(180deg, rgba(0, 16, 7, 0.74), rgba(0, 16, 7, 0));
}

@media (max-width: 900px) {
  .site-header__inner,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .primary-menu {
    flex-wrap: wrap;
    gap: 14px;
  }
  .layout-branded-page.menu-open {
    overflow: hidden;
  }
  .layout-branded-page .site-header__inner {
    width: min(100% - 32px, 720px);
    min-height: 92px;
    align-items: center;
    flex-direction: row;
    padding-top: 0;
  }
  .layout-branded-page .site-branding {
    position: relative;
    z-index: 62;
  }
  .layout-branded-page .site-branding__crest {
    width: 58px;
  }
  .layout-branded-page .site-menu-toggle {
    position: relative;
    z-index: 63;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 3px;
    color: #ffffff;
    background: rgba(0, 16, 7, 0.34);
    cursor: pointer;
  }
  .layout-branded-page .site-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .layout-branded-page .site-menu-toggle[aria-expanded=true] > span:nth-of-type(2) {
    transform: translateY(8px) rotate(45deg);
  }
  .layout-branded-page .site-menu-toggle[aria-expanded=true] > span:nth-of-type(3) {
    opacity: 0;
  }
  .layout-branded-page .site-menu-toggle[aria-expanded=true] > span:nth-of-type(4) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .layout-branded-page .site-header__panel {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    padding: 126px 28px 34px;
    overflow-y: auto;
    color: #ffffff;
    background: rgba(0, 16, 7, 0.985);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .layout-branded-page .site-header__panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .layout-branded-page .site-header__panel .site-navigation {
    display: block;
    padding: 0;
  }
  .layout-branded-page .site-header__panel .primary-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .layout-branded-page .site-header__panel .primary-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .layout-branded-page .site-header__panel .primary-menu a {
    display: block;
    padding: 16px 0;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 600;
  }
  .layout-branded-page .site-header__panel .site-header__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-top: auto;
    margin-left: 0;
    padding-top: 38px;
  }
  .layout-branded-page .site-header__panel .site-header__actions > a:not(.site-header__member) {
    display: inline-flex;
  }
  .layout-branded-page .site-header__panel .site-header__actions img {
    width: 24px;
    height: 24px;
  }
  .layout-branded-page .site-header__panel .site-header__member {
    width: 100%;
    display: inline-flex;
    min-height: 42px;
    margin: 12px 0 0;
    padding-inline: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header__panel,
  .site-menu-toggle > span {
    transition: none !important;
  }
}

/*# sourceMappingURL=global.css.map */
