:root {
  --bg: #0d0d0f;
  --surface: #151517;
  --surface-alt: #1d1d20;
  --text: #f0f0f2;
  --text-muted: #a8a8ae;
  --border: rgba(240, 240, 242, 0.15);
  --accent: #c7ccd4;
  --accent-2: #9a8658;
  --secondary: #222226;
  --on-accent: #111113;
  --deep: #08080a;
  --radius: 6px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Baskerville, 'Baskerville Old Face', Georgia, serif;
  --font-body: 'Segoe UI', Arial, sans-serif;
  --content-width: 1120px;
  --section-pad: 88px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-2);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.16;
}

h2 {
  font-size: clamp(24px, 3.8vw, 36px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.4em;
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--secondary);
  color: var(--text);
  border-color: var(--accent);
}

.btn--full {
  width: 100%;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px 12px;
}

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

.brand-lockup:hover {
  color: var(--accent);
}

.brand-lockup img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.header-nav-row {
  border-top: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 8px 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.nav-list a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-list a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent-2);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 8px 0 16px;
    gap: 0;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-list a[aria-current="page"] {
    border-bottom-color: var(--border);
    color: var(--accent-2);
  }
}

.site-footer {
  background: var(--surface-alt);
  padding: 64px 0 0;
  margin-top: auto;
}

.footer-independence {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 720px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-group-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent-2);
  display: inline-block;
}

.footer-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-group li {
  margin-bottom: 8px;
}

.footer-group a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-blurb {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
}

.footer-email {
  font-size: 14px;
}

.footer-adults {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-top-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.footer-top-row a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-top-row a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-consent-wrap {
  display: flex;
  justify-content: center;
}

.footer-consent-wrap button,
[data-cookie-settings="1"] {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px;
}

.footer-consent-wrap button:hover,
[data-cookie-settings="1"]:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.page-main {
  min-height: 50vh;
}

.section {
  padding: var(--section-pad) 0;
}

.section--bg {
  background: var(--bg);
}

.section--alt {
  background: var(--surface-alt);
}

.section--surface {
  background: var(--surface);
}

.page-title-block {
  padding: 72px 0 48px;
  background: var(--bg);
}

.page-title-block .container {
  max-width: var(--content-width);
}

.hero-split {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .kicker {
  margin-bottom: 16px;
}

.hero-copy h1 {
  margin-bottom: 20px;
}

.hero-copy p {
  color: var(--text-muted);
  max-width: 42ch;
}

.hero-independence {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.5;
}

.hero-frame {
  position: relative;
  padding: 8px;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  transform: translate(10px, 10px);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-frame img {
    aspect-ratio: 4 / 3;
  }
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.cat-card__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cat-card__panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
}

.cat-card__panel h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin-bottom: 10px;
}

.cat-card__panel p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cat-card__panel a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-2);
}

.cat-card__panel a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-card,
  .cat-card__img {
    min-height: 360px;
  }
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip figcaption {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .photo-strip {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .photo-strip figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .photo-strip img {
    height: 180px;
  }
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
}

.mission-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.mission-grid h2 {
  margin-bottom: 16px;
}

.mission-grid p {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-grid::before {
    display: none;
  }
}

.closing-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.closing-cta h2 {
  margin-bottom: 16px;
}

.closing-cta p {
  color: var(--text-muted);
}

.closing-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .closing-cta {
    grid-template-columns: 1fr;
  }
}

.testimonials-band {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
}

.testimonials-band h2 {
  margin-bottom: 40px;
}

.testimonial {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.testimonial:first-of-type {
  border-top: 1px solid var(--border);
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 12px;
  font-style: normal;
}

.testimonial cite {
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 2px solid var(--bg);
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-muted);
  margin-bottom: 0.6em;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.venue-grid--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.venue-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.venue-card__media {
  position: relative;
}

.venue-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-card__media--square img {
  aspect-ratio: 1 / 1;
}

.venue-card__name-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: rgba(8, 8, 10, 0.72);
}

.venue-card__name-overlay h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin: 0;
}

.venue-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.venue-card__body--flush {
  padding: 28px 24px 24px;
}

.venue-card__meta {
  font-size: 13px;
  color: var(--text-muted);
}

.venue-card__title-line {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
}

.venue-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  flex: 1;
}

.venue-card__actions {
  margin-top: auto;
  padding-top: 8px;
}

.catalog-close {
  padding: 48px 0 var(--section-pad);
  background: var(--surface-alt);
}

.catalog-close p {
  color: var(--text-muted);
  max-width: 60ch;
}

@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .venue-grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }
}

.editorial-wrap {
  padding: 72px 0 var(--section-pad);
  background: var(--bg);
}

.editorial-col {
  max-width: 70ch;
  margin: 0 auto;
}

.editorial-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-section:first-of-type {
  padding-top: 0;
}

.editorial-section:last-of-type {
  border-bottom: none;
}

.editorial-section h2 {
  margin-bottom: 20px;
}

.editorial-section p {
  color: var(--text-muted);
}

.how-lead {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 56px;
  max-width: 100%;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.how-block h2 {
  margin-bottom: 16px;
  font-size: clamp(20px, 2.4vw, 26px);
}

.how-block p {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 var(--section-pad);
}

.contact-intro p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-email {
  font-size: 16px;
}

.contact-form {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-agree input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.form-agree label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-agree label a {
  color: var(--accent);
}

.form-error {
  display: none;
  font-size: 13px;
  color: #d4a0a0;
  margin-top: 8px;
}

.form-error.is-visible {
  display: block;
}

.form-submit-error {
  display: none;
  font-size: 14px;
  color: #d4a0a0;
  margin-bottom: 16px;
}

.form-submit-error.is-visible {
  display: block;
}

.contact-confirm {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: var(--radius);
}

.contact-confirm h2 {
  margin-bottom: 16px;
}

.contact-confirm p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-confirm .reference {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent-2);
  margin: 20px 0;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.legal-body {
  padding: 72px 0 var(--section-pad);
  max-width: 70ch;
}

.legal-body h1 {
  margin-bottom: 12px;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-body h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: clamp(20px, 2.4vw, 26px);
}

.legal-body h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.sitemap-body {
  padding: 72px 0 var(--section-pad);
}

.sitemap-body > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 60ch;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  font-size: 15px;
  line-height: 2;
}

.sitemap-links a {
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.sitemap-links a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

.sitemap-sep {
  color: var(--text-muted);
  margin: 0 12px;
  user-select: none;
}

.consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  max-width: 400px;
  width: calc(100% - 48px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  padding-bottom: 28px;
}

.consent::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: var(--accent-2);
  border-radius: 0 0 var(--radius) var(--radius);
}

.consent[hidden] {
  display: none;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.consent__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}

.consent__text a {
  color: var(--accent);
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.consent__actions .btn {
  padding: 10px 16px;
  font-size: 13px;
}

.consent__manage-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--font-body);
  padding: 0;
}

.consent__manage-link:hover {
  color: var(--accent);
}

.consent__policy {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--secondary);
  border-radius: var(--radius);
}

.consent__cat-info {
  flex: 1;
}

.consent__cat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.consent__cat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.consent__cat input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.consent__back {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent__back:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .consent {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .consent::after {
    left: 0;
    right: 0;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__actions .btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 72px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .container {
    padding: 0 20px;
  }

  .page-title-block {
    padding: 56px 0 36px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

  .container {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 17px;
  }

  .contact-form,
  .contact-confirm {
    padding: 24px 18px;
  }

  .venue-card__body,
  .venue-card__body--flush {
    padding: 20px;
  }
}

.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;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
}
