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

.home-page .section {
  padding-block: clamp(4.5rem, 7vw, 6rem);
}

.home-page .eyebrow {
  margin-block-end: var(--space-3);
}

.home-hero {
  overflow: hidden;
  border-bottom: 1px solid rgb(184 115 76 / 38%);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 38.75rem;
}

.home-hero__copy {
  display: flex;
  width: min(100% - max(1.5rem, calc((100vw - var(--container-max)) / 2)), calc((var(--container-max) / 12) * 5));
  min-width: 0;
  justify-self: end;
  align-self: center;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-9) var(--space-7) var(--space-9) 0;
}

.home-hero__copy .eyebrow,
.home-hero__copy h1,
.home-hero__copy p {
  margin: 0;
}

.home-hero__copy h1 {
  max-width: 23rem;
  color: var(--color-crisp-white);
  font-size: clamp(3rem, 5.7vw, 4.25rem);
  line-height: 1;
}

.home-hero__lead {
  max-width: 52ch;
  font-size: var(--text-body-large);
  line-height: var(--leading-body-large);
}

.home-hero__actions {
  width: 100%;
}

.home-hero__media {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 38.75rem;
  object-position: 62% center;
}

.home-rhythm__heading {
  width: calc((100% / 12) * 4);
  min-width: 0;
  margin-block-end: var(--space-8);
}

.home-rhythm__heading h2 {
  max-width: 22ch;
}

.home-rhythm__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.home-rhythm__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-4);
  padding-block-start: var(--space-4);
  border-top: 1px solid var(--border-default);
}

.home-rhythm__item > * {
  margin: 0;
}

.home-rhythm__item p {
  max-width: 36ch;
  color: var(--text-muted);
}

.home-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  color: var(--color-amber-500);
}

.home-icon::before,
.home-icon::after {
  position: absolute;
  border: 1.5px solid currentColor;
  content: "";
}

.home-icon--plate::before {
  inset: 0.55rem 0.2rem 0.25rem;
  border-top: 0;
  border-radius: 0 0 50% 50%;
}

.home-icon--plate::after {
  top: 0.35rem;
  right: 0.2rem;
  left: 0.2rem;
  height: 0.6rem;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 50% 50% 0 0;
}

.home-icon--card {
  color: var(--color-felt-green-400);
}

.home-icon--card::before {
  inset: 0.25rem 0.5rem 0.15rem 0.25rem;
  border-radius: 0.1rem;
}

.home-icon--card::after {
  inset: 0.55rem 0.2rem 0.45rem 0.58rem;
  border-radius: 0.1rem;
}

.home-icon--people::before {
  top: 0.25rem;
  left: 0.25rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  box-shadow: 0.9rem 0.15rem 0 0 currentColor;
}

.home-icon--people::after {
  right: 0.15rem;
  bottom: 0.25rem;
  left: 0.15rem;
  height: 0.8rem;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.home-icon--chip::before {
  inset: 0.2rem;
  border-radius: 50%;
}

.home-icon--chip::after {
  inset: 0.55rem;
  border-radius: 50%;
}

.home-icon--focus::before {
  inset: 0.3rem;
  border-radius: 50%;
}

.home-icon--focus::after {
  top: 0.92rem;
  left: 0.92rem;
  width: 0.18rem;
  height: 0.18rem;
  border: 0;
  border-radius: 50%;
  background: currentColor;
}

.home-icon--trophy::before {
  top: 0.22rem;
  left: 0.48rem;
  width: 1.05rem;
  height: 1rem;
  border-bottom: 0;
  border-radius: 0 0 50% 50%;
}

.home-icon--trophy::after {
  bottom: 0.2rem;
  left: 0.72rem;
  width: 0.58rem;
  height: 0.62rem;
  border-top: 0;
}

.home-icon--calendar::before {
  inset: 0.35rem 0.2rem 0.2rem;
  border-radius: 0.1rem;
}

.home-icon--calendar::after {
  top: 0.72rem;
  right: 0.2rem;
  left: 0.2rem;
  height: 0.5rem;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.home-food {
  background: var(--color-charcoal-900);
}

.home-food__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 1fr) minmax(0, 6fr);
  align-items: center;
}

.home-food__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-5);
}

.home-food__copy > * {
  margin: 0;
}

.home-food__copy h2 {
  max-width: 18ch;
}

.home-food__copy > p:not(.eyebrow) {
  max-width: 56ch;
}

.home-food__lead {
  font-size: var(--text-body-large);
  line-height: var(--leading-body-large);
}

.home-food__rule {
  width: 100%;
  max-width: 20rem;
  height: 1px;
  background: var(--color-copper-500);
}

.home-food__cta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.home-food__cta p {
  max-width: 36ch;
  margin: 0;
  color: var(--text-muted);
}

.home-food__media {
  grid-column: 3;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.home-food__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-position: 65% center;
}

.home-club {
  background: var(--color-felt-green-600);
}

.home-club__intro {
  display: flex;
  width: calc((100% / 12) * 7);
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  margin-block-end: var(--space-7);
}

.home-club__intro > * {
  margin: 0;
}

.home-club__intro h2,
.home-club__intro p:not(.eyebrow) {
  max-width: 62ch;
}

.home-club__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.home-club__card {
  display: flex;
  min-width: 0;
  min-height: 20rem;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
}

.home-club__card > * {
  margin: 0;
}

.home-club__card p:not(.home-club__note) {
  max-width: 34ch;
  color: var(--text-muted);
}

.home-club__note {
  margin-top: auto;
  color: var(--color-felt-green-400);
  font-size: var(--text-label);
  font-weight: 700;
}

.home-visual {
  overflow: hidden;
}

.home-visual__figure {
  position: relative;
  min-height: 35rem;
  margin: 0;
}

.home-visual__figure > img {
  width: 100%;
  height: 35rem;
  object-position: center;
}

.home-visual__figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(23 24 23 / 74%) 0%, rgb(23 24 23 / 34%) 48%, rgb(23 24 23 / 8%) 100%);
  content: "";
}

.home-visual__caption {
  position: absolute;
  z-index: 1;
  bottom: var(--space-8);
  left: max(1.5rem, calc((100vw - var(--container-max)) / 2));
  display: flex;
  width: min(calc((var(--container-max) / 12) * 5), calc(100vw - 3rem));
  min-width: 0;
  flex-direction: column;
  gap: var(--space-4);
  margin: 0;
}

.home-visual__caption h2,
.home-visual__caption a {
  margin: 0;
}

.home-visual__caption h2 {
  max-width: 38ch;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.home-visual__caption a {
  width: fit-content;
  color: var(--color-warm-ivory);
  text-decoration-color: var(--color-copper-300);
}

.home-paths__heading {
  width: calc((100% / 12) * 5);
  min-width: 0;
  margin-block-end: var(--space-7);
}

.home-paths__heading h2 {
  max-width: 22ch;
}

.home-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.home-paths__card {
  display: flex;
  min-width: 0;
  min-height: 18rem;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
}

.home-paths__card > * {
  margin: 0;
}

.home-paths__card p {
  max-width: 34ch;
  color: var(--text-muted);
}

.home-paths__card a {
  min-height: 2.75rem;
  margin-top: auto;
  color: var(--color-copper-300);
  font-size: var(--text-label);
  font-weight: 700;
  line-height: 2.75rem;
}

.home-company {
  background: var(--color-charcoal-900);
}

.home-company__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 1fr) minmax(0, 7fr);
  align-items: start;
}

.home-company__heading {
  min-width: 0;
}

.home-company__heading h2 {
  max-width: 17ch;
}

.home-company__heading p:not(.eyebrow) {
  max-width: 50ch;
  color: var(--text-muted);
}

.home-company__stories {
  grid-column: 3;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-5);
}

.home-company__story {
  position: relative;
  min-width: 0;
  padding: var(--space-5) var(--space-5) var(--space-5) 5rem;
  border-top: 1px solid var(--border-default);
}

.home-company__story--raised {
  background: var(--color-slate-800);
}

.home-company__story h3 {
  max-width: 30ch;
}

.home-company__story p {
  max-width: 50ch;
  margin-block-end: 0;
  color: var(--text-muted);
}

.home-company__index {
  position: absolute;
  top: var(--space-5);
  left: var(--space-4);
  color: var(--color-copper-300);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.home-company__index--green {
  color: var(--color-felt-green-400);
}

.home-venue__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 1fr) minmax(0, 6fr);
  align-items: center;
}

.home-venue__intro {
  min-width: 0;
}

.home-venue__intro h2 {
  max-width: 19ch;
}

.home-venue__intro p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--text-muted);
}

.home-venue__panel {
  grid-column: 3;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  border-left: 1px solid var(--color-copper-500);
}

.home-venue__panel > * {
  margin: 0;
}

.home-venue__label {
  color: var(--color-copper-300);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-venue__panel address {
  color: var(--color-crisp-white);
  font-size: var(--text-body-large);
  font-weight: 700;
  line-height: var(--leading-body-large);
}

.home-venue__actions {
  width: 100%;
}

.home-events {
  background: var(--color-slate-800);
  border-top: 1px solid var(--border-default);
}

.home-events__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 1fr) minmax(0, 5fr);
  align-items: center;
}

.home-events__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.home-events__copy > * {
  margin: 0;
}

.home-events__copy h2 {
  max-width: 23ch;
}

.home-events__copy p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--text-muted);
}

.home-events__motif {
  grid-column: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  min-width: 0;
  padding-inline: var(--space-7);
}

.home-events__motif span {
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  border: 1px solid rgb(120 164 127 / 70%);
  transform: rotate(45deg);
}

.home-closing {
  border-top: 1px solid var(--border-default);
}

.home-closing__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.home-closing__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.home-closing__copy > * {
  margin: 0;
}

.home-closing__copy h2 {
  max-width: 20ch;
}

.home-closing__copy p:not(.eyebrow) {
  max-width: 54ch;
}

.home-closing__actions {
  width: 100%;
}

@media (max-width: 64rem) {
  .home-hero {
    padding-block: var(--space-8);
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(100% - (var(--container-padding) * 2), var(--container-max));
    min-height: 0;
    gap: var(--space-7);
    margin-inline: auto;
  }

  .home-hero__copy {
    width: 100%;
    justify-self: stretch;
    padding: 0;
  }

  .home-hero__copy h1 {
    max-width: 24rem;
    font-size: 3rem;
    line-height: 1.08;
  }

  .home-hero__media img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .home-rhythm__heading,
  .home-paths__heading {
    width: 100%;
  }

  .home-rhythm__grid,
  .home-club__grid,
  .home-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-rhythm__item:nth-child(3),
  .home-club__card:nth-child(3),
  .home-paths__card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .home-club__intro {
    width: 100%;
  }

  .home-food__grid,
  .home-company__grid,
  .home-venue__grid,
  .home-events__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-7);
  }

  .home-food__media,
  .home-company__stories,
  .home-venue__panel,
  .home-events__motif {
    grid-column: auto;
  }

  .home-food__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
  }

  .home-food__copy,
  .home-food__media {
    width: 100%;
  }

  .home-company__stories {
    width: min(100%, 48rem);
  }

  .home-visual__figure,
  .home-visual__figure > img {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .home-visual__figure::after {
    display: none;
  }

  .home-visual__caption {
    position: static;
    display: flex;
    width: min(100% - (var(--container-padding) * 2), var(--container-max));
    margin-inline: auto;
    padding: var(--space-6) 0;
  }

  .home-visual__caption h2 {
    max-width: 30ch;
  }

  .home-visual__caption::before {
    display: none;
  }

  .home-visual {
    background: var(--color-charcoal-900);
  }

  .home-events__motif {
    display: none;
  }

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

@media (max-width: 51.25rem) {
  .home-food__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-7);
  }

  .home-food__media {
    grid-column: auto;
  }
}

@media (max-width: 35rem) {
  .home-page .section {
    padding-block: clamp(2.75rem, 12vw, 3.5rem);
  }

  .home-hero {
    padding-block: var(--space-7);
  }

  .home-hero__copy {
    gap: var(--space-4);
  }

  .home-hero__copy h1 {
    max-width: none;
    font-size: 2.375rem;
    line-height: 1.105;
  }

  .home-hero__lead {
    max-width: none;
    font-size: var(--text-body);
    line-height: var(--leading-body);
  }

  .home-hero__actions,
  .home-venue__actions,
  .home-closing__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero__actions .button,
  .home-venue__actions .button,
  .home-closing__actions .button {
    width: 100%;
  }

  .home-hero__media img {
    min-height: 17.5rem;
    aspect-ratio: 16 / 10;
    object-position: 62% center;
  }

  .home-rhythm__heading,
  .home-paths__heading {
    margin-block-end: var(--space-6);
  }

  .home-rhythm__grid,
  .home-club__grid,
  .home-paths__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .home-rhythm__item:nth-child(3),
  .home-club__card:nth-child(3),
  .home-paths__card:nth-child(3) {
    grid-column: auto;
  }

  .home-rhythm__item p,
  .home-club__card p:not(.home-club__note),
  .home-paths__card p,
  .home-food__copy > p:not(.eyebrow),
  .home-venue__intro p:not(.eyebrow),
  .home-events__copy p:not(.eyebrow),
  .home-closing__copy p:not(.eyebrow) {
    max-width: none;
  }

  .home-club__card,
  .home-paths__card {
    min-height: 0;
  }

  .home-visual__figure,
  .home-visual__figure > img {
    aspect-ratio: 4 / 3;
  }

  .home-visual__figure > img {
    object-position: 58% center;
  }

  .home-visual__caption {
    padding-block: var(--space-5);
  }

  .home-visual__caption h2 {
    max-width: none;
    font-size: 1.875rem;
    line-height: 1.13;
  }

  .home-company__grid,
  .home-venue__grid {
    gap: var(--space-6);
  }

  .home-company__story {
    padding: var(--space-5) var(--space-4) var(--space-5) 4.25rem;
  }

  .home-company__story p {
    max-width: none;
  }

  .home-venue__panel {
    gap: var(--space-4);
  }

  .home-venue__panel address {
    font-size: var(--text-body);
  }

  .home-events__copy,
  .home-closing__copy {
    gap: var(--space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .card,
  .home-page .button,
  .home-page a {
    transition: none;
  }
}
