:root {
  --bg: #f2f6f7;
  --surface: #ffffff;
  --surface-alt: #e4edef;
  --text: #10222a;
  --text-muted: #48606a;
  --border: rgba(16, 34, 42, 0.12);
  --accent: #125e6e;
  --accent-2: #c2803d;
  --secondary: #1a3a45;
  --on-accent: #ffffff;
  --dark: #0c1c23;
  --radius: 2px;
  --radius-btn: 0px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1140px;
  --section-pad: 96px;
  --header-h: 72px;
  --header-h-shrunk: 56px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  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: 3px;
}

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);
}

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);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

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

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

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

.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: var(--on-accent);
}

.section--dark .kicker {
  opacity: 0.7;
}

.section--dark p,
.section--dark li {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  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);
}

.btn--block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: height 200ms ease;
  isolation: isolate;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  transition: height 200ms ease;
}

.site-header.is-scrolled .site-header__inner {
  height: var(--header-h-shrunk);
}

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

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

.site-header.is-scrolled .brand img {
  width: 28px;
  height: 37px;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

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

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

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

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

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

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence-notice p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  padding: 10px 0;
}

.hero {
  padding: 72px 0 48px;
  text-align: center;
}

.hero__copy {
  max-width: 720px;
  margin: 0 auto 48px;
}

.hero__copy p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 17px;
}

.hero-frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.hero-frames figure {
  margin: 0;
  flex: 1;
  max-width: 280px;
}

.hero-frames figure:nth-child(1) img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.hero-frames figure:nth-child(2) img {
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.hero-frames figure:nth-child(3) img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.hero-frames figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.category-card h3 {
  font-size: 22px;
}

.category-card p {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
}

.category-card a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  margin-top: auto;
}

.category-card a:hover {
  color: var(--accent-2);
}

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

.quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--surface);
}

.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 18px;
}

.quote-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

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

.look-item__num {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--accent-2);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.look-item h3 {
  margin-bottom: 10px;
}

.look-item p {
  color: var(--text-muted);
  font-size: 15px;
}

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

.approach-lead p {
  margin-top: 16px;
  color: var(--text-muted);
}

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

.approach-block {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.approach-block h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.approach-block p {
  color: var(--text-muted);
  font-size: 15px;
}

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

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

.amenities-list strong {
  display: block;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.page-hero {
  padding: 64px 0 40px;
}

.page-hero p {
  max-width: 62ch;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
}

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

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 32px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.venue-row--flip .venue-row__media {
  order: 2;
}

.venue-row--flip .venue-row__body {
  order: 1;
}

.venue-row__media {
  position: relative;
  min-height: 280px;
}

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

.venue-row__media--square {
  aspect-ratio: 1;
  min-height: 0;
}

.venue-row__media--square img {
  position: absolute;
}

.venue-row__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: rgba(12, 28, 35, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  z-index: 1;
  margin: 0;
  line-height: 1.25;
}

.venue-row__body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.venue-row__body h2,
.venue-row__name {
  font-size: clamp(22px, 3vw, 30px);
  display: block;
  margin: 0;
}

.venue-row__meta {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.venue-row__body p {
  color: var(--text-muted);
  font-size: 15px;
}

.venue-row__body .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.venue-row__body .btn--block {
  align-self: stretch;
}

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

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

.masonry-card__media {
  aspect-ratio: 1;
  overflow: hidden;
}

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

.masonry-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.masonry-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin: 0;
  display: block;
}

.masonry-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: 0;
  flex: none;
}

.masonry-card__body > p:not(.masonry-card__meta) {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
}

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

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

.masonry-card .btn {
  order: 3;
  margin: 0 22px 22px;
  width: calc(100% - 44px);
}

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

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

.urban-card__media {
  margin-bottom: 16px;
}

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

.urban-card h2 {
  font-size: 22px;
  margin-bottom: 6px;
  display: block;
}

.urban-card__meta {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.urban-card p {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
  margin-bottom: 16px;
}

.urban-card__foot {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.catalog-close {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 62ch;
  color: var(--text-muted);
}

.editorial-column {
  max-width: 70ch;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

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

.editorial-column section:last-child {
  border-bottom: none;
}

.editorial-column h2 {
  margin-bottom: 20px;
}

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

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

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

.band {
  padding: 64px 0;
}

.band:nth-child(3n) {
  background: var(--dark);
  color: var(--on-accent);
}

.band:nth-child(3n) h2,
.band:nth-child(3n) .kicker {
  color: var(--on-accent);
}

.band:nth-child(3n) p {
  color: rgba(255, 255, 255, 0.82);
}

.band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 70ch;
}

.band--right .band__inner {
  margin-left: auto;
  text-align: left;
}

.band--left .band__inner {
  margin-right: auto;
}

.band h2 {
  margin-bottom: 8px;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding: var(--section-pad) 0;
}

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

.contact-email {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

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

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

.form-field label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  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;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
}

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

.form-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

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

.form-error {
  display: none;
  color: #8b2e2e;
  font-size: 13px;
  margin-top: 8px;
}

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

.form-agree[aria-invalid="true"] {
  outline: 1px solid #8b2e2e;
  outline-offset: 4px;
}

.form-status {
  display: none;
  margin-top: 12px;
  color: #8b2e2e;
  font-size: 14px;
}

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

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}

.confirm-panel h2 {
  margin-bottom: 16px;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.confirm-panel .btn {
  margin-top: 20px;
}

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

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

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

.legal-body h3 {
  margin: 24px 0 10px;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.legal-body ul {
  padding-left: 1.2em;
  margin-bottom: 16px;
}

.sitemap-list {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--section-pad) 0;
  list-style: none;
}

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

.sitemap-list a {
  display: block;
  padding: 18px 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--surface-alt);
  padding-top: 64px;
  margin-top: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 36ch;
}

.footer-brand .footer-email-inline {
  font-size: 14px;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.footer-group a {
  display: block;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
}

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

.footer-group button {
  display: block;
  background: none;
  border: none;
  padding: 4px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

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

.footer-email-large {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  text-align: center;
}

.footer-bottom .independence-copy {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 72ch;
  margin: 0 auto 16px;
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 16px;
}

.footer-legal a,
.footer-legal button {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

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

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

.footer-requisites {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
}

[data-reveal] {
  opacity: 0;
  transition: opacity 240ms ease;
}

[data-reveal].is-revealed {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px;
  box-shadow: none;
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.consent-banner__copy h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

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

.consent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.consent-option {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-option strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-actions .btn {
  font-size: 13px;
  padding: 10px 16px;
}

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

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

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

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .urban-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .consent-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .hero-frames {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .hero-frames figure {
    flex: 0 0 70%;
    max-width: none;
    scroll-snap-align: start;
  }

  .hero-frames figure img {
    height: 260px !important;
  }

  .look-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .venue-row,
  .venue-row--flip {
    grid-template-columns: 1fr;
  }

  .venue-row--flip .venue-row__media,
  .venue-row--flip .venue-row__body {
    order: unset;
  }

  .venue-row__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }
}

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

  .urban-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wrap {
    width: min(100% - 28px, var(--max));
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0 32px;
  }

  .contact-form,
  .confirm-panel {
    padding: 24px 18px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions .btn {
    width: 100%;
  }
}
