:root {
  --black: #050505;
  --charcoal: #151515;
  --paper: #ffffff;
  --bone: #f3f1ec;
  --ash: #b8b8b1;
  --muted: #74746f;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --accent: #78c943;
  --accent-dark: #3d7c23;
  --gold: #d1aa5f;
  --orange: #d77838;
  --blue: #5f8fb4;
  --plum: #8966a1;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--accent);
  color: var(--black);
}

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

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

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

select {
  min-height: 40px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  padding: 0 38px 0 12px;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

option {
  color: var(--black);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 30;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 62px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.brand,
.footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #000;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy strong,
.footer-brand strong,
.brand-copy small,
.footer-brand small {
  display: block;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.brand-copy small,
.footer-brand small {
  margin-top: 3px;
  color: var(--ash);
  font-size: 0.74rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.main-nav a,
.header-social {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 10px;
  color: var(--ash);
  font-size: 0.88rem;
  font-weight: 750;
}

.main-nav a:hover,
.header-social:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-location,
.filter-control {
  display: grid;
  gap: 5px;
  min-width: 158px;
}

.global-location select {
  min-height: 36px;
}

.global-location span,
.filter-control span {
  color: var(--ash);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
  justify-self: end;
  position: relative;
}

.mobile-menu summary {
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--paper);
  font-weight: 800;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 24px));
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  padding: 8px;
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--paper);
  font-weight: 760;
}

.mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.82) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.06) 48%);
}

.hero-inner {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  max-width: 620px;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.12;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 5.5rem;
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 30px;
  color: #e8e8e4;
  font-size: 1.18rem;
}

.hero-actions,
.calendar-toolbar,
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 850;
  white-space: nowrap;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
}

.button-primary:hover {
  background: #92e35c;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--paper);
}

.button-dark:hover {
  background: #222;
}

.full-width {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  max-width: 520px;
  margin: 44px 0 0;
}

.hero-stats div {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 14px;
}

.hero-stats dt {
  color: var(--paper);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--ash);
  font-size: 0.84rem;
  font-weight: 750;
}

.section {
  padding: 86px max(16px, calc((100% - 1240px) / 2));
}

section[id] {
  scroll-margin-top: 78px;
}

.section-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-heading h2,
.story-copy h2,
.shop-copy h2,
.join-section h2 {
  max-width: 860px;
  margin: 0;
  color: var(--paper);
  font-size: 3.4rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p,
.story-copy p,
.shop-copy p,
.join-section p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--ash);
  font-size: 1rem;
}

.calendar-section {
  background:
    linear-gradient(180deg, #f5f3ee 0%, #ebe9e1 100%);
  color: var(--black);
}

.calendar-section .section-kicker,
.calendar-section .section-heading h2 {
  color: var(--black);
}

.calendar-section .section-heading p {
  color: #5f5f59;
}

.calendar-toolbar {
  justify-content: space-between;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  gap: 14px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
}

.calendar-toolbar select {
  border-color: var(--line-dark);
  background: var(--paper);
  color: var(--black);
}

.calendar-toolbar .filter-control span {
  color: var(--muted);
}

.category-filters {
  justify-content: flex-end;
}

.calendar-key {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  color: #5d5d57;
  font-size: 0.78rem;
  font-weight: 760;
}

.calendar-key span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  padding: 0 10px;
}

.calendar-key b {
  color: var(--black);
  font-size: 0.74rem;
}

.filter-chip {
  min-height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--black);
  padding: 0 13px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.filter-chip.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.calendar-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

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

.month-card,
.event-panel,
.feed-card,
.achievement-card,
.schedule-card,
.shop-cards article,
.social-tile {
  border-radius: var(--radius);
}

.month-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 244, 0.98)),
    var(--paper);
  padding: 15px;
  min-width: 0;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.month-card header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.month-card header span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.month-card h3 {
  margin: 0;
  font-size: 1.28rem;
  text-transform: uppercase;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.days-header {
  margin-bottom: 4px;
}

.days-header span {
  min-height: 24px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.day {
  min-height: 76px;
  display: grid;
  align-content: start;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(239, 239, 232, 0.5));
  padding: 6px;
}

.day.has-events {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 244, 238, 0.78));
}

.date {
  color: #585852;
  font-size: 0.72rem;
  font-weight: 850;
}

.day.outside {
  opacity: 0.38;
  background: transparent;
}

.day.today {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.day.is-muted {
  opacity: 0.42;
}

.calendar-event {
  width: 100%;
  min-height: 27px;
  border: 0;
  border-radius: 5px;
  color: var(--black);
  overflow: hidden;
  padding: 4px 3px;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    outline-color 160ms ease;
}

.calendar-event:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.calendar-event.is-selected {
  outline: 2px solid var(--black);
  outline-offset: 2px;
  box-shadow:
    0 0 0 3px rgba(120, 201, 67, 0.24),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.calendar-event.club-run {
  background: var(--accent);
}

.calendar-event.long-run {
  background: var(--gold);
}

.calendar-event.social-run {
  background: var(--blue);
  color: var(--paper);
}

.calendar-event.race {
  background: var(--orange);
  color: var(--paper);
}

.calendar-event.charity {
  background: var(--plum);
  color: var(--paper);
}

.calendar-event.community {
  background: var(--charcoal);
  color: var(--paper);
}

.event-panel {
  position: static;
  display: grid;
  grid-template-areas:
    "label details cta"
    "title details cta"
    "title summary summary";
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr) minmax(190px, 0.42fr);
  gap: 16px 24px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(120, 201, 67, 0.12), rgba(0, 0, 0, 0) 36%),
    var(--black);
  color: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel-label,
.achievement-card span,
.schedule-card span,
.shop-cards span,
.social-tile span {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-panel .panel-label {
  grid-area: label;
}

.event-panel h3 {
  grid-area: title;
  margin: 0;
  font-size: 2.35rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.event-panel dl {
  display: grid;
  grid-area: details;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.event-panel dl div {
  border-top: 1px solid var(--line);
  min-height: 74px;
  padding-top: 12px;
}

.event-panel dt {
  color: var(--ash);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-panel dd {
  margin: 4px 0 0;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.event-panel p:not(.panel-label) {
  grid-area: summary;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--ash);
}

.event-panel .button {
  grid-area: cta;
  align-self: start;
  margin-top: 4px;
}

.event-feed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.feed-card {
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--black);
  padding: 16px;
}

.feed-card span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.feed-card h3 {
  margin: 8px 0 6px;
  line-height: 1.08;
  text-transform: uppercase;
}

.feed-card p {
  margin: 0;
  color: #62625c;
  font-size: 0.9rem;
}

.achievements-section {
  background: var(--black);
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.achievement-card {
  min-height: 560px;
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.achievement-card,
.social-tile,
.schedule-card,
.feed-card,
.shop-cards article {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.achievement-card:hover,
.social-tile:hover,
.schedule-card:hover,
.feed-card:hover,
.shop-cards article:hover {
  border-color: rgba(120, 201, 67, 0.46);
  transform: translateY(-2px);
}

.achievement-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.achievement-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.2) 62%, rgba(0, 0, 0, 0.08));
}

.achievement-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.achievement-card h3 {
  margin: 10px 0 10px;
  font-size: 1.58rem;
  line-height: 1.03;
  text-transform: uppercase;
}

.feature-card h3 {
  font-size: 2.6rem;
}

.achievement-card p {
  margin: 0 0 14px;
  color: #d2d2cc;
}

.achievement-card small {
  color: var(--paper);
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
  background: var(--bone);
  color: var(--black);
}

.story-media {
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center 42%;
}

.story-copy .eyebrow,
.shop-copy .eyebrow {
  color: var(--accent-dark);
}

.story-copy h2,
.shop-copy h2 {
  color: var(--black);
}

.story-copy p,
.shop-copy p {
  color: #62625c;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.value-list article {
  border-top: 2px solid var(--black);
  padding-top: 16px;
}

.value-list h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.value-list p {
  margin: 0;
  font-size: 0.9rem;
}

.schedule-section {
  background: var(--charcoal);
}

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

.schedule-card {
  border: 1px solid var(--line);
  background: #101010;
  padding: 22px;
}

.schedule-card h3 {
  margin: 12px 0 8px;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-card p {
  margin: 0 0 20px;
  color: var(--ash);
}

.schedule-card ul,
.join-benefits {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-card li,
.join-benefits li {
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: #e6e6e0;
  font-weight: 750;
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  background: var(--paper);
  color: var(--black);
}

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

.shop-cards article {
  min-height: 300px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1)),
    var(--charcoal);
  color: var(--paper);
  padding: 20px;
}

.shop-copy .button {
  margin-top: 26px;
}

.shop-cards article:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1)),
    #272727;
}

.shop-cards article:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1)),
    #3a3a34;
}

.shop-cards h3 {
  margin: 10px 0 8px;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.shop-cards p {
  margin: 0;
  color: var(--ash);
}

.social-section {
  background: var(--black);
}

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

.social-tile {
  min-height: 290px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  background: var(--charcoal);
  padding: 24px;
}

.social-tile.is-pending {
  border-color: rgba(120, 201, 67, 0.26);
  background:
    linear-gradient(135deg, rgba(120, 201, 67, 0.1), rgba(255, 255, 255, 0.025)),
    var(--charcoal);
}

.social-tile.instagram {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18)),
    url("assets/fortify-journey.jpg") center / cover;
}

.social-tile h3 {
  margin: 12px 0 8px;
  font-size: 1.7rem;
  line-height: 1;
}

.social-tile p {
  margin: 0;
  color: var(--ash);
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr) auto;
  gap: 32px;
  align-items: center;
  padding: 76px max(16px, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
}

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

.site-footer {
  padding: 60px max(16px, calc((100% - 1240px) / 2)) 32px;
  background: var(--black);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.75fr));
  gap: 32px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--paper);
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 7px 0;
  color: var(--ash);
}

.site-footer a:hover {
  color: var(--paper);
}

.site-footer a[href^="mailto"] {
  color: #d8d8d2;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .month-grid {
    grid-template-columns: repeat(3, minmax(760px, 78vw));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .month-card {
    min-width: 78vw;
    scroll-snap-align: start;
  }

  .event-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "details"
      "summary"
      "cta";
    gap: 16px;
  }

  .event-panel .panel-label,
  .event-panel h3,
  .event-panel dl,
  .event-panel p:not(.panel-label),
  .event-panel .button {
    grid-column: auto;
    grid-row: auto;
  }

  .event-panel .button {
    margin-top: 0;
  }

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

  .feature-card {
    grid-column: 1 / -1;
  }

  .join-section {
    grid-template-columns: 1fr;
  }

  .join-section .button {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .header-inner {
    width: calc(100% - 24px);
    min-height: 58px;
    grid-template-columns: auto auto;
  }

  .header-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    padding-bottom: 8px;
  }

  .mobile-menu {
    grid-column: 2;
    grid-row: 1;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-inner {
    width: calc(100% - 24px);
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

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

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  section[id] {
    scroll-margin-top: 122px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .section-heading h2,
  .story-copy h2,
  .shop-copy h2,
  .join-section h2 {
    font-size: 2.35rem;
  }

  .calendar-toolbar {
    display: grid;
  }

  .category-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .calendar-key {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .month-grid {
    grid-template-columns: repeat(3, 86vw);
  }

  .month-card {
    min-width: 0;
  }

  .day {
    min-height: 72px;
  }

  .event-feed,
  .achievement-grid,
  .schedule-grid,
  .shop-section,
  .shop-cards,
  .split-section,
  .social-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .achievement-card,
  .story-media,
  .story-media img {
    min-height: 480px;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .join-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .global-location span {
    display: none;
  }

  .header-actions {
    align-items: center;
    gap: 8px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .section-heading h2,
  .story-copy h2,
  .shop-copy h2,
  .join-section h2 {
    font-size: 2rem;
  }

  .day {
    min-height: 64px;
    padding: 4px;
  }

  .calendar-event {
    min-height: 28px;
    font-size: 0.58rem;
    padding-inline: 2px;
  }

  .event-panel h3,
  .schedule-card h3 {
    font-size: 1.68rem;
  }

  .event-panel {
    padding: 20px;
  }

  .event-panel dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .event-panel dl div {
    min-height: 0;
    padding-top: 10px;
  }

  .feature-card h3 {
    font-size: 2rem;
  }

  .achievement-card h3 {
    font-size: 1.35rem;
  }
}
