:root {
  --bg: #f4f5fa;
  --surface: #ffffff;
  --surface-alt: #e8eaf4;
  --text: #191c2b;
  --text-muted: #515674;
  --border: rgba(25, 28, 43, 0.12);
  --accent: #3a4485;
  --accent-2: #b08a3e;
  --secondary: #262c4d;
  --on-accent: #ffffff;
  --dark: #151830;
  --radius: 10px;
  --btn-radius: 0px;
  --font-heading: 'Hoefler Text', 'Book Antiqua', Georgia, serif;
  --font-body: Avenir, 'Segoe UI', Arial, sans-serif;
  --max-width: 1180px;
  --section-pad: 108px;
  --h1-size: clamp(40px, 6.5vw, 72px);
  --h2-size: clamp(28px, 4.4vw, 44px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  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: -0.2px;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

h1 {
  font-size: var(--h1-size);
  line-height: 1.08;
}

h2 {
  font-size: var(--h2-size);
}

p {
  margin: 0 0 1.25em;
}

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

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

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

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  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, transform 0.2s ease;
  text-align: center;
}

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

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

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

.btn--text {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 16px;
}

.btn--text::after {
  content: " →";
}

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

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

.independence-notice--hero {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

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

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header__brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 14px;
}

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

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

.brand-lockup__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-lockup__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.site-header__nav-row {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 28px;
  padding: 12px 0 14px;
  list-style: none;
  margin: 0;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.site-header__mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

@media (max-width: 900px) {
  .site-header__brand-row {
    display: none;
  }

  .site-header__mobile-bar {
    display: flex;
  }

  .site-header__nav-row {
    display: none;
    border-top: none;
    padding-bottom: 16px;
  }

  .site-header__nav-row.is-open {
    display: block;
  }

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

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

  .nav-toggle {
    display: block;
  }
}

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

.section--dark {
  background: var(--dark);
  color: var(--on-accent);
}

.section--dark .kicker {
  color: var(--accent-2);
}

.section--dark p,
.section--dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

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

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

.page-header {
  padding: calc(var(--section-pad) * 0.65) 0 calc(var(--section-pad) * 0.45);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-header .container > h1 {
  max-width: none;
}

.hero-offset {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg);
  overflow: hidden;
}

.hero-offset__image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.666%;
  height: 100%;
}

.hero-offset__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-offset__panel {
  position: relative;
  z-index: 2;
  width: 58%;
  margin: 80px 0 80px 0;
  padding: 56px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: none;
}

.hero-offset__panel h1 {
  margin-bottom: 0.5em;
}

@media (max-width: 900px) {
  .hero-offset {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-offset__image-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    order: -1;
  }

  .hero-offset__panel {
    width: 100%;
    margin: 0;
    padding: 40px 24px;
    border-left: 1px solid var(--border);
    border-top: none;
  }
}

.category-rows {
  display: flex;
  flex-direction: column;
}

.category-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 24px 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.category-row:first-child {
  border-top: 1px solid var(--border);
}

.category-row h3 {
  font-size: 22px;
  margin: 0;
}

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

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

.numbered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.numbered-block {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

.numbered-block:hover {
  transform: translateY(-2px);
}

.numbered-block__num {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.numbered-block h3 {
  font-size: 20px;
  margin-bottom: 0.5em;
}

.numbered-block p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

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

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.three-col__item {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.three-col__item h3 {
  font-size: 18px;
  margin-bottom: 0.75em;
}

.three-col__item p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

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

.regions-composition {
  text-align: center;
}

.regions-composition__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 48px;
  margin: 40px 0;
}

.regions-composition__names span {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--on-accent);
  opacity: 0.92;
}

.regions-composition p {
  max-width: 56ch;
  margin: 0 auto;
}

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

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

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

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

.testimonial-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.testimonial-card cite {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.catalog-grid .venue-card {
  transition: transform 0.2s ease;
}

.catalog-grid .venue-card:hover {
  transform: translateY(-2px);
}

.catalog-grid .venue-card__image img {
  transition: transform 0.25s ease;
}

.catalog-grid .venue-card:hover .venue-card__image img {
  transform: scale(1.02);
}

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

.venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.venue-card__image {
  overflow: hidden;
}

.venue-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.venue-card__body {
  padding: 28px 32px 32px;
}

.venue-card__body h2 {
  font-size: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 0.35em;
}

.venue-card__location {
  font-size: 14px;
  color: var(--accent-2);
  margin-bottom: 12px;
}

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

.quiet-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quiet-list__row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.quiet-list__row:first-child {
  border-top: 1px solid var(--border);
}

.quiet-list__row:hover {
  transform: translateY(-2px);
}

.quiet-list__thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.quiet-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.quiet-list__row:hover .quiet-list__thumb img {
  transform: scale(1.02);
}

.quiet-list__content h2 {
  font-size: 20px;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-2);
  display: inline-block;
}

.quiet-list__location {
  font-size: 13px;
  color: var(--accent-2);
  margin-bottom: 8px;
}

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

@media (max-width: 768px) {
  .quiet-list__row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .quiet-list__row .btn--text {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
  }
}

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

.waterfront-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease;
}

.waterfront-row:hover {
  transform: translateY(-2px);
}

.waterfront-row--reverse {
  grid-template-columns: 1fr 40%;
}

.waterfront-row--reverse .waterfront-row__media {
  order: 2;
}

.waterfront-row--reverse .waterfront-row__content {
  order: 1;
}

.waterfront-row__media {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.waterfront-row__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.waterfront-row:hover .waterfront-row__media img {
  transform: scale(1.02);
}

.waterfront-row__content {
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.waterfront-row__content h2 {
  font-size: 22px;
  margin-bottom: 0.35em;
}

.waterfront-row__location {
  font-size: 14px;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.waterfront-row__desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.waterfront-row__action {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

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

  .waterfront-row--reverse .waterfront-row__media,
  .waterfront-row--reverse .waterfront-row__content {
    order: unset;
  }
}

.signature-bands {
  display: flex;
  flex-direction: column;
}

.signature-band {
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.signature-band:first-child {
  border-top: 1px solid var(--border);
}

.signature-band:hover {
  transform: translateY(-2px);
}

.signature-band__image {
  overflow: hidden;
}

.signature-band__image img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.signature-band:hover .signature-band__image img {
  transform: scale(1.02);
}

.signature-band__body {
  padding: 36px 0 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.signature-band__body h2 {
  font-size: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: inline-block;
  margin-bottom: 0.35em;
}

.signature-band__location {
  font-size: 14px;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.signature-band__desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.catalog-closing {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 16px;
}

.editorial-column {
  max-width: 70ch;
  margin: 0 auto;
}

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

.editorial-section:first-of-type {
  padding-top: 0;
}

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

.editorial-section h2 {
  font-size: 26px;
  margin-bottom: 1em;
}

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

.insights-index {
  position: sticky;
  top: 120px;
}

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

.insights-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.insights-index li {
  margin-bottom: 8px;
}

.insights-index a {
  font-size: 15px;
  color: var(--text-muted);
  display: block;
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
}

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

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

  .insights-index {
    position: static;
  }

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

  .insights-index a {
    border-left: none;
    padding-left: 0;
  }
}

.contact-intro-band {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) * 0.55) 0;
  margin-bottom: 48px;
}

.contact-form-wrap {
  max-width: 720px;
}

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

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

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

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

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

.form-checkbox label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.form-error {
  font-size: 13px;
  color: #8b2942;
  margin-top: 6px;
}

.contact-confirmation {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 560px;
}

.contact-confirmation h2 {
  font-size: 24px;
}

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

.legal-content h1 {
  margin-bottom: 0.5em;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 2em;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 1.5em;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
}

.sitemap-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-row:first-child {
  border-top: 1px solid var(--border);
}

.sitemap-row a {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}

.sitemap-row p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

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

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px 32px;
  padding: 64px 0 48px;
}

.site-footer__brand .brand-lockup {
  margin-bottom: 16px;
}

.site-footer__blurb {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.site-footer__email {
  font-size: 15px;
}

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

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 8px;
}

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

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

.site-footer__cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__cookie-btn:hover {
  color: var(--accent);
}

.site-footer__bottom {
  background: var(--surface-alt);
  padding: 28px 0 32px;
  text-align: center;
}

.site-footer__bottom .independence-notice {
  margin-bottom: 16px;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.site-footer__legal-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.site-footer__copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.site-footer__requisites {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
  max-width: 90ch;
  margin: 0 auto;
  line-height: 1.5;
}

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

@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  :root {
    --section-pad: 72px;
  }
}

.consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  color: var(--on-accent);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
}

.consent-bar.is-hidden {
  display: none;
}

.consent-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.consent-bar__copy {
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.consent-bar__copy a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-bar__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.consent-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--on-accent);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.consent-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

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

.consent-categories {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.consent-categories.is-open {
  max-height: 400px;
}

.consent-categories .consent-bar__controls--save {
  padding-top: 12px;
}

.contact-confirmation.is-hidden {
  display: none;
}

.consent-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.consent-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.consent-category input[type="checkbox"]:disabled {
  opacity: 0.6;
}

.consent-category__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 28px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  min-height: 50vh;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading--left {
  text-align: left;
  margin-left: 0;
}
