:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244, 239, 233, 0.14);
  --accent: #cfa456;
  --accent-2: #8c6a4f;
  --secondary: #2d2422;
  --on-accent: #181312;
  --dark-band: #0c0908;
  --radius: 6px;
  --radius-btn: 2px;
  --font-heading: Baskerville, 'Baskerville Old Face', Georgia, serif;
  --font-body: 'Segoe UI', Arial, sans-serif;
  --max-w: 1040px;
  --section-pad: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.58;
  font-size: 16px;
  min-height: 100vh;
}

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

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

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

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

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  line-height: 1.2;
  text-align: center;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

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

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

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px;
  text-align: center;
}

.notice-strip p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 920px;
  margin: 0 auto;
}

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 20px 0;
}

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

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

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

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

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

.nav-row {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0;
}

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

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
}

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

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

.hero {
  position: relative;
  min-height: 420px;
  height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 8, 0.55) 0%, rgba(12, 9, 8, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 40px 20px;
}

.hero__content h1 {
  margin-bottom: 1rem;
}

.hero__content p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 54ch;
  margin: 0 auto;
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.cat-band:nth-child(even) .cat-band__media {
  order: 2;
}

.cat-band__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  border-left: 1px solid var(--border);
}

.cat-band:nth-child(even) .cat-band__body {
  border-left: none;
  border-right: 1px solid var(--border);
}

.cat-band__body h2 {
  margin-bottom: 0.85rem;
}

.cat-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.mission {
  max-width: 68ch;
  margin: 0 auto;
  text-align: center;
}

.mission::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

.mission h2 {
  margin-bottom: 1.25rem;
}

.mission p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: left;
}

.timeline {
  max-width: 720px;
  margin: 0 auto;
}

.timeline h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.timeline__list {
  list-style: none;
  border-left: 1px solid var(--border);
  padding-left: 28px;
}

.timeline__item {
  position: relative;
  padding-bottom: 28px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

.timeline__item h3 {
  margin-bottom: 0.4rem;
  font-size: 18px;
}

.timeline__item p {
  color: var(--text-muted);
  font-size: 15px;
}

.steps {
  text-align: center;
}

.steps h2 {
  margin-bottom: 0.75rem;
}

.steps > .lead {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

.steps__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps__row::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
  font-size: 14px;
}

.closing-cta {
  background: var(--dark-band);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.closing-cta h2 {
  margin-bottom: 1rem;
}

.closing-cta p {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto 0.85rem;
}

.closing-cta .text-link {
  display: inline-block;
  margin-top: 0.75rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.testimonials__intro p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px 20px;
}

.quote-block p {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 0.65rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-title {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.page-title p {
  color: var(--text-muted);
  max-width: 62ch;
  margin-top: 0.85rem;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: var(--section-pad) 0;
  align-items: start;
}

.venue-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.venue-card--flip {
  flex-direction: column-reverse;
}

.venue-card__photo {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

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

.venue-card__body h2 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 0.35rem;
}

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

.venue-card__stars {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.venue-card__desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
}

.venue-card__actions {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.venue-card__actions .btn {
  width: 100%;
}

.heritage-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--section-pad) 0;
}

.heritage-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  margin-bottom: 12px;
}

.heritage-row__thumb {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}

.heritage-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-row__content {
  text-align: center;
  min-width: 0;
}

.heritage-row__content h2 {
  font-size: 18px;
  margin-bottom: 0.25rem;
}

.heritage-row__heading {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.heritage-row__line {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.heritage-row__desc {
  font-size: 14px;
  color: var(--text-muted);
}

.heritage-row__actions {
  flex-shrink: 0;
}

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

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

.insights-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: var(--section-pad) 0;
  align-items: start;
}

.insights-nav {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}

.insights-nav p {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.insights-nav ul {
  list-style: none;
}

.insights-nav a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.insights-nav li:last-child a {
  border-bottom: none;
}

.insights-nav a:hover {
  color: var(--accent);
}

.insights-prose section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.insights-prose section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.insights-prose h2 {
  margin-bottom: 1rem;
}

.insights-prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-lead {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
  color: var(--text);
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--border);
  max-width: 70ch;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  padding: var(--section-pad) 0;
}

.about-grid section h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(18px, 2.2vw, 22px);
}

.about-grid section p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 15px;
}

.contact-wrap {
  padding: var(--section-pad) 0;
  max-width: 560px;
  margin: 0 auto;
}

.contact-wrap > .intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

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

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

.form-agree input {
  margin-top: 3px;
  flex-shrink: 0;
  width: auto;
}

.form-agree label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-error {
  color: #e08a7a;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
}

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

.contact-email-line {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.confirm-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 0.85rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 18px;
  margin: 1rem 0 1.5rem;
}

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

.legal-body h1 {
  margin-bottom: 0.5rem;
}

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

.legal-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(18px, 2.2vw, 22px);
}

.legal-body h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.sitemap-list {
  list-style: none;
  padding: var(--section-pad) 0;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .brand-lockup {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0.85rem;
  max-width: 42ch;
}

.footer-brand a[href^="mailto"] {
  font-size: 14px;
}

.footer-groups {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

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

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

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

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

.footer-bottom .footer-notice {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 10px;
  line-height: 1.45;
}

.footer-bottom [data-cookie-settings] {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.consent-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  position: relative;
  z-index: 200;
}

.consent-bar[hidden] {
  display: none !important;
}

.consent-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.consent-bar__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.consent-bar__copy strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 2px;
}

.consent-bar__copy p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

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

.consent-bar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.consent-bar__actions .btn {
  padding: 8px 14px;
  font-size: 12px;
}

.consent-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

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

.consent-panel {
  width: 100%;
  flex-basis: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.consent-panel.is-open {
  max-height: 320px;
}

.consent-cats {
  display: grid;
  gap: 10px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-cat input {
  margin-top: 2px;
}

.consent-cat input:disabled {
  opacity: 0.7;
}

.consent-cat strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 2px;
}

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

  .footer-groups {
    justify-content: flex-start;
  }
}

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

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--border);
  }

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

  .nav-links a {
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a[aria-current="page"] {
    border-bottom-color: var(--border);
    background: var(--secondary);
  }

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

  .insights-nav {
    position: static;
  }

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

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

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

  .cat-band {
    grid-template-columns: 1fr;
  }

  .cat-band:nth-child(even) .cat-band__media {
    order: 0;
  }

  .cat-band__body,
  .cat-band:nth-child(even) .cat-band__body {
    border: none;
    border-top: 1px solid var(--border);
    padding: 32px 20px;
  }

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

  .heritage-row {
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }

  .heritage-row__thumb {
    width: 72px;
    height: 72px;
  }

  .heritage-row__actions {
    grid-column: 1 / -1;
  }

  .heritage-row__actions .btn {
    width: 100%;
  }

  .steps__row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps__row::before {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 420px;
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 17px;
  }

  .footer-groups {
    flex-direction: column;
    gap: 24px;
  }

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

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

  .consent-bar__actions .btn {
    width: 100%;
  }

  .contact-panel {
    padding: 20px 16px;
  }

  .venue-card {
    padding: 10px;
  }
}
