:root {
  --bg: #faf5ef;
  --surface: #ffffff;
  --surface-alt: #f0e6da;
  --text: #241c14;
  --text-muted: #645648;
  --border: rgba(36, 28, 20, 0.12);
  --accent: #a8533a;
  --accent-2: #4f6b52;
  --secondary: #3a2c20;
  --on-accent: #ffffff;
  --dark: #2a2017;
  --radius: 4px;
  --btn-radius: 2px;
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max-width: 1240px;
  --section-pad: 128px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
}

p {
  margin-bottom: 1.25em;
}

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

.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

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

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

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

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

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

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

.link-arrow {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow::after {
  content: '→';
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.link-arrow:hover {
  color: var(--secondary);
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-lockup {
  justify-self: start;
}

.nav-contact-link {
  justify-self: end;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 8px 12px;
  text-decoration: none;
}

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

.nav-contact-link[aria-current="page"] {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

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

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.site-nav {
  justify-self: center;
  grid-column: 2;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--btn-radius);
  text-decoration: none;
}

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

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text);
  grid-column: 3;
  justify-self: end;
}

.nav-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
}

.nav-contact-mobile {
  display: none;
}

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

  .nav-contact-mobile {
    display: list-item;
  }

  .nav-toggle {
    display: block;
  }

  .nav-contact-link {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    grid-column: 1 / -1;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

main {
  padding-top: var(--header-height);
}

.page-hero {
  padding: 80px 0 64px;
  text-align: center;
}

.page-hero .intro {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 19px;
}

.independence-notice {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 720px;
}

.independence-notice--hero {
  margin: 32px auto 0;
  text-align: center;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-stacked {
  padding: 100px 0 var(--section-pad);
  text-align: center;
}

.hero-stacked h1 {
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero-stacked .intro {
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 19px;
}

.hero-frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-frame {
  flex: 1;
  max-width: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero-frame img {
  width: 100%;
  object-fit: cover;
}

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

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

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

.hero-frame figcaption {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  background: var(--surface);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-frames {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }

  .hero-frame {
    flex: 0 0 75vw;
    scroll-snap-align: start;
  }
}

.category-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.category-band:nth-child(even) {
  background: var(--surface-alt);
}

.category-band:nth-child(odd) {
  background: var(--bg);
}

.category-band--reverse .category-band-inner {
  direction: rtl;
}

.category-band--reverse .category-band-inner > * {
  direction: ltr;
}

.category-band__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.category-band__content h2 {
  margin-bottom: 16px;
}

.category-band__content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .category-band {
    padding: 80px 0;
  }

  .category-band-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .category-band--reverse .category-band-inner {
    direction: ltr;
  }

  .category-band__media img {
    height: 280px;
  }
}

.dark-band {
  background: var(--dark);
  color: var(--on-accent);
  padding: var(--section-pad) 0;
  text-align: center;
}

.dark-band h2 {
  color: var(--on-accent);
  margin-bottom: 24px;
}

.dark-band p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
}

.dark-band .link-arrow {
  color: var(--surface-alt);
  margin-top: 16px;
}

.dark-band .link-arrow:hover {
  color: var(--on-accent);
}

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

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

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

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

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

  .mission-grid__rule {
    display: none;
  }
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.arrival-card {
  position: relative;
  padding: 40px 32px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.arrival-card__num {
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 500;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
}

.arrival-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
}

.arrival-card p {
  color: var(--text-muted);
  font-size: 16px;
  position: relative;
}

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

.historic-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.historic-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 48px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.historic-row--reverse {
  direction: rtl;
}

.historic-row--reverse > * {
  direction: ltr;
}

.historic-row__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.historic-row__content h2 {
  font-size: clamp(24px, 3vw, 36px);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 16px;
}

.historic-row__location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

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

@media (max-width: 768px) {
  .historic-row,
  .historic-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .historic-row__media img {
    height: 240px;
  }
}

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

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

.discovery-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.discovery-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.discovery-card__title {
  font-size: 22px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.catalog-closing--span {
  grid-column: 1 / -1;
}

.arrival-notes__intro {
  text-align: center;
  margin-bottom: 48px;
}

.cookie-policy__settings {
  margin-bottom: 24px;
}

.consent-back {
  margin-bottom: 20px;
}

.discovery-card__title span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 16px;
}

.discovery-card__body p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}

.discovery-card__foot {
  margin-top: auto;
}

.discovery-card__foot .btn {
  width: 100%;
  text-align: center;
}

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

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

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

.downtown-card--img-bottom .downtown-card__media {
  order: 2;
}

.downtown-card--img-bottom .downtown-card__body {
  order: 1;
}

.downtown-card__listing {
  order: 3;
  padding: 0 28px 28px;
}

.downtown-card__media {
  position: relative;
}

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

.downtown-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: rgba(42, 32, 23, 0.72);
  backdrop-filter: blur(4px);
}

.downtown-card__overlay h2 {
  font-size: 20px;
  color: var(--on-accent);
  margin: 0;
}

.downtown-card__body {
  padding: 24px 28px 28px;
}

.downtown-card__location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.downtown-card__body p {
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.editorial-stack {
  max-width: 760px;
  margin: 0 auto;
}

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

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

.editorial-section__num {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 12px;
}

.editorial-section h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 24px;
}

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

.guide-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.guide-band--reverse .guide-band__media {
  order: 2;
}

.guide-band--reverse .guide-band__content {
  order: 1;
}

.guide-band__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.guide-band h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 20px;
}

.guide-band p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .guide-band,
  .guide-band--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 0;
  }

  .guide-band--reverse .guide-band__media,
  .guide-band--reverse .guide-band__content {
    order: unset;
  }

  .guide-band__media img {
    height: 260px;
  }
}

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

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

.contact-email {
  display: inline-block;
  margin-bottom: 40px;
  font-family: var(--font-heading);
  font-size: 17px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

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

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.form-error {
  font-size: 14px;
  color: var(--accent);
  margin-top: 8px;
}

.confirmation-panel {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  text-align: center;
}

.confirmation-panel h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.confirmation-panel p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.confirmation-ref {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 24px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 var(--section-pad);
}

.legal-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}

.legal-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 20px;
  margin: 24px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.sitemap-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

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

.sitemap-list a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
}

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

.catalog-closing {
  max-width: 640px;
  margin: 64px auto 0;
  text-align: center;
  color: var(--text-muted);
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

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

.footer-independence {
  padding: 0 24px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}

.footer-brand .brand-lockup {
  margin-bottom: 20px;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-email {
  font-family: var(--font-heading);
  font-size: 15px;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

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

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

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

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

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

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

.footer-requisites {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-settings-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.cookie-settings-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

  .footer-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  body {
    font-size: 16px;
  }
}

.consent-anchor {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.consent-panel {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: var(--max-width);
  margin: 0 auto 0;
}

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

.consent-panel h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.consent-panel p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.consent-panel a {
  font-size: 15px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.consent-actions .btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.consent-actions .btn--accept {
  order: -1;
}

@media (max-width: 600px) {
  .consent-actions {
    flex-direction: column;
  }

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

.consent-categories {
  margin-top: 20px;
}

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

.consent-category label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
}

.consent-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.consent-category input:disabled {
  opacity: 0.6;
}

.consent-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--dark);
  color: var(--on-accent);
  border: none;
  border-radius: 20px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  cursor: pointer;
}

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

.consent-pill:hover {
  background: var(--secondary);
}

.consent-wrap {
  padding: 32px 24px;
  background: var(--surface-alt);
}
