:root {
  --ink: #17161c;
  --ink-soft: #2c2931;
  --cream: #f8f7f4;
  --paper: #ffffff;
  --purple: #301a45;
  --purple-2: #402159;
  --purple-3: #241331;
  --gold: #d9ae1e;
  --gold-bright: #f1c21d;
  --green: #337f47;
  --line: #dedbd5;
  --muted: #6e6a73;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", "Arial Narrow", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-width { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.center { display: flex; justify-content: center; }
.centered { text-align: center; }
.desktop-only { display: inline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 17, 23, .98);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 16px rgba(0,0,0,.16);
}
.nav-shell {
  width: min(calc(100% - 36px), 1260px);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 220px;
}
.brand img { width: 34px; height: 42px; object-fit: contain; background: #fff; }
.brand span {
  font-size: 9px;
  line-height: 1.25;
  letter-spacing: .16em;
  color: #d8d4dc;
}
.brand strong { color: #fff; font-weight: 700; }
.site-nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  min-height: 68px;
}
.site-nav a {
  display: grid;
  place-items: center;
  padding: 0 14px;
  text-decoration: none;
  font-size: 9px;
  line-height: 1.15;
  letter-spacing: .14em;
  text-align: center;
  font-weight: 700;
  color: #eeeaf1;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(255,255,255,.06); color: #fff; }
.site-nav .nav-cta { background: var(--purple-2); min-width: 94px; }
.site-nav .nav-cta:hover { background: #4c2867; }
.menu-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; display: block; background: #fff; margin: 5px 0; }

.hero {
  min-height: 600px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: url("assets/golf-course.png") center 42% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,18,23,.42) 0%, rgba(18,18,23,.78) 48%, rgba(18,18,23,.96) 100%),
    linear-gradient(90deg, rgba(28,20,37,.28), transparent 45%, rgba(28,20,37,.2));
}
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 86px 0 78px; }
.hero-logo {
  width: 116px;
  margin: 0 auto 25px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.eyebrow {
  margin: 0 0 9px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .46em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(56px, 7vw, 98px);
  line-height: .82;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}
.hero-copy {
  margin: 25px auto 28px;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.7;
  color: #e3e0e6;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 43px;
  padding: 0 26px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn-gold { background: var(--gold-bright); color: #1d1820; }
.btn-outline { border-color: rgba(255,255,255,.65); color: #fff; background: rgba(0,0,0,.12); }

.section { padding: 76px 0; }
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: .54em;
  font-weight: 800;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(32px, 4vw, 51px);
  line-height: .98;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 800;
}
.section-heading.dark span { color: #7e7288; }
.section-heading.dark h2 { color: var(--ink); }
.section-heading.light span { color: #c2b2ce; }
.section-heading.light h2 { color: #fff; }
.lead { max-width: 1050px; margin: 0 auto 14px; line-height: 1.75; font-size: 15px; color: #4e4a52; }
.light-text { color: #dcd5e1; }

.mission { background: #f9f8f6; }
.mission-grid { display: grid; grid-template-columns: 1fr 52px 1fr; gap: 38px; align-items: stretch; }
.mission-grid article h3,
.quick-grid article h3,
.sponsor-wall-group h3 {
  margin: 0 0 15px;
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 800;
}
.mission-grid article p { margin: 0 0 14px; line-height: 1.75; font-size: 14px; color: #4b4850; }
.mission-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 220px; }
.mission-divider .line { width: 1px; flex: 1; max-height: 176px; background: linear-gradient(var(--purple), var(--gold)); }
.mission-divider .dot { width: 15px; height: 15px; border: 2px solid var(--purple); border-radius: 50%; background: #fff; }
.mission-divider .bottom { border-color: var(--gold); }

.dark-section { background: #17151c; }
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.membership-card { background: #f8f8f5; box-shadow: 0 18px 50px rgba(0,0,0,.14); }
.membership-card-head { min-height: 94px; padding: 21px 25px; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.new-member .membership-card-head { background: #4d2863; }
.returning-member .membership-card-head { background: #3e754c; }
.membership-card-head span { font-size: 10px; letter-spacing: .25em; font-weight: 700; }
.membership-card-head h3 { margin: 5px 0 0; font-size: 18px; letter-spacing: .13em; }
.membership-card-head strong { font-family: Impact, sans-serif; font-size: 38px; letter-spacing: .05em; }
.membership-card-body { padding: 26px 30px 30px; }
.membership-card-body h4 { margin: 0 0 17px; font-size: 11px; letter-spacing: .18em; }
.number-list { list-style: none; padding: 0; margin: 0; }
.number-list li { display: grid; grid-template-columns: 40px 1fr; gap: 6px; padding: 8px 0; border-bottom: 1px solid #e2e0dc; font-size: 13px; line-height: 1.5; }
.number-list li:last-child { border-bottom: 0; }
.number-list li span { font-weight: 800; color: #89848d; letter-spacing: .08em; }
.fine-print { margin: 12px 0 0; font-size: 11px; line-height: 1.55; color: #6a666d; }

.sponsorships { background: #fbfaf7; }
.tax-note { margin: 18px auto 34px; text-align: center; font-size: 12px; color: #6d6970; font-style: italic; }
.sponsor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sponsor-card { position: relative; min-height: 238px; background: #fff; border: 1px solid #dedbd6; padding: 30px 28px; }
.sponsor-card.featured { border: 2px solid var(--gold); }
.tier-badge { position: absolute; right: 20px; top: 20px; color: var(--gold); font-size: 9px; letter-spacing: .22em; font-weight: 900; }
.sponsor-card .amount { font-family: Impact, sans-serif; font-size: 31px; line-height: 1; color: var(--purple); letter-spacing: .05em; }
.sponsor-card h3 { margin: 8px 0 15px; font-size: 12px; letter-spacing: .15em; }
.sponsor-card p { margin: 0 0 7px; font-size: 12px; line-height: 1.55; color: #55515a; }
.interest-note { text-align: center; font-size: 11px; color: #77717a; margin: 22px auto 20px; }

.dark-gradient { background: radial-gradient(circle at center top, #48245f 0%, #2b173e 52%, #20112e 100%); }
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.action-card { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); padding: 28px 28px 24px; text-align: center; color: #fff; }
.action-icon { width: 38px; height: 38px; border-radius: 50%; margin: -47px auto 18px; display: grid; place-items: center; background: var(--gold); color: #2c183c; font-weight: 900; }
.action-card h3 { font-size: 14px; letter-spacing: .15em; margin: 0 0 13px; }
.action-card p { min-height: 64px; margin: 0 0 18px; font-size: 12px; line-height: 1.6; color: #d2cad9; }
.mini-btn { display: inline-block; min-width: 150px; padding: 9px 15px; text-decoration: none; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.mini-btn.green { background: var(--green); color: #fff; }

.sponsors { background: #fbfaf7; }
.sponsor-wall-group { margin: 34px 0 0; }
.sponsor-wall-group h3 { color: #7b6b87; font-size: 10px; margin-bottom: 8px; }
.logo-wall { display: grid; gap: 16px; }
.logo-wall.two { grid-template-columns: repeat(2, 1fr); }
.logo-wall.four { grid-template-columns: repeat(4, 1fr); }
.logo-wall div {
  min-height: 130px;
  border: 1px solid #dedbd3;
  background: #f2f1ee;
  display: grid;
  place-items: center;
  color: #c6c2bd;
  font-size: 13px;
}
.name-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.name-wall span { min-height: 56px; display: grid; place-items: center; border: 1px solid #e3e0db; background: #f3f2ef; color: #bbb7b0; font-size: 11px; text-align: center; padding: 8px; }
.wall-cta-text { color: #68636b; margin: 24px 0 18px; font-size: 13px; }

.casino {
  position: relative;
  background: linear-gradient(180deg, #261339 0%, #1a1323 100%);
  color: #fff;
  overflow: hidden;
}
.casino::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background: radial-gradient(circle at 20% 30%, #8f5ac0 0, transparent 25%), radial-gradient(circle at 80% 60%, #7741a2 0, transparent 27%);
  pointer-events: none;
}
.casino-inner { position: relative; z-index: 1; }
.casino-heading { margin-bottom: 15px; }
.save-date { text-align: center; font-weight: 900; letter-spacing: .36em; font-size: 12px; color: var(--gold); margin: 0 0 6px; }
.casino-date { text-align: center; margin: 0; font-family: Impact, sans-serif; font-size: clamp(34px, 5vw, 60px); letter-spacing: .08em; color: #ef426f; text-shadow: 0 2px 0 rgba(0,0,0,.25); }
.casino-sub { text-align: center; font-weight: 800; font-size: 15px; letter-spacing: .19em; margin: 10px 0 6px; }
.casino-games { text-align: center; font-size: 11px; letter-spacing: .2em; color: #e2dbe7; margin: 0 0 14px; }
.compact { max-width: 700px; font-size: 13px; }
.event-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; max-width: 830px; margin: 27px auto 24px; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.event-meta div { padding: 15px 19px; border-right: 1px solid rgba(255,255,255,.14); }
.event-meta div:last-child { border-right: 0; }
.event-meta span { display: block; font-size: 8px; letter-spacing: .22em; color: #c4b7cb; margin-bottom: 6px; }
.event-meta strong { font-size: 11px; letter-spacing: .06em; }
.casino-table { max-width: 930px; margin: 32px auto 0; border: 1px solid rgba(255,255,255,.11); }
.casino-row { display: grid; grid-template-columns: 240px 1fr; min-height: 130px; border-bottom: 1px solid rgba(255,255,255,.1); }
.casino-row:last-child { border-bottom: 0; }
.casino-row:nth-child(even) { background: rgba(255,255,255,.025); }
.casino-tier { padding: 23px 25px; border-right: 2px solid var(--gold); }
.casino-tier h3 { margin: 0 0 5px; color: var(--gold); font-size: 12px; letter-spacing: .18em; }
.casino-tier strong { display: block; font-family: Impact, sans-serif; font-size: 28px; letter-spacing: .06em; }
.casino-tier span { display: block; margin-top: 5px; font-size: 10px; color: #c8bdcf; }
.casino-row ul { margin: 0; padding: 21px 30px 20px 45px; color: #dcd5e2; font-size: 11px; line-height: 1.7; }
.reserve-copy { text-align: center; color: #c7bccd; font-size: 11px; margin: 21px 0 18px; }

.quick-links { background: #faf9f6; }
.store { background: #f1efe9; }
.store-message { margin: 0; text-align: center; font-size: 18px; color: #4e4a52; }
.quick-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 50px; }
.board-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 28px; }
.board-grid div { display: flex; flex-direction: column; border-bottom: 1px solid #dedbd6; padding-bottom: 9px; }
.board-grid strong { font-size: 12px; }
.board-grid span { margin-top: 4px; color: #7d7581; font-size: 8px; letter-spacing: .17em; }
.text-links, .social-list { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.text-links a, .social-list a { font-size: 11px; text-underline-offset: 3px; }
.events-list { display: flex; flex-direction: column; gap: 11px; }
.events-list div { display: grid; grid-template-columns: 52px 1fr; align-items: center; border: 1px solid #dedbd5; background: #fff; }
.events-list span { display: grid; place-items: center; min-height: 45px; background: var(--purple); color: #fff; font-weight: 800; font-size: 10px; letter-spacing: .08em; }
.events-list strong { padding: 0 12px; font-size: 11px; }

.footer { background: #121117; color: #dad5df; padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 45px; background: #fff; }
.footer-brand div { display: flex; flex-direction: column; gap: 3px; }
.footer-brand strong { color: #fff; font-size: 10px; letter-spacing: .15em; }
.footer-brand span { font-size: 9px; color: #a7a1ac; }
.footer p { margin: 0; max-width: 480px; font-size: 9px; text-align: right; line-height: 1.55; color: #8f8995; }

.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 18px);
  padding: 11px 16px;
  background: #17151c;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .site-nav a { padding: 0 8px; font-size: 8px; }
  .brand { min-width: 185px; }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .name-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 850px) {
  .page-width { width: min(calc(100% - 32px), var(--max)); }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #151319;
    padding: 8px 16px 18px;
    min-height: 0;
    box-shadow: 0 18px 30px rgba(0,0,0,.25);
  }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 44px; justify-content: flex-start; padding: 0 12px; font-size: 10px; }
  .site-nav .nav-cta { justify-content: center; margin-top: 6px; }
  .hero { min-height: 520px; }
  .hero h1 { font-size: clamp(48px, 11vw, 76px); }
  .mission-grid { grid-template-columns: 1fr; gap: 26px; }
  .mission-divider { display: none; }
  .membership-grid, .action-grid, .quick-grid { grid-template-columns: 1fr; }
  .action-grid { gap: 46px; }
  .logo-wall.four { grid-template-columns: repeat(2, 1fr); }
  .event-meta { grid-template-columns: repeat(2, 1fr); }
  .event-meta div:nth-child(2) { border-right: 0; }
  .event-meta div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .casino-row { grid-template-columns: 190px 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 58px 0; }
  .brand span { display: none; }
  .brand { min-width: 0; }
  .hero { min-height: 560px; }
  .hero-content { padding: 68px 0 60px; }
  .hero-logo { width: 96px; }
  .eyebrow { font-size: 10px; letter-spacing: .32em; }
  .hero h1 { font-size: clamp(44px, 14vw, 64px); letter-spacing: .07em; }
  .hero-copy { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 340px; margin: 0 auto; }
  .desktop-only { display: none; }
  .section-heading span { letter-spacing: .35em; }
  .section-heading h2 { font-size: 34px; letter-spacing: .08em; }
  .membership-grid, .sponsor-grid { grid-template-columns: 1fr; }
  .membership-card-head strong { font-size: 32px; }
  .logo-wall.two, .logo-wall.four { grid-template-columns: 1fr; }
  .name-wall { grid-template-columns: repeat(2, 1fr); }
  .casino-date { font-size: 37px; }
  .casino-sub { font-size: 11px; }
  .casino-games { line-height: 1.7; }
  .event-meta { grid-template-columns: 1fr; }
  .event-meta div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .event-meta div:last-child { border-bottom: 0; }
  .casino-row { grid-template-columns: 1fr; }
  .casino-tier { border-right: 0; border-bottom: 2px solid var(--gold); }
  .quick-grid { gap: 34px; }
  .board-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer p { text-align: left; }
}
