:root {
  --cream: #faf8f3;
  --ink: #111110;
  --red: #9b101a;
  --focus-ring: #9b101a;
  --focus-ring-dark: #ff5b66;
  --muted: #eeeae4;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "EB Garamond", Georgia, serif;
  --font-ui: Inter, Arial, sans-serif;
  --page-inset: clamp(1.5rem, 6.35vw, 5.5rem);
  --header-height: 5.5rem;
  --screen-section-height: 100vh;
  --home-panel-height: calc(var(--screen-section-height) - var(--header-height));
}

@supports (height: 100dvh) {
  :root {
    --screen-section-height: 100dvh;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y mandatory;
}

html.inner-page {
  scroll-snap-type: none;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.3;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 4px;
}

.story a:focus-visible,
.events a:focus-visible,
.site-footer a:focus-visible,
.simple-footer a:focus-visible,
.menu-page--dark a:focus-visible,
.menu-page--dark button:focus-visible {
  outline-color: var(--focus-ring-dark);
}

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

.wrap {
  width: min(100% - 2 * var(--page-inset), 85rem);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

main > section,
.site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.home-page main > section {
  scroll-snap-stop: always;
}

.dayparts,
.story,
.events,
.newsletter,
.latest-posts {
  position: relative;
}

.section-up {
  position: absolute;
  z-index: 2;
  bottom: clamp(1.25rem, 2.5vh, 2rem);
  left: 50%;
  display: block;
  width: 3.5rem;
  height: 2.75rem;
  color: var(--red);
  text-decoration: none;
  transform: translateX(-50%);
  transition: color 160ms ease;
}

.section-up::before,
.section-up::after {
  position: absolute;
  left: calc(50% - 0.5rem);
  width: 1rem;
  height: 1rem;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  content: "";
  transform: scaleX(2) rotate(45deg);
}

.section-up::before {
  top: 0.35rem;
}

.section-up::after {
  top: 1.1rem;
}

.section-up:hover {
  color: #6f0911;
}

#menu-note {
  scroll-margin-top: 2rem;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid #302e2a;
  color: #fff;
  background: var(--ink);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0.65rem clamp(1.35rem, 3vw, 3.25rem);
}

.site-header__brand {
  width: clamp(8.9rem, 9.5vw, 10.6rem);
  flex: none;
  line-height: 0;
}

.site-header__brand img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  flex-wrap: nowrap;
  column-gap: clamp(1.8rem, 2.7vw, 3.2rem);
  row-gap: 1rem;
  min-height: 2.75rem;
}

.site-nav a,
.eyebrow,
.button,
.text-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-nav {
  text-decoration: none;
}

.site-nav a {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: #ece8e1;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a > span {
  display: inline-block;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.72rem;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

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

.site-nav a:focus-visible {
  outline: 2px solid var(--focus-ring-dark);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
}

.hero {
  display: flex;
  align-items: center;
  min-height: var(--home-panel-height);
  padding-block: clamp(5rem, 12vh, 8rem) clamp(3rem, 7vh, 4.75rem);
  background: #e6e0d8 url("../images/hero-section-background.webp") center / cover no-repeat;
}

.hero__inner {
  width: min(100% - 2 * var(--page-inset), 85rem);
}

.hero__content {
  max-width: 34rem;
}

.hero h1,
.daypart h3,
.story h2,
.events h2,
.site-footer__contact h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.hero h1 {
  max-width: 8.5ch;
  margin-bottom: 1.8rem;
  font-size: clamp(4.75rem, 7.5vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.red-dot {
  color: var(--red);
}

.hero p {
  max-width: 29rem;
  margin-bottom: 2.5rem;
  font-size: 1.16rem;
  line-height: 1.22;
}

.hero__scroll {
  display: flex;
  width: fit-content;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  min-height: 3rem;
  padding: 0.75rem 1.7rem;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button--red {
  color: #fff;
  background: var(--red);
}

.button--red:hover {
  background: #6f0911;
}

.dayparts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--home-panel-height);
  padding-block: 4.55rem 6rem;
  background: var(--cream);
}

.dayparts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4.8vw, 3.75rem);
}

.daypart img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.daypart h3 {
  max-width: 19rem;
  margin: 1.75rem 0 0.95rem;
  font-size: clamp(2.65rem, 3.95vw, 3.3rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.daypart p {
  max-width: 21rem;
  margin-bottom: 0.85rem;
  font-size: 1.12rem;
  line-height: 1.2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
}

.menu-note {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #554f49;
  font-size: 0.95rem;
}

.story {
  display: grid;
  grid-template-columns: 37% 63%;
  min-height: var(--home-panel-height);
  color: #fff;
  background: var(--ink);
}

.story__image {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.story__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.story h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(4.5rem, 7.3vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.story__content > p:not(.eyebrow) {
  max-width: 48rem;
  margin-bottom: 2rem;
  font-size: 1.14rem;
  line-height: 1.22;
}

.events {
  display: flex;
  align-items: center;
  min-height: var(--home-panel-height);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.events::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 72%) 0%, rgb(0 0 0 / 48%) 34%, rgb(0 0 0 / 14%) 66%, transparent 86%);
  content: "";
  pointer-events: none;
}

.events__photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.events__inner {
  position: relative;
  z-index: 1;
  padding-block: 3.5rem;
}

.events h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(4.5rem, 7.3vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.events__inner > p:not(.eyebrow) {
  max-width: 32rem;
  margin-bottom: 2.3rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.button--outline {
  min-width: 15rem;
  min-height: 2.7rem;
  padding-inline: 1rem;
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.button--outline:hover {
  color: var(--ink);
  background: #fff;
}

.newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--screen-section-height);
  padding-block: 4.5rem 6rem;
  background: var(--cream);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.newsletter__copy .eyebrow {
  margin-bottom: 1.2rem;
}

.newsletter__copy p {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.newsletter__controls {
  display: flex;
  gap: 1.45rem;
}

.newsletter__controls input {
  width: 100%;
  min-width: 0;
  height: 2.7rem;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--muted);
  font-size: 1rem;
  opacity: 1;
}

.newsletter__controls input::placeholder {
  color: #3f3b38;
  opacity: 1;
}

.newsletter__controls button {
  flex: none;
  min-width: 8.25rem;
  height: 2.7rem;
  padding-inline: 1rem;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--red);
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 1;
  cursor: not-allowed;
}

.newsletter__preview p {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 1rem;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  color: #fff;
  background: var(--ink);
}

.home-page .site-footer {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: var(--home-panel-height);
  min-height: var(--home-panel-height);
  padding-top: 0;
  scroll-snap-stop: always;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  flex: 1;
  padding-block: 0 clamp(3.5rem, 6vw, 5rem);
}

.home-page .site-footer__inner {
  min-height: 0;
  padding-block: clamp(2.25rem, 4vh, 3rem) clamp(1.25rem, 2.5vh, 1.75rem);
}

.site-footer__brand {
  position: relative;
  z-index: 3;
  align-self: start;
}

.site-footer__tagline {
  max-width: 16rem;
  margin: 0;
  color: #d2ccc3;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-style: italic;
  line-height: 1.05;
}

.site-footer__channels {
  position: relative;
  z-index: 4;
  display: block;
  margin-top: clamp(2rem, 5vh, 3rem);
  opacity: 1;
  visibility: visible;
  isolation: isolate;
}

.site-footer__channels-heading {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__channels nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__channels a {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid #625f5a;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-footer__channels svg {
  width: 1.45rem;
  height: 1.45rem;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__channels a:hover {
  border-color: var(--red);
  color: #e12734;
  text-decoration: none;
  transform: translateY(-2px);
}

.site-footer__channels a:focus-visible {
  outline-color: var(--focus-ring-dark);
}

.site-footer__channels svg rect,
.site-footer__channels svg circle {
  fill: none;
}

.site-footer__channels svg .brand-icon__dot {
  fill: currentColor;
  stroke: none;
}

.site-footer__channels svg path {
  stroke: none;
}

.site-footer__contact a,
.site-footer__contact p {
  color: #d2ccc3;
  font-size: 1.05rem;
  line-height: 1.25;
}

.site-footer__contact a {
  width: fit-content;
  text-decoration: none;
}

.site-footer__contact a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.site-footer__contact p {
  max-width: 27rem;
  margin-bottom: 0.7rem;
}

.site-footer__contact {
  min-width: 0;
}

.site-footer__contact .eyebrow {
  margin-bottom: 0.75rem;
  color: #d2ccc3;
  font-size: 0.72rem;
}

.site-footer__contact h2 {
  max-width: 10ch;
  margin-bottom: 1.8rem;
  font-size: clamp(3.75rem, 5.5vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.site-footer__contact address {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-style: normal;
  line-height: 1.25;
}

.site-footer__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

.site-footer__contact .site-footer__email {
  color: #fff;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer__contact .site-footer__phone {
  margin: 0.55rem 0 0;
}

.site-footer__details h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__hours {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.site-footer__hours div + div {
  margin-top: 0.55rem;
}

.site-footer__hours dd {
  margin: 0;
  color: #d2ccc3;
}

.site-footer__map {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(16rem, 28vw, 20rem);
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid #393632;
  background: #d2ccc3;
  isolation: isolate;
}

.site-footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-page .site-footer__contact h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.4rem, 5vw, 4.8rem);
}

.home-page .site-footer__map {
  height: clamp(12rem, 24vh, 15rem);
  margin-top: 1.25rem;
}

.home-page .site-footer__bottom {
  align-self: end;
  padding-block: 0.85rem 1rem;
}

.site-footer__contact .site-footer__directions {
  display: inline-block;
  margin-top: 0.9rem;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  gap: 1rem;
  padding-block: 1.25rem 1.5rem;
  border-top: 1px solid #4c4a47;
  color: #aaa49d;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Editorial content and CMS-ready indexes */

.latest-posts {
  display: flex;
  align-items: center;
  min-height: var(--home-panel-height);
  padding-block: clamp(4rem, 8vh, 7rem) clamp(5rem, 9vh, 8rem);
  background: var(--cream);
}

.latest-posts__inner {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.latest-posts__intro h2,
.content-hero h1,
.content-detail h1 {
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.latest-posts__intro > p:not(.eyebrow) {
  max-width: 27rem;
  margin-bottom: 1.6rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.whats-on-page {
  background: var(--cream);
}

.whats-on-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: var(--home-panel-height);
  min-height: var(--home-panel-height);
  overflow: hidden;
  border-bottom: 1px solid #ded9d1;
}

.whats-on-hero__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem);
  background: var(--cream);
}

.whats-on-hero__copy-inner {
  width: min(100%, 34rem);
}

.whats-on-hero__copy .eyebrow {
  color: var(--red);
}

.whats-on-hero__copy h1 {
  margin-bottom: 1.7rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.88;
}

.whats-on-hero__copy > .whats-on-hero__copy-inner > p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.42;
}

.whats-on-hero__rule {
  display: block;
  width: 4rem;
  height: 1px;
  margin-top: 2.25rem;
  background: var(--red);
}

.whats-on-hero__media {
  min-width: 0;
  height: 100%;
  margin: 0;
  background: #241e1a;
}

.whats-on-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.whats-on-section {
  padding-block: clamp(5.5rem, 8vw, 8.5rem);
}

.whats-on-events__header {
  padding-bottom: clamp(2.75rem, 4vw, 4rem);
  border-bottom: 1px solid #d9d3ca;
}

.whats-on-events__header .eyebrow {
  color: var(--red);
}

.whats-on-events__heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.whats-on-events__heading-row h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 6.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.whats-on-events__heading-row > p {
  max-width: 34rem;
  margin: 0 0 0.45rem;
  color: #554f49;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.5;
}

.whats-on-events__list {
  width: 100%;
}

.event-row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) minmax(0, 1fr) minmax(16rem, 22rem);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(2.75rem, 4.5vw, 4.5rem);
  border-bottom: 1px solid #d9d3ca;
}

.event-row--no-image {
  grid-template-columns: minmax(5.5rem, 7rem) minmax(0, 1fr);
}

.event-row__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 8rem;
  padding-right: 1.75rem;
  border-right: 1px solid rgb(152 15 24 / 35%);
}

.event-row__month,
.event-row__year,
.event-row__meta,
.event-row__location {
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-row__month {
  color: var(--red);
  font-size: 0.68rem;
}

.event-row__day {
  margin: 0.08em 0 0.02em;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.event-row__year {
  color: #726b63;
  font-size: 0.65rem;
}

.event-row__content {
  max-width: 54rem;
}

.event-row__meta,
.event-row__location {
  margin-bottom: 0.7rem;
  color: var(--red);
  font-size: 0.67rem;
}

.event-row__location {
  margin-top: 1rem;
  color: #726b63;
}

.event-row h3 {
  max-width: 16ch;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.event-row h3 a,
.event-row h3 a > span {
  display: inline-block;
  color: inherit;
  text-decoration: none !important;
  text-decoration-color: transparent !important;
}

.event-row__content > p:not(.event-row__meta, .event-row__location) {
  max-width: 46rem;
  margin-bottom: 1.35rem;
  color: #4f4a45;
  font-size: clamp(1.03rem, 1.2vw, 1.14rem);
  line-height: 1.5;
}

.event-row__media {
  display: block;
  overflow: hidden;
  background: #d7d0c6;
}

.event-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.event-row__media:hover img {
  transform: scale(1.015);
}

.whats-on-section--stories {
  color: var(--ink);
  background: #f1ede6;
  border-top: 1px solid #d9d3ca;
}

.whats-on-stories__header {
  padding-bottom: clamp(2.75rem, 4vw, 4rem);
  border-bottom: 1px solid #cbc3b8;
}

.whats-on-stories__header .eyebrow {
  color: var(--red);
}

.whats-on-stories__heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.whats-on-stories__heading-row > div {
  max-width: 52rem;
}

.whats-on-stories__heading-row h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.whats-on-stories__heading-row p {
  max-width: 36rem;
  margin: 0;
  color: #554f49;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.48;
}

.whats-on-stories__heading-row .text-link {
  align-self: end;
  margin-bottom: 0.2rem;
}

.whats-on-stories__list {
  width: 100%;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) minmax(0, 1fr) minmax(16rem, 22rem);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(2.75rem, 4.5vw, 4.5rem);
  border-bottom: 1px solid #cbc3b8;
}

.story-row--no-image {
  grid-template-columns: minmax(5.5rem, 7rem) minmax(0, 1fr);
}

.story-row__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 8rem;
  padding-right: 1.75rem;
  border-right: 1px solid rgb(152 15 24 / 35%);
}

.story-row__month,
.story-row__year,
.story-row__meta {
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-row__month {
  color: var(--red);
  font-size: 0.68rem;
}

.story-row__day {
  margin: 0.08em 0 0.02em;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.story-row__year {
  color: #726b63;
  font-size: 0.65rem;
}

.story-row__content {
  max-width: 54rem;
}

.story-row__meta {
  margin-bottom: 0.7rem;
  color: var(--red);
  font-size: 0.67rem;
}

.story-row h3 {
  max-width: 16ch;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.story-row h3 a,
.story-row h3 a > span {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.story-row h3 a:hover {
  color: var(--red);
}

.story-row__content > p:not(.story-row__meta) {
  max-width: 46rem;
  margin-bottom: 1.35rem;
  color: #4f4a45;
  font-size: clamp(1.03rem, 1.2vw, 1.14rem);
  line-height: 1.5;
}

.story-row__media {
  display: block;
  overflow: hidden;
  background: #d7d0c6;
}

.story-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.story-row__media:hover img {
  transform: scale(1.015);
}

.whats-on-section--stories .content-empty {
  border-color: #cbc3b8;
  color: #554f49;
}

.content-page {
  min-height: 60vh;
  background: var(--cream);
}

.content-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  min-height: min(72vh, 48rem);
  overflow: hidden;
  border-bottom: 1px solid #ded9d1;
}

.content-feature--reverse .content-feature__media {
  order: 2;
}

.content-feature--reverse .content-feature__copy {
  order: 1;
}

.content-feature__media {
  min-height: 30rem;
  background: #d7d0c6;
}

.content-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 6vw, 7rem);
  background: var(--cream);
}

.content-feature__copy h1 {
  max-width: 10ch;
  margin-bottom: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 7.2vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.content-feature__copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.35;
}

.content-feature__rule {
  width: 4rem;
  height: 1px;
  margin-top: 2.25rem;
  background: var(--red);
}

.content-feature--events .content-feature__copy {
  color: #f8f4ed;
  background: var(--ink);
}

.content-feature--events .content-feature__media img {
  object-position: center 72%;
}

.content-feature--news .content-feature__media img {
  object-position: center;
}

.content-index {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.content-index--editorial {
  display: grid;
  grid-template-columns: minmax(13rem, 0.65fr) minmax(0, 2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.content-index__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.6vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
}

.content-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #d9d3ca;
}

.content-card {
  min-width: 0;
  padding-top: clamp(1.4rem, 2vw, 2rem);
  border: 0;
  border-top: 1px solid #d9d3ca;
  background: transparent;
}

.content-card__media {
  display: block;
  margin: calc(-1 * clamp(1.4rem, 2vw, 2rem)) 0 1.5rem;
  overflow: hidden;
  background: #d7d0c6;
}

.content-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease;
}

.content-card__media:hover img {
  transform: scale(1.015);
}

.content-grid--home .content-card {
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  border: 0;
  border-right: 1px solid #d9d3ca;
  background: transparent;
}

.content-grid--home .content-card:first-child {
  padding-left: 0;
}

.content-grid--home .content-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.content-grid--home .content-card__media {
  margin-top: 0;
}

.content-card__meta,
.content-detail__meta {
  margin-bottom: 0.85rem;
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card h3 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 0.96;
}

.content-grid--home .content-card h3 {
  font-size: clamp(2rem, 2.6vw, 2.7rem);
}

.content-card h3 a {
  text-decoration: none;
}

.content-card h3 a:hover {
  color: var(--red);
  text-decoration: none !important;
}

.content-card > p:not(.content-card__meta) {
  margin-bottom: 1rem;
  line-height: 1.35;
}

.content-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(2rem, 4vw, 4rem) 0;
  border-top: 1px solid #d9d3ca;
  border-bottom: 1px solid #d9d3ca;
  color: #554f49;
  font-style: italic;
}

.content-detail__article {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.content-detail__summary {
  max-width: 46rem;
  margin-bottom: 2.5rem;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.35;
}

.content-detail__body {
  width: 100%;
  max-width: none;
  font-size: inherit;
  line-height: inherit;
}

.content-detail__header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ded9d1;
}

.content-detail__header-copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.content-detail__header--theme-cream {
  color: var(--ink);
  background: var(--cream);
}

.content-detail__header--theme-ink {
  color: #f8f4ed;
  background: #11110f;
}

.content-detail__header--align-center .content-detail__header-copy {
  text-align: center;
}

.content-detail__header--align-center .content-detail__summary {
  margin-inline: auto;
}

.content-detail__header h1 {
  max-width: 14ch;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
}

.content-detail__header--align-center h1 {
  margin-inline: auto;
}

.content-detail__header--image-below .content-detail__header-image {
  max-width: 96rem;
  margin: 0 auto clamp(3rem, 6vw, 6rem);
  padding-inline: var(--page-inset);
}

.content-detail__header--split-left,
.content-detail__header--split-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(78vh, 52rem);
}

.content-detail__header--split-left .content-detail__header-image {
  order: 1;
}

.content-detail__header--split-left .content-detail__header-copy {
  order: 2;
}

.content-detail__header--split-right .content-detail__header-copy {
  order: 1;
}

.content-detail__header--split-right .content-detail__header-image {
  order: 2;
}

.content-detail__header--split-left .content-detail__header-copy,
.content-detail__header--split-right .content-detail__header-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  padding: clamp(3rem, 6vw, 7rem);
}

.content-detail__header--split-left .content-detail__header-image,
.content-detail__header--split-right .content-detail__header-image {
  min-height: 34rem;
}

.content-detail__header--split-left .content-detail__header-image img,
.content-detail__header--split-right .content-detail__header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-detail__header--image-hero {
  min-height: min(88vh, 60rem);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #11110f;
}

.content-detail__header--image-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-detail__header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 12%));
}

.content-detail__header--overlay-strong .content-detail__header-overlay {
  background: linear-gradient(90deg, rgb(0 0 0 / 75%), rgb(0 0 0 / 28%));
}

.content-detail__header--overlay-none .content-detail__header-overlay {
  background: transparent;
}

.content-detail__header--image-hero .content-detail__header-copy {
  width: 100%;
  padding-block: clamp(7rem, 14vw, 12rem) clamp(4rem, 8vw, 7rem);
}

.content-detail__header--image-hero .content-detail__summary {
  color: rgb(255 255 255 / 88%);
}

.content-detail__body {
  width: 100%;
}

.editorial-block {
  position: relative;
  margin-inline: auto;
}

.editorial-inner {
  width: min(100% - (2 * var(--page-inset)), 76rem);
  margin-inline: auto;
}

.editorial-theme--cream {
  color: var(--ink);
  background: var(--cream);
}

.editorial-theme--white {
  color: var(--ink);
  background: #fff;
}

.editorial-theme--ink {
  color: #f8f4ed;
  background: #11110f;
}

.editorial-theme--red {
  color: #fff;
  background: var(--red);
}

.editorial-theme--ink .editorial-prose,
.editorial-theme--red .editorial-prose {
  color: inherit;
}

.editorial-width--narrow .editorial-inner {
  width: min(100% - (2 * var(--page-inset)), 38rem);
}

.editorial-width--standard .editorial-inner {
  width: min(100% - (2 * var(--page-inset)), 48rem);
}

.editorial-width--wide .editorial-inner {
  width: min(100% - (2 * var(--page-inset)), 76rem);
}

.editorial-width--full .editorial-inner {
  width: 100%;
}

.editorial-spacing--compact {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.editorial-spacing--standard {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.editorial-spacing--generous {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.editorial-spacing--dramatic {
  padding-block: clamp(6rem, 13vw, 12rem);
}

.editorial-align--center {
  text-align: center;
}

.editorial-align--center .editorial-prose {
  margin-inline: auto;
}

.editorial-prose {
  max-width: 46rem;
  font-size: 1.12rem;
  line-height: 1.55;
}

.editorial-prose > * + * {
  margin-top: 1.15rem;
}

.editorial-prose h2,
.editorial-prose h3,
.editorial-prose h4 {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.editorial-prose blockquote {
  padding-left: 1.5rem;
  border-left: 1px solid var(--red);
  font-style: italic;
}

.editorial-heading--medium h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.editorial-heading--large h2 {
  font-size: clamp(3.2rem, 5.5vw, 5.75rem);
}

.editorial-heading--display h2 {
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.editorial-heading--statement h2 {
  font-size: clamp(5rem, 9vw, 9rem);
}

.editorial-intro h2,
.editorial-heading h2,
.editorial-split h2,
.editorial-banner h2,
.editorial-callout h2,
.editorial-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.editorial-intro__lead {
  margin-top: clamp(1.5rem, 3vw, 2.75rem);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.4;
}

.editorial-intro__rule {
  display: block;
  width: 4rem;
  height: 1px;
  margin-top: 1.5rem;
  background: var(--red);
}

.editorial-align--center .editorial-intro__rule {
  margin-inline: auto;
}

.editorial-heading__intro {
  max-width: 44rem;
  margin-top: 1.5rem;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.4;
}

.editorial-align--center .editorial-heading__intro {
  margin-inline: auto;
}

.editorial-columns__inner {
  --editorial-columns-gap: clamp(2.5rem, 4vw, 4.5rem);
  width: min(100% - (2 * var(--page-inset)), 76rem);
  margin-inline: auto;
  display: grid;
  gap: var(--editorial-columns-gap);
}

.editorial-columns__inner > .editorial-prose {
  min-width: 0;
  max-width: none;
}

.editorial-columns--40-60 .editorial-columns__inner {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.editorial-columns--50-50 .editorial-columns__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.editorial-columns--60-40 .editorial-columns__inner {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.editorial-columns--valign-center .editorial-columns__inner {
  align-items: center;
}

.editorial-columns--valign-bottom .editorial-columns__inner {
  align-items: end;
}

.editorial-columns--divider .editorial-prose + .editorial-prose {
  position: relative;
}

.editorial-columns--divider .editorial-prose + .editorial-prose::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--editorial-columns-gap) / -2);
  width: 1px;
  background: rgb(152 15 24 / 35%);
  content: "";
}

.editorial-media {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-media--landscape {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.editorial-media--cinematic {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.editorial-media--square {
  aspect-ratio: 1;
  object-fit: cover;
}

.editorial-media--portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.editorial-media--focus-center { object-position: center; }
.editorial-media--focus-top { object-position: center top; }
.editorial-media--focus-bottom { object-position: center bottom; }
.editorial-media--focus-left { object-position: left center; }
.editorial-media--focus-right { object-position: right center; }

.editorial-image figcaption,
.editorial-gallery figcaption,
.editorial-video figcaption {
  margin-top: 0.8rem;
  color: #625c55;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.editorial-theme--ink figcaption,
.editorial-theme--red figcaption {
  color: rgb(255 255 255 / 68%);
}

.editorial-caption--center figcaption {
  text-align: center;
}

.editorial-split {
  display: grid;
  min-height: 32rem;
}

.editorial-split--media-40 {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.editorial-split--media-50 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-split--media-60 {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.editorial-split--image-right .editorial-split__media {
  order: 2;
}

.editorial-split--image-right .editorial-split__copy {
  order: 1;
}

.editorial-split__media {
  min-width: 0;
  margin: 0;
}

.editorial-split__media img {
  width: 100%;
  height: 100%;
}

.editorial-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 6rem);
}

.editorial-split--valign-top .editorial-split__copy {
  justify-content: flex-start;
}

.editorial-split--valign-bottom .editorial-split__copy {
  justify-content: flex-end;
}

.editorial-split__copy .editorial-prose {
  margin-top: 1.5rem;
}

.editorial-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: #11110f;
}

.editorial-banner--compact {
  min-height: 26rem;
}

.editorial-banner--tall {
  min-height: min(72vh, 52rem);
}

.editorial-banner--full {
  min-height: calc(100dvh - 6rem);
}

.editorial-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.editorial-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / 38%);
}

.editorial-banner--overlay-strong .editorial-banner__overlay {
  background: rgb(0 0 0 / 62%);
}

.editorial-banner--overlay-light .editorial-banner__overlay {
  background: rgb(250 248 243 / 66%);
}

.editorial-banner--overlay-none .editorial-banner__overlay {
  background: transparent;
}

.editorial-banner--tone-dark {
  color: var(--ink);
}

.editorial-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(4rem, 9vw, 8rem);
}

.editorial-banner__content h2 {
  max-width: 12ch;
}

.editorial-align--center .editorial-banner__content h2,
.editorial-align--center .editorial-banner__content .editorial-prose {
  margin-inline: auto;
}

.editorial-banner__content .editorial-prose {
  margin-top: 1.5rem;
}

.editorial-quote {
  padding-inline: var(--page-inset);
}

.editorial-quote blockquote {
  width: min(100%, 60rem);
  margin: 0 auto;
}

.editorial-quote blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 0.98;
}

.editorial-quote--size-medium blockquote p {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.editorial-quote--size-large blockquote p {
  font-size: clamp(3rem, 5.5vw, 5.75rem);
}

.editorial-quote--size-statement blockquote p {
  font-size: clamp(4rem, 7.5vw, 7.75rem);
}

.editorial-quote--center {
  text-align: center;
}

.editorial-quote--left blockquote {
  margin-left: max(var(--page-inset), calc((100vw - 76rem) / 2));
}

.editorial-quote--bordered blockquote {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 2px solid var(--red);
}

.editorial-quote cite {
  display: block;
  margin-top: 1.5rem;
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-theme--red .editorial-quote cite {
  color: #fff;
}

.editorial-gallery {
  padding-inline: var(--page-inset);
}

.editorial-gallery__grid {
  width: min(100%, 86rem);
  margin-inline: auto;
  display: grid;
}

.editorial-gallery--gap-tight .editorial-gallery__grid { gap: 0.35rem; }
.editorial-gallery--gap-standard .editorial-gallery__grid { gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.editorial-gallery--gap-airy .editorial-gallery__grid { gap: clamp(1.25rem, 3vw, 2.5rem); }

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

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

.editorial-gallery--mosaic .editorial-gallery__grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.editorial-gallery--mosaic .editorial-gallery__grid img {
  grid-column: span 6;
}

.editorial-gallery--mosaic .editorial-gallery__grid img:nth-child(3n + 1) {
  grid-column: span 7;
}

.editorial-gallery--mosaic .editorial-gallery__grid img:nth-child(3n + 2) {
  grid-column: span 5;
}

.editorial-gallery--strip .editorial-gallery__grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(16rem, 34vw);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0.5rem;
}

.editorial-gallery--strip .editorial-gallery__grid img {
  scroll-snap-align: start;
}

.editorial-gallery figcaption {
  width: min(100%, 86rem);
  margin-inline: auto;
}

.editorial-callout .editorial-inner,
.editorial-cta .editorial-inner {
  padding: clamp(2.5rem, 5vw, 5rem);
}

.editorial-callout--panel .editorial-inner {
  border: 1px solid rgb(17 17 15 / 14%);
}

.editorial-theme--ink.editorial-callout--panel .editorial-inner,
.editorial-theme--red.editorial-callout--panel .editorial-inner {
  border-color: rgb(255 255 255 / 25%);
}

.editorial-callout--line .editorial-inner {
  border-left: 3px solid var(--red);
}

.editorial-theme--red.editorial-callout--line .editorial-inner {
  border-left-color: #fff;
}

.editorial-callout--minimal .editorial-inner {
  padding-inline: 0;
}

.editorial-callout .editorial-prose,
.editorial-cta .editorial-prose {
  margin-top: 1.5rem;
}

.editorial-cta .editorial-prose {
  margin-bottom: 2rem;
}

.editorial-cta__outline {
  border: 1px solid currentColor;
  background: transparent;
}

.editorial-theme--ink .editorial-cta__outline,
.editorial-theme--red .editorial-cta__outline {
  color: #fff;
}

.editorial-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-divider--line span {
  width: min(7rem, 28vw);
  height: 1px;
  background: var(--red);
}

.editorial-divider--dot span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red);
}

.editorial-divider--space span {
  display: none;
}

.editorial-video__player {
  display: block;
  width: 100%;
  max-height: 82vh;
  background: #11110f;
}

@media (max-width: 960px) {
  .whats-on-events__heading-row,
  .whats-on-stories__heading-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-row,
  .story-row {
    grid-template-columns: minmax(5rem, 6.5rem) minmax(0, 1fr);
  }

  .event-row__media,
  .story-row__media {
    grid-column: 2;
    width: min(100%, 28rem);
    margin-top: 1rem;
  }

  .whats-on-stories__heading-row .text-link {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .content-detail__header--split-left,
  .content-detail__header--split-right {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .content-detail__header--split-left .content-detail__header-image,
  .content-detail__header--split-right .content-detail__header-image {
    order: 1;
    min-height: 20rem;
    aspect-ratio: 4 / 3;
  }

  .content-detail__header--split-left .content-detail__header-copy,
  .content-detail__header--split-right .content-detail__header-copy {
    order: 2;
    padding: 3.5rem var(--page-inset) 5rem;
  }

  .editorial-columns__inner,
  .editorial-columns--40-60 .editorial-columns__inner,
  .editorial-columns--50-50 .editorial-columns__inner,
  .editorial-columns--60-40 .editorial-columns__inner {
    grid-template-columns: 1fr;
  }

  .editorial-columns--divider .editorial-prose + .editorial-prose {
    padding-top: 2rem;
    border-top: 1px solid rgb(152 15 24 / 35%);
  }

  .editorial-columns--divider .editorial-prose + .editorial-prose::before {
    display: none;
  }

  .editorial-split,
  .editorial-split--media-40,
  .editorial-split--media-50,
  .editorial-split--media-60 {
    grid-template-columns: 1fr;
  }

  .editorial-split__media {
    min-height: 20rem;
    aspect-ratio: 4 / 3;
  }

  .editorial-split--image-right .editorial-split__media,
  .editorial-split--image-right .editorial-split__copy {
    order: initial;
  }

  .editorial-gallery--grid-3 .editorial-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-gallery--mosaic .editorial-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-gallery--mosaic .editorial-gallery__grid img,
  .editorial-gallery--mosaic .editorial-gallery__grid img:nth-child(3n + 1),
  .editorial-gallery--mosaic .editorial-gallery__grid img:nth-child(3n + 2) {
    grid-column: span 1;
  }

  .editorial-heading--statement h2 {
    font-size: clamp(4rem, 14vw, 6rem);
  }
}

@media (max-width: 560px) {
  .content-detail__header h1 {
    font-size: clamp(3.4rem, 14vw, 5rem);
  }

  .content-detail__header--image-hero {
    min-height: 72vh;
  }

  .editorial-gallery--grid-2 .editorial-gallery__grid,
  .editorial-gallery--grid-3 .editorial-gallery__grid,
  .editorial-gallery--mosaic .editorial-gallery__grid {
    grid-template-columns: 1fr;
  }

  .editorial-gallery--strip .editorial-gallery__grid {
    grid-auto-columns: 82vw;
  }

  .editorial-intro,
  .editorial-heading,
  .editorial-callout,
  .editorial-cta {
    --page-inset: 1.25rem;
  }
}

.visit-hero {
  color: #f8f4ed;
  background: var(--ink);
  border-bottom: 1px solid #393632;
}

.visit-hero__inner {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.visit-hero h1 {
  max-width: 9ch;
  margin-bottom: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(4.75rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.visit-hero p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 0;
  color: #d2ccc3;
  font-size: clamp(1.15rem, 1.65vw, 1.4rem);
  line-height: 1.35;
}

.visit-page__content {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.visit-page__layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: stretch;
}

.visit-page__panel {
  display: flex;
  flex-direction: column;
}

.visit-page__detail {
  padding-block: clamp(1.6rem, 3vw, 2.5rem);
  border-top: 1px solid #d9d3ca;
}

.visit-page__detail:first-child {
  padding-top: 0;
  border-top: 0;
}

.visit-page__detail address {
  font-style: normal;
  line-height: 1.45;
}

.visit-page__detail a {
  overflow-wrap: anywhere;
  text-underline-offset: 0.2em;
}

.visit-page__detail > p:not(.eyebrow),
.visit-page__detail > a:not(.visit-page__directions),
.visit-page__detail address {
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
}

.visit-page__detail .site-footer__hours {
  color: var(--ink);
}

.visit-page__detail .site-footer__hours dd {
  color: #554f49;
}

.visit-page__directions {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-top: 1rem;
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-page__email {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.visit-page__map {
  min-height: 36rem;
  overflow: hidden;
  background: #d2ccc3;
}

.visit-page__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 36rem;
  border: 0;
}

.visit-page .site-footer__channels {
  margin-top: auto;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #d9d3ca;
}

.visit-page .site-footer__channels-heading {
  color: var(--ink);
}

.visit-page .site-footer__channels a {
  border-color: #b9b2a8;
  color: var(--ink);
  background: transparent;
}

.error-page .content-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Interior pages */

.inner-page-body {
  background: var(--cream);
}

.site-header--simple {
  position: fixed;
  border-bottom-color: #302e2a;
  background: var(--ink);
}

.story-page {
  background: var(--cream);
}

html.inner-page.story-root {
  scroll-snap-type: y mandatory;
}

html.inner-page.story-root.story-snap-released {
  scroll-snap-type: none;
}

.story-page__feature {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  height: var(--home-panel-height);
  min-height: var(--home-panel-height);
  border-bottom: 1px solid #d9d3ca;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.story-page__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 6vw, 6.5rem);
}

.story-page__intro {
  width: min(100%, 44rem);
}

.story-page__eyebrow {
  margin-bottom: clamp(0.9rem, 1.2vw, 1.4rem);
  color: var(--red);
}

.story-page__title {
  max-width: 8ch;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 6.6vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.story-page__subtitle {
  margin: 0.14em 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.25vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.93;
}

.story-page__title-rule {
  display: block;
  width: 4rem;
  height: 1px;
  margin-top: clamp(1.8rem, 2.3vw, 2.75rem);
  background: var(--red);
}

.story-page__portrait {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #1a1714;
}

.story-page__portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.story-page__narrative-heading {
  background: #fffdfa;
  border-bottom: 1px solid #d9d3ca;
  scroll-snap-align: start;
}

.story-page__narrative-heading-inner {
  padding-block: clamp(4rem, 6vw, 6rem);
}

.story-page__narrative-heading .eyebrow {
  margin-bottom: 0.85rem;
  color: var(--red);
}

.story-page__narrative-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.5vw, 6.1rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.92;
  white-space: nowrap;
}

.story-page__narrative {
  background: var(--cream);
  border-bottom: 1px solid #d9d3ca;
}

.story-page__prose {
  width: min(100% - 2 * var(--page-inset), 70rem);
  margin-inline: auto;
  padding-block: clamp(4.5rem, 7vw, 7rem);
  font-size: clamp(1.14rem, 1.4vw, 1.34rem);
  line-height: 1.62;
}

.story-page__prose > p {
  max-width: 62rem;
  margin-bottom: clamp(1.7rem, 2.3vw, 2.6rem);
}

.story-page__prose > p:first-child {
  font-size: clamp(1.28rem, 1.65vw, 1.55rem);
  line-height: 1.52;
}

.story-page__accent {
  color: var(--red);
  font-weight: 500;
}

.story-page__bridge {
  position: relative;
  margin: clamp(2.5rem, 4vw, 3.5rem) 0;
  padding-left: 3.25rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.35vw, 2.2rem);
  font-style: italic;
  line-height: 1.1;
}

.story-page__bridge::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 2.25rem;
  height: 1px;
  background: rgb(155 16 26 / 55%);
  content: "";
}

.story-page__final strong {
  color: var(--red);
  font-weight: 500;
}

.story-page__closing-section {
  padding-block: clamp(4.5rem, 6.5vw, 6.5rem);
  background: #f1ede6;
}

.story-page__closing-inner {
  display: flex;
  align-items: center;
}

.story-page__closing {
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.5vw, 4.9rem);
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}

.story-page__closing::before {
  display: inline-block;
  width: 2.75rem;
  height: 1px;
  margin-right: 1.25rem;
  margin-bottom: 0.28em;
  background: var(--red);
  content: "";
}

.simple-footer {
  color: #fff;
  background: var(--ink);
}

.simple-footer__inner {
  display: grid;
  grid-template-columns: minmax(11rem, 1.15fr) minmax(13rem, 1fr) minmax(13rem, 0.9fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.simple-footer__tagline {
  margin: 1.2rem 0 0;
  color: #d2ccc3;
  font-size: 1.05rem;
}

.simple-footer__contact .eyebrow {
  margin-bottom: 0.9rem;
  color: #d2ccc3;
}

.simple-footer__hours .eyebrow {
  margin-bottom: 0.9rem;
  color: #d2ccc3;
}

.simple-footer__hours .site-footer__hours {
  color: #d2ccc3;
}

.simple-footer__hours .site-footer__hours dt {
  color: #fff;
}

.simple-footer__contact address,
.simple-footer__contact p,
.simple-footer__contact a {
  color: #d2ccc3;
  font-size: 1.05rem;
  line-height: 1.35;
}

.simple-footer__contact address {
  margin-bottom: 0.6rem;
  font-style: normal;
}

.simple-footer__contact p {
  margin: 0.6rem 0 0;
}

.simple-footer__contact a {
  color: #fff;
  text-underline-offset: 0.2em;
}

.simple-footer .site-footer__channels {
  margin-top: 0;
}

.simple-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem 1.8rem;
  border-top: 1px solid #4c4a47;
  color: #aaa49d;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.simple-footer__bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: #fff;
  text-decoration: none;
}

.simple-footer__bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

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

  .site-header__inner {
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem clamp(1.15rem, 3.5vw, 2.25rem);
  }

  .site-header__brand {
    width: clamp(8.15rem, 20vw, 9rem);
  }

  .menu-toggle {
    display: none;
    place-content: center;
    gap: 0.3rem;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.5rem;
    border: 1px solid #5a5650;
    border-radius: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
  }

  .js .menu-toggle {
    display: grid;
  }

  .menu-toggle span {
    display: block;
    width: 1.25rem;
    height: 1px;
    background: #fff;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0.25rem clamp(1.15rem, 3.5vw, 2.25rem);
    border-top: 1px solid #302e2a;
    border-bottom: 1px solid #302e2a;
    background: var(--ink);
    box-shadow: 0 0.8rem 1.4rem rgb(0 0 0 / 18%);
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    min-height: 3rem;
    padding: 0.8rem 0.1rem;
    border-bottom: 0;
    color: #ece8e1;
    font-size: 0.74rem;
  }

  .site-nav a + a {
    border-top: 1px solid #302e2a;
  }

  .site-nav a::after {
    right: auto;
    bottom: 0.72rem;
    width: 2rem;
  }

  .story__content {
    padding-inline: 2.5rem;
  }

  .story h2 {
    font-size: clamp(3rem, 6vw, 4rem);
  }

  .newsletter__inner {
    gap: 2rem;
  }

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

  .simple-footer .site-footer__channels {
    grid-column: auto;
  }

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

  .story-page__copy {
    padding-inline: clamp(2.25rem, 4.2vw, 3rem);
  }

  .story-page__title {
    font-size: clamp(3.8rem, 6.4vw, 5rem);
  }

  .story-page__subtitle {
    font-size: clamp(3rem, 5vw, 4rem);
  }

  .story-page__narrative-heading h2 {
    font-size: clamp(3.4rem, 5.4vw, 4.8rem);
  }

  .story-page__prose {
    font-size: clamp(1.08rem, 1.75vw, 1.3rem);
  }
}

@media (max-width: 820px) {
  html.inner-page.story-root,
  html.inner-page.story-root.story-snap-released {
    scroll-snap-type: y proximity;
  }

  .story-page__feature {
    height: auto;
    min-height: 0;
    scroll-snap-stop: normal;
  }

  .story-page__narrative-heading h2,
  .story-page__closing {
    white-space: normal;
  }

  .content-feature,
  .content-feature--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .content-feature__media,
  .content-feature--reverse .content-feature__media {
    order: 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .content-feature__copy,
  .content-feature--reverse .content-feature__copy {
    order: 2;
    padding: 3.5rem var(--page-inset) 4.5rem;
  }

  .content-index--editorial {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .visit-page__layout {
    grid-template-columns: 1fr;
  }

  .visit-page__map,
  .visit-page__map iframe {
    min-height: 26rem;
  }

  .editorial-split {
    grid-template-columns: 1fr;
  }

  .editorial-split__media {
    min-height: 20rem;
  }

  .editorial-split--image-right .editorial-split__media,
  .editorial-split--image-right .editorial-split__copy {
    order: initial;
  }

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

  .editorial-gallery__grid img,
  .editorial-gallery__grid img:first-child:nth-last-child(3) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    max-height: none;
  }

  .latest-posts__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .content-grid--home {
    border-top: 1px solid #d9d3ca;
  }

  .content-grid--home .content-card,
  .content-grid--home .content-card:first-child,
  .content-grid--home .content-card:last-child {
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid #d9d3ca;
  }

  .content-grid--home .content-card:last-child {
    border-bottom: 0;
  }

  .visit-page__details {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-snap-type: y proximity;
  }

  .home-page .site-footer {
    display: flex;
    height: auto;
    min-height: 0;
  }

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

  .daypart {
    width: min(100%, 36rem);
    margin-inline: auto;
  }

  .daypart img {
    max-height: 28rem;
  }

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

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

@media (max-height: 700px) and (min-width: 821px) {
  html {
    scroll-snap-type: y proximity;
  }

  html.inner-page.story-root,
  html.inner-page.story-root.story-snap-released {
    scroll-snap-type: y proximity;
  }

  .home-page .site-footer {
    display: flex;
    height: auto;
    min-height: 0;
  }

  main > section,
  .site-footer {
    scroll-snap-stop: normal;
  }
}

@media (max-width: 680px) {
  .whats-on-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .whats-on-hero__copy {
    min-height: 62vh;
    padding: 4rem var(--page-inset);
  }

  .whats-on-hero__copy h1 {
    font-size: clamp(4.25rem, 18vw, 6rem);
  }

  .whats-on-hero__media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .whats-on-events__heading-row h2,
  .whats-on-stories__heading-row h2 {
    font-size: clamp(3.5rem, 14vw, 4.8rem);
  }

  .event-row,
  .event-row--no-image,
  .story-row,
  .story-row--no-image {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-row__date,
  .story-row__date {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.65rem;
    align-items: baseline;
    min-height: 0;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid rgb(152 15 24 / 35%);
  }

  .event-row__day,
  .story-row__day {
    margin: 0;
    font-size: 2.8rem;
  }

  .event-row__media,
  .story-row__media {
    grid-column: 1;
    width: 100%;
  }

  html {
    scroll-snap-type: y proximity;
  }

  .hero {
    align-items: flex-end;
    padding-block: 9rem 3rem;
    background-image: linear-gradient(90deg, rgb(250 248 243 / 97%) 0%, rgb(250 248 243 / 86%) 48%, rgb(250 248 243 / 18%) 100%),
      url("../images/hero-section-background.webp");
    background-position: 61% center;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 12vw, 5.25rem);
  }

  .hero p {
    max-width: 21rem;
  }

  .dayparts {
    padding-block: 3.5rem 6rem;
  }

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

  .daypart img {
    max-height: 24rem;
  }

  .daypart h3 {
    max-width: 26rem;
    font-size: clamp(2.75rem, 9vw, 3.4rem);
  }

  .menu-note {
    margin-top: 2rem;
  }

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

  .story__image {
    min-height: 0;
    aspect-ratio: 1;
  }

  .story__image img {
    position: static;
    height: auto;
  }

  .story__content {
    min-height: 26rem;
    padding: 3.5rem var(--page-inset) 6rem;
  }

  .story h2 {
    font-size: clamp(3.4rem, 11vw, 4.4rem);
  }

  .events {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    background: var(--ink);
  }

  .events::after {
    display: none;
  }

  .events__photo {
    position: static;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  .events__inner {
    padding-block: 3rem 6rem;
  }

  .events h2 {
    font-size: clamp(3.2rem, 11vw, 4.3rem);
  }

  .newsletter {
    padding-block: 3.5rem 6rem;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2rem 3.5rem;
  }

  .site-footer__map {
    height: clamp(19rem, 45vh, 25rem);
  }

  .story-page__feature {
    display: flex;
    flex-direction: column;
  }

  .story-page__copy {
    width: 100%;
    min-height: 0;
    padding: 3.5rem var(--page-inset) 3.25rem;
  }

  .story-page__title {
    max-width: 8ch;
    font-size: clamp(3.45rem, 15vw, 4.6rem);
  }

  .story-page__subtitle {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .story-page__portrait {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .story-page__narrative-heading-inner {
    padding-block: 3.5rem;
  }

  .story-page__narrative-heading h2 {
    font-size: clamp(3rem, 12vw, 4rem);
    white-space: normal;
  }

  .story-page__prose {
    width: min(100% - 2 * var(--page-inset), 35rem);
    padding-block: 4rem;
    font-size: 1.1rem;
  }

  .story-page__bridge {
    padding-left: 2.75rem;
    font-size: 1.55rem;
  }

  .story-page__closing-section {
    padding-block: 4rem;
  }

  .story-page__closing {
    font-size: clamp(2.5rem, 10vw, 3.4rem);
    white-space: normal;
  }

  .story-page__closing::before {
    display: block;
    margin: 0 0 1rem;
  }

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

  .simple-footer .site-footer__channels {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .button--red {
    width: 100%;
    max-width: 21rem;
    padding-inline: 0.75rem;
  }

  .newsletter__controls {
    gap: 0.6rem;
  }

  .newsletter__controls button {
    min-width: 6.8rem;
    padding-inline: 0.5rem;
    font-size: 0.88rem;
  }

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

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

  .site-nav a,
  .site-nav a::after,
  .button {
    transition: none;
  }

  .site-footer__channels a {
    transition: none;
  }

  .section-up {
    transition: none;
  }
}
