:root {
  --bg: #faf6f3;
  --surface: #ffffff;
  --surface-alt: #f2e9e4;
  --text: #241417;
  --text-muted: #63494e;
  --border: rgba(36, 20, 23, 0.12);
  --accent: #7b2233;
  --accent-2: #b8860b;
  --secondary: #3d1f26;
  --on-accent: #ffffff;
  --dark-band: #2b1219;
  --radius: 20px;
  --radius-btn: 0px;
  --font-heading: 'Lucida Bright', Georgia, serif;
  --font-body: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --content-max: 1320px;
  --section-pad: 120px;
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

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

p {
  margin: 0 0 1.1em;
}

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

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.25em;
}

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.btn:hover {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 12px 32px rgba(36, 20, 23, 0.14);
}

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

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

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  box-shadow: none;
}

.site-header {
  position: relative;
  z-index: 40;
  background: transparent;
}

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

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-btn);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  padding: 56px 0 80px;
}

.hero__intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.hero__intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero__notice {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.hero-frame {
  margin: 0;
}

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

.hero-frame--short img {
  height: 220px;
}

.hero-frame--tall img {
  height: 380px;
}

.hero-frame--medium img {
  height: 290px;
}

.hero-frame figcaption {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

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

.section--tight {
  padding: 80px 0;
}

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

.legal-body--page {
  padding-top: 56px;
}

.section__head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

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

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.category-card {
  position: relative;
  min-height: 520px;
}

.category-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.category-card__panel {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.9rem;
}

.category-card__panel h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 0.5rem;
}

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

.category-card__panel a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.category-card__panel a:hover {
  box-shadow: none;
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

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

.quote-stack {
  max-width: 900px;
  margin: 0 auto;
}

.quote-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.quote-item:first-child {
  padding-top: 0;
}

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

.quote-item blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
  font-weight: 400;
}

.quote-item cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-cta {
  background: var(--dark-band);
  color: #f3e8ea;
  text-align: center;
}

.closing-cta h2 {
  color: #faf6f3;
}

.closing-cta p {
  color: rgba(250, 246, 243, 0.78);
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 1.1em;
}

.closing-cta a {
  color: #f0d6a8;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1.2fr;
  gap: 3rem;
  align-items: start;
}

.mission-rule {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

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

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.timeline li {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

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

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline h3 {
  margin-bottom: 0.4rem;
}

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

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenities-list li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.amenities-list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.amenities-list span {
  color: var(--text-muted);
}

.page-hero {
  padding: 56px 0 48px;
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero__inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  align-items: start;
}

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

.venue-card:hover {
  box-shadow: 0 18px 40px rgba(36, 20, 23, 0.12);
}

.venue-card__media {
  position: relative;
  margin: 0;
}

.venue-card__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.venue-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(43, 18, 25, 0.62);
  color: #faf6f3;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.25;
}

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

.venue-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.venue-card__stars {
  color: var(--accent-2);
  letter-spacing: 0.08em;
}

.venue-card__body p {
  color: var(--text-muted);
  flex: 1;
}

.venue-card--flip .venue-card__media {
  order: 2;
}

.venue-card--flip .venue-card__body {
  order: 1;
}

.venue-card > .btn {
  order: 3;
  margin: 0 1.5rem 1.75rem;
  align-self: flex-start;
}

.catalog-close {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  max-width: 64ch;
  color: var(--text-muted);
}

.shore-band {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.shore-band__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.shore-band__media {
  margin: 0 0 1.75rem;
}

.shore-band__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-inline: auto;
}

.shore-band__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0.35rem;
}

.shore-band__meta {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.shore-band__inner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

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

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

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

.editorial__section:last-of-type {
  border-bottom: 0;
}

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

.contact-intro {
  background: var(--surface-alt);
  padding: 3.5rem 0;
}

.contact-intro__inner {
  max-width: 720px;
}

.contact-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-email {
  margin-top: 1rem;
}

.contact-form-wrap {
  padding: 4.5rem 0 var(--section-pad);
}

.contact-form {
  max-width: 860px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

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

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

.agree-row label {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

.form-error {
  color: var(--accent);
  font-size: 0.9rem;
  min-height: 1.3em;
  margin: 0.35rem 0 1rem;
}

.form-actions {
  margin-top: 0.5rem;
}

.confirm-panel {
  max-width: 640px;
  padding: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

.confirm-panel p {
  color: var(--text-muted);
}

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

.legal-body h2 {
  margin-top: 2.5rem;
  font-size: clamp(24px, 3vw, 32px);
}

.legal-body h3 {
  margin-top: 1.75rem;
}

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

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: var(--section-pad);
}

.sitemap-col h2 {
  font-size: 0.78rem;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.sitemap-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-col li {
  margin-bottom: 0.75rem;
}

.sitemap-col a {
  text-decoration: none;
  color: var(--text);
}

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

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

.footer-notice {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding: 1.25rem 0 0;
  max-width: 90ch;
}

.footer-upper {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0 2.5rem;
}

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

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

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  font-weight: 400;
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

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

.footer-group li {
  margin-bottom: 0.55rem;
}

.footer-group a,
.footer-group button {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

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

.footer-lower {
  background: var(--surface-alt);
  padding: 1.5rem 0 2rem;
}

.footer-lower__stack {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}

.footer-copy,
.footer-requisites,
.footer-consent-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

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

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

.consent-banner {
  position: relative;
  z-index: 60;
  background: var(--surface);
  box-shadow: 0 10px 40px rgba(36, 20, 23, 0.12);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.85rem 0;
}

.consent-banner[hidden],
.consent-dialog[hidden] {
  display: none !important;
}

.consent-banner__inner {
  width: min(100% - 32px, var(--content-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.consent-banner__copy {
  flex: 1 1 320px;
  min-width: 0;
}

.consent-banner__copy strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.consent-banner__copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.consent-btn:hover {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(36, 20, 23, 0.12);
}

.consent-btn--link {
  border: none;
  padding: 0.55rem 0.35rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  border-radius: 0;
}

.consent-btn--link:hover {
  background: transparent;
  color: var(--secondary);
  box-shadow: none;
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(36, 20, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

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

.consent-dialog {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  width: min(100%, 420px);
  box-shadow: 0 20px 50px rgba(36, 20, 23, 0.2);
}

.consent-dialog h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.consent-cat:last-of-type {
  border-bottom: 0;
  margin-bottom: 1rem;
}

.consent-cat p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.consent-cat strong {
  font-weight: 400;
  font-family: var(--font-heading);
}

.consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

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

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

  .category-card {
    min-height: 480px;
  }

  .hero-frame--tall img {
    height: 320px;
  }
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
    display: none;
  }

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

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-rule {
    display: none;
  }
}

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

  .wrap {
    width: min(100% - 32px, var(--content-max));
  }

  .hero-frames {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    align-items: stretch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }

  .hero-frame {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .hero-frame--short img,
  .hero-frame--tall img,
  .hero-frame--medium img {
    height: 260px;
  }

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

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

  .amenities-list {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .consent-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 24px, var(--content-max));
  }

  .hero {
    padding-top: 40px;
  }

  .hero-frame {
    flex-basis: 85%;
  }

  .category-card img {
    height: 300px;
  }

  .category-card__panel {
    left: 0.75rem;
    right: 0.75rem;
    padding: 1.25rem;
  }

  .venue-card__media img {
    height: 240px;
  }

  .btn {
    width: 100%;
  }

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