:root {
  --bg: #0b1220;
  --surface: #121b2c;
  --surface-alt: #18243a;
  --text: #eef2f8;
  --text-muted: #9fb0c6;
  --border: rgba(238, 242, 248, 0.14);
  --accent: #d9b382;
  --accent-2: #6fa3b8;
  --secondary: #1b2942;
  --on-accent: #111a29;
  --deep: #070d17;
  --radius: 4px;
  --radius-btn: 6px;
  --font-heading: Cambria, Georgia, serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
  --max: 1040px;
  --section-pad: 68px;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

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

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

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}

p {
  margin: 0 0 1em;
}

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

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

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

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

.band {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.band-alt {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

.band-flat {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(100% - 1.5rem, 1200px);
  margin-inline: auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

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

.brand-lockup img {
  width: 28px;
  height: 34px;
  object-fit: contain;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex-wrap: wrap;
}

.nav-center a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

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

.nav-contact {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-contact[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  width: 42px;
  height: 36px;
  padding: 0;
  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);
}

.independence {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: var(--deep);
}

.independence-home {
  margin: 1.5rem auto 0;
  width: min(100% - 2rem, var(--max));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

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

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

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

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

.hero-corner {
  position: relative;
  padding: 3.5rem 0 5.5rem;
  background: linear-gradient(180deg, var(--bg), var(--surface));
  overflow: hidden;
}

.hero-corner .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.hero-corner h1 {
  grid-column: 1 / -1;
  max-width: 18ch;
  margin-inline: 0;
  margin-bottom: 0;
  justify-self: start;
}

.hero-intro {
  grid-column: 2;
  grid-row: 2;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
  padding-top: 0.25rem;
}

.hero-photo {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
  width: min(320px, 100%);
  aspect-ratio: 1;
  margin-bottom: -4.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

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

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin-inline: auto;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.cat-card img {
  width: 100%;
  height: 70%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.cat-panel {
  margin-top: -28%;
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cat-panel h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0;
}

.cat-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.cat-panel a {
  font-weight: 700;
  color: var(--accent);
  align-self: flex-start;
}

.cat-panel a:hover {
  color: var(--accent-2);
}

.mission-block {
  max-width: 46rem;
  margin-inline: auto;
}

.mission-pull {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.25;
  color: var(--accent);
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

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

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

.quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  background: var(--surface);
}

.quote-card blockquote {
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.quote-card cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.photo-strip-intro {
  max-width: 40rem;
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.1fr;
  grid-template-rows: 180px 220px;
  gap: 0.75rem;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.mosaic img:nth-child(1) {
  grid-row: 1 / 3;
  height: 100%;
}

.mosaic img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.mosaic img:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 1;
}

.mosaic img:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.mosaic img:nth-child(5) {
  grid-column: 4;
  grid-row: 2;
}

.page-title-block {
  padding: 2.75rem 0 0;
  background: linear-gradient(180deg, var(--bg), var(--surface));
}

.page-title-block .container {
  padding-bottom: 0.5rem;
}

.page-title-block h1 {
  margin-bottom: 0.65rem;
}

.page-lead {
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: 0;
  margin-bottom: 0;
}

.catalog-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

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

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

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

.highlight-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.9rem 1rem 1rem;
  gap: 0.45rem;
}

.highlight-body .kicker {
  margin-bottom: 0.15rem;
}

.highlight-body h2 {
  font-size: 1.15rem;
  margin: 0;
}

.highlight-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.highlight-body p.desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
  margin: 0.2rem 0 0.75rem;
}

.highlight-body .btn {
  margin-top: auto;
  align-self: stretch;
}

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

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

.quiet-row img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius);
}

.quiet-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quiet-copy h2 {
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.quiet-copy .meta {
  font-size: 0.8rem;
  color: var(--accent-2);
  margin: 0 0 0.35rem;
}

.quiet-copy .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.quiet-actions {
  border-left: 1px solid var(--border);
  padding-left: 1rem;
  display: flex;
  align-items: center;
}

.catalog-close {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 58ch;
}

.editorial {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

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

.editorial-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.editorial-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.contact-intro-band {
  background: var(--surface-alt);
  padding: 2.5rem 0 2.25rem;
  border-bottom: 1px solid var(--border);
}

.contact-intro-band p {
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 0.75rem;
}

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

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

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

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.15rem 0;
}

.agree-row input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.field-error {
  display: none;
  font-size: 0.82rem;
  color: #e8a0a0;
  margin-top: 0.35rem;
}

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

.form-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: #e8a0a0;
}

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

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

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

.legal-body {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

.legal-body .container {
  max-width: 70ch;
}

.legal-body h2 {
  margin-top: 1.75rem;
}

.legal-body h3 {
  margin-top: 1.15rem;
  color: var(--accent);
}

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

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.sitemap-list li {
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

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

.sitemap-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-bottom: 2rem;
}

.footer-brand {
  max-width: 340px;
  flex-shrink: 0;
}

.footer-brand .brand-lockup {
  margin-bottom: 0.85rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.footer-brand a.mail {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-groups {
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.footer-group {
  min-width: 140px;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

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

.footer-group li {
  margin-bottom: 0.4rem;
}

.footer-group a,
.footer-group button {
  color: var(--text);
  font-size: 0.9rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem 1.75rem;
  text-align: center;
}

.footer-bottom .independence {
  max-width: 640px;
  margin: 0 auto 1rem;
  text-align: left;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  margin-bottom: 0.85rem;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.82rem;
}

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

.copyright {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 320ms ease, transform 320ms ease;
}

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

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

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

.consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  width: min(380px, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.05rem 1.05rem;
  box-shadow: none;
}

.consent p {
  margin: 0 0 0.9rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.consent-actions button {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.55rem 0.35rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--secondary);
  color: var(--text);
}

.consent-actions button.consent-accept {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.consent-actions button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.consent-manage {
  background: none;
  border: none;
  color: var(--accent-2);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.5rem;
}

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

.consent-cats {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height 280ms ease, opacity 220ms ease, margin 220ms ease;
}

.consent-cats.is-open {
  max-height: 320px;
  opacity: 1;
  margin: 0.5rem 0 0.75rem;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.consent-cat input {
  margin-top: 0.15rem;
}

.consent-cat strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.consent-link {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

@media (max-width: 1024px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .mosaic img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }

  .mosaic img:nth-child(1) {
    grid-column: 1 / -1;
    height: 260px;
  }

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

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-center,
  .nav-contact {
    display: none;
  }

  .nav-inner.is-open .nav-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / -1;
    gap: 0.15rem;
    padding: 0.5rem 0 1rem;
  }

  .nav-inner.is-open .nav-contact {
    display: block;
    grid-column: 1 / -1;
    padding-bottom: 1rem;
  }

  .hero-corner .container {
    grid-template-columns: 1fr;
  }

  .hero-corner h1 {
    max-width: none;
  }

  .hero-intro {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-photo {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-bottom: -3rem;
    width: min(260px, 70%);
  }

  .cat-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

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

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

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

  .quiet-actions {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 0.75rem;
  }

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

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

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

  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 640px) {
  .consent {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: 12px 12px 0 0;
  }
}

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

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

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

@media (max-width: 480px) {
  .nav-inner {
    width: min(100% - 1rem, 1200px);
  }

  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero-corner {
    padding: 2.5rem 0 4rem;
  }

  .mosaic img:nth-child(n) {
    height: 160px;
  }

  .mosaic img:nth-child(1) {
    height: 200px;
  }

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