: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: 2px;
  --radius-btn: 0px;
  --font-heading: Cambria, Georgia, serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
  --content-width: 1080px;
  --section-pad: 76px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
}

h2 {
  font-size: clamp(24px, 3.6vw, 36px);
}

h3 {
  font-size: 20px;
}

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

a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

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

.section-head {
  margin-bottom: 40px;
}

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

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

[hidden] {
  display: none !important;
}

.reveal {
  opacity: 0;
}

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

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

  .reveal {
    opacity: 1;
  }

  .reveal.is-visible {
    transition: none;
  }

  .consent-sheet {
    transition: none;
  }
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand:hover {
  text-decoration: none;
}

.brand__logo {
  width: 34px;
  height: 34px;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

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

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

.nav__toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 42px;
  height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav__toggle span::before {
  position: absolute;
  top: -6px;
}

.nav__toggle span::after {
  position: absolute;
  top: 6px;
}

@media (min-width: 1240px) {
  .nav__links a {
    font-size: 10.5px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 978px) and (min-width: 900px) {
  .brand__name {
    display: none;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
  }
}

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

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav__links li:last-child a {
    border-bottom: none;
  }
}

.independence-notice {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  border-radius: var(--radius);
  margin-top: 28px;
}

.page-title {
  padding-top: 64px;
  padding-bottom: 40px;
}

.page-title .kicker {
  margin-bottom: 12px;
}

.page-title p.lede {
  color: var(--text-muted);
  max-width: 680px;
  margin-top: 16px;
  font-size: 17px;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--surface-alt);
}

.hero__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 33.3333%;
  object-fit: cover;
}

.hero__panel {
  position: relative;
  z-index: 1;
  width: min(62%, 700px);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 52px 48px;
}

.hero__panel h1 {
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__panel .kicker {
  margin-bottom: 16px;
}

.hero__intro {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 520px;
}

.hero__meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__meta div {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text);
  letter-spacing: -0.4px;
}

@media (max-width: 899px) {
  .hero {
    min-height: 0;
    display: block;
  }

  .hero__img {
    position: static;
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .hero__panel {
    width: 100%;
    margin: 0;
    border-left: none;
    border-right: none;
    padding: 44px 24px 48px;
  }
}

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

@media (max-width: 899px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card {
  position: relative;
  display: block;
  min-height: 460px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  overflow: hidden;
}

.cat-card:hover {
  text-decoration: none;
}

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

.cat-card__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 22px 22px 24px;
}

.cat-card__panel h3 {
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.cat-card__panel p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.cat-card__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.notes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 899px) {
  .notes-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 559px) {
  .notes-row {
    grid-template-columns: 1fr;
  }
}

.note {
  border-top: 2px solid var(--accent);
  padding-top: 16px;
}

.note h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.note p {
  font-size: 14px;
  color: var(--text-muted);
}

blockquote.note {
  border-top: 2px solid var(--accent-2);
}

.note__quote {
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-heading);
  line-height: 1.5;
}

.note__cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

@media (max-width: 767px) {
  .amenities-list {
    grid-template-columns: 1fr;
  }
}

.amenities-list li {
  list-style: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.amenities-list li strong {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-right: 8px;
}

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

.strip-quiet {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.strip-quiet .container {
  padding-top: 52px;
  padding-bottom: 52px;
}

.strip-quiet h2 {
  margin-bottom: 14px;
}

.strip-quiet p {
  color: var(--text-muted);
  max-width: 720px;
}

.strip-quiet .kicker {
  margin-bottom: 12px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.photo-strip figure {
  border: 1px solid var(--border);
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-strip .ps-a {
  grid-column: span 2;
  height: 300px;
}

.photo-strip .ps-b {
  grid-column: span 2;
  height: 340px;
  margin-top: 28px;
}

.photo-strip .ps-c {
  grid-column: span 2;
  height: 260px;
}

.photo-strip .ps-d {
  grid-column: span 3;
  height: 300px;
  margin-top: 16px;
}

.photo-strip .ps-e {
  grid-column: span 3;
  height: 300px;
  margin-top: 44px;
}

@media (max-width: 899px) {
  .photo-strip .ps-a,
  .photo-strip .ps-b,
  .photo-strip .ps-c,
  .photo-strip .ps-d,
  .photo-strip .ps-e {
    grid-column: span 3;
    margin-top: 0;
    height: 240px;
  }
}

@media (max-width: 559px) {
  .photo-strip .ps-a,
  .photo-strip .ps-b,
  .photo-strip .ps-c,
  .photo-strip .ps-d,
  .photo-strip .ps-e {
    grid-column: span 6;
    height: 220px;
  }
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

@media (max-width: 899px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 559px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

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

.venue-card__photo {
  display: block;
  overflow: hidden;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

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

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.venue-card__name {
  font-size: 21px;
  letter-spacing: -0.4px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--accent);
}

.venue-card__loc {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.venue-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.venue-card__btn {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  background: none;
}

.venue-card__btn:hover {
  text-decoration: none;
  color: var(--secondary);
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .card-grid-2 {
    grid-template-columns: 1fr;
  }
}

.venue-card--tall .venue-card__photo {
  position: relative;
  border-bottom: none;
}

.venue-card--tall .venue-card__photo img {
  height: 380px;
}

.venue-card--tall .venue-card__nameplate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(43, 18, 25, 0.78);
  color: var(--on-accent);
  padding: 14px 20px 16px;
}

.venue-card--tall .venue-card__nameplate h3 {
  color: var(--on-accent);
  font-size: 24px;
  letter-spacing: -0.4px;
}

.venue-card--tall .venue-card__nameplate span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
}

.venue-card--tall .venue-card__desc {
  font-size: 15px;
}

.venue-card--tall .venue-card__body {
  padding: 24px 22px 26px;
}

.catalog-closing {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 720px;
  font-size: 15px;
}

.catalog-closing a {
  font-weight: 700;
}

.prose {
  max-width: 760px;
}

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

.prose .num-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.prose section {
  margin-bottom: 72px;
}

.prose section:last-child {
  margin-bottom: 0;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

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

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

.contact-intro .mail {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

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

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

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

.form-field textarea {
  min-height: 140px;
  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-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--accent);
  outline-color: var(--accent);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 559px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.agree-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 8px;
  background: var(--surface);
}

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

.agree-box label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.agree-box label a {
  color: var(--accent);
  font-weight: 700;
}

.field-error {
  display: block;
  color: var(--accent);
  font-size: 13px;
  margin: 6px 0 14px;
}

.form-status {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 14px;
  min-height: 1.2em;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  cursor: pointer;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--secondary);
}

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

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

.confirmation {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 32px;
}

.confirmation h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

.confirmation .ref {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.04em;
}

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

.legal-body h1 {
  margin-bottom: 10px;
}

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

.legal-body h2 {
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-body p {
  margin-bottom: 16px;
}

.legal-body li {
  margin-bottom: 8px;
}

.legal-body a {
  font-weight: 700;
}

.cookie-cta {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  background: var(--surface);
  padding: 20px 22px;
  margin-bottom: 36px;
}

.cookie-cta p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.cookie-cta .btn {
  padding: 11px 22px;
}

.sitemap-row {
  font-size: 17px;
  line-height: 2.2;
  max-width: 760px;
}

.sitemap-row a {
  color: var(--accent);
  font-weight: 700;
}

.sitemap-row .dot {
  color: var(--text-muted);
  margin: 0 10px;
}

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

.footer-groups {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 40px;
}

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

  .footer-brand {
    grid-column: span 2;
  }
}

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

  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand .brand__name {
  font-size: 21px;
}

.footer-brand .brand__logo {
  width: 38px;
  height: 38px;
}

.footer-blurb {
  font-size: 14px;
  color: var(--text-muted);
  margin: 18px 0 16px;
  max-width: 340px;
}

.footer-email {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-notice {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 340px;
  border-radius: var(--radius);
}

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.cookie-settings-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px;
  cursor: pointer;
}

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

.consent-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--surface);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 240ms ease;
}

.consent-sheet.is-open {
  transform: translateY(0);
}

.consent-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 24px 24px 28px;
}

.consent-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.consent-head h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.consent-head p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 4px;
}

.consent-head p a {
  color: var(--accent);
  font-weight: 700;
}

.consent-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 34px;
  height: 34px;
  flex: none;
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}

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

.consent-manage-btn {
  background: none;
  border: none;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0;
  margin: 18px 0 0;
  cursor: pointer;
}

.consent-manage-btn[aria-expanded="true"] {
  color: var(--secondary);
}

.consent-categories {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.consent-categories.is-open {
  grid-template-rows: 1fr;
}

.consent-categories__inner {
  overflow: hidden;
}

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

.consent-cat:first-child {
  border-top: none;
}

.consent-cat__info strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.consent-cat__info span {
  font-size: 13px;
  color: var(--text-muted);
}

.consent-cat__info .locked {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.consent-toggle {
  position: relative;
  flex: none;
}

.consent-toggle input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.consent-toggle__track {
  display: block;
  width: 44px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-alt);
  position: relative;
  transition: background 160ms ease, border-color 160ms ease;
}

.consent-toggle__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 160ms ease;
}

.consent-toggle input:checked + .consent-toggle__track {
  background: var(--accent);
  border-color: var(--accent);
}

.consent-toggle input:checked + .consent-toggle__track::after {
  transform: translateX(20px);
}

.consent-toggle input:disabled + .consent-toggle__track {
  opacity: 0.55;
}

.consent-toggle input:focus-visible + .consent-toggle__track {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.consent-actions .btn {
  padding: 12px 24px;
}

.consent-save {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (min-width: 900px) {
  .consent-sheet {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 420px;
    max-width: calc(100vw - 48px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .consent-inner {
    padding: 22px 24px 24px;
  }
}

.page-body {
  padding-bottom: 76px;
}
