:root {
  --black: #111111;
  --black-soft: #1a1a1a;
  --ivory: #f8f8f5;
  --gold: #c7a14a;
  --gold-soft: #e6ce8f;
  --ink: #f5f4f0;
  --text-dark: #252525;
  --line-dark: rgba(199, 161, 74, 0.35);
  --line-light: #d9d2c0;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  --radius-btn: 12px;
  --radius-card: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2.2rem, 1180px);
  margin-inline: auto;
}

.section-pad {
  padding-block: 80px;
}

.section-pad-sm {
  padding-block: 36px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.97), rgba(10, 10, 10, 0.92));
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 112px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-logo {
  height: 90px;
  width: auto;
  max-width: 100%;
  margin-block: 0;
  display: block;
}

.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: #f0ede6;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  transition: color 220ms ease, background-color 220ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold-soft);
  background-color: rgba(199, 161, 74, 0.14);
}

.hero {
  color: #ffffff;
  min-height: clamp(560px, 70vh, 760px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(98deg, rgba(2, 2, 2, 0.95) 0%, rgba(3, 3, 3, 0.9) 30%, rgba(5, 5, 5, 0.62) 52%, rgba(5, 5, 5, 0.3) 74%, rgba(5, 5, 5, 0.58) 100%),
    radial-gradient(circle at 72% 6%, rgba(199, 161, 74, 0.28) 0, rgba(199, 161, 74, 0) 22%);
  z-index: -1;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1400ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__inner {
  padding-block: 74px 52px;
  width: min(100% - 2.2rem, 1180px);
  margin-inline: auto;
}

.hero__content {
  max-width: 490px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  margin-left: clamp(0.75rem, 4vw, 2.5rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.8vw, 3.35rem);
  max-width: none;
  text-wrap: balance;
  line-height: 0.95;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  white-space: normal;
}

.hero-wordmark {
  display: block;
  width: min(100%, 390px);
  height: clamp(90px, 22vw, 120px);
  padding-inline: 10%;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
}

.lead {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.2vw, 1.26rem);
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.lead,
.feature-card p,
.discover-copy p,
.club-intro p,
.contact-grid p,
.contact-page-grid p,
.page p,
.about-highlight-card p,
.about-vision p:last-child,
.about-closing p {
  text-align: center;
}

.cta-row {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.cta-row .btn {
  min-width: 175px;
}

.hero-dots {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.5rem;
}

.dot {
  appearance: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  opacity: 0.7;
}

.dot.is-active {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #f2d488, var(--gold));
  color: #181818;
  text-decoration: none;
  border-radius: var(--radius-btn);
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  border: 1px solid #d5b768;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(199, 161, 74, 0.25);
}

.btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--line-light);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  background: #ffffff;
  border: 1px solid #e2ddd1;
  border-top: 0;
}

.feature-card {
  background: #ffffff;
  border-right: 1px solid #ece7dc;
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-icon {
  display: inline-block;
  color: #b98f37;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  border: 1px solid #d8bf82;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
}

.feature-card h2 {
  font-size: 1.55rem;
  color: var(--gold);
}

.feature-card h3 {
  margin-top: 0.45rem;
  font-family: "Inter", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.feature-card p {
  margin: 0.55rem 0 0;
  color: #575757;
  font-size: 0.92rem;
}

.section-light {
  background:
    radial-gradient(circle at 100% 0, rgba(199, 161, 74, 0.14) 0, rgba(199, 161, 74, 0) 45%),
    #ffffff;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 1.25rem;
  align-items: stretch;
}

.discover-copy {
  padding: 2rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  background: #ffffff;
}

.discover-copy h2 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  margin-bottom: 1rem;
}

.about-vision__highlight {
  margin: 1rem 0 1.35rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-light);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.clean-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.clean-list li {
  padding-left: 1.05rem;
  position: relative;
}

.clean-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.58rem;
}

.visual-block {
  border-radius: var(--radius-card);
  min-height: 0;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
}

.visual-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.3rem;
}

.promo-section {
  width: min(100% - 2.2rem, 1280px);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1.08fr));
  gap: 1rem;
}

.promo-card {
  border-radius: var(--radius-card);
  border: 1px solid #302d2b;
  color: #ffffff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0d0d0d;
  padding: 1.1rem;
  aspect-ratio: 16 / 9;
  display: grid;
  align-content: end;
}

.promo-card--1 {
  background-image: url("../images/promo-1.png");
}

.promo-card--2 {
  background-image: url("../images/promo-2.png");
}

.promo-card--3 {
  background-image: url("../images/promo-3.png");
}

.promo-card--4 {
  background-image: url("../images/promo-4.png");
  background-size: 100% 100%;
}

.promo-card h3,
.promo-card p,
.promo-card a,
.promo-card span {
  position: absolute;
  left: -9999px;
}

.promo-card h3 {
  font-size: 1.45rem;
  color: var(--gold-soft);
}

.promo-card p {
  margin: 0.55rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.promo-card a {
  color: var(--gold-soft);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  font-size: 0.83rem;
}

.players-club-banner {
  margin-bottom: 2rem;
  border-radius: var(--radius-card);
  padding-inline: 1.3rem;
  background:
    linear-gradient(90deg, #0f0f0f 0%, #141414 68%, rgba(199, 161, 74, 0.32) 100%);
  color: #ffffff;
  border: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(160px, 280px) auto;
  align-items: stretch;
  gap: 1rem 1.2rem;
}

.club-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  min-width: 0;
}

.club-intro {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.club-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: stretch;
}

.club-pillars p {
  margin: 0;
  border-left: 1px solid rgba(230, 206, 143, 0.3);
  padding-left: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 44px;
}

.club-card {
  min-width: 160px;
  width: min(280px, 100%);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(199, 161, 74, 0.82);
  box-shadow: var(--shadow);
  align-self: center;
}

.club-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
}

.players-club-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.players-club-banner p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-contact {
  color: #ffffff;
  background:
    linear-gradient(180deg, #111111, #090909),
    radial-gradient(circle at 25% 0, rgba(199, 161, 74, 0.2), rgba(199, 161, 74, 0));
  border-top: 1px solid var(--line-dark);
  padding-block: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
  align-items: center;
}

.contact-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.site-contact .contact-col {
  min-height: 128px;
}

.site-contact .contact-col--map {
  min-height: 128px;
}

.site-contact .map-embed {
  margin-top: 0;
}

.contact-grid h3 {
  font-family: "Inter", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
}

.site-contact .contact-col:first-child h3 {
  margin-top: 24px;
}

.contact-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.map-embed {
  margin-top: 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(230, 206, 143, 0.3);
  overflow: hidden;
  background: #0b0b0b;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.site-contact .map-embed {
  width: min(100%, 170px);
  position: relative;
}

.site-contact .map-embed--button {
  width: min(100%, 340px);
  aspect-ratio: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
}

.site-contact .map-embed__button-image {
  display: block;
  width: 100%;
  height: auto;
}

.site-contact .map-embed iframe {
  width: 66.6667%;
  height: 66.6667%;
  transform: scale(1.5);
  transform-origin: center;
  pointer-events: none;
}

.site-contact .map-embed__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-embed--large {
  aspect-ratio: 16 / 9;
  margin: 1.25rem 0 1.5rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1rem;
}

.page--contact .contact-page-grid {
  margin: 0.35rem 0 1rem;
}

.contact-page-grid h2 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.contact-page-grid p {
  margin: 0;
}

.page--contact {
  width: min(100% - 2.2rem, 1100px);
}

@media (min-width: 761px) {
  .page--contact,
  .page--contact p,
  .page--contact h1,
  .page--contact h2,
  .page--contact .eyebrow {
    text-align: center;
  }

  .page--contact h1 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  }

  .page--contact .contact-page-grid {
    align-items: stretch;
  }

  .page--contact .contact-page-grid > div {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.page--contact .btn {
  margin-top: 0.25rem;
}

.page--contact .eyebrow {
  margin-bottom: 0.4rem;
}

.page--contact h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

@media (min-width: 761px) {
  .page--contact h1 {
    font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  }
}

.page--contact .map-embed--large {
  max-width: 100%;
}

.page--contact .contact-page-grid + .map-embed--large {
  margin-top: 0.75rem;
}
.page {
  width: min(100% - 2.2rem, 900px);
  margin: 80px auto;
  background: #ffffff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.page--wide {
  width: min(100% - 2.2rem, 1280px);
}

.page-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-title-row h1 {
  margin: 0;
}

.about-page {
  overflow: hidden;
  margin-top: 5px;
}

.about-subtitle {
  margin: 0.35rem 0 0;
  max-width: 48ch;
  color: #5f5a51;
  font-size: 1.05rem;
}

.about-hero {
  margin-top: 1rem;
}

.about-copy {
  min-height: 100%;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-visual {
  min-height: 100%;
}

.about-highlights {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-highlight-card {
  border-radius: 18px;
  border: 1px solid #e5dcc9;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ef 100%);
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
}

.about-highlight-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.about-highlight-card p {
  margin: 0;
  color: #59534b;
}

.about-vision {
  margin-top: 1.25rem;
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(199, 161, 74, 0.28);
  background:
    linear-gradient(90deg, rgba(199, 161, 74, 0.12), rgba(199, 161, 74, 0.02)),
    #fffaf1;
}

.about-vision p:last-child {
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
}

.about-closing {
  margin-top: 1.1rem;
}

.about-closing p:last-child {
  margin-bottom: 0;
}

.about-closing + .btn {
  margin-top: 1rem;
}

.players-club-media {
  margin-top: 1.2rem;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.players-club-media__card-frame {
  width: min(100%, 420px);
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(199, 161, 74, 0.82);
  box-shadow: var(--shadow);
  background: #0b0b0b;
}

.players-club-media__card {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
}

.players-club-media__promo-link {
  display: block;
  width: min(100%, 420px);
  justify-self: center;
}

.players-club-media__promo {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(199, 161, 74, 0.32);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.players-club-media__note {
  margin: 0.1rem 0 0;
  text-align: center;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.promo-grid--page {
  margin: 1.5rem 0 1.75rem;
}

.site-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem 0 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(460px, 1fr) auto;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-grid > div:first-child {
  display: flex;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
}

.footer-grid > div:not(:first-child):not(.footer-primary-links):not(.social-row--footer) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-primary-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 82%;
  max-width: 680px;
  gap: 0.336rem;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  justify-self: center;
  padding-inline: 0.9rem;
  grid-column: 2;
  grid-row: 1;
}

.social-row--footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 0.6rem;
  grid-column: 3;
  grid-row: 1;
}

.social-row--footer a {
  flex: 0 0 auto;
}

.footer-primary-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.footer-primary-links a:hover {
  color: var(--gold-soft);
}

.footer-grid p {
  margin: 0 0 0.6rem;
}

.footer-grid > div p:last-child {
  margin-bottom: 0;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.footer-brand {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  margin: 0;
}

.footer-brand-logo {
  height: 63px;
  width: auto;
  max-width: 100%;
  display: block;
  margin-top: 0;
}

.social-row {
  display: flex;
  gap: 0.5rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(230, 206, 143, 0.38);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.social-row--footer a {
  width: 36px;
  height: 36px;
  border: 1px solid #d5b768;
  background: linear-gradient(135deg, #f2d488, var(--gold));
  color: #181818;
  box-shadow: 0 8px 18px rgba(199, 161, 74, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.social-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

.social-row--footer a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(199, 161, 74, 0.3);
}

.footer-bottom {
  margin-top: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

@media (max-width: 1100px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 0.8rem;
  }

  .brand {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .brand-logo {
    height: 90px;
  }

  .features,
  .promo-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .club-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: auto minmax(380px, 1fr) auto;
    gap: 1.2rem;
    justify-content: space-between;
  }

  .footer-primary-links {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.56rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 761px) {
  .about-page .page-title-row {
    align-items: flex-start;
  }

  .about-page .page-title-row > div,
  .about-page .page-title-row > div .eyebrow,
  .about-page .page-title-row > div h1,
  .about-page .page-title-row > div .about-subtitle {
    text-align: left;
  }

  .about-page .page-title-row > div {
    padding-left: 2rem;
  }

  .discover .discover-copy,
  .discover .discover-copy p,
  .discover .discover-copy h2,
  .discover .discover-copy .eyebrow,
  .discover .discover-copy li,
  .discover .about-vision__highlight {
    text-align: left;
  }

  .players-club-banner .club-intro h2,
  .players-club-banner .club-intro p {
    text-align: left;
  }

  .page--players-club .eyebrow,
  .page--players-club h1,
  .page--players-club > p {
    text-align: left;
  }

  .about-page,
  .about-page p,
  .about-page h1,
  .about-page h2,
  .about-page .eyebrow,
  .about-page li,
  .about-page .about-highlight-card p,
  .about-page .about-vision p:last-child,
  .about-page .about-closing p {
    text-align: left;
  }

  .about-page .about-highlights .about-highlight-card,
  .about-page .about-highlights .about-highlight-card h2,
  .about-page .about-highlights .about-highlight-card p {
    text-align: center;
  }

  .about-page .about-vision,
  .about-page .about-vision .eyebrow,
  .about-page .about-vision p,
  .about-page .about-vision p:last-child {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding-block: 56px;
  }

  .hero {
    min-height: 66vh;
  }

  .features {
    margin-top: 0;
  }

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid #ece7dc;
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .split-grid,
  .promo-grid,
  .features,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .discover-copy,
  .page {
    padding: 1.3rem;
  }

  .page-title-row {
    flex-direction: column;
    align-items: center;
  }

  .hero__content,
  .discover-copy,
  .page,
  .about-vision,
  .about-closing,
  .club-copy,
  .players-club-media,
  .contact-page-grid > div,
  .page-title-row,
  .footer-bottom,
  .footer-grid > div {
    text-align: center;
  }

  .cta-row,
  .hero-dots,
  .social-row--footer {
    justify-content: center;
  }

  .footer-bottom,
  .footer-bottom p,
  .social-row--footer {
    justify-self: center;
  }

  .footer-primary-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
  }

  .hero .lead,
  .discover-copy p,
  .discover-copy li,
  .page p,
  .about-vision p:last-child,
  .about-closing p,
  .contact-page-grid p,
  .club-intro p {
    text-align: center;
  }

  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .players-club-banner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .club-copy {
    width: 100%;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .site-contact.section-pad {
    padding-block: 34px;
  }

  .site-contact .contact-grid {
    gap: 0.55rem;
  }

  .site-contact .contact-col,
  .site-contact .contact-col--map {
    min-height: 0;
  }

  .site-contact .contact-col:first-child h3 {
    margin-top: 0;
  }

  .site-contact .contact-grid h3 {
    margin-bottom: 0.35rem;
  }

  .site-contact .map-embed--button {
    width: min(100%, 300px);
  }

  .footer-bottom {
    justify-items: center;
  }

  .footer-bottom p,
  .social-row--footer {
    text-align: center;
  }

  .club-pillars {
    grid-template-columns: 1fr;
  }

  .club-card {
    width: 100%;
    max-width: 280px;
  }

  .nav {
    justify-content: center;
  }

  .brand-logo {
    height: 90px;
  }

  .hero__inner {
    width: 100%;
  }

  .hero__content {
    max-width: none;
  }

  .hero h1 span {
    white-space: normal;
  }

}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    justify-items: center;
  }

  .footer-grid > div:first-child,
  .footer-primary-links,
  .social-row--footer {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }

  .footer-grid > div:first-child,
  .footer-brand {
    width: 100%;
    justify-content: center;
  }

  .footer-brand {
    display: flex;
  }

  .footer-brand-logo {
    height: 56px;
    width: auto;
    max-width: min(100%, 260px);
  }

  .footer-primary-links {
    width: 100%;
    max-width: none;
    padding-inline: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
  }

  .players-club-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }

  .players-club-banner .club-copy,
  .players-club-banner .club-intro,
  .players-club-banner .club-intro h2,
  .players-club-banner .club-intro p,
  .players-club-banner .club-pillars p {
    text-align: center;
  }

  .players-club-banner .club-copy {
    width: 100%;
    align-items: center;
  }

  .players-club-banner .club-intro {
    width: 100%;
    max-width: none;
    align-items: center;
  }

  .players-club-banner .club-pillars {
    width: 100%;
  }

  .players-club-banner .club-card {
    justify-self: center;
    margin-inline: auto;
    align-self: center;
  }
}

.page--privacy,
.page--privacy p,
.page--privacy h1,
.page--privacy h2,
.page--privacy .eyebrow,
.page--privacy li,
.page--responsible-gaming,
.page--responsible-gaming p,
.page--responsible-gaming h1,
.page--responsible-gaming h2,
.page--responsible-gaming .eyebrow,
.page--responsible-gaming li {
  text-align: left;
}

.page--privacy .page-title-row {
  align-items: flex-start;
}
