:root {
  --bg: #0d0d0f;
  --surface: #151517;
  --surface-alt: #1d1d20;
  --text: #f0f0f2;
  --text-muted: #a8a8ae;
  --border: rgba(240, 240, 242, 0.15);
  --accent: #c7ccd4;
  --accent-2: #8f7c52;
  --secondary: #222226;
  --on-accent: #111113;
  --deep: #08080a;
  --card: #ebe8e1;
  --card-text: #1a1a1c;
  --card-muted: #5c5c62;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Book Antiqua', Palatino, Georgia, serif;
  --font-body: Tahoma, Verdana, sans-serif;
  --content: 1180px;
  --section-pad: 108px;
  --header-h: 72px;
  --header-h-shrunk: 56px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
  -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(--accent-2);
}

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

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

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

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.text-link {
  color: var(--accent);
  font-size: 15px;
}

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.notice-strip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

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

.header-brand-row {
  border-bottom: 1px solid var(--border);
}

.header-brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  padding: 8px 0;
  transition: min-height 180ms ease, padding 180ms ease;
}

.header-nav-row {
  min-height: 44px;
  transition: min-height 180ms ease;
}

.header-nav-row .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: inherit;
}

.site-header.is-shrunk .header-brand-inner {
  min-height: 40px;
  padding: 2px 0;
}

.site-header.is-shrunk .header-nav-row {
  min-height: 36px;
}

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

.site-header.is-shrunk .brand-name {
  font-size: 16px;
}

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

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

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

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

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

.hero {
  position: relative;
  padding: calc(var(--section-pad) - 24px) 0 var(--section-pad);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  min-height: 520px;
}

.hero-copy h1 {
  margin-bottom: 28px;
  max-width: 14ch;
}

.hero-intro {
  margin-left: min(18%, 140px);
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 17px;
}

.hero-photo {
  justify-self: end;
  width: min(100%, 420px);
  margin-bottom: -72px;
  position: relative;
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

.section-head {
  margin-bottom: 48px;
  max-width: 62ch;
}

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

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

.category-card {
  background: var(--card);
  color: var(--card-text);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

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

.category-card-body {
  padding: 22px 22px 26px;
  border-top: 1px solid rgba(17, 17, 19, 0.12);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.category-card h3 {
  margin: 0;
  color: var(--card-text);
}

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

.category-card .text-link {
  color: var(--on-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-2);
  align-self: flex-start;
}

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

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

.regions-band .section-head {
  margin-bottom: 56px;
}

.regions-compose {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 64px;
  justify-content: space-between;
  align-items: baseline;
}

.regions-compose span {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--accent);
  line-height: 1.1;
}

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

.amenity-block {
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.amenity-block:last-child {
  border-right: none;
}

.amenity-block h3 {
  margin-bottom: 14px;
  color: var(--accent);
}

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

.split-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.split-about img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.split-about .copy p {
  color: var(--text-muted);
}

.page-hero {
  padding: calc(var(--section-pad) - 32px) 0 48px;
  border-bottom: 1px solid var(--border);
}

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

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

.catalog-close p {
  max-width: 62ch;
  color: var(--text-muted);
}

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

.city-card {
  background: var(--card);
  color: var(--card-text);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.city-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.city-card-body {
  padding: 20px 20px 24px;
  border-top: 1px solid rgba(17, 17, 19, 0.12);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.card-title-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.city-card h2 {
  font-size: clamp(20px, 2vw, 24px);
  margin: 0;
  color: var(--card-text);
}

.city-meta {
  font-size: 14px;
  color: var(--card-muted);
}

.city-card .card-title-stack .city-meta {
  display: block;
}

.city-card p {
  color: var(--card-muted);
  font-size: 15px;
  flex: 1;
}

.city-card .btn {
  margin-top: auto;
}

.quiet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 64px 0 0;
}

.quiet-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.quiet-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

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

.quiet-row-copy h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 8px;
}

.quiet-row-copy .city-meta {
  margin-bottom: 10px;
  display: block;
  color: var(--text-muted);
}

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

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

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

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

.masonry-card-body {
  padding: 28px 26px 30px;
  background: var(--surface-alt);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.masonry-card h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.masonry-card .city-meta {
  display: block;
  color: var(--text-muted);
}

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

.masonry-card--image-bottom .masonry-card-body h2 {
  border-top: none;
  padding-top: 0;
}

.masonry-card .masonry-btn {
  margin: 0 26px 28px;
  align-self: stretch;
  text-align: center;
}

.editorial-lead {
  padding: calc(var(--section-pad) - 24px) 0 48px;
  border-bottom: 1px solid var(--border);
}

.editorial-lead .lead {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
  font-family: var(--font-heading);
  max-width: 28ch;
  margin: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.editorial-block h2 {
  margin-bottom: 18px;
}

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

.contact-intro {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) - 24px) 0 56px;
  border-bottom: 1px solid var(--border);
}

.contact-intro p {
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 18px;
}

.contact-email {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
}

.contact-email a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-2);
}

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

.contact-form {
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.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-2);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 8px;
}

.agree-row input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.agree-row label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.field-error {
  color: #d4a0a0;
  font-size: 13px;
  margin-top: 6px;
}

.form-actions {
  margin-top: 8px;
}

.form-status[aria-live] {
  margin-top: 14px;
  color: #d4a0a0;
  font-size: 14px;
}

.confirm-panel {
  max-width: 640px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

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

.confirm-again {
  margin-top: 24px;
}

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

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

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.legal-body h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.6vw, 30px);
}

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

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

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

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

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

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

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

.site-footer {
  background: var(--surface-alt);
  padding: 56px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand-block {
  max-width: 360px;
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
  max-width: 640px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-links a:hover {
  color: var(--text);
}

.footer-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.footer-regions {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.footer-mail {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 32px;
}

.footer-mail:hover {
  color: var(--accent-2);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom button:hover {
  color: var(--text);
}

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

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

.consent__panel {
  pointer-events: auto;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px 22px 20px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  transition: transform 240ms ease;
}

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

.consent__title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 0 0 10px;
}

.consent__text {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 10px;
}

.consent__text a {
  color: var(--accent);
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 18px;
}

.consent__link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

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

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0;
}

.consent__cat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--secondary);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.consent__cat input {
  margin-top: 3px;
}

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

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

.consent__policy {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 24px;
    bottom: 24px;
    padding: 0;
    width: 400px;
  }

  .consent__panel {
    border-radius: var(--radius);
    margin: 0;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 240ms ease, opacity 240ms ease;
  }

  .consent.is-open .consent__panel {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 88px;
  }

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

  .amenity-block:nth-child(2n) {
    border-right: none;
  }

  .amenity-block:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }
}

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

  .header-nav-row {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    min-height: 0;
    z-index: 101;
  }

  .header-nav-row.is-open {
    display: block;
  }

  .header-nav-row .container {
    display: block;
    padding-top: 8px;
    padding-bottom: 16px;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .site-nav a {
    display: block;
    padding: 12px 4px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 36px;
  }

  .hero-intro {
    margin-left: 0;
  }

  .hero-photo {
    justify-self: start;
    width: min(100%, 360px);
    margin-bottom: -48px;
  }

  .category-grid,
  .city-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-about {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-about img {
    aspect-ratio: 16 / 10;
  }

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

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

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

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

  .quiet-row .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .footer-top {
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  :root {
    --section-pad: 72px;
  }

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

  .category-grid,
  .city-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-block {
    border-right: none;
  }

  .regions-compose {
    flex-direction: column;
    gap: 18px;
  }

  .brand-name {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-photo {
    width: 100%;
  }

  .quiet-row {
    grid-template-columns: 1fr;
  }

  .quiet-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .consent__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .consent__actions .btn {
    width: 100%;
  }
}
