:root {
  --pine-950: #0b261e;
  --pine-900: #12392d;
  --pine-800: #1a4b3b;
  --pine-600: #2f6a54;
  --cream: #f7f0df;
  --paper: #fffdf7;
  --sand: #ded1b9;
  --rust: #bb5a33;
  --rust-dark: #8e3d23;
  --ink: #18221e;
  --muted: #65736c;
  --line: rgba(18, 57, 45, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 70px rgba(12, 40, 31, 0.17);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
textarea {
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--rust);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: auto;
  padding: 18px clamp(22px, 5vw, 76px);
  color: white;
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  max-width: none;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(11, 38, 30, 0.96);
  box-shadow: 0 10px 30px rgba(5, 24, 17, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: block;
  width: 26px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.22));
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a:not(.nav-call) {
  position: relative;
}

.site-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-call {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-call:hover,
.nav-call:focus-visible {
  color: var(--pine-950);
  background: white;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: white;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: center;
  padding: 130px clamp(24px, 7vw, 110px) 90px;
  color: white;
  background:
    radial-gradient(circle at 16% 20%, rgba(75, 122, 94, 0.5), transparent 34%),
    linear-gradient(138deg, #183f32 0%, #0b261e 68%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #e7c994;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(60px, 7.2vw, 110px);
}

.hero h1 em {
  color: #d8a978;
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.55vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: white;
  background: var(--rust);
  box-shadow: 0 13px 34px rgba(187, 90, 51, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c86840;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.today-card {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 35px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(6, 29, 21, 0.46);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f0be5c;
  box-shadow: 0 0 0 5px rgba(240, 190, 92, 0.14);
}

.status-dot.is-open {
  background: #87c69f;
  box-shadow: 0 0 0 5px rgba(135, 198, 159, 0.14);
}

.status-dot.is-closed {
  background: #d88968;
  box-shadow: 0 0 0 5px rgba(216, 137, 104, 0.14);
}

.today-card div {
  display: grid;
}

.today-card strong {
  font-size: 13px;
}

.today-card span:not(.status-dot) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.hero-visual {
  width: min(100%, 690px);
  justify-self: end;
  margin-top: 18px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 220px 24px 24px 24px;
  box-shadow: 0 40px 80px rgba(2, 20, 13, 0.46);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 35, 26, 0.28), transparent 55%);
  content: "";
}

.image-frame img {
  aspect-ratio: 1.48;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.82) contrast(1.04);
}

.heritage-stamp {
  position: absolute;
  right: -28px;
  bottom: 46px;
  z-index: 2;
  display: grid;
  width: 124px;
  height: 124px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  color: var(--pine-950);
  background: #e9c795;
  text-align: center;
  transform: rotate(5deg);
}

.heritage-stamp::before,
.heritage-stamp::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(11, 38, 30, 0.3);
  border-radius: inherit;
  content: "";
}

.heritage-stamp::after {
  inset: 12px;
}

.heritage-stamp span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.heritage-stamp strong {
  margin: 2px 0;
  font-family: var(--serif);
  font-size: 31px;
}

.image-note {
  position: absolute;
  bottom: -14px;
  left: -45px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.35;
  background: var(--pine-950);
}

.ridge {
  position: absolute;
  right: -8%;
  bottom: -130px;
  left: -8%;
  height: 260px;
  opacity: 0.19;
  background: #6f9a78;
  clip-path: polygon(0 60%, 10% 36%, 21% 65%, 34% 18%, 44% 50%, 55% 28%, 68% 65%, 80% 25%, 91% 55%, 100% 32%, 100% 100%, 0 100%);
}

.ridge-two {
  bottom: -175px;
  opacity: 0.28;
  background: #061b14;
  transform: scaleX(-1);
}

.section {
  padding: clamp(78px, 9vw, 135px) clamp(24px, 7vw, 110px);
}

.find-it {
  background:
    radial-gradient(circle at 94% 8%, rgba(226, 200, 155, 0.34), transparent 26%),
    var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  max-width: 1420px;
  margin: 0 auto 48px;
}

.find-it .eyebrow {
  color: var(--rust-dark);
}

.section h2 {
  font-size: clamp(50px, 6vw, 90px);
}

.section-heading > p {
  max-width: 450px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
}

.offering-grid {
  display: grid;
  max-width: 1420px;
  margin: auto;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.offering-card {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  grid-column: span 4;
  align-items: flex-end;
  border-radius: 20px;
  color: white;
  background: var(--pine-900);
  box-shadow: 0 15px 38px rgba(23, 58, 46, 0.1);
  transition: opacity 240ms ease, transform 240ms ease;
}

.offering-card[hidden] {
  display: none;
}

.offering-card:hover {
  transform: translateY(-5px);
}

.offering-card-featured {
  grid-column: span 8;
}

.offering-card > img:not(.offering-logo),
.card-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.offering-card > img:not(.offering-logo) {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.offering-card:hover > img:not(.offering-logo) {
  transform: scale(1.035);
}

.offering-card-gifts > img {
  object-position: 66% center;
}

.offering-card .offering-logo {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(5, 22, 16, 0.28);
}

.card-shade {
  background: linear-gradient(180deg, rgba(5, 22, 16, 0.02) 15%, rgba(5, 22, 16, 0.86) 95%);
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
}

.card-number {
  margin-top: 6px;
  color: #e7c994;
  font-family: var(--serif);
  font-size: 13px;
}

.card-kicker {
  margin: 0 0 7px;
  color: #e7c994;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offering-card h3,
.contact-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.05;
}

.offering-card p:not(.card-kicker) {
  max-width: 500px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.offering-card-simple {
  display: grid;
  min-height: 280px;
  align-content: space-between;
  padding: 30px;
  color: var(--pine-900);
  background: #e7d9c0;
}

.offering-card-simple:nth-last-child(1) {
  color: white;
  background: var(--rust);
}

.simple-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.75;
}

.simple-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.offering-card-simple .card-kicker,
.offering-card-simple p:not(.card-kicker) {
  color: currentColor;
  opacity: 0.72;
}

.availability {
  display: flex;
  max-width: 1420px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 27px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.availability p {
  margin: 0;
  color: var(--muted);
}

.availability a {
  font-weight: 800;
}

.availability a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 160ms ease;
}

.availability a:hover span {
  transform: translateX(4px);
}

.visit {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 16% 30%, rgba(65, 111, 89, 0.55), transparent 28%),
    linear-gradient(140deg, var(--pine-900), var(--pine-950));
}

.visit::before {
  position: absolute;
  top: -280px;
  right: -240px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.015);
  content: "";
}

.visit-intro,
.visit-panel,
.site-footer {
  position: relative;
  z-index: 2;
  max-width: 1420px;
  margin-right: auto;
  margin-left: auto;
}

.eyebrow-light {
  color: #e7c994;
}

.visit-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.55fr);
  gap: 60px;
  align-items: end;
}

.visit-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.visit-intro p:last-child {
  max-width: 430px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.visit-panel {
  display: grid;
  margin-top: 62px;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 42px;
  color: var(--ink);
}

.detail-row {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 5px 30px;
  border-right: 1px solid var(--line);
}

.detail-row:first-child {
  padding-left: 0;
}

.detail-row:last-child {
  padding-right: 0;
  border: 0;
}

.detail-label {
  margin-bottom: 30px;
  color: var(--rust-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-row strong {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1.35;
}

.detail-row a,
.detail-row > span:last-child {
  margin-top: auto;
  color: var(--muted);
  font-size: 11px;
}

.detail-row a {
  color: var(--pine-800);
  font-weight: 800;
}

.contact-card {
  padding: 46px;
  background: var(--rust);
}

.contact-card > p:not(.card-kicker) {
  max-width: 360px;
  margin: 17px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.button-light {
  width: 100%;
  color: var(--pine-900);
  background: white;
}

.button-light svg {
  width: 20px;
}

.text-button {
  width: 100%;
  margin-top: 18px;
  padding: 6px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quick-email {
  display: grid;
  gap: 12px;
  margin-top: 15px;
}

.quick-email[hidden] {
  display: none;
}

.quick-email label,
.quick-email label span {
  display: grid;
}

.quick-email label span {
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-email textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  outline: none;
  color: white;
  background: rgba(82, 22, 8, 0.18);
  padding: 12px;
}

.quick-email textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quick-email textarea:focus {
  border-color: white;
}

.button-outline-light {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.58);
  color: white;
  background: transparent;
  cursor: pointer;
}

.form-note {
  min-height: 1em;
  margin: 0 !important;
  color: white !important;
  font-size: 10px !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: center;
  margin-top: 90px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: white;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.footer-brand span:not(.brand-mark) {
  font-size: 9px;
}

.brand-mark-light {
  width: 31px;
  height: 76px;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.28));
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: white;
}

.site-footer > p {
  margin: 0;
  text-align: right;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.offering-card:nth-child(2) { transition-delay: 60ms; }
.offering-card:nth-child(3) { transition-delay: 90ms; }
.offering-card:nth-child(4) { transition-delay: 120ms; }
.offering-card:nth-child(5) { transition-delay: 150ms; }
.offering-card:nth-child(6) { transition-delay: 180ms; }

@media (max-width: 1080px) {
  .hero {
    min-height: 720px;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.7fr);
  }

  .heritage-stamp {
    right: -10px;
    width: 105px;
    height: 105px;
  }

  .image-note {
    left: -15px;
  }

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

  .contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }

  .contact-card .card-kicker,
  .contact-card h3,
  .contact-card > p {
    grid-column: 1;
  }

  .contact-card .button-light,
  .contact-card .text-button,
  .contact-card .quick-email {
    grid-column: 2;
  }

  .contact-card .button-light {
    grid-row: 1 / span 2;
    align-self: end;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    padding: 11px 20px;
    background: rgba(11, 38, 30, 0.82);
    backdrop-filter: blur(12px);
  }

  .brand-mark {
    width: 23px;
    height: 56px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(86vw, 380px);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    color: white;
    background: var(--pine-950);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
  }

  .site-nav .nav-call {
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-align: center;
  }

  .menu-open .menu-toggle {
    position: fixed;
    z-index: 50;
    right: 20px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 130px 24px 100px;
  }

  .hero-visual {
    width: min(100%, 690px);
    justify-self: center;
    margin-top: 25px;
  }

  .hero h1 {
    font-size: clamp(56px, 15vw, 84px);
  }

  .section-heading,
  .visit-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visit-intro .eyebrow {
    margin-bottom: 0;
  }

  .offering-card,
  .offering-card-featured {
    min-height: 340px;
    grid-column: span 6;
  }

  .offering-card-simple {
    min-height: 260px;
  }

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

  .site-footer > p {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 64px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 115px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .today-card {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
  }

  .heritage-stamp {
    right: -12px;
    bottom: 48px;
    width: 100px;
    height: 100px;
  }

  .image-note {
    bottom: -23px;
    left: -12px;
  }

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section h2 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .offering-grid {
    display: flex;
    margin-right: -20px;
    overflow-x: auto;
    padding: 0 20px 18px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .offering-grid::-webkit-scrollbar {
    display: none;
  }

  .offering-card,
  .offering-card-featured {
    min-width: min(82vw, 355px);
    min-height: 420px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .offering-card-simple {
    min-height: 320px;
  }

  .offering-card .offering-logo {
    top: 18px;
    right: 18px;
    width: 100px;
    height: 100px;
  }

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

  .visit-panel {
    margin-right: -4px;
    margin-left: -4px;
  }

  .visit-details {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .detail-row,
  .detail-row:first-child,
  .detail-row:last-child {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-row:last-child {
    border: 0;
  }

  .detail-label {
    margin-bottom: 12px;
  }

  .detail-row a,
  .detail-row > span:last-child {
    margin-top: 18px;
  }

  .contact-card {
    display: block;
    padding: 34px 28px;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 65px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .mobile-actions {
    position: fixed;
    z-index: 55;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 7px;
    background: var(--paper);
    box-shadow: 0 -10px 28px rgba(9, 32, 24, 0.16);
  }

  .mobile-actions a {
    padding: 12px;
    color: var(--pine-900);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  .mobile-actions a:last-child {
    border-radius: 999px;
    color: white;
    background: var(--rust);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
