:root {
  --ink: #171614;
  --charcoal: #292722;
  --graphite: #4b4942;
  --cream: #f5efe4;
  --paper: #fffaf1;
  --white: #ffffff;
  --leather: #a46f42;
  --clay: #c85f2c;
  --sage: #697361;
  --line: rgba(23, 22, 20, 0.16);
  --shadow: 0 22px 70px rgba(23, 22, 20, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(44px, 5vw, 56px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(23, 22, 20, 0.18));
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  margin-left: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-wordmark strong {
  font-size: 0.78rem;
}

.brand-wordmark small {
  color: var(--graphite);
  font-size: 0.68rem;
}

.nav-links,
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--graphite);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a,
.social-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.social-links a:hover {
  color: var(--leather);
}

.nav-label-short {
  display: none;
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 160px);
  display: grid;
  align-items: end;
  padding: clamp(66px, 8vw, 102px) clamp(18px, 5vw, 64px) 34px;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 22, 20, 0.88), rgba(23, 22, 20, 0.62) 44%, rgba(23, 22, 20, 0.28)),
    linear-gradient(0deg, rgba(23, 22, 20, 0.52), rgba(23, 22, 20, 0.08) 48%);
}

.hero-copy {
  width: min(720px, 100%);
  padding-bottom: min(4vh, 38px);
}

.home-body {
  background: var(--paper);
}

.home-page {
  background: var(--paper);
}

.home-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 64px) clamp(38px, 5vw, 56px);
  color: var(--white);
  overflow: hidden;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}

.home-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.home-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 22, 20, 0.88), rgba(23, 22, 20, 0.6) 45%, rgba(23, 22, 20, 0.2)),
    linear-gradient(0deg, rgba(23, 22, 20, 0.64), rgba(23, 22, 20, 0.12) 48%);
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-coin {
  width: clamp(86px, 11vw, 132px);
  margin-bottom: 20px;
  filter:
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 18px rgba(255, 250, 241, 0.16));
}

.home-hero h1 {
  font-size: clamp(3.1rem, 7.4vw, 5.25rem);
}

.home-intro {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.home-proof {
  background: var(--paper);
}

.home-path-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-path-card {
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(23, 22, 20, 0.08);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.home-path-card:hover,
.home-path-card:focus-visible {
  border-color: rgba(164, 111, 66, 0.46);
  box-shadow: 0 18px 48px rgba(23, 22, 20, 0.12);
  transform: translateY(-2px);
}

.home-path-card:focus-visible {
  outline: 3px solid rgba(164, 111, 66, 0.36);
  outline-offset: 4px;
}

.home-path-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.home-icon-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 50% 40%, rgba(164, 111, 66, 0.2), transparent 58%),
    linear-gradient(145deg, var(--charcoal), var(--ink));
}

.home-icon-media img {
  width: min(190px, 72%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.home-path-card .category-tag,
.home-path-card h3,
.home-path-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.home-path-card p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--graphite);
}

.home-store-section {
  background: var(--cream);
  padding-top: 0;
}

.home-store-callout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-store-callout h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.home-store-callout p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--graphite);
}

.discipline-detail-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  color: var(--white);
  overflow: hidden;
}

.discipline-detail-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}

.discipline-detail-media img {
  height: 100%;
  object-fit: cover;
}

.discipline-detail-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 22, 20, 0.9), rgba(23, 22, 20, 0.64) 48%, rgba(23, 22, 20, 0.28)),
    linear-gradient(0deg, rgba(23, 22, 20, 0.58), rgba(23, 22, 20, 0.12) 52%);
}

.discipline-detail-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.discipline-notes {
  background: var(--cream);
}

.discipline-body {
  background:
    linear-gradient(180deg, rgba(23, 22, 20, 0.9), rgba(23, 22, 20, 0.64)),
    url("../assets/images/hero-sporting-clays-course.png") center / cover fixed;
}

.discipline-page {
  min-height: calc(100svh - 248px);
  color: var(--white);
}

.discipline-hero {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 64px) clamp(56px, 8vw, 96px);
  text-align: center;
}

.discipline-brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.discipline-brand img {
  width: clamp(86px, 12vw, 136px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.28));
}

.discipline-brand p {
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.discipline-hero h1 {
  max-width: 12ch;
  margin: 0 auto;
}

.discipline-intro {
  width: min(720px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.08rem;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
}

.discipline-card {
  position: relative;
  min-height: clamp(320px, 34vw, 440px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 6px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.discipline-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.discipline-card-clays:hover img,
.discipline-card-clays:focus-visible img {
  transform: scale(1.04);
}

.discipline-card-clays:focus-visible {
  outline: 3px solid rgba(200, 95, 44, 0.8);
  outline-offset: 4px;
}

.discipline-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(23, 22, 20, 0.92), rgba(23, 22, 20, 0.08) 58%),
    linear-gradient(90deg, rgba(23, 22, 20, 0.44), rgba(23, 22, 20, 0.1));
}

.discipline-card-soon img {
  filter: saturate(0.72) contrast(0.92);
}

.discipline-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.discipline-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid rgba(255, 250, 241, 0.42);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.discipline-card strong {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.discipline-card small {
  width: min(310px, 100%);
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.95rem;
}

.coming-soon-ribbon {
  position: absolute;
  z-index: 3;
  right: -48px;
  bottom: 44px;
  width: 220px;
  padding: 9px 0;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 250, 241, 0.28);
  border-bottom: 1px solid rgba(255, 250, 241, 0.28);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transform: rotate(-35deg);
}

.eyebrow,
.section-kicker,
.category-tag {
  margin: 0 0 12px;
  color: var(--leather);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3.25rem, 9vw, 6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

h3 {
  font-size: 1.35rem;
}

.tagline {
  margin: 18px 0 0;
  color: var(--cream);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-subbrand {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--cream);
}

.hero-text {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.page-hero {
  background: var(--paper);
}

.page-hero h1,
.story-article h1 {
  max-width: 860px;
}

.page-hero p:not(.section-kicker) {
  max-width: 680px;
  color: var(--graphite);
  font-size: 1.12rem;
}

.button-row,
.signup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--leather);
  border-color: var(--leather);
}

.button-primary:hover {
  background: var(--clay);
  border-color: var(--clay);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 64px);
}

.story-section {
  background: var(--paper);
}

.story-layout,
.section-heading {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(32px, 7vw, 88px);
}

.story-layout > *,
.section-heading > * {
  width: 100%;
  min-width: 0;
}

.section-heading {
  align-items: end;
  margin-bottom: 36px;
}

.section-heading > p,
.story-body {
  color: var(--graphite);
  font-size: 1.04rem;
}

.pullquote {
  margin: 20px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.12;
}

.society-section,
.journal-section {
  background: var(--cream);
}

.feature-grid,
.product-grid,
.article-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.product-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 14px 38px rgba(23, 22, 20, 0.08);
  overflow: hidden;
}

.feature-card {
  min-height: 236px;
  padding: 24px;
}

.feature-number {
  display: block;
  margin-bottom: 54px;
  color: var(--leather);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.feature-card p,
.product-card p,
.article-card p {
  color: var(--graphite);
}

.gear-section {
  background: var(--paper);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--white);
}

.product-link-card {
  display: block;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-link-card:hover,
.product-link-card:focus-visible {
  border-color: rgba(164, 111, 66, 0.46);
  box-shadow: 0 18px 48px rgba(23, 22, 20, 0.12);
  transform: translateY(-2px);
}

.product-link-card:focus-visible {
  outline: 3px solid rgba(164, 111, 66, 0.36);
  outline-offset: 4px;
}

.product-detail-grid {
  margin-top: 24px;
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}

.product-media img {
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sold-out-ribbon {
  position: absolute;
  right: -42px;
  bottom: 22px;
  width: 180px;
  padding: 8px 0;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 250, 241, 0.28);
  border-bottom: 1px solid rgba(255, 250, 241, 0.28);
  box-shadow: 0 10px 22px rgba(23, 22, 20, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transform: rotate(-35deg);
}

.product-card h3 {
  padding: 18px 18px 8px;
  font-size: 1.2rem;
}

.product-card h3:last-child {
  padding-bottom: 22px;
}

.product-card h3 + p {
  padding: 0 18px 22px;
  font-size: 0.9rem;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--paper);
}

.article-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.article-content a {
  margin-top: auto;
  color: var(--leather);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.range-journal-section {
  background: var(--paper);
}

.range-journal-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
}

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

.member-media-card,
.submission-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(23, 22, 20, 0.08);
  overflow: hidden;
}

.member-media-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--cream);
}

.media-card-large {
  grid-row: span 2;
}

.media-card-large img {
  aspect-ratio: 4 / 5;
  height: 100%;
}

.media-card-content,
.submission-panel {
  padding: 22px;
}

.media-card-content p,
.submission-panel p {
  color: var(--graphite);
}

.journal-form {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.journal-form label {
  color: var(--graphite);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.journal-form input,
.journal-form select,
.journal-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
}

.journal-form textarea {
  resize: vertical;
}

.journal-form .button {
  margin-top: 8px;
}

.achievement-section {
  background: var(--paper);
}

.achievement-section .section-heading > * {
  width: 100%;
  min-width: 0;
}

.achievement-hero-card,
.achievement-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: center;
}

.achievement-hero-card {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(23, 22, 20, 0.08);
}

.achievement-hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.achievement-hero-card p,
.achievement-card p,
.recognition-list span {
  color: var(--graphite);
}

.achievement-grid {
  width: min(1160px, 100%);
  margin: 18px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.achievement-card,
.recognition-list {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(23, 22, 20, 0.08);
}

.achievement-card {
  padding: 22px;
}

.achievement-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  max-width: 100%;
  min-height: 58px;
  margin-bottom: 28px;
  padding: 0 10px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--leather);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.achievement-layout {
  margin-top: 18px;
  align-items: start;
}

.recognition-list {
  padding: 22px;
}

.recognition-list article {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.recognition-list article:first-of-type {
  margin-top: 12px;
}

.story-article {
  background: var(--paper);
}

.story-article-header,
.story-article-body {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
}

.story-article-header {
  padding: clamp(56px, 8vw, 104px) 0 0;
}

.story-article-header > p {
  max-width: 680px;
  color: var(--graphite);
  font-size: 1.18rem;
}

.story-article-header img {
  margin-top: 34px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.story-article-body {
  padding: clamp(42px, 7vw, 76px) 0 clamp(76px, 10vw, 124px);
  color: var(--graphite);
  font-size: 1.14rem;
}

.story-article-body p {
  margin: 0 0 22px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--leather);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gallery-section {
  background: var(--ink);
  color: var(--white);
}

.gallery-section .section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: minmax(180px, 24vw);
  gap: 14px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}

.gallery-grid img:first-child,
.gallery-grid img:nth-child(4) {
  grid-row: span 2;
}

.join-section {
  padding: clamp(76px, 10vw, 124px) clamp(18px, 5vw, 64px);
  background: linear-gradient(135deg, var(--cream), var(--paper));
}

.join-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.join-inner p {
  color: var(--graphite);
}

.signup-form {
  width: min(620px, 100%);
  margin: 32px auto 0;
  text-align: left;
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signup-row {
  margin-top: 0;
}

.signup-row input {
  flex: 1 1 260px;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  font: inherit;
}

.signup-row button {
  flex: 0 0 auto;
}

.form-message {
  min-height: 28px;
  margin: 10px 0 0;
  color: var(--sage);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  padding: 36px clamp(18px, 5vw, 64px);
  color: var(--cream);
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 250, 241, 0.72);
}

.footer-brand {
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: min(116px, 44vw);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 16px rgba(255, 250, 241, 0.12));
}

.copyright {
  width: min(780px, 100%);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    overflow-x: hidden;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .hero-section {
    min-height: 660px;
  }

  .home-hero {
    min-height: 86svh;
  }

  .home-hero-media img {
    object-position: 53% center;
  }

  .story-layout,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-grid,
  .product-grid,
  .article-grid,
  .home-path-grid,
  .discipline-grid,
  .range-journal-layout,
  .achievement-hero-card,
  .achievement-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .range-journal-layout,
  .achievement-hero-card,
  .achievement-layout {
    grid-template-columns: 1fr;
  }

  .achievement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(170px, 38vw);
  }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
  }

  .nav-links {
    gap: 8px;
    font-size: 0.74rem;
  }

  .nav-label-full {
    display: none !important;
  }

  .nav-label-short {
    display: inline !important;
  }

  .hero-section {
    min-height: 560px;
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .hero-coin {
    width: 94px;
  }

  .home-hero h1 {
    font-size: clamp(2.82rem, 14vw, 4.25rem);
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(23, 22, 20, 0.94), rgba(23, 22, 20, 0.46)),
      linear-gradient(90deg, rgba(23, 22, 20, 0.56), rgba(23, 22, 20, 0.18));
  }

  .button,
  .signup-row button {
    width: 100%;
  }

  .feature-grid,
  .product-grid,
  .article-grid,
  .home-path-grid,
  .home-store-callout,
  .discipline-grid,
  .achievement-grid,
  .member-media-grid,
  .gallery-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .discipline-hero {
    text-align: left;
  }

  .discipline-brand {
    justify-items: start;
  }

  .discipline-hero h1,
  .discipline-intro {
    margin-left: 0;
    margin-right: 0;
  }

  .discipline-card {
    min-height: 300px;
  }

  .achievement-stat {
    width: auto;
    min-width: 58px;
    max-width: fit-content;
    border-radius: 999px;
  }

  .media-card-large {
    grid-row: span 1;
  }

  .media-card-large img {
    aspect-ratio: 16 / 11;
  }

  .gallery-grid {
    grid-auto-rows: minmax(210px, 62vw);
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    grid-row: span 1;
  }

  .feature-card {
    min-height: 188px;
  }

  .feature-number {
    margin-bottom: 30px;
  }
}
