:root {
  --ink: #17201d;
  --muted: #58635f;
  --paper: #f8f5ee;
  --panel: #ffffff;
  --line: #d9d1c3;
  --green: #126954;
  --green-dark: #0a3f36;
  --gold: #f2c568;
  --gold-dark: #b98c3b;
  --club: #8f2f39;
  --club-dark: #481d23;
  --blue: #233d5a;
  --shadow: 0 24px 70px rgba(23, 32, 29, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(143, 47, 57, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(242, 197, 104, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf8f1 0%, var(--paper) 45%, #f1ece2 100%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 56px);
  color: #fff;
  background: rgba(9, 19, 17, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #17201d;
  background: linear-gradient(135deg, #ffe08a, var(--gold));
  box-shadow: inset 0 -8px 16px rgba(112, 75, 21, 0.2);
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: #17201d;
  background: linear-gradient(135deg, #ffe08a, var(--gold) 62%, #d59f3a);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 54px;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-club-community.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.025);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 24%, rgba(242, 197, 104, 0.18), transparent 26%),
    radial-gradient(circle at 36% 72%, rgba(143, 47, 57, 0.26), transparent 30%),
    linear-gradient(90deg, rgba(18, 12, 12, 0.91) 0%, rgba(18, 12, 12, 0.66) 45%, rgba(18, 12, 12, 0.22) 100%),
    linear-gradient(0deg, rgba(18, 12, 12, 0.88) 0%, rgba(18, 12, 12, 0.04) 50%);
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 850;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 96px;
}

.intro {
  max-width: 920px;
  text-align: center;
}

.intro p {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.12rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(143, 47, 57, 0.22);
  border-radius: 999px;
  color: var(--club-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(23, 32, 29, 0.06);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.timeline,
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.timeline article,
.card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(143, 47, 57, 0.1), rgba(185, 140, 59, 0.12));
  box-shadow: 0 10px 32px rgba(23, 32, 29, 0.07);
}

.timeline article::after,
.card-grid article::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -42px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(143, 47, 57, 0.12);
}

.timeline span,
.card-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 36px;
  margin-bottom: 28px;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--club), var(--green));
  font-size: 0.86rem;
  font-weight: 950;
}

.band {
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 197, 104, 0.16), transparent 28%),
    radial-gradient(circle at 26% 74%, rgba(143, 47, 57, 0.24), transparent 28%),
    linear-gradient(135deg, #1c1514 0%, #481d23 50%, #173b32 100%);
  color: #fff;
  scroll-margin-top: 96px;
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 88px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.band p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-list div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.profile {
  text-align: center;
}

.value-section {
  display: grid;
  gap: 30px;
}

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

.value-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(143, 47, 57, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(23, 32, 29, 0.06);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 86px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 239, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(18, 105, 84, 0.15), transparent 26%);
  box-shadow: var(--shadow);
  scroll-margin-top: 96px;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    min-height: auto;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero {
    min-height: 840px;
    padding-top: 170px;
  }

  .split,
  .timeline,
  .card-grid,
  .value-grid,
  .band-inner,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 880px;
    padding: 210px 18px 36px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .contact {
    width: calc(100% - 32px);
    margin-bottom: 56px;
    padding: 24px;
  }

  .button {
    width: 100%;
  }
}
