:root {
  --bg-ivory: #f5f1e8;
  --bg-cream: rgba(245, 241, 232, 0.9);
  --text-dark: #171513;
  --text-light: #f5f1e8;
  --text-muted: rgba(245, 241, 232, 0.82);
  --gold: #c6a75e;
  --gold-deep: #b59243;
  --gold-soft: rgba(198, 167, 94, 0.3);
  --border-soft: rgba(255, 255, 255, 0.22);
  --shadow-soft: 0 18px 50px rgba(17, 17, 17, 0.12);
  --max-width: 1320px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--bg-ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- NAV ---------- */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  pointer-events: none;
}

.nav {
  width: 100%;
  padding: 20px 12px 0;
  pointer-events: auto;
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 28px;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 28px;
  background: var(--bg-cream);
  border: 1px solid rgba(23, 21, 19, 0.08);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}

.nav-brand-logo {
  width: 42px;
  height: auto;
  object-fit: contain;
}

.nav-brand-lockup {
  display: grid;
  gap: 3px;
}

.nav-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(23, 21, 19, 0.92);
  white-space: nowrap;
}

.nav-brand-place {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(23, 21, 19, 0.44);
}

.nav-menu {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.nav-menu__primary {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-menu__actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(23, 21, 19, 0.08);
}

.nav-menu__actions .button {
  width: auto;
  max-width: none;
  white-space: nowrap;
}

.nav-action-primary {
  min-height: 44px;
  padding: 0 22px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 22px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  min-width: 182px;
  padding: 14px 16px;
  display: grid;
  gap: 10px;
  border-radius: 18px;
  background: rgba(245, 241, 232, 0.84);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-1px);
}

.nav-submenu-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(23, 21, 19, 0.58);
  opacity: 0.72;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-submenu-link:hover,
.nav-submenu-link:focus-visible {
  color: var(--gold-deep);
  opacity: 1;
}

.nav-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(23, 21, 19, 0.72);
  transition: color 160ms ease, opacity 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.nav-link:hover {
  color: rgba(23, 21, 19, 0.94);
  opacity: 1;
}

.nav-link[aria-current="page"] {
  color: rgba(23, 21, 19, 0.94);
}

.nav-link-utility {
  color: rgba(23, 21, 19, 0.52);
  white-space: nowrap;
}

.nav-menu__actions .nav-link-utility {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(198, 167, 94, 0.52);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.34);
  color: rgba(23, 21, 19, 0.84);
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav-link-utility:hover,
.nav-link-utility:focus-visible {
  color: var(--text-dark);
}

.nav-menu__actions .nav-link-utility:hover,
.nav-menu__actions .nav-link-utility:focus-visible {
  background: rgba(198, 167, 94, 0.12);
  border-color: rgba(198, 167, 94, 0.66);
  color: rgba(23, 21, 19, 0.94);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.05);
}

.nav-link-cta {
  padding: 12px 18px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  justify-self: end;
  align-self: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--gold);
}

/* ---------- OPENING RIBBON ---------- */

.opening-ribbon {
  position: absolute;
  inset: 106px 0 auto 0;
  z-index: 24;
  padding: 0 12px;
  pointer-events: none;
}

.opening-ribbon__inner {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 34px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(245, 241, 232, 0.44);
  background: linear-gradient(180deg, rgba(44, 30, 23, 0.94) 0%, rgba(35, 24, 18, 0.96) 100%);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.2);
  overflow: hidden;
  pointer-events: auto;
}

.opening-ribbon__inner::before {
  content: "";
  position: absolute;
  inset: 3px 8px;
  border-top: 1px dashed rgba(245, 241, 232, 0.42);
  border-bottom: 1px dashed rgba(245, 241, 232, 0.42);
  pointer-events: none;
}

.opening-ribbon__inner::after {
  content: "YPC  YPC  YPC  YPC  YPC  YPC  YPC";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.1);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}

.opening-ribbon__announcement {
  position: relative;
  z-index: 1;
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: rgba(245, 241, 232, 0.92);
}

.opening-ribbon__track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  animation: ribbon-scroll 30s linear infinite;
  will-change: transform;
  transform: translateX(0);
}

.opening-ribbon__sequence {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-right: 26px;
  white-space: nowrap;
}

.opening-ribbon__inner:hover .opening-ribbon__track,
.opening-ribbon__inner:focus-within .opening-ribbon__track {
  animation-play-state: paused;
}

@keyframes ribbon-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.opening-ribbon__text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-variant-caps: all-small-caps;
}

.opening-ribbon__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(198, 167, 94, 0.9);
  box-shadow: 0 0 0 1px rgba(198, 167, 94, 0.28);
}

.opening-ribbon__actions {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.opening-ribbon__actions::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(198, 167, 94, 0.84);
}

.opening-ribbon__link {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border: 1px solid rgba(245, 241, 232, 0.24);
  background: rgba(245, 241, 232, 0.06);
  color: rgba(245, 241, 232, 0.95);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.opening-ribbon__link:hover,
.opening-ribbon__link:focus-visible {
  border-color: rgba(198, 167, 94, 0.62);
  background: rgba(198, 167, 94, 0.12);
  color: rgba(245, 241, 232, 0.96);
}

/* ---------- HERO ---------- */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.34) 26%,
      rgba(0, 0, 0, 0.22) 56%,
      rgba(0, 0, 0, 0.18) 74%,
      rgba(0, 0, 0, 0.24) 100%
    );
}

.hero-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 232, 0) 0%,
    rgba(245, 241, 232, 0.14) 20%,
    rgba(245, 241, 232, 0.38) 50%,
    rgba(245, 241, 232, 0.72) 78%,
    rgba(245, 241, 232, 1) 100%
  );
}

.hero-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-width);
  min-height: 100vh;
  margin: 0 auto;
  padding: 170px 32px 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 980px;
  text-align: center;
  color: var(--text-light);
}

.hero-eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.94);
}

.hero-heading {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text-light);
  text-wrap: balance;
}

.hero-paragraph {
  max-width: 780px;
  margin: 26px auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.hero-buttons {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  color: rgba(188, 155, 82, 0.98);
  border-color: rgba(198, 167, 94, 0.9);
  background: rgba(198, 167, 94, 0.06);
}

.hero-buttons .hero-button--attend {
  border-color: rgba(198, 167, 94, 0.98);
  background: rgba(198, 167, 94, 0.12);
}

.hero-buttons .btn-secondary {
  color: rgba(232, 221, 199, 0.94);
  border-color: rgba(232, 221, 199, 0.22);
  background: rgba(245, 241, 232, 0.08);
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-primary:focus-visible {
  color: rgba(245, 241, 232, 0.96);
}

.hero-buttons .btn-secondary:hover,
.hero-buttons .btn-secondary:focus-visible {
  color: rgba(245, 241, 232, 0.96);
  background: rgba(245, 241, 232, 0.12);
  border-color: rgba(245, 241, 232, 0.28);
}

/* ---------- BUTTONS ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition:
    transform 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease,
    color 250ms ease,
    box-shadow 250ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.btn-primary,
.button-primary,
.button-gold {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: rgba(198, 167, 94, 0.04);
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-gold:hover,
.button-gold:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-light);
}

.btn-secondary,
.button-secondary,
.button-dark {
  color: rgba(159, 132, 82, 0.88);
  border: 1px solid rgba(198, 167, 94, 0.28);
  background: transparent;
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  background: rgba(198, 167, 94, 0.1);
  border-color: rgba(198, 167, 94, 0.52);
  color: var(--gold);
}

.btn-disabled,
.button.btn-disabled,
.button[aria-disabled="true"] {
  color: rgba(23, 21, 19, 0.42);
  border: 1px solid rgba(23, 21, 19, 0.12);
  background: rgba(23, 21, 19, 0.04);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  opacity: 0.74;
}

.btn-disabled:hover,
.btn-disabled:focus-visible,
.button.btn-disabled:hover,
.button.btn-disabled:focus-visible,
.button[aria-disabled="true"]:hover,
.button[aria-disabled="true"]:focus-visible {
  transform: none;
  background: rgba(23, 21, 19, 0.04);
  border-color: rgba(23, 21, 19, 0.12);
  color: rgba(23, 21, 19, 0.42);
  box-shadow: none;
}

/* ---------- SECTIONS ---------- */

.club-section,
.placeholder-section,
.support-section {
  position: relative;
  z-index: 5;
  background: var(--bg-ivory);
}

.home-intro-section {
  position: relative;
  z-index: 5;
  background: var(--bg-ivory);
  padding: 46px 0 24px;
}

.home-intro {
  max-width: 880px;
  margin: 0 auto;
}

.home-intro__heading {
  margin: 0 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--text-dark);
  text-wrap: balance;
}

.home-intro p {
  margin: 0;
  color: rgba(23, 21, 19, 0.74);
  font-size: 1.02rem;
  line-height: 1.82;
}

.home-intro p + p {
  margin-top: 16px;
}

.home-intro a {
  color: rgba(23, 21, 19, 0.86);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  transition: color 250ms ease;
}

.home-intro a:hover,
.home-intro a:focus-visible {
  color: var(--gold);
}

.home-about-section,
.home-founder-section {
  position: relative;
  z-index: 5;
  background: var(--bg-ivory);
}

.home-about-section {
  padding: 14px 0 28px;
}

.home-about {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 12px;
}

.home-about__intro .section-eyebrow {
  text-align: center;
}

.home-about__intro,
.home-about__body,
.home-founder__copy {
  text-align: center;
}

.home-about__intro,
.home-founder__copy {
  max-width: 760px;
  margin: 0 auto;
}

.home-about__body {
  margin: 22px auto 0;
  max-width: 760px;
}

.home-about__title,
.home-founder__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--text-dark);
  text-wrap: balance;
}

.home-about__body p,
.home-founder__copy p {
  margin: 0;
  color: rgba(23, 21, 19, 0.72);
  font-size: 1rem;
  line-height: 1.82;
}

.home-about__body p + p,
.home-founder__copy p + p {
  margin-top: 16px;
}

.home-founder-section {
  padding: 4px 0 26px;
}

.home-founder {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 44px;
  align-items: center;
}

.home-founder--text-only {
  display: block;
  max-width: 820px;
  margin: 0 auto;
}

.home-founder__images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 18px;
  align-items: end;
}

.home-founder__image {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  background: rgba(23, 21, 19, 0.06);
}

.home-founder__image--current {
  min-height: 420px;
}

.home-founder__image--childhood {
  min-height: 300px;
  transform: translateY(34px);
}

.home-founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-founder__copy .section-eyebrow {
  margin-bottom: 22px;
}

.page-footer {
  padding: 28px 0 42px;
  background: var(--bg-ivory);
  border-top: 1px solid rgba(23, 21, 19, 0.08);
}

.page-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(auto-fit, minmax(140px, 0.78fr));
  gap: 28px;
  align-items: start;
}

.page-footer__brand {
  max-width: 420px;
}

.page-footer__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(23, 21, 19, 0.48);
}

.page-footer__title {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-dark);
}

.page-footer__group-title {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23, 21, 19, 0.46);
}

.page-footer__links {
  display: grid;
  gap: 10px;
}

.page-footer__links a {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(23, 21, 19, 0.68);
}

.page-footer__links a:hover {
  color: var(--gold);
}

.page-footer__links a[href*="instagram.com"],
.page-footer__links a[href*="facebook.com"],
.page-footer__links a[href*="x.com/PoloYellowstone"],
.page-footer__links a[href*="tiktok.com"] {
  width: 42px;
  height: 42px;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(198, 167, 94, 0.46);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.34);
  color: var(--gold);
  font-size: 0;
  line-height: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.page-footer__links a[href*="instagram.com"]::before,
.page-footer__links a[href*="facebook.com"]::before,
.page-footer__links a[href*="x.com/PoloYellowstone"]::before,
.page-footer__links a[href*="tiktok.com"]::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.page-footer__links a[href*="instagram.com"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4.75' y='4.75' width='14.5' height='14.5' rx='4.25' fill='none' stroke='black' stroke-width='1.7'/%3E%3Ccircle cx='12' cy='12' r='3.4' fill='none' stroke='black' stroke-width='1.7'/%3E%3Ccircle cx='17.2' cy='6.9' r='1.15' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4.75' y='4.75' width='14.5' height='14.5' rx='4.25' fill='none' stroke='black' stroke-width='1.7'/%3E%3Ccircle cx='12' cy='12' r='3.4' fill='none' stroke='black' stroke-width='1.7'/%3E%3Ccircle cx='17.2' cy='6.9' r='1.15' fill='black'/%3E%3C/svg%3E");
}

.page-footer__links a[href*="facebook.com"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5 20v-7h2.35l.35-2.75H13.5V8.55c0-.8.22-1.35 1.37-1.35h1.46V4.73c-.25-.03-1.1-.11-2.09-.11-2.06 0-3.47 1.26-3.47 3.58v2.05H8.42V13h2.35v7h2.73Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5 20v-7h2.35l.35-2.75H13.5V8.55c0-.8.22-1.35 1.37-1.35h1.46V4.73c-.25-.03-1.1-.11-2.09-.11-2.06 0-3.47 1.26-3.47 3.58v2.05H8.42V13h2.35v7h2.73Z' fill='black'/%3E%3C/svg%3E");
}

.page-footer__links a[href*="x.com/PoloYellowstone"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 5h3.25l4.1 5.47L18.1 5H20l-5.82 6.74L20.3 19h-3.26l-4.36-5.81L7.67 19H5.74l6.06-7.03L6 5Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 5h3.25l4.1 5.47L18.1 5H20l-5.82 6.74L20.3 19h-3.26l-4.36-5.81L7.67 19H5.74l6.06-7.03L6 5Z' fill='black'/%3E%3C/svg%3E");
}

.page-footer__links a[href*="tiktok.com"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.2 4.8c.43 1.22 1.34 2.23 2.48 2.86.78.43 1.66.68 2.57.7v2.55a7.12 7.12 0 0 1-2.96-.65v4.58c0 1.26-.4 2.44-1.16 3.42a5.92 5.92 0 0 1-4.84 2.43 5.84 5.84 0 0 1-2.77-.68 5.92 5.92 0 0 1-2.98-5.17 5.9 5.9 0 0 1 7.04-5.8v2.65a3.2 3.2 0 0 0-1.1-.19 3.28 3.28 0 0 0-1.54.38 3.28 3.28 0 0 0-1.69 2.96c0 1.27.73 2.45 1.86 3a3.3 3.3 0 0 0 1.37.29c1.82 0 3.3-1.45 3.3-3.24V4.8h2.42Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.2 4.8c.43 1.22 1.34 2.23 2.48 2.86.78.43 1.66.68 2.57.7v2.55a7.12 7.12 0 0 1-2.96-.65v4.58c0 1.26-.4 2.44-1.16 3.42a5.92 5.92 0 0 1-4.84 2.43 5.84 5.84 0 0 1-2.77-.68 5.92 5.92 0 0 1-2.98-5.17 5.9 5.9 0 0 1 7.04-5.8v2.65a3.2 3.2 0 0 0-1.1-.19 3.28 3.28 0 0 0-1.54.38 3.28 3.28 0 0 0-1.69 2.96c0 1.27.73 2.45 1.86 3a3.3 3.3 0 0 0 1.37.29c1.82 0 3.3-1.45 3.3-3.24V4.8h2.42Z' fill='black'/%3E%3C/svg%3E");
}

.page-footer__links a[href*="instagram.com"]:hover,
.page-footer__links a[href*="instagram.com"]:focus-visible,
.page-footer__links a[href*="facebook.com"]:hover,
.page-footer__links a[href*="facebook.com"]:focus-visible,
.page-footer__links a[href*="x.com/PoloYellowstone"]:hover,
.page-footer__links a[href*="x.com/PoloYellowstone"]:focus-visible,
.page-footer__links a[href*="tiktok.com"]:hover,
.page-footer__links a[href*="tiktok.com"]:focus-visible {
  transform: translateY(-1px);
  background: var(--gold);
  border-color: var(--gold);
  color: rgba(23, 21, 19, 0.88);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.page-footer__note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(23, 21, 19, 0.58);
}

.home-foundation-section {
  padding: 88px 0 96px;
}

.home-foundation-section .section-header {
  max-width: 760px;
}

.club-section {
  padding: 48px 0 120px;
}

.placeholder-section,
.support-section {
  padding: 110px 0;
}

.placeholder-section--bridge {
  padding: 78px 0 82px;
}

.placeholder-section--bridge .section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.placeholder-section--bridge .section-heading {
  font-size: clamp(2.1rem, 3.6vw, 3.15rem);
  margin-bottom: 14px;
}

.placeholder-section--bridge .section-paragraph {
  font-size: 1rem;
  line-height: 1.76;
}

.placeholder-section--bridge .homepage-card-grid {
  gap: 20px;
}

.placeholder-section--bridge .homepage-card {
  padding: 26px;
  background: rgba(255, 253, 249, 0.94);
  border-color: rgba(23, 21, 19, 0.12);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.04);
}

.placeholder-section--bridge .homepage-card h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.placeholder-section--bridge .homepage-card p {
  color: rgba(23, 21, 19, 0.66);
  line-height: 1.74;
}

.placeholder-section--bridge .homepage-text-link {
  margin-top: 18px;
  color: rgba(23, 21, 19, 0.86);
}

.button-dark {
  margin-top: 10px;
}

.section-wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(23, 21, 19, 0.58);
}

.section-heading {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--text-dark);
  text-wrap: balance;
}

.section-paragraph {
  margin: 0;
  color: rgba(23, 21, 19, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.homepage-section-action {
  margin-top: 30px;
}

.homepage-card-intro {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.homepage-card-intro p {
  margin: 0;
  color: rgba(23, 21, 19, 0.62);
  font-size: 1rem;
  line-height: 1.8;
}

.homepage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.homepage-card {
  padding: 28px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(23, 21, 19, 0.1);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.05);
}

.homepage-card h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
}

.homepage-card p {
  margin: 0;
  color: rgba(23, 21, 19, 0.68);
  font-size: 0.99rem;
  line-height: 1.82;
}

.homepage-text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: rgba(23, 21, 19, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 250ms ease, opacity 250ms ease;
}

.homepage-text-link:hover,
.homepage-text-link:focus-visible {
  color: var(--gold);
}

.club-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.club-image {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #ddd;
}

.club-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-copy {
  max-width: 520px;
  text-align: left;
}

.club-copy p {
  margin: 0 0 20px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(23, 21, 19, 0.78);
}

.homepage-band {
  position: relative;
  z-index: 5;
  min-height: 196px;
  background-color: #d9d0c0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.homepage-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 241, 232, 0.28) 0%,
    rgba(245, 241, 232, 0.34) 52%,
    rgba(245, 241, 232, 0.42) 100%
  );
}

.homepage-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 232, 0) 0%,
    rgba(245, 241, 232, 0.22) 38%,
    rgba(245, 241, 232, 0.58) 72%,
    rgba(245, 241, 232, 1) 100%
  );
}

.homepage-band--club {
  background-image: url("../assets/images/band-club-landscape.jpg");
}

.homepage-band--founder {
  /* Future image hook: ../assets/images/band.founder.landscape.jpg */
  background-color: var(--bg-ivory);
}

.homepage-band--founder::before,
.homepage-band--founder::after,
.homepage-band--footer::before,
.homepage-band--footer::after {
  display: none;
}

.homepage-band--polo {
  background-image: url("../assets/images/montana-polo.jpg");
}

.homepage-band--polo::before,
.homepage-band--membership::before {
  background: linear-gradient(
    180deg,
    rgba(245, 241, 232, 0.2) 0%,
    rgba(245, 241, 232, 0.25) 50%,
    rgba(245, 241, 232, 0.3) 100%
  );
}

.homepage-band--events {
  background-image: url("../assets/images/band-events-landscape.png");
}

.homepage-band--membership {
  background-image: url("../assets/images/band-membership-landscape.jpg");
}

.homepage-band--footer {
  /* Future image hook: ../assets/images/band.footer.landscape.jpg */
  background-color: var(--bg-ivory);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
  .nav-menu__primary {
    gap: 22px;
  }

  .nav-menu__actions {
    gap: 14px;
    margin-left: 18px;
    padding-left: 18px;
  }

  .hero-heading {
    font-size: clamp(3.5rem, 8vw, 5.4rem);
  }

  .club-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-about,
  .home-founder {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-founder__images {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  }

  .home-founder__image--current {
    min-height: 360px;
  }

  .home-founder__image--childhood {
    min-height: 260px;
    transform: translateY(24px);
  }

  .homepage-card-grid {
    grid-template-columns: 1fr;
  }

  .club-copy {
    max-width: 100%;
  }

  .club-image {
    min-height: 420px;
  }

  .homepage-band {
    min-height: 184px;
  }
}

@media (max-width: 900px) {
  .opening-ribbon {
    inset: 100px 0 auto 0;
  }

  .opening-ribbon__inner {
    min-height: 32px;
    padding: 5px 12px;
    gap: 10px;
  }

  .opening-ribbon__announcement {
    overflow: hidden;
  }

  .opening-ribbon__text {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .opening-ribbon__actions {
    gap: 6px;
  }

  .nav-container {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.is-open {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    background: rgba(245, 241, 232, 0.98);
    border: 1px solid rgba(23, 21, 19, 0.08);
    box-shadow: 0 16px 42px rgba(17, 17, 17, 0.08);
  }

  .nav-menu.is-open .nav-menu__primary,
  .nav-menu.is-open .nav-menu__actions {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-menu.is-open .nav-menu__actions {
    padding-top: 8px;
    padding-left: 0;
    margin-left: 0;
    gap: 14px;
    border-top: 1px solid rgba(23, 21, 19, 0.08);
    border-left: 0;
  }

  .nav-menu.is-open .nav-link {
    width: 100%;
  }

  .nav-menu.is-open .nav-menu__actions .nav-link-utility {
    width: 100%;
  }

  .nav-menu.is-open .nav-menu__actions .button {
    width: 100%;
  }

  .nav-menu.is-open .nav-dropdown {
    width: 100%;
    display: block;
  }

  .nav-dropdown::after {
    content: none;
  }

  .nav-menu.is-open .nav-submenu {
    position: static;
    left: auto;
    min-width: 0;
    margin-top: 10px;
    padding: 0 0 0 14px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu.is-open .nav-submenu-link {
    font-size: 10px;
    display: block;
    padding: 2px 0;
    color: rgba(23, 21, 19, 0.66);
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .hero-wrap {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .hero-fade {
    height: 140px;
  }
}

@media (max-width: 640px) {
  .opening-ribbon {
    inset: 88px 0 auto 0;
    padding: 0 10px;
  }

  .opening-ribbon__inner {
    min-height: 36px;
    padding: 6px 10px;
    gap: 6px;
  }

  .opening-ribbon__announcement {
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .opening-ribbon__text {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.09em;
    white-space: nowrap;
  }

  .opening-ribbon__dot,
  .opening-ribbon__actions::before {
    width: 3px;
    height: 3px;
  }

  .opening-ribbon__link {
    min-height: 18px;
    padding: 0 4px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .opening-ribbon__actions {
    gap: 4px;
  }

  .opening-ribbon__actions::before {
    display: none;
  }

  .nav {
    padding: 14px 10px 0;
  }

  .nav-container {
    padding: 0 18px;
    min-height: 72px;
    column-gap: 14px;
  }

  .nav-brand-logo {
    width: 38px;
  }

  .nav-brand-name {
    font-size: 0.96rem;
  }

  .nav-brand-place {
    font-size: 8px;
  }

  .nav-brand-lockup {
    gap: 2px;
  }

  .page-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-footer__brand {
    max-width: none;
  }

  .hero-wrap,
  .section-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-heading {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .hero-paragraph,
  .home-intro p,
  .section-paragraph,
  .club-copy p {
    font-size: 1rem;
  }

  .home-intro-section {
    padding-top: 38px;
    padding-bottom: 16px;
  }

  .home-about-section {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .home-founder-section {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .home-about__title,
  .home-founder__title {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .home-about__body p,
  .home-founder__copy p {
    font-size: 0.98rem;
  }

  .home-founder__images {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-founder__image--current {
    min-height: 300px;
  }

  .home-founder__image--childhood {
    min-height: 220px;
    transform: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .club-section,
  .placeholder-section,
  .support-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .placeholder-section--bridge {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .club-image {
    min-height: 320px;
  }

  .home-foundation-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .homepage-band {
    min-height: 148px;
  }

  .homepage-band::after {
    height: 92px;
  }
}

@media (max-width: 767px) {
  .opening-ribbon__announcement {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .opening-ribbon__text {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.09em;
    white-space: nowrap;
  }

  .opening-ribbon__track {
    align-items: center;
    animation-duration: 32s;
  }

  .opening-ribbon__actions {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-ribbon__track {
    animation-play-state: paused;
  }

  .opening-ribbon__sequence[aria-hidden="true"] {
    display: none;
  }
}
