: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: #2b1219;
  --radius: 0px;
  --btn-radius: 0px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Garamond, "EB Garamond", Georgia, serif;
  --font-body: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  --max: 1140px;
  --section-pad: 96px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

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

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

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

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

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

.text-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

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

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

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

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

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

.independence {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}

.independence p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.6rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

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

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 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);
}

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

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

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

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

  .nav__links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: min(78vh, 680px);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.hero__media {
  grid-column: 2;
  grid-row: 1;
  min-height: 420px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.hero__panel {
  grid-column: 1 / 2;
  grid-row: 1;
  align-self: center;
  position: relative;
  z-index: 2;
  margin-left: max(1.25rem, calc((100vw - var(--max)) / 2));
  margin-right: -18%;
  background: var(--surface);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--border);
  max-width: 520px;
}

.hero__panel p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__media {
    grid-column: 1;
    grid-row: 1;
    min-height: 280px;
  }

  .hero__media img {
    min-height: 280px;
  }

  .hero__panel {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    max-width: none;
    border-left: 0;
    border-right: 0;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 200ms ease;
}

.category-card:hover {
  box-shadow: var(--shadow);
}

.category-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__body {
  padding: 1.4rem 1.35rem 1.6rem;
}

.category-card__body h3 {
  margin-bottom: 0.5rem;
}

.category-card__body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}

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

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

.approach {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

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

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approach-block {
  text-align: left;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.approach-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.approach-block p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 0.75rem;
}

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

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

.amenities-lead {
  max-width: 62ch;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity-tile {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
}

.amenity-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.amenity-tile p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

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

.mission {
  max-width: 68ch;
  margin: 0 auto;
  text-align: left;
}

.mission::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

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

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

.testimonial {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.testimonial:first-child {
  padding-top: 0;
}

.testimonial:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  color: var(--text);
}

.testimonial cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

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

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

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
}

.accordion__btn::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__btn::after {
  content: "–";
}

.accordion__panel {
  display: none;
  padding: 0 0 1.35rem;
  color: var(--text-muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.accordion__panel p {
  margin: 0 0 0.75rem;
}

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

.page-hero {
  padding: calc(var(--section-pad) * 0.7) 0 calc(var(--section-pad) * 0.55);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero p {
  max-width: 62ch;
  color: var(--text-muted);
  margin: 0;
  font-size: 1.08rem;
}

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

.catalog-close {
  padding: 0 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 62ch;
}

.row-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.row-card:first-child {
  padding-top: 0;
}

.row-card--flip {
  grid-template-columns: 1fr 40%;
}

.row-card--flip .row-card__media {
  order: 2;
}

.row-card--flip .row-card__body {
  order: 1;
}

.row-card__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.row-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.row-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(43, 18, 25, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.3px;
}

.row-card__meta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.row-card__body p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

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

  .row-card--flip .row-card__media,
  .row-card--flip .row-card__body {
    order: initial;
  }
}

.band-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  transition: box-shadow 200ms ease;
}

.band-card:hover {
  box-shadow: var(--shadow);
}

.band-card:last-of-type {
  margin-bottom: 0;
}

.band-card__media {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.band-card__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.band-card__body {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 0.5rem 0.5rem;
}

.band-card__meta {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.band-card__body h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 0.75rem;
}

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

.band-card__actions {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.list-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  transition: box-shadow 200ms ease;
}

.list-card:hover {
  box-shadow: var(--shadow);
}

.list-card:last-of-type {
  margin-bottom: 0;
}

.list-card__media {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

.list-card__body {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.list-card__kicker {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.list-card__body h2 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 0.45rem;
}

.list-card__meta {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.list-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.list-card__actions {
  justify-self: end;
}

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

  .list-card__media {
    width: 96px;
    height: 96px;
  }

  .list-card__body {
    text-align: left;
  }

  .list-card__actions {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .list-card__actions .btn {
    width: 100%;
    text-align: center;
  }
}

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

.editorial-block {
  max-width: 72ch;
  margin: 0 0 4.5rem;
}

.editorial-block:last-child {
  margin-bottom: 0;
}

.editorial-block .kicker {
  color: var(--accent);
}

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

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

.contact-wrap .lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 640px;
}

.contact-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius);
  max-width: 640px;
}

.confirm-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  max-width: 640px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
}

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

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

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.form-agree input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  display: none;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-error.is-visible {
  display: block;
}

.contact-email {
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

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

.legal-content {
  padding: var(--section-pad) 0;
  max-width: 72ch;
  margin: 0 auto;
}

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

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

.legal-content h3 {
  margin-top: 1.5rem;
}

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

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

.sitemap-list > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  align-items: center;
  line-height: 2;
}

.sitemap-links a {
  text-decoration: none;
  color: var(--accent);
  white-space: nowrap;
}

.sitemap-links a:hover {
  text-decoration: underline;
}

.sitemap-links .sep {
  color: var(--text-muted);
  margin: 0 0.55rem;
  user-select: none;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 0;
  border-top: 1px solid transparent;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer-brand .brand {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand .brand__name {
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42ch;
  margin-bottom: 1rem;
}

.footer-brand .mailto {
  font-size: 0.92rem;
}

.footer-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: flex-end;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 140px;
}

.footer-group a {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.footer-independence {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
}

.footer-independence p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 80ch;
  margin-inline: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.35rem 0 1.75rem;
  text-align: center;
}

.footer-bottom .copy {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom .requisites {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-bottom [data-cookie-settings] {
  display: inline-block;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-bottom [data-cookie-settings]:hover {
  color: #ffffff;
}

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

  .footer-groups {
    justify-content: flex-start;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

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

  .footer-groups {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 1rem;
  pointer-events: none;
}

.consent__panel {
  pointer-events: auto;
  width: min(100%, 720px);
  margin: 0 auto;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem 1.25rem;
  border-radius: var(--radius);
}

.consent__panel[hidden] {
  display: none;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.consent__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.consent__options {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.consent__option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text);
}

.consent__option input {
  margin-top: 0.2rem;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.consent__actions button {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border-radius: var(--btn-radius);
  border: 1px solid var(--accent);
  cursor: pointer;
  background: var(--accent);
  color: var(--on-accent);
}

.consent__actions button[data-action="reject"],
.consent__actions button[data-action="save"] {
  background: transparent;
  color: var(--accent);
}

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

.cookie-settings-inline {
  margin: 1.5rem 0;
}

@media (max-width: 480px) {
  .consent__actions {
    flex-direction: column;
  }

  .consent__actions button {
    width: 100%;
  }
}
