:root {
  --bg: #141019;
  --surface: #1d1725;
  --surface-alt: #261e31;
  --text: #f2eef6;
  --text-muted: #b0a3bd;
  --border: rgba(242, 238, 246, 0.14);
  --accent: #d8c08e;
  --accent-2: #9b7fc0;
  --secondary: #2b2236;
  --on-accent: #1a1421;
  --deep: #0d0a11;
  --radius: 4px;
  --radius-lg: 18px;
  --btn-radius: 0px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Hoefler Text', 'Book Antiqua', Georgia, serif;
  --font-body: Avenir, 'Segoe UI', Arial, sans-serif;
  --content-w: 1320px;
  --gutter: 40px;
  --section-pad: 120px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0px;
  margin: 0;
  line-height: 1.15;
}

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

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

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 1.2em;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

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

.container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

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

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

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

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.reveal {
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.reveal--pending {
  opacity: 0;
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal--pending {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.notice-strip {
  background: var(--surface-alt);
  padding: 10px var(--gutter);
  text-align: center;
}

.notice-strip p {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

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

.brand__logo {
  width: auto;
  height: 40px;
  border-radius: var(--radius);
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 21px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav-links a {
  display: inline-block;
  padding: 6px 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 160ms ease;
}

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

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

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

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  position: relative;
  transition: transform 180ms ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

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

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

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-wrap {
    gap: 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }

  .brand__logo {
    height: 32px;
  }

  .brand__name {
    font-size: 17px;
  }
}

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

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

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

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

.hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 10, 17, 0.72) 0%, rgba(13, 10, 17, 0.55) 45%, rgba(20, 16, 25, 0.92) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 var(--gutter);
  text-align: center;
}

.hero__inner .kicker {
  margin-bottom: 26px;
}

.hero h1 {
  line-height: 1.06;
  margin-bottom: 26px;
}

.hero__intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 640px;
}

.cat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 20px 40px;
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

.cat-row:last-child {
  border-bottom: 1px solid var(--border);
}

.cat-row__desc {
  grid-column: 1;
  color: var(--text-muted);
  max-width: 640px;
  margin: 10px 0 0;
}

.cat-row h3 {
  font-size: 30px;
}

.cat-row__link {
  justify-self: end;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  .cat-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }

  .cat-row__link {
    justify-self: start;
  }
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}

.look-item {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.look-item__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--accent-2);
  letter-spacing: 0.26em;
  margin-bottom: 16px;
}

.look-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.look-item p {
  color: var(--text-muted);
  margin: 0;
}

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

.mission {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0 72px;
  position: relative;
}

.mission__lead {
  padding-right: 0;
}

.mission__lead h2 {
  margin-bottom: 22px;
}

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

.mission__body {
  border-left: 1px solid var(--border);
  padding-left: 72px;
}

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

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

  .mission__body {
    border-left: none;
    padding-left: 0;
  }
}

.testi {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
}

.testi__intro h2 {
  margin-bottom: 18px;
}

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

.testi__quotes {
  display: grid;
  gap: 24px;
  align-content: start;
}

.testi__quote {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 30px 34px;
}

.testi__quote p {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.55;
}

.testi__quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.timeline {
  position: relative;
  margin-left: 6px;
  padding-left: 44px;
  border-left: 1px solid var(--border);
  display: grid;
  gap: 52px;
}

.timeline__entry {
  position: relative;
}

.timeline__entry::before {
  content: "";
  position: absolute;
  left: -51px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}

.timeline__entry h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.timeline__entry p {
  color: var(--text-muted);
  margin: 0;
  max-width: 640px;
}

.approach {
  text-align: center;
}

.approach .section-head {
  margin-left: auto;
  margin-right: auto;
}

.approach__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  text-align: left;
}

.approach__col {
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.approach__col h3 {
  font-size: 14px;
  font-family: var(--font-body);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

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

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

.page-head {
  padding: 96px 0 64px;
}

.page-head .kicker {
  margin-bottom: 22px;
}

.page-head h1 {
  margin-bottom: 26px;
}

.page-head__intro {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
}

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

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

.venue-grid .venue-card:nth-child(even) {
  margin-top: 56px;
}

.venue-card__media {
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

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

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

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

.venue-card--img-bottom .venue-card__cta {
  order: 3;
}

.venue-card__body {
  padding: 40px 44px 8px;
}

.venue-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.venue-card__meta {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

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

.venue-card__cta {
  padding: 24px 44px 40px;
  margin-top: auto;
}

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

@media (max-width: 1024px) {
  .venue-grid .venue-card:nth-child(even) {
    margin-top: 40px;
  }
}

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

  .venue-grid .venue-card:nth-child(even) {
    margin-top: 0;
  }
}

.rr-list {
  display: grid;
  gap: 32px;
}

.rr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: grid;
  grid-template-columns: 168px 1fr auto;
  gap: 36px;
  align-items: start;
}

.rr-card__thumb {
  margin: 0;
}

.rr-card__thumb img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: var(--radius);
}

.rr-card h3 {
  font-size: 27px;
  margin-bottom: 8px;
}

.rr-card__meta {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.rr-card__desc {
  color: var(--text-muted);
  margin: 0;
  max-width: 560px;
}

.rr-card__cta {
  border-left: 1px solid var(--border);
  padding-left: 36px;
  align-self: center;
  min-width: 190px;
}

.rr-card__cta .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .rr-card {
    grid-template-columns: 104px 1fr;
    gap: 24px;
    padding: 26px;
  }

  .rr-card__thumb img {
    width: 104px;
    height: 104px;
  }

  .rr-card__cta {
    grid-column: 2 / -1;
    grid-row: 2;
    border-left: none;
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
    min-width: 0;
  }
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  text-align: center;
}

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

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

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

.closing {
  border-top: 1px solid var(--border);
  padding-top: 56px;
  max-width: 720px;
}

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

.prose {
  max-width: 800px;
}

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

.prose h2 {
  margin-bottom: 20px;
}

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

.about-section:first-of-type {
  border-top: none;
  padding-top: 24px;
}

.about-section .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.26em;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.about-section h2 {
  margin-bottom: 28px;
  max-width: 640px;
}

.about-section p {
  color: var(--text-muted);
  max-width: 760px;
}

.contact-band {
  background: var(--surface-alt);
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.contact-band .kicker {
  margin-bottom: 22px;
}

.contact-band h1 {
  margin-bottom: 26px;
}

.contact-band__intro {
  max-width: 700px;
  color: var(--text-muted);
  font-size: 17px;
  margin: 0 0 22px;
}

.contact-band__mail {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.contact-band__mail a {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

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

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  line-height: 1.5;
}

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

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

.field select {
  color-scheme: dark;
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
}

.agree input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent);
  flex: none;
}

.agree label {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  cursor: pointer;
}

.form-error {
  grid-column: 1 / -1;
  font-size: 14px;
  color: #e0b08e;
  margin: 0;
}

.form-error:empty {
  display: none;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 14px;
  color: #e0b08e;
  margin: 0;
  min-height: 1em;
}

.form-status:empty {
  display: none;
}

.form-actions {
  grid-column: 1 / -1;
}

.confirmation {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 56px 60px;
}

.confirmation h2 {
  margin-bottom: 18px;
}

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

.confirmation .ref {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

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

  .confirmation {
    padding: 40px 30px;
  }
}

.legal-page {
  padding-bottom: 40px;
}

.legal-page h2 {
  margin-top: 48px;
  font-size: 26px;
}

.legal-page h3 {
  margin-top: 32px;
  font-size: 20px;
}

.legal-page p {
  color: var(--text-muted);
  max-width: 780px;
}

.legal-page a {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

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

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

.sitemap-list a {
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 22px 8px;
  color: var(--text);
}

.sitemap-list a:hover {
  background: var(--surface);
  color: var(--text);
}

.sitemap-list .sm-title {
  font-family: var(--font-heading);
  font-size: 21px;
}

.sitemap-list .sm-desc {
  color: var(--text-muted);
  font-size: 15px;
}

@media (max-width: 768px) {
  .sitemap-list a {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 4px;
  }
}

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

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

.footer-band:last-child {
  border-bottom: none;
}

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

.footer-blurb {
  color: var(--text-muted);
  max-width: 420px;
  margin: 26px 0 0;
  font-size: 15px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 18px;
}

.footer-regions {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0;
}

.footer-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

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

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

.footer-col .mail-link {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.cookie-settings-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

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

.footer-bottom {
  padding: 48px 0 56px;
  text-align: center;
  display: grid;
  gap: 22px;
  justify-items: center;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-top,
  .footer-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-top,
  .footer-mid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.consent {
  position: fixed;
  left: 24px;
  bottom: 4px;
  z-index: 200;
  width: 400px;
  max-width: calc(100vw - 48px);
}

.consent[hidden] {
  display: none;
}

.consent__card {
  background: rgba(38, 30, 49, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 18px 48px rgba(0, 0, 0, 0.35);
}

.consent__rule {
  height: 3px;
  margin-top: 6px;
  background: var(--accent);
}

.consent__body {
  padding: 24px 26px 26px;
}

.consent__copy {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
}

.consent__cats {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.consent__cat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
}

.consent__cat input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex: none;
}

.consent__cat input:disabled {
  cursor: default;
}

.consent__cat--locked {
  color: var(--text-muted);
}

.consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.consent__btn {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 6px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

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

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

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

.consent__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  font-size: 12.5px;
}

.consent__manage {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12.5px;
  cursor: pointer;
  letter-spacing: 0.06em;
}

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

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

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

@media (max-width: 639px) {
  .consent {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
  }

  .consent__card {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .consent__rule {
    margin-top: 0;
  }

  .consent__actions {
    gap: 8px;
  }

  .consent__btn {
    font-size: 10.5px;
    padding: 12px 4px;
  }
}
