:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-alt: #e9ebef;
  --text: #1a1f27;
  --text-muted: #525c6b;
  --border: rgba(26, 31, 39, 0.12);
  --accent: #b3623a;
  --accent-2: #2f4a63;
  --secondary: #2b3542;
  --on-accent: #ffffff;
  --dark: #161c24;
  --radius: 6px;
  --radius-btn: 2px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max: 1200px;
  --section-pad: 104px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 4.2vw, 42px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

p {
  margin: 0 0 1em;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

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

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

.independence-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.independence-strip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

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

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

.brand__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.1;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  text-decoration: none;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--surface-alt);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.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--plain {
  background: var(--bg);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.hero {
  padding: clamp(48px, 8vw, 96px) 0;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__copy h1 {
  margin-bottom: 20px;
}

.hero__copy p {
  color: var(--text-muted);
  max-width: 36em;
}

.hero__frame {
  position: relative;
  margin: 0;
}

.hero__frame::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.hero__frame img {
  width: 100%;
  height: min(68vh, 640px);
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  background: var(--surface-alt);
}

.category-rows {
  border-top: 1px solid var(--border);
}

.category-row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr auto;
  gap: 24px 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.category-row h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
}

.category-row p {
  margin: 0;
  color: var(--text-muted);
}

.closing-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.mission-block {
  max-width: 820px;
}

.mission-block__quote {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--accent);
  margin: 0 0 28px;
}

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

.accordion {
  max-width: 860px;
  border-top: 1px solid var(--border);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--text);
}

.accordion__trigger::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__trigger::after {
  content: "–";
}

.accordion__panel {
  display: none;
  padding: 0 0 22px;
  color: var(--text-muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.regions-list {
  border-top: 1px solid var(--border);
}

.regions-list__row {
  display: grid;
  grid-template-columns: minmax(140px, 280px) 1fr;
  gap: 16px 40px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.regions-list__name {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.4px;
}

.regions-list__note {
  color: var(--text-muted);
  margin: 0;
}

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

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

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

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin-bottom: 56px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.venue-row--flip {
  grid-template-columns: 1fr 40%;
}

.venue-row--flip .venue-row__media {
  order: 2;
}

.venue-row--flip .venue-row__body {
  order: 1;
}

.venue-row__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--surface-alt);
}

.venue-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}

.venue-row__meta {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text-muted);
  margin: 0;
}

.venue-row__body h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.venue-row__body p {
  color: var(--text-muted);
  margin: 0;
}

.venue-row__body .btn {
  margin-top: 8px;
  align-self: stretch;
}

.catalog-close {
  max-width: 720px;
  margin-top: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.editorial-lead {
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.45;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
  max-width: 48em;
  margin-bottom: 56px;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

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

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

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

.insights-index {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.insights-index h2 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.insights-index ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insights-index a {
  font-family: var(--font-heading);
  font-size: 14px;
  text-decoration: none;
  color: var(--text);
  line-height: 1.35;
}

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

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

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

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

.contact-intro {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--surface-alt);
}

.contact-intro p {
  max-width: 40em;
  color: var(--text-muted);
}

.contact-email {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
}

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

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
}

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

.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--secondary);
}

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

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

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

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

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

.agree-row label {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

.field-error {
  display: none;
  margin-top: 8px;
  font-size: 14px;
  color: #8a2f1f;
}

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

.form-status {
  margin-top: 16px;
  font-size: 15px;
  color: #8a2f1f;
}

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

.confirm-panel h2 {
  margin-bottom: 12px;
}

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

.confirm-panel__again {
  margin-top: 24px;
}

.venue-row__body h2,
.venue-row__meta {
  display: block;
  width: 100%;
}

.legal-measure,
.legal-body {
  max-width: 800px;
}

.legal-measure h1 {
  margin-bottom: 8px;
}

.legal-measure > p {
  color: var(--text-muted);
  margin-bottom: 0;
}

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

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

.legal-body > h2:first-child {
  margin-top: 0;
}

.legal-body h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 28px);
}

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

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

.legal-body ul {
  padding-left: 1.2em;
}

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

.sitemap-group h2 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant: small-caps;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.sitemap-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitemap-group a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 16px;
}

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

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 64px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 48px 64px;
  padding-bottom: 48px;
}

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

.footer-group h3 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-group a,
.footer-group button {
  font-family: var(--font-heading);
  font-size: 14px;
}

.footer-group button {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  text-align: left;
}

.footer-group button:hover {
  color: #fff;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand .brand__name {
  color: #fff;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 42em;
  margin-bottom: 20px;
}

.footer-regions {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.footer-top-row a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 28px;
}

.footer-independence {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-meta button {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 13px;
}

.footer-meta button:hover {
  color: #fff;
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.consent-modal {
  width: min(100%, 520px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--text);
}

.consent-modal h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.consent-modal > p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.consent-btn {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--secondary);
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.consent-btn:hover,
.consent-btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  outline: none;
}

.consent-btn--primary:hover,
.consent-btn--primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent-policy {
  font-size: 14px;
}

.consent-manage {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.consent-manage__panel {
  width: min(100%, 420px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.consent-manage__panel h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

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

.consent-cat:last-of-type {
  border-bottom: 0;
  margin-bottom: 16px;
}

.consent-cat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 4px;
}

.consent-cat span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.consent-cat input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

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

@media (max-width: 1024px) {
  .hero__grid {
    gap: 40px;
  }

  .category-row {
    gap: 16px 24px;
  }

  .site-footer__grid {
    gap: 40px;
  }
}

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

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

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

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }

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

  .hero__frame img {
    height: min(52vh, 480px);
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .insights-index {
    position: static;
  }

  .insights-index ol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}

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

  body {
    font-size: 17px;
  }

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

  .category-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-row .btn {
    justify-self: start;
  }

  .venue-row,
  .venue-row--flip {
    grid-template-columns: 1fr;
  }

  .venue-row--flip .venue-row__media,
  .venue-row--flip .venue-row__body {
    order: initial;
  }

  .regions-list__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

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

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-meta {
    flex-direction: column;
  }
}

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

  .brand__name {
    font-size: 16px;
  }

  .hero {
    padding: 40px 0;
  }

  .venue-row {
    padding: 16px;
    margin-bottom: 32px;
  }

  .consent-modal,
  .consent-manage__panel {
    padding: 20px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-btn {
    width: 100%;
  }

  .confirm-panel {
    padding: 24px;
  }
}
