:root {
  color-scheme: light;
  --milk: #f5f1e9;
  --paper: #fbf9f4;
  --sand: #e8dfd0;
  --sand-dark: #d7c8b3;
  --clay: #a95738;
  --clay-dark: #793b28;
  --olive: #384236;
  --olive-light: #687060;
  --graphite: #252622;
  --muted: #5e6059;
  --line: rgba(37, 38, 34, 0.18);
  --line-light: rgba(251, 249, 244, 0.24);
  --display:
    "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia,
    "Times New Roman", serif;
  --body:
    "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  --shell: 82rem;
  --header-height: 5.25rem;
  font-family: var(--body);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--milk);
  color: var(--graphite);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.024'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

::selection {
  background: var(--sand-dark);
  color: var(--graphite);
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(var(--shell), calc(100% - 4rem));
  margin-inline: auto;
}

.section {
  padding-block: clamp(7rem, 12vw, 11rem);
}

#top,
#gallery,
#schedule,
#directions,
#events,
#contacts {
  scroll-margin-top: var(--header-height);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--graphite);
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(245, 241, 233, 0.88);
  backdrop-filter: blur(1rem);
  transition:
    border-color 200ms ease,
    background 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 241, 233, 0.96);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  width: min(88rem, calc(100% - 3rem));
  min-height: var(--header-height);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  width: max-content;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
}

.brand__mark span {
  position: absolute;
  width: 2.05rem;
  height: 0.65rem;
  border: 1.5px solid var(--paper);
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.brand__mark span:first-child {
  transform: translateY(-0.24rem) rotate(-7deg);
}

.brand__mark span:last-child {
  transform: translateY(0.28rem) rotate(7deg);
}

.brand__name {
  font-size: 1rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  justify-content: center;
}

.nav a {
  position: relative;
  color: #55574f;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentcolor;
  content: "";
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  gap: 0.65rem;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
}

.menu-toggle i,
.menu-toggle i::before {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: currentcolor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle i::before {
  transform: translateY(-0.35rem);
}

.menu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::before {
  transform: rotate(-90deg);
}

.button {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  min-height: 3.85rem;
  padding: 1rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--compact {
  min-height: 2.8rem;
  padding: 0.75rem 1.05rem;
  font-size: 0.73rem;
}

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

.button--dark:hover {
  background: var(--olive);
}

.button--accent {
  background: var(--clay);
  color: var(--paper);
}

.button--accent:hover {
  background: var(--clay-dark);
}

.button--line {
  border-color: var(--line);
  background: transparent;
}

.button--line:hover {
  border-color: var(--graphite);
}

.button--light {
  background: var(--paper);
  color: var(--graphite);
}

.button--contact {
  border-color: var(--line-light);
  color: var(--paper);
}

.button--contact:hover {
  border-color: var(--paper);
  background: rgba(251, 249, 244, 0.08);
}

.text-link {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid currentcolor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.eyebrow,
.section-index {
  margin-bottom: 1rem;
  color: var(--clay-dark);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-index {
  margin: 0;
}

.hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(5rem, 9vw, 8rem);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.hero__copy {
  padding-block: 2rem;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3.9rem, 5.45vw, 6.35rem);
  line-height: 0.94;
}

.hero__lead {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.4rem;
}

.hero__address {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2.4rem;
  color: #55574f;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 650;
}

.hero__address span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0.25rem rgba(169, 87, 56, 0.12);
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media::before {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  right: 1.5rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--paper);
  border-radius: 50%;
  content: "";
}

.hero__media img {
  width: 100%;
  height: clamp(37rem, 54vw, 49rem);
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.78) contrast(0.98);
}

.hero__media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__about {
  display: grid;
  grid-template-columns: 0.45fr 1.1fr 0.65fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-top: clamp(5rem, 9vw, 8rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero__about-copy {
  max-width: 42rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.hero__about-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 6.3vw, 6.5rem);
  line-height: 0.93;
}

.section-heading > div > p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.gallery {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 3.5vw, 3.75rem) clamp(1.5rem, 2.5vw, 2.5rem);
  align-items: start;
}

.gallery-card {
  margin: 0;
}

.gallery-card--portrait {
  grid-column: 1 / span 5;
}

.gallery-card--wide {
  grid-column: 6 / -1;
  margin-top: 7rem;
}

.gallery-card--landscape {
  grid-column: 1 / span 7;
}

.gallery-card--tall {
  grid-column: 9 / -1;
  margin-top: -5rem;
}

.gallery-card--event {
  grid-column: 1 / span 4;
  margin-top: 2rem;
}

.gallery-card--family {
  grid-column: 5 / -1;
  margin-top: 7rem;
}

.gallery-card__media {
  overflow: hidden;
  background: var(--sand);
}

.gallery-card--portrait .gallery-card__media {
  aspect-ratio: 0.76;
}

.gallery-card--wide .gallery-card__media,
.gallery-card--family .gallery-card__media {
  aspect-ratio: 1.48;
}

.gallery-card--landscape .gallery-card__media {
  aspect-ratio: 1.35;
}

.gallery-card--tall .gallery-card__media,
.gallery-card--event .gallery-card__media {
  aspect-ratio: 0.78;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
  transition:
    transform 800ms cubic-bezier(0.2, 0.65, 0.25, 1),
    filter 400ms ease;
}

.gallery-card--portrait img {
  object-position: 50% 48%;
}

.gallery-card--landscape img {
  object-position: 50% 58%;
}

.gallery-card--tall img {
  object-position: center;
}

.gallery-card:hover img {
  transform: scale(1.025);
  filter: saturate(0.95) contrast(1);
}

.gallery-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 650;
}

.gallery-card figcaption span:last-child {
  color: var(--muted);
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.schedule {
  background: var(--sand);
}

.section-heading--schedule {
  grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 1fr) auto;
}

.schedule__count {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.schedule-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 3rem;
}

.schedule-filters button {
  min-height: 2.65rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(37, 38, 34, 0.24);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.schedule-filters button:hover,
.schedule-filters button.is-active {
  border-color: var(--graphite);
  background: var(--graphite);
  color: var(--paper);
}

.schedule-list {
  border-top: 1px solid var(--graphite);
}

.schedule-card {
  display: grid;
  grid-template-columns: 7rem minmax(13rem, 0.8fr) minmax(34rem, 1.45fr) auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  min-height: 12rem;
  padding-block: 1.8rem;
  border-bottom: 1px solid rgba(37, 38, 34, 0.35);
}

.schedule-card__date {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
}

.schedule-card__date strong {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
}

.schedule-card__date span {
  max-width: 3rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.schedule-card__title > p {
  margin-bottom: 0.7rem;
  color: var(--clay-dark);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.schedule-card__title h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.schedule-card__title > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.schedule-card__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.schedule-card__meta div {
  min-height: 3.5rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(37, 38, 34, 0.28);
}

.schedule-card__meta dt {
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-card__meta dd {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.45;
}

.schedule-card__line {
  display: block;
}

.schedule-card__line + .schedule-card__line {
  margin-top: 0.25rem;
}

.schedule-cta {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--olive);
  color: var(--paper);
}

.schedule-cta p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.schedule-cta p span {
  display: block;
  max-width: 40rem;
  margin-top: 0.55rem;
  color: rgba(251, 249, 244, 0.68);
  font-family: var(--body);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.directions {
  background: var(--milk);
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.direction-card {
  position: relative;
  display: flex;
  min-height: 29rem;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.25rem);
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.direction-card > span,
.direction-card__content > span {
  display: block;
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direction-card h3 {
  max-width: 13ch;
  margin-top: 5rem;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.98;
}

.direction-card p {
  max-width: 32rem;
  margin: 1rem 0 1.7rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.direction-card a {
  width: max-content;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentcolor;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.direction-card--olive {
  background: var(--olive);
  color: var(--paper);
}

.direction-card--olive > span,
.direction-card--olive p {
  color: rgba(251, 249, 244, 0.68);
}

.direction-card--sand {
  background: var(--sand);
}

.direction-card--image,
.direction-card--event {
  justify-content: flex-end;
  color: var(--paper);
}

.direction-card--image::after,
.direction-card--event::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 17, 14, 0.06) 15%,
    rgba(15, 17, 14, 0.78) 100%
  );
  content: "";
}

.direction-card--image > img,
.direction-card--event > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: transform 750ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.direction-card--image:hover > img,
.direction-card--event:hover > img {
  transform: scale(1.025);
}

.direction-card--event > img {
  object-position: center 55%;
}

.direction-card__content {
  position: relative;
  z-index: 2;
}

.direction-card__content > span,
.direction-card__content p {
  color: rgba(251, 249, 244, 0.75);
}

.direction-card__content h3 {
  margin-top: 5rem;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  background: var(--graphite);
  color: var(--paper);
}

.event-feature__image {
  min-height: 46rem;
  overflow: hidden;
}

.event-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0) contrast(1.05);
  transition: transform 800ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.event-feature:hover .event-feature__image img {
  transform: scale(1.02);
}

.event-feature__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
  flex-direction: column;
}

.event-feature .eyebrow {
  color: #c99074;
}

.event-feature h2 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 6vw, 6.25rem);
  line-height: 0.93;
}

.event-feature__copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.75rem 0 2.25rem;
  color: rgba(251, 249, 244, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contacts {
  padding-block: clamp(7rem, 12vw, 11rem);
  background: var(--olive);
  color: var(--paper);
}

.contacts__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 0.75fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.contacts .eyebrow {
  color: #cfa58f;
}

.contacts h2 {
  max-width: 8ch;
  font-size: clamp(4.25rem, 7vw, 7.5rem);
  line-height: 0.9;
}

.contacts address {
  margin-top: 2rem;
  color: rgba(251, 249, 244, 0.72);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: normal;
  line-height: 1.45;
}

.contacts__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.25rem;
}

.contacts__email {
  display: inline-block;
  margin-top: 2rem;
  color: rgba(251, 249, 244, 0.64);
  font-size: 0.75rem;
  text-underline-offset: 0.3rem;
}

.map-card {
  position: relative;
  display: block;
  min-height: 35rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(56, 66, 54, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 66, 54, 0.07) 1px, transparent 1px),
    #e9e1d5;
  background-size: 3rem 3rem;
  color: var(--graphite);
  text-decoration: none;
}

.map-card::before {
  position: absolute;
  top: -12%;
  right: -9%;
  width: 45%;
  height: 125%;
  transform: rotate(12deg);
  border-left: 1px solid rgba(56, 66, 54, 0.35);
  background: #9eb0a9;
  content: "";
}

.map-card__road {
  position: absolute;
  height: 1px;
  background: rgba(37, 38, 34, 0.46);
}

.map-card__road::before,
.map-card__road::after {
  position: absolute;
  width: 0.32rem;
  height: 0.32rem;
  transform: translateY(-50%);
  border: 1px solid rgba(37, 38, 34, 0.34);
  border-radius: 50%;
  background: #e9e1d5;
  content: "";
}

.map-card__road::before {
  left: 25%;
}

.map-card__road::after {
  right: 20%;
}

.map-card__road--one {
  top: 28%;
  right: 20%;
  left: -5%;
  transform: rotate(-12deg);
}

.map-card__road--two {
  top: 58%;
  right: -5%;
  left: 3%;
  transform: rotate(18deg);
}

.map-card__road--three {
  top: 15%;
  bottom: 10%;
  left: 38%;
  width: 1px;
  height: auto;
  transform: rotate(6deg);
}

.map-card__pin {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 48%;
  width: 1.15rem;
  height: 1.15rem;
  transform: translate(-50%, -50%);
  border: 0.28rem solid var(--paper);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0.12rem var(--clay);
}

.map-card__label {
  position: absolute;
  z-index: 3;
  top: calc(45% + 1.5rem);
  left: 48%;
  display: flex;
  transform: translateX(-50%);
  font-size: 0.65rem;
  line-height: 1.5;
  white-space: nowrap;
  flex-direction: column;
}

.map-card__label strong {
  font-size: 0.8rem;
}

.map-card__link {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentcolor;
  font-size: 0.67rem;
  font-weight: 700;
}

.footer {
  padding-block: 1.5rem;
  background: #222820;
  color: rgba(251, 249, 244, 0.62);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.brand--footer {
  color: var(--paper);
}

.brand--footer .brand__mark {
  border: 1px solid var(--line-light);
  background: transparent;
}

.footer p {
  margin: 0;
  font-size: 0.65rem;
}

.footer p:last-child {
  text-align: right;
}

.js .reveal {
  transform: translateY(1.25rem);
  transition: transform 650ms ease;
}

.js .reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 73rem) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 1.5rem;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    grid-column: 4;
    justify-self: end;
  }

  .js .nav {
    position: fixed;
    z-index: 40;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem 1.5rem 2rem;
    transform: translateY(-120%);
    border-bottom: 1px solid var(--line);
    background: var(--milk);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 240ms ease,
      opacity 180ms ease;
  }

  .js .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .js .nav a {
    padding-block: 1rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 400;
  }

  .js .nav a::after {
    display: none;
  }

  html:not(.js) .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding-block: 0.75rem;
  }

  html:not(.js) .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  html:not(.js) .header-cta {
    grid-column: 3;
    grid-row: 1;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 6vw, 5.2rem);
  }

  .schedule-card {
    grid-template-columns: 6rem minmax(16rem, 1fr) auto;
  }

  .schedule-card__meta {
    grid-column: 2 / 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-card > .button {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 54rem) {
  .shell {
    width: min(var(--shell), calc(100% - 2rem));
  }

  .section {
    padding-block: 7rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 0;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(3.65rem, 10vw, 5.4rem);
  }

  .hero__media {
    width: 82%;
    margin-left: auto;
  }

  .hero__media img {
    height: min(130vw, 47rem);
  }

  .hero__about {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .hero__about-note {
    grid-column: 2;
  }

  .section-heading,
  .section-heading--schedule {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading h2 {
    font-size: clamp(3.3rem, 11vw, 5.4rem);
  }

  .schedule__count {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1rem;
  }

  .gallery-card,
  .gallery-card--portrait,
  .gallery-card--wide,
  .gallery-card--landscape,
  .gallery-card--tall,
  .gallery-card--event,
  .gallery-card--family {
    grid-column: auto;
    margin-top: 0;
  }

  .gallery-card--wide,
  .gallery-card--landscape,
  .gallery-card--family {
    grid-column: 1 / -1;
  }

  .gallery-card--wide .gallery-card__media,
  .gallery-card--landscape .gallery-card__media,
  .gallery-card--family .gallery-card__media {
    aspect-ratio: 1.25;
  }

  .schedule-card {
    grid-template-columns: 5.5rem 1fr auto;
    gap: 1.5rem;
  }

  .schedule-card__meta {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 5.5rem;
  }

  .schedule-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .directions-grid {
    grid-template-columns: 1fr;
  }

  .event-feature {
    grid-template-columns: 1fr;
  }

  .event-feature__image {
    min-height: 38rem;
  }

  .contacts__inner {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 31rem;
  }
}

@media (max-width: 38rem) {
  :root {
    --header-height: 4.75rem;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    width: calc(100% - 2rem);
  }

  .brand__name {
    font-size: 0.92rem;
  }

  .js .menu-toggle {
    grid-column: 3;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13.4vw, 4.4rem);
    line-height: 0.93;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__media {
    width: 100%;
  }

  .hero__media img {
    height: 135vw;
    max-height: 42rem;
  }

  .hero__about {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__about-note {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--landscape,
  .gallery-card--family {
    grid-column: auto;
  }

  .gallery-card--portrait .gallery-card__media,
  .gallery-card--tall .gallery-card__media,
  .gallery-card--event .gallery-card__media {
    aspect-ratio: 0.83;
  }

  .gallery-card--wide .gallery-card__media,
  .gallery-card--landscape .gallery-card__media,
  .gallery-card--family .gallery-card__media {
    aspect-ratio: 1.08;
  }

  .section-action {
    justify-content: flex-start;
  }

  .schedule-filters {
    width: calc(100% + 1rem);
    margin-right: -1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .schedule-filters::-webkit-scrollbar {
    display: none;
  }

  .schedule-filters button {
    flex: 0 0 auto;
  }

  .schedule-card {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding-block: 2rem;
  }

  .schedule-card__date {
    grid-column: 1;
  }

  .schedule-card__title {
    grid-column: 1 / -1;
  }

  .schedule-card__meta {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .schedule-card__meta div {
    display: flex;
    min-height: auto;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(37, 38, 34, 0.2);
    border-left: 0;
    justify-content: space-between;
  }

  .schedule-card__meta dt {
    margin: 0;
  }

  .schedule-card__meta dd {
    max-width: 66%;
    text-align: right;
  }

  .schedule-card > .button {
    grid-row: 1;
    grid-column: 2;
  }

  .direction-card {
    min-height: 27rem;
  }

  .direction-card h3,
  .direction-card__content h3 {
    margin-top: 4rem;
  }

  .event-feature__image {
    min-height: 32rem;
  }

  .event-feature__copy {
    padding: 2rem 1.25rem 3rem;
  }

  .event-feature h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .contacts h2 {
    font-size: clamp(3.8rem, 16vw, 5.5rem);
  }

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

  .map-card {
    min-height: 27rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    transform: none;
  }
}

/* Multi-page site */

.nav a[aria-current="page"] {
  color: var(--graphite);
}

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.footer__inner--site {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.footer__nav {
  display: flex;
  gap: clamp(1rem, 2.6vw, 2.5rem);
  align-items: center;
  justify-content: center;
}

.footer__nav a {
  color: rgba(251, 249, 244, 0.62);
  font-size: 0.66rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer__nav a:hover,
.footer__nav a[aria-current="page"] {
  color: var(--paper);
}

.page-hero {
  padding-block: clamp(4rem, 8vw, 8rem) clamp(7rem, 11vw, 11rem);
}

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

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

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.page-hero__copy h1 {
  max-width: 10.5ch;
  font-size: clamp(4rem, 7.2vw, 7.7rem);
  line-height: 0.9;
}

.page-hero__copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 2rem 0 2.3rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.7;
}

.page-hero__media {
  margin: 0;
}

.page-hero__media img {
  width: 100%;
  height: clamp(34rem, 51vw, 46rem);
  object-fit: cover;
  filter: saturate(0.8) contrast(0.98);
}

.page-hero__media--landscape {
  align-self: end;
  margin-top: 5rem;
}

.page-hero__media--landscape img {
  height: clamp(27rem, 37vw, 36rem);
}

.page-hero__media figcaption {
  padding-top: 0.8rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.page-jumps a {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.page-jumps a:hover {
  border-color: var(--graphite);
  background: var(--graphite);
  color: var(--paper);
}

.page-cta {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--olive);
  color: var(--paper);
}

.page-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.7fr) auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.page-cta .eyebrow {
  color: #cfa58f;
}

.page-cta h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 0.94;
}

.page-cta__inner > p {
  margin: 0;
  color: rgba(251, 249, 244, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}

.home-paths {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.home-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.path-card {
  position: relative;
  display: flex;
  min-height: 32rem;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.2rem);
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  text-decoration: none;
}

.path-card--paper {
  background: var(--milk);
}

.path-card--sand {
  background: var(--sand);
}

.path-card--olive {
  background: var(--olive);
  color: var(--paper);
}

.path-card--photo {
  color: var(--paper);
}

.path-card--photo::after,
.path-card--olive::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 21, 18, 0.05) 10%,
    rgba(20, 21, 18, 0.78) 100%
  );
  content: "";
}

.path-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.path-card:hover > img {
  transform: scale(1.025);
}

.path-card__index,
.path-card__body {
  position: relative;
  z-index: 2;
}

.path-card__index {
  color: currentcolor;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.path-card__body {
  display: flex;
  margin-top: auto;
  flex-direction: column;
}

.path-card__body small {
  margin-bottom: 0.8rem;
  color: currentcolor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.68;
  text-transform: uppercase;
}

.path-card__body strong {
  max-width: 13ch;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.path-card__body > span {
  width: max-content;
  margin-top: 1.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentcolor;
  font-size: 0.72rem;
  font-weight: 700;
}

.home-gallery {
  background: var(--milk);
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.home-gallery__grid figure {
  margin: 0;
}

.home-gallery__grid figure:nth-child(1) {
  grid-column: 1 / span 6;
}

.home-gallery__grid figure:nth-child(2) {
  grid-column: 8 / -1;
  margin-top: 7rem;
}

.home-gallery__grid figure:nth-child(3) {
  grid-column: 3 / span 8;
  margin-top: 2rem;
}

.home-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.home-gallery__grid figure:nth-child(1) img {
  aspect-ratio: 1.48;
}

.home-gallery__grid figure:nth-child(2) img {
  aspect-ratio: 0.78;
}

.home-gallery__grid figure:nth-child(3) img {
  aspect-ratio: 1.55;
}

.home-gallery__grid figcaption {
  padding-top: 0.8rem;
  font-size: 0.7rem;
  font-weight: 650;
}

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

.home-next__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-next__card {
  display: flex;
  min-height: 37rem;
  padding: clamp(2.5rem, 5vw, 5rem);
  flex-direction: column;
  background: var(--sand);
}

.home-next__card > span,
.home-next__card--image > div > span {
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-next__card h3 {
  max-width: 12ch;
  margin-top: auto;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.94;
}

.home-next__card > p {
  max-width: 33rem;
  margin: 1.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.home-next__card .button {
  width: max-content;
}

.home-next__card--image {
  position: relative;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--paper);
}

.home-next__card--image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 21, 18, 0.06), rgba(20, 21, 18, 0.82));
  content: "";
}

.home-next__card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.home-next__card--image > div {
  position: relative;
  z-index: 2;
}

.home-next__card--image h3 {
  margin: 1.5rem 0 2rem;
}

.home-contact {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--olive);
  color: var(--paper);
}

.home-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.home-contact .eyebrow {
  color: #cfa58f;
}

.home-contact h2 {
  max-width: 8ch;
  font-size: clamp(3.5rem, 5.7vw, 6rem);
  line-height: 0.92;
}

.home-contact address {
  color: rgba(251, 249, 244, 0.72);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-style: normal;
  line-height: 1.45;
}

.home-contact__actions {
  display: flex;
  gap: 0.65rem;
  flex-direction: column;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 2.8vw, 3rem);
  align-items: start;
}

.photo-card {
  grid-column: span 4;
  margin: 0;
}

.photo-card--wide {
  grid-column: span 8;
}

.photo-card:nth-child(4),
.photo-card:nth-child(8) {
  margin-top: 5rem;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.photo-card--wide img {
  aspect-ratio: 1.55;
}

.photo-card:hover img {
  transform: scale(1.018);
}

.photo-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  font-size: 0.7rem;
  font-weight: 650;
}

.photo-card figcaption span:last-child {
  color: var(--muted);
}

.demo-note {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(121, 59, 40, 0.32);
  color: var(--clay-dark);
  font-size: 0.78rem;
  line-height: 1.6;
}

html:not(.js) .schedule-filters {
  display: none;
}

.direction-group {
  scroll-margin-top: var(--header-height);
}

.direction-group--paper {
  background: var(--paper);
}

.direction-group--sand {
  background: var(--sand);
}

.directions-grid--compact .direction-card {
  min-height: 31rem;
}

.event-formats {
  background: var(--milk);
}

.event-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.event-format {
  display: flex;
  min-height: 31rem;
  padding: clamp(2rem, 4vw, 3.4rem);
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.event-format--clay {
  background: var(--clay);
  color: var(--paper);
}

.event-format--olive {
  background: var(--olive);
  color: var(--paper);
}

.event-format > span {
  color: currentcolor;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  opacity: 0.7;
  text-transform: uppercase;
}

.event-format h3 {
  max-width: 11ch;
  margin-top: auto;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.event-format p {
  margin: 1.25rem 0 1.8rem;
  color: currentcolor;
  font-size: 0.82rem;
  line-height: 1.7;
  opacity: 0.72;
}

.event-format a {
  width: max-content;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentcolor;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

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

.event-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.7fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.event-story__copy > h2 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.93;
}

.process-list {
  margin: 4rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--clay-dark);
  font-size: 0.65rem;
  font-weight: 750;
}

.process-list h3 {
  font-size: 1.55rem;
}

.process-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.event-story__image {
  margin: 0;
}

.event-story__image img {
  width: 100%;
  height: 46rem;
  object-fit: cover;
  filter: saturate(0.75);
}

.event-mood {
  background: var(--milk);
}

.event-mood__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
}

.event-mood__grid figure {
  margin: 0;
}

.event-mood__grid figure:nth-child(2) {
  margin-bottom: 6rem;
}

.event-mood__grid img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  filter: saturate(0.75);
}

.event-mood__grid figure:last-child img {
  aspect-ratio: 1;
}

.contacts--page h1 {
  max-width: 8ch;
  font-size: clamp(4.25rem, 7vw, 7.5rem);
  line-height: 0.9;
}

.contact-guide {
  background: var(--paper);
}

.contact-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-guide__card {
  display: flex;
  min-height: 25rem;
  padding: clamp(2rem, 4vw, 3rem);
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-guide__card--sand {
  background: var(--sand);
}

.contact-guide__card > span {
  color: var(--clay-dark);
  font-size: 0.65rem;
  font-weight: 750;
}

.contact-guide__card h3 {
  margin-top: auto;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
}

.contact-guide__card p {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.contact-guide__card a {
  width: max-content;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentcolor;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-photo {
  padding-block: clamp(6rem, 11vw, 10rem);
  background: var(--milk);
}

.contact-photo__inner {
  display: grid;
  grid-template-columns: minmax(22rem, 0.75fr) minmax(0, 1fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.contact-photo figure {
  margin: 0;
}

.contact-photo img {
  width: 100%;
  height: 42rem;
  object-fit: cover;
  filter: saturate(0.76);
}

.contact-photo__copy h2 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 5.7vw, 5.8rem);
  line-height: 0.94;
}

.contact-photo__copy > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.6rem 0 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 73rem) {
  .js .nav a[aria-current="page"] {
    color: var(--clay-dark);
  }

  .page-cta__inner,
  .home-contact__inner {
    grid-template-columns: 1fr auto;
  }

  .page-cta__inner > p,
  .home-contact address {
    grid-column: 1;
  }

  .page-cta__inner > .button,
  .home-contact__actions {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .event-formats__grid,
  .contact-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 54rem) {
  .page-hero__inner,
  .event-story__inner,
  .contact-photo__inner {
    grid-template-columns: 1fr;
  }

  .page-hero__media {
    width: 78%;
    margin-left: auto;
  }

  .page-hero__media--landscape {
    width: 100%;
    margin-top: 1rem;
  }

  .page-hero__copy h1 {
    font-size: clamp(3.7rem, 11vw, 5.6rem);
  }

  .home-paths__grid,
  .home-next__grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .home-next__card {
    min-height: 31rem;
  }

  .photo-card,
  .photo-card--wide {
    grid-column: span 6;
  }

  .photo-card:nth-child(4),
  .photo-card:nth-child(8) {
    margin-top: 0;
  }

  .event-formats__grid,
  .contact-guide__grid {
    grid-template-columns: 1fr;
  }

  .event-format,
  .contact-guide__card {
    min-height: 23rem;
  }

  .event-story__image {
    width: 76%;
    margin-left: auto;
  }

  .event-story__image img,
  .contact-photo img {
    height: min(120vw, 42rem);
  }

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

  .event-mood__grid figure:nth-child(2) {
    margin-bottom: 0;
  }

  .event-mood__grid figure:last-child {
    grid-column: 1 / -1;
    width: 72%;
    margin-left: auto;
  }

  .contacts--page h1 {
    font-size: clamp(3.8rem, 13vw, 5.8rem);
  }

  .footer__inner--site {
    grid-template-columns: 1fr auto;
  }

  .footer__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer__inner--site > p {
    text-align: right;
  }
}

@media (max-width: 38rem) {
  .page-hero {
    padding-top: 3rem;
  }

  .page-hero__media {
    width: 100%;
  }

  .page-hero__media img,
  .page-hero__media--landscape img {
    height: 130vw;
    max-height: 40rem;
  }

  .page-hero__copy h1 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }

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

  .page-jumps a {
    text-align: center;
  }

  .page-cta__inner,
  .home-contact__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-cta__inner > p,
  .home-contact address,
  .page-cta__inner > .button,
  .home-contact__actions {
    grid-column: auto;
    grid-row: auto;
  }

  .home-contact__actions {
    width: 100%;
  }

  .home-contact__actions .button,
  .page-cta .button {
    width: 100%;
  }

  .path-card,
  .home-next__card {
    min-height: 28rem;
  }

  .home-gallery__grid {
    grid-template-columns: 1fr;
  }

  .home-gallery__grid figure:nth-child(n) {
    grid-column: 1;
    margin-top: 0;
  }

  .home-gallery__grid figure:nth-child(2) {
    width: 80%;
    margin-left: auto;
  }

  .photo-card,
  .photo-card--wide {
    grid-column: 1 / -1;
  }

  .photo-card--wide img {
    aspect-ratio: 1.25;
  }

  .demo-note {
    flex-direction: column;
  }

  .directions-grid--compact {
    grid-template-columns: 1fr;
  }

  .event-mood__grid {
    grid-template-columns: 1fr;
  }

  .event-mood__grid figure:last-child {
    grid-column: auto;
    width: 100%;
  }

  .contact-photo__inner {
    gap: 3rem;
  }

  .footer__inner--site {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    grid-column: 1;
    grid-row: auto;
    gap: 0.85rem 1.25rem;
  }

  .footer__inner--site > p {
    text-align: left;
  }
}
