:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #efece4;
  --text: #12211a;
  --text-muted: #4d5c55;
  --border: rgba(18, 33, 26, 0.12);
  --accent: #0f5132;
  --accent-2: #c9a227;
  --secondary: #1c3d2c;
  --on-accent: #ffffff;
  --dark: #0c1a13;
  --radius: 6px;
  --btn-radius: 0px;
  --font-head: Baskerville, 'Baskerville Old Face', Georgia, serif;
  --font-body: 'Segoe UI', Arial, sans-serif;
  --content-w: 1400px;
  --section-pad: 136px;
  --nav-h: 92px;
  --nav-h-scrolled: 60px;
}

*,
*::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: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

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

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

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

p {
  margin: 0 0 1.2em;
}

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

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

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
}

.wrap {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 48px;
}

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

.section--first {
  border-top: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  padding: 12px 20px;
  z-index: 300;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
}

.js .reveal.is-visible {
  opacity: 1;
  transition: opacity 240ms ease-out;
}

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 24px 48px;
  min-height: var(--nav-h);
  transition: padding 200ms ease, min-height 200ms ease;
}

.site-header.is-scrolled .nav {
  min-height: var(--nav-h-scrolled);
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.brand img {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 21px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}

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

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

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

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

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

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

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

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

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .brand {
    order: 1;
  }

  .nav-links {
    order: 3;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 8px 0 20px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }

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

  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
  }
}

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

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 28px;
}

.hero-copy .kicker {
  margin-bottom: 22px;
}

.hero-copy p {
  max-width: 56ch;
  color: var(--text-muted);
}

.hero-frame {
  position: relative;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--accent);
  z-index: 0;
}

.hero-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--surface-alt);
}

.hero-notice {
  margin-top: 48px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  border-left: 2px solid var(--border);
  padding-left: 16px;
  max-width: 62ch;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 56px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-frame img {
    aspect-ratio: 4 / 3;
  }
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  color: var(--text);
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface-alt);
}

.cat-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  bottom: 0;
  z-index: 1;
  background: var(--surface);
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 2px solid var(--accent);
}

.cat-panel h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 12px;
}

.cat-panel p {
  color: var(--text-muted);
  font-size: 15px;
  flex: 1;
}

.cat-link {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 3px;
}

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

@media (max-width: 1024px) {
  .cat-grid {
    gap: 28px;
  }
}

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

  .cat-card {
    aspect-ratio: 16 / 11;
  }

  .cat-panel {
    top: 40%;
    padding: 22px 24px 24px;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-alt);
}

.split-copy h2 {
  margin-bottom: 22px;
}

.split-copy p {
  color: var(--text-muted);
  max-width: 60ch;
}

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

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

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

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  padding: 26px 4px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(19px, 2.2vw, 25px);
  letter-spacing: -0.5px;
  color: var(--text);
}

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

.acc-trigger .acc-icon {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex: none;
  line-height: 1;
}

.acc-panel {
  display: none;
  padding: 0 4px 30px;
  color: var(--text-muted);
  max-width: 62ch;
}

.acc-item.is-open .acc-panel {
  display: block;
}

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

.testimonial-band .wrap {
  padding-top: 96px;
  padding-bottom: 96px;
}

.quote-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

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

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

.quote-block blockquote {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.5;
  letter-spacing: -0.5px;
  max-width: 52ch;
}

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

.page-head {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--border);
}

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

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

.page-head .intro {
  color: var(--text-muted);
  max-width: 70ch;
  font-size: 18px;
}

.page-section {
  padding: 88px 0;
}

.rows {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.row-card {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 56px;
  align-items: center;
}

.row-card:nth-child(even) .row-card__media {
  order: 2;
}

.row-card:nth-child(even) .row-card__body {
  order: 1;
}

.row-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-alt);
}

.row-card__body .kicker {
  margin-bottom: 12px;
}

.row-card__body .venue-name {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 8px;
  letter-spacing: -0.8px;
}

.row-card__meta {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.row-card__body p {
  color: var(--text-muted);
  max-width: 56ch;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

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

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

  .row-card:nth-child(even) .row-card__media,
  .row-card:nth-child(even) .row-card__body {
    order: 0;
  }
}

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

.offer-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}

.offer-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  background: var(--surface-alt);
}

.offer-row__body .venue-name {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 8px;
  letter-spacing: -0.8px;
}

.offer-row__body .kicker {
  margin-bottom: 10px;
}

.offer-row__meta {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}

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

@media (max-width: 768px) {
  .offer-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 24px;
    padding: 36px 0;
  }

  .offer-row img {
    width: 96px;
    height: 96px;
  }

  .offer-row .btn {
    grid-column: 2;
    justify-self: start;
    margin-top: 20px;
  }
}

.wf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.wf-card {
  display: flex;
  flex-direction: column;
}

.wf-card__media {
  position: relative;
}

.wf-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--surface-alt);
}

.wf-card__name {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  background: rgba(12, 26, 19, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 16px 22px;
  color: #f6f4ef;
}

.wf-card__name .venue-name {
  color: #f6f4ef;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0;
  letter-spacing: -0.8px;
}

.wf-card__name .wf-city {
  display: block;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.75);
  margin-top: 4px;
}

.wf-card__body {
  padding: 30px 0 0;
}

.wf-card__body .meta-line {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.wf-card__body p {
  color: var(--text-muted);
  max-width: 52ch;
}

@media (max-width: 1024px) {
  .wf-grid {
    gap: 36px;
  }
}

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

  .wf-card__media img {
    aspect-ratio: 4 / 3;
  }
}

.editorial-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.editorial-index {
  position: sticky;
  top: 140px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.editorial-index a {
  display: block;
  padding: 14px 0 14px 24px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  margin-left: -1px;
}

.editorial-index a:hover {
  color: var(--accent);
  border-left-color: var(--accent-2);
}

.editorial-prose h2 {
  margin-top: 0;
  padding-top: 8px;
}

.editorial-prose section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.editorial-prose section:first-child {
  border-top: none;
  padding-top: 0;
}

.editorial-prose p {
  color: var(--text-muted);
  max-width: 68ch;
}

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

  .editorial-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    border-left: none;
  }

  .editorial-index a {
    padding: 6px 0;
    border-left: none;
    margin-left: 0;
  }
}

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

.contact-wrap h1 {
  font-size: clamp(40px, 6vw, 64px);
}

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

.form-field {
  margin-bottom: 26px;
}

.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

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

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

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

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 30px 0 8px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-consent input {
  margin-top: 6px;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--accent);
}

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

.form-consent input[aria-invalid="true"] {
  outline: 2px solid #8a1f11;
  outline-offset: 2px;
}

.field-error {
  color: #8a1f11;
  font-size: 14px;
  margin: 8px 0 0;
  min-height: 1em;
}

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

.form-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 26px;
}

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

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

.btn[disabled] {
  opacity: 0.6;
  cursor: default;
}

.confirmation {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 48px 44px;
}

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

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

.confirmation .ref {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  display: block;
  margin: 18px 0;
}

.legal-body {
  max-width: 820px;
}

.legal-body h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 12px;
}

.legal-body .legal-updated {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-top: 48px;
}

.legal-body h3 {
  font-size: 19px;
  margin-top: 32px;
}

.legal-body p {
  color: var(--text-muted);
  max-width: 70ch;
}

.sitemap-row {
  font-size: 17px;
  line-height: 2.4;
}

.sitemap-row .dot {
  color: var(--accent-2);
  padding: 0 10px;
}

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

.footer-notice {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  padding: 72px 0 56px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.footer-brand-name {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 46ch;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.footer-pills li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-email {
  display: inline-block;
  margin-top: 22px;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-2);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 64px;
  align-content: start;
}

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

.footer-nav li {
  margin: 0 0 12px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text);
  border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent-2);
}

.footer-bottom {
  background: var(--dark);
  color: rgba(246, 244, 239, 0.72);
}

.footer-bottom .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding-top: 26px;
  padding-bottom: 26px;
  font-size: 13px;
}

.footer-bottom .copyright {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-bottom-links a {
  color: rgba(246, 244, 239, 0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 244, 239, 0.25);
  padding-bottom: 2px;
}

.footer-bottom-links a:hover {
  color: #f6f4ef;
}

.cookie-settings-btn {
  background: none;
  border: 1px solid rgba(246, 244, 239, 0.4);
  color: rgba(246, 244, 239, 0.85);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
}

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

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 0 40px;
  }
}

.consent-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 200;
  width: min(880px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 1px minmax(0, 1fr);
  gap: 0 32px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  color: var(--text);
}

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

.consent-headline {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}

.consent-copy {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.consent-cats label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  cursor: pointer;
}

.consent-cats input {
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  margin: 0;
}

.consent-cats input:disabled {
  cursor: default;
}

.consent-cats .cat-locked {
  color: var(--text-muted);
}

.consent-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.consent-btn {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
}

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

.consent-btn--accept:hover {
  background: var(--accent);
}

.consent-btn--manage {
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 2px;
}

.consent-btn--manage:hover {
  color: var(--accent);
}

.consent-policy-link {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .consent-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .consent-divider {
    display: none;
  }

  .consent-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .consent-btn {
    width: auto;
    flex: 1 1 auto;
  }

  .consent-btn--manage {
    flex-basis: 100%;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 24px;
  }

  .nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-bottom: 84px;
  }

  .consent-cats {
    flex-direction: column;
    gap: 10px;
  }
}
