.utilitybar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-850));
  color: #eaf2ff;
  font-size: 12px;
}

.utilitybar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.utilitybar__tagline {
  opacity: 0.9;
  font-weight: 500;
}

.utilitybar__tagline--accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  opacity: 1;
}

.social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.iconbtn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eaf2ff;
  font-weight: 700;
  line-height: 0;
}
.iconbtn .ico {
  width: 14px;
  height: 14px;
}

.iconbtn--light {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Quote band / gold strip: dark circular social buttons */
.iconbtn--navy {
  background: rgba(6, 21, 40, 0.92);
  border-color: rgba(6, 21, 40, 0.95);
  color: #eaf2ff;
}

.iconbtn--quote {
  width: 32px;
  height: 32px;
  background: var(--navy-900);
  border: none;
  color: #fff;
}
.iconbtn--quote:hover {
  opacity: 0.88;
}
.iconbtn--quote .ico {
  width: 15px;
  height: 15px;
}

.navwrap {
  background: #ffffff;
  border-bottom: 1px solid rgba(8, 26, 47, 0.08);
}

.navwrap__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.logo__mark {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #f5efe3 55%, #e7d3a9 100%);
  border: 2px solid rgba(214, 165, 69, 0.65);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 10px 18px rgba(6, 21, 40, 0.12);
}

.logo__ring {
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 1px dashed rgba(8, 26, 47, 0.18);
}

.logo__crest {
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--navy-900);
  font-size: 12px;
}

.logo__custom {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  border: 2px solid rgba(214, 165, 69, 0.65);
  box-shadow: 0 10px 18px rgba(6, 21, 40, 0.12);
  background: #fff;
}

.logo__name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
  color: var(--navy-900);
}

.logo__sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.logo__club {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--navy-800);
}

.logo__place {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gold-2);
}

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

.nav__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.78);
  padding: 8px 0;
  position: relative;
}

.nav__link.is-active {
  color: var(--gold-2);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 99px;
}

.navtoggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 26, 47, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(6, 21, 40, 0.06);
}
.navtoggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 99px;
  margin: 4px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.btn__arrow {
  font-size: 16px;
  line-height: 1;
  margin-top: -1px;
}

.btn--primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1207;
  box-shadow: 0 14px 26px rgba(214, 165, 69, 0.25);
}

/* Hero CTA: navy panel + gold border (common in reference designs) */
.btn--hero-outline {
  background: rgba(6, 21, 40, 0.55);
  border: 2px solid var(--gold);
  color: #f3f7ff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.btn--hero-outline:hover {
  background: rgba(6, 21, 40, 0.72);
  border-color: rgba(214, 165, 69, 0.95);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(214, 165, 69, 0.55);
  color: var(--navy-900);
}

.btn--wide {
  width: 100%;
}

.link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.link--muted {
  color: rgba(11, 18, 32, 0.55);
}

.link--gold {
  color: var(--gold-2);
}

.link--gold:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Solid gold button, navy label (fixtures footer, promo on dark) */
.btn--gold-on-navy {
  background: linear-gradient(180deg, #e0b24d 0%, var(--gold-2) 100%);
  color: var(--navy-900);
  border: 1px solid rgba(214, 165, 69, 0.95);
  box-shadow: 0 12px 28px rgba(6, 21, 40, 0.35);
}

.btn--gold-on-navy:hover {
  filter: brightness(1.05);
}

/* Site footer only: flat gold CTA (reference — no gradient/shadow) */
.footer .btn--gold-on-navy {
  background: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
}
.footer .btn--gold-on-navy:hover {
  filter: brightness(1.04);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card__header {
  padding: 16px 18px 12px;
}

.card__header--row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--navy-900);
}

.card__footer {
  padding: 14px 18px 18px;
}

.footer {
  background: var(--navy-900);
  color: #eaf2ff;
  padding: 40px 0 22px;
  margin-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.footer__col {
  padding: 0 22px;
  border-left: 1px solid rgba(234, 242, 255, 0.1);
}

.footer__col:first-child {
  padding-left: 0;
  border-left: none;
}

.footer__col:last-child {
  padding-right: 0;
}

/* Quick links: two columns like reference */
nav.footer__col .footer__links {
  display: block;
  columns: 2;
  column-gap: 22px;
}

nav.footer__col .footer__links li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.footer__brand {
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer__title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(234, 242, 255, 0.92);
}

.footer__text {
  margin: 10px 0 0;
  color: rgba(234, 242, 255, 0.72);
  line-height: 1.5;
  font-size: 13px;
}

.footer__small {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(234, 242, 255, 0.55);
}

.footer__links,
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: rgba(234, 242, 255, 0.75);
}

.footer__links a {
  color: rgba(234, 242, 255, 0.75);
}
.footer__links a:hover {
  color: rgba(234, 242, 255, 0.95);
}

.footer__contact li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.footer__ico {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1px;
  color: var(--gold);
}
.footer__ico .ico {
  width: 16px;
  height: 16px;
}

.footer__contact a {
  color: rgba(234, 242, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(234, 242, 255, 0.1);
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer__credit a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.footer__credit a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .navtoggle {
    display: inline-block;
  }
  .nav.is-open {
    display: grid;
    width: 100%;
    padding: 10px 0 0;
    gap: 8px;
  }
  .navwrap__inner {
    flex-wrap: wrap;
  }
  .nav__link.is-active::after {
    bottom: -2px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .footer__col {
    border-left: none;
    padding-left: 0;
    padding-right: 0;
  }

  .footer__col:nth-child(2),
  .footer__col:nth-child(4) {
    border-left: 1px solid rgba(234, 242, 255, 0.1);
    padding-left: 22px;
  }

  .footer__col:nth-child(1),
  .footer__col:nth-child(3) {
    padding-right: 22px;
  }
}

@media (max-width: 640px) {
  .utilitybar__tagline {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .footer__col:nth-child(2),
  .footer__col:nth-child(4) {
    border-left: none;
    padding-left: 0;
  }

  .footer__col:nth-child(1),
  .footer__col:nth-child(3) {
    padding-right: 0;
  }

  .footer__col + .footer__col {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(234, 242, 255, 0.1);
  }

  nav.footer__col .footer__links {
    columns: 1;
  }
}

