:root {
  --ink: #18241f;
  --forest: #163b32;
  --forest-deep: #0f2c25;
  --burgundy: #7a2938;
  --cream: #f5efe3;
  --paper: #fffdf8;
  --sand: #dfd1ba;
  --brass: #b38a43;
  --muted: #686f69;
  --line: rgba(24, 36, 31, 0.16);
  --shadow: 0 24px 60px rgba(15, 44, 37, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest-deep);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 44, 37, 0.96);
  color: var(--cream);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--cream);
  text-decoration: none;
}

.brand__mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
}

.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.brand__since {
  margin-top: 5px;
  color: #d6b673;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-navigation a {
  position: relative;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--sand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--cream);
  color: var(--forest-deep);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  background: var(--forest-deep);
  color: white;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  background:
    linear-gradient(
      90deg,
      rgba(8, 28, 23, 0.88) 0%,
      rgba(8, 28, 23, 0.63) 43%,
      rgba(8, 28, 23, 0.12) 75%
    ),
    linear-gradient(0deg, rgba(8, 28, 23, 0.38), transparent 48%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(760px, calc(100vh - 78px));
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 80px;
  padding-block: 96px 120px;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #eadfc9;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
}

h1 em {
  color: #eadfc9;
  font-size: 0.72em;
  font-weight: 400;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.75rem;
}

.hero__lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button--cream {
  background: var(--cream);
  color: var(--forest-deep);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

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

.button--dark {
  background: var(--forest-deep);
  color: white;
}

.button--outline {
  border-color: var(--forest-deep);
  color: var(--forest-deep);
}

.button--outline:hover {
  background: var(--forest-deep);
  color: white;
}

.hero-card {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50% 50% 16px 16px / 16% 16% 16px 16px;
  background: rgba(15, 44, 37, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card p {
  margin: 0;
}

.hero-card__kicker {
  margin-bottom: 18px !important;
  color: #eadfc9;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.hero-card__rule {
  width: 44px;
  height: 1px;
  margin: 18px auto;
  background: var(--brass);
}

.hero-card__note {
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.station-callout {
  position: relative;
  z-index: 4;
  display: grid;
  margin-top: -46px;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 28px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--burgundy);
  box-shadow: var(--shadow);
  color: white;
}

.station-callout__distance {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
}

.station-callout__distance span {
  font-family: var(--serif);
  font-size: 3.6rem;
  letter-spacing: -0.06em;
}

.station-callout__distance small {
  margin-top: 4px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.station-callout h2 {
  margin: 0 0 4px;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
}

.station-callout p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.station-callout .eyebrow {
  margin-bottom: 4px;
  color: #f0cfb2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--light {
  flex-shrink: 0;
  color: white;
}

.section {
  padding-block: clamp(88px, 11vw, 150px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin-inline: auto;
  color: var(--muted);
}

.section-heading--left {
  max-width: 100%;
  margin-inline: 0;
  text-align: left;
}

.section-heading--light {
  color: white;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.prose {
  color: var(--muted);
}

.prose p {
  margin: 0 0 22px;
}

.lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.48;
}

.photo-frame {
  position: relative;
  margin: 0;
}

.photo-frame--wide {
  width: 100%;
  max-width: 600px;
  justify-self: end;
}

.photo-frame::before {
  position: absolute;
  inset: -16px 18px 18px -16px;
  z-index: -1;
  border: 1px solid var(--brass);
  content: "";
}

.photo-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.photo-frame--wide img {
  min-height: 350px;
  max-height: 420px;
}

.photo-frame figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  max-width: 300px;
  padding: 10px 14px;
  background: rgba(15, 44, 37, 0.92);
  color: white;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
}

.occasion-section {
  overflow: hidden;
  background: var(--cream);
}

.occasion-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 0;
}

.occasion-photo {
  position: relative;
  min-height: 580px;
}

.occasion-photo::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  content: "";
  pointer-events: none;
}

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

.occasion-copy {
  position: relative;
  z-index: 2;
  margin-left: -54px;
  padding: clamp(42px, 6vw, 78px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.occasion-copy p:not(.eyebrow) {
  color: var(--muted);
}

.occasion-copy .lead {
  color: var(--ink);
}

.occasion-copy .button-row {
  margin-top: 30px;
}

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

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

.menu-card {
  align-self: start;
  border: 1px solid var(--line);
  background: white;
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.menu-card[open] {
  border-color: rgba(122, 41, 56, 0.35);
  box-shadow: 0 16px 38px rgba(15, 44, 37, 0.08);
}

.menu-card summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.5rem;
  list-style: none;
}

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

.menu-card__mark {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-card__mark::before,
.menu-card__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: var(--burgundy);
  content: "";
  transform: translate(-50%, -50%);
}

.menu-card__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.menu-card[open] .menu-card__mark::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.menu-card__content {
  padding: 0 26px 26px;
  border-top: 1px solid var(--line);
}

.menu-card__content h3 {
  margin: 28px 0 14px;
  color: var(--burgundy);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-card__content p {
  position: relative;
  display: grid;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 20px;
  padding: 13px 0;
  border-bottom: 1px dotted rgba(24, 36, 31, 0.2);
  line-height: 1.45;
}

.menu-card__content p:last-child {
  border-bottom: 0;
}

.menu-card__content small {
  display: block;
  grid-column: 1;
  color: var(--muted);
  font-size: 0.8rem;
}

.menu-card__content p > span {
  grid-column: 2;
  grid-row: 1;
  color: var(--burgundy);
  font-weight: 700;
  white-space: nowrap;
}

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

.gallery-grid {
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #09221c;
  cursor: zoom-in;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 44, 37, 0.26);
  color: white;
  content: "+";
  font-family: var(--serif);
  font-size: 3rem;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-modal {
  width: min(1100px, calc(100% - 30px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
}

.gallery-modal::backdrop {
  background: rgba(5, 15, 12, 0.92);
  backdrop-filter: blur(8px);
}

.gallery-modal figure {
  margin: 0;
}

.gallery-modal figure img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.gallery-modal figcaption {
  padding-top: 12px;
  text-align: center;
}

.gallery-modal__close,
.gallery-modal__prev,
.gallery-modal__next {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(15, 44, 37, 0.8);
  color: white;
  cursor: pointer;
  line-height: 1;
}

.gallery-modal__close {
  top: 22px;
  right: 22px;
  font-size: 2rem;
}

.gallery-modal__prev,
.gallery-modal__next {
  top: 50%;
  font-family: var(--serif);
  font-size: 2.4rem;
  transform: translateY(-50%);
}

.gallery-modal__prev {
  left: 22px;
}

.gallery-modal__next {
  right: 22px;
}

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

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

.contact-card {
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  background: white;
}

.contact-card--accent {
  background: var(--burgundy);
  color: white;
}

.contact-card__number {
  margin: 0 0 48px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.contact-card h3 {
  margin-bottom: 28px;
  font-size: 2.1rem;
}

.contact-card p {
  color: var(--muted);
}

.contact-card--accent p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card a:not(.text-link) {
  display: block;
  margin-bottom: 8px;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-card__strong {
  color: inherit !important;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dotted var(--line);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dd {
  font-weight: 700;
  text-align: right;
}

.site-footer {
  padding-block: 56px;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 38px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  text-decoration: none;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: -0.035em;
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer__links a,
.site-footer__legal a {
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__legal a:hover {
  color: white;
}

.site-footer__legal {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-align: right;
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest-deep);
  color: white;
}

.page-hero__image,
.page-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero__image {
  object-fit: cover;
}

.page-hero--about .page-hero__image {
  object-position: 72% 32%;
}

.page-hero--about {
  min-height: 640px;
}

.page-hero__veil {
  background: linear-gradient(
    90deg,
    rgba(8, 28, 23, 0.86),
    rgba(8, 28, 23, 0.16)
  );
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 830px;
  margin-inline: max(20px, calc((100% - 1180px) / 2));
  padding-block: 100px 78px;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

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

.story-copy--single {
  width: min(100%, 860px);
  margin-inline: auto;
}

.story-copy p {
  margin: 0 0 24px;
  color: var(--muted);
}

.story-copy .lead {
  color: var(--ink);
}

.pullquote {
  margin: 44px 0;
  padding: 32px 0 32px 34px;
  border-left: 2px solid var(--brass);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  line-height: 1.2;
}

.history-strip {
  background: var(--cream);
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.history-card {
  padding: 44px 32px;
  background: var(--paper);
  text-align: center;
}

.history-card strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1;
}

.history-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inner-cta {
  padding: 60px;
  background: var(--burgundy);
  color: white;
  text-align: center;
}

.inner-cta h2 {
  margin-bottom: 14px;
}

.inner-cta p {
  max-width: 600px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.legal-section {
  max-width: 860px;
}

.legal-section h1 {
  color: var(--forest-deep);
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.legal-section h2 {
  margin-top: 50px;
  font-size: 2rem;
}

.legal-section h3 {
  margin-top: 36px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.legal-section p,
.legal-section > div {
  color: var(--muted);
}

@media (max-width: 980px) {
  .main-navigation {
    gap: 16px;
  }

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

  .hero-card {
    display: none;
  }

  .welcome-grid,
  .occasion-section__inner {
    grid-template-columns: 1fr;
  }

  .occasion-photo {
    min-height: 500px;
  }

  .occasion-copy {
    max-width: calc(100% - 60px);
    margin: -72px auto 0;
  }

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

  .contact-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand__name {
    font-size: 1.35rem;
  }

  .brand__since {
    font-size: 0.48rem;
  }

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 70px);
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 28px;
    background: var(--forest-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .main-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-navigation a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .main-navigation a::after {
    display: none;
  }

  .main-navigation .nav-cta {
    margin-top: 18px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    text-align: center;
  }

  .hero,
  .hero__inner {
    min-height: calc(100svh - 70px);
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__veil {
    background: linear-gradient(
      90deg,
      rgba(8, 28, 23, 0.88),
      rgba(8, 28, 23, 0.32)
    );
  }

  .hero__inner {
    padding-block: 84px 100px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .station-callout {
    margin-top: -34px;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 22px;
  }

  .station-callout__distance {
    min-height: 86px;
  }

  .station-callout__distance span {
    font-size: 2.8rem;
  }

  .station-callout .text-link {
    grid-column: 2;
  }

  .section {
    padding-block: 86px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .welcome-grid {
    gap: 54px;
  }

  .photo-frame img {
    min-height: 300px;
  }

  .photo-frame--wide {
    max-width: none;
    justify-self: stretch;
  }

  .occasion-photo {
    min-height: 380px;
  }

  .occasion-copy {
    max-width: calc(100% - 28px);
    margin-top: -42px;
    padding: 38px 26px;
  }

  .menu-grid,
  .contact-grid,
  .story-layout,
  .history-grid {
    grid-template-columns: 1fr;
  }

  .contact-card:last-child {
    grid-column: auto;
  }

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

  .gallery-item--large {
    grid-row: span 1;
  }

  .gallery-modal__prev {
    left: 8px;
  }

  .gallery-modal__next {
    right: 8px;
  }

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

  .site-footer__links {
    justify-content: flex-start;
  }

  .site-footer__legal {
    grid-column: auto;
    text-align: left;
  }

  .page-hero__inner {
    margin-inline: 20px;
  }

  .page-hero--about .page-hero__image {
    object-position: 73% top;
  }

  .page-hero--about {
    min-height: 500px;
  }

  .inner-cta {
    padding: 48px 24px;
  }
}

@media (max-width: 520px) {
  .button-row,
  .button {
    width: 100%;
  }

  .station-callout {
    grid-template-columns: 1fr;
  }

  .station-callout__distance {
    min-height: 0;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    gap: 8px;
    border-right: 0;
  }

  .station-callout .text-link {
    grid-column: 1;
  }

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

  .gallery-item,
  .gallery-item--large,
  .gallery-item--wide {
    grid-column: auto;
  }

  .gallery-item:nth-child(n + 4) {
    display: none;
  }

  .menu-card summary {
    font-size: 1.25rem;
  }

  .menu-card__content p {
    grid-template-columns: 1fr;
  }

  .menu-card__content p > span {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
