: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;
  --deep: #0c0908;
  --radius: 14px;
  --radius-btn: 6px;
  --font-heading: 'Lucida Bright', Georgia, serif;
  --font-body: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --max: 1400px;
  --section-pad: 136px;
  --header-h: 96px;
  --header-h-shrink: 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.8;
  font-size: 17px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

p {
  margin-bottom: 1.1em;
}

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.band {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.band--alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

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

.band--deep {
  background: var(--deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

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

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hairline {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.accent-rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 0 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 200ms ease, height 200ms ease, backdrop-filter 200ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.is-scrolled {
  height: var(--header-h-shrink);
  background: rgba(20, 16, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
}

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

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

.nav-inner > nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

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

.independence {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 72ch;
  background: transparent;
}

.independence--home {
  margin: 2rem auto 0;
  width: min(100% - 48px, var(--max));
}

.page-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.page-hero .independence {
  margin-top: 2rem;
}

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

.page-hero .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
}

.hero-quiet {
  padding: calc(var(--section-pad) * 0.85) 0 calc(var(--section-pad) * 0.55);
  background: var(--surface-alt);
}

.hero-quiet .kicker {
  margin-top: 0;
}

.hero-quiet h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  margin-inline: 0;
}

.hero-quiet__lead {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

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

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 88px);
  background: var(--surface);
}

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

.cat-band__body p {
  color: var(--text-muted);
  max-width: 42ch;
  margin: 1rem 0 1.75rem;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.region-tile {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 0.5rem;
}

.region-tile h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.region-tile p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.amenity-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.amenity-block {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}

.amenity-block h3 {
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
}

.amenity-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.approach-lead {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto 3.5rem;
}

.approach-lead p {
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.approach-block h3 {
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
}

.approach-block p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

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

.mission .accent-rule {
  margin-inline: auto;
}

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

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

.section-lead {
  color: var(--text-muted);
  max-width: 54ch;
  margin: 1rem 0 3rem;
}

.photo-strip__intro {
  max-width: 54ch;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  grid-template-rows: 280px 200px;
  gap: 1rem;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.mosaic__item:nth-child(1) {
  grid-row: 1 / 3;
}

.mosaic__item:nth-child(2) {
  grid-row: 1;
}

.mosaic__item:nth-child(3) {
  grid-row: 1;
}

.mosaic__item:nth-child(4) {
  grid-row: 2;
  grid-column: 2;
}

.mosaic__item:nth-child(5) {
  grid-row: 2;
  grid-column: 3;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

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

.venue-card__photo {
  position: relative;
  overflow: hidden;
}

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

.venue-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  background: rgba(12, 9, 8, 0.72);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: -0.8px;
  color: var(--text);
  line-height: 1.2;
}

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.25rem 1.5rem;
  gap: 0.75rem;
}

.venue-card__meta {
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.venue-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.catalog-close {
  margin-top: var(--section-pad);
  max-width: 62ch;
  color: var(--text-muted);
}

.stack-venue {
  padding: 0;
}

.stack-venue + .stack-venue {
  border-top: 1px solid var(--border);
}

.stack-venue__photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  aspect-ratio: 21 / 9;
}

.stack-venue__body {
  text-align: center;
  padding: 3.5rem clamp(24px, 5vw, 64px) 4rem;
  background: var(--surface);
  max-width: 720px;
  margin: 0 auto;
}

.stack-venue__body h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 0.5rem;
}

.stack-venue__meta {
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.stack-venue__body p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.editorial-lead {
  font-size: clamp(22px, 3.2vw, 32px);
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.35;
  max-width: 100%;
  color: var(--text);
  margin-bottom: 4rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 4rem;
}

.editorial-grid section h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 1.25rem;
}

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

.prose-column {
  max-width: 70ch;
  margin: 0 auto;
}

.prose-column section {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

.prose-column section:last-of-type {
  border-bottom: 0;
}

.prose-column h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 1.25rem;
}

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

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}

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

.contact-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
}

.form-field {
  margin-bottom: 1.35rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}

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

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

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-agree input {
  margin-top: 0.35rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.form-agree label {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-error {
  color: #e0a090;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  display: none;
}

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

.contact-email-line {
  margin-top: 2rem;
  color: var(--text-muted);
}

.contact-email-line a {
  font-size: 1.15rem;
}

.confirm-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(26px, 4vw, 36px);
}

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

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin: 1.5rem 0;
}

.sitemap-list {
  display: grid;
  gap: 0;
}

.sitemap-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-row a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.5px;
}

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

.sitemap-row p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.legal-body {
  max-width: 72ch;
}

.legal-body h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 0.75rem;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 2.5rem 0 1rem;
}

.legal-body h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

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

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

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

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  margin-top: 0;
}

.footer-band {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 3rem 0;
}

.footer-band + .footer-band {
  border-top: 1px solid var(--border);
}

.footer-brand-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-blurb {
  color: var(--text-muted);
  max-width: 52ch;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

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

.footer-links--legal {
  margin-top: 1.5rem;
}

.footer-mailto-band {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-mailto {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.8px;
  margin-bottom: 0;
}

.footer-mailto:hover {
  color: var(--text);
}

.footer-bottom .independence {
  max-width: none;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-meta p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

.footer-meta button {
  background: none;
  border: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  padding: 0;
}

.footer-meta button:hover {
  color: var(--accent);
}

[data-reveal] {
  opacity: 0;
  transition: opacity 240ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
}

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

  [data-reveal] {
    opacity: 1;
    transition: none;
  }
}

.consent {
  position: fixed;
  z-index: 1000;
  left: 24px;
  bottom: 24px;
  width: min(400px, calc(100vw - 32px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.35rem;
  border-bottom: 2px solid var(--accent);
}

.consent[hidden] {
  display: none;
}

.consent__copy {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

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

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.consent__btn {
  appearance: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1.3;
}

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

.consent__btn--accept:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.consent__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent__manage-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 280ms ease;
}

.consent__manage-wrap.is-open {
  max-height: 320px;
}

.consent__cats {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.consent__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
}

.consent__cat input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.consent__save-row {
  margin-top: 0.75rem;
}

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

  .amenity-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px;
  }

  .mosaic__item:nth-child(1) {
    grid-row: 1;
    grid-column: 1 / 3;
  }

  .mosaic__item:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
  }

  .mosaic__item:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
  }

  .mosaic__item:nth-child(4) {
    grid-row: 3;
    grid-column: 1;
  }

  .mosaic__item:nth-child(5) {
    grid-row: 3;
    grid-column: 2;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h-shrink);
    right: 0;
    left: 0;
    background: var(--deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 24px 2rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

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

  .cat-band__media img {
    min-height: 280px;
  }

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

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

  .footer-brand-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  :root {
    --section-pad: 96px;
  }
}

@media (max-width: 768px) {
  .amenity-row {
    grid-template-columns: 1fr;
  }

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

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .stack-venue__photo img {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }
}

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

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

  .container,
  .nav-inner,
  .footer-band,
  .independence--home {
    width: min(100% - 32px, var(--max));
  }

  :root {
    --section-pad: 72px;
    --header-h: 80px;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.75rem;
  }

  .mosaic__item:nth-child(n) {
    grid-row: auto;
    grid-column: auto;
  }

  .mosaic img {
    aspect-ratio: 16 / 10;
    height: auto;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

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