:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-alt: #e9eee5;
  --text: #1a221a;
  --text-muted: #525d51;
  --border: rgba(26, 34, 26, 0.12);
  --accent: #5c7350;
  --accent-2: #9c6f3c;
  --secondary: #2c3a2a;
  --on-accent: #ffffff;
  --dark: #161f16;
  --radius: 4px;
  --radius-pill: 999px;
  --font-heading: Rockwell, "Courier Bold", Georgia, serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --max-width: 1400px;
  --section-pad: 136px;
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  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(--accent-2);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
  color: var(--secondary);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.section--flush {
  padding: 0;
  border-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(26, 34, 26, 0.12);
  transform: translateY(-1px);
}

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

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

.site-header {
  position: relative;
  background: transparent;
  border-bottom: 1px solid var(--border);
  min-height: var(--header-h);
  z-index: 100;
}

.site-header__inner {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: var(--header-h);
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}

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

.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);
  transition: transform 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-variant: small-caps;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

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

.independence-notice p {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.hero-quiet {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: clamp(80px, 12vw, 140px) 0 clamp(100px, 14vw, 160px);
}

.hero-quiet__rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
  border: 0;
}

.hero-quiet .kicker {
  margin-bottom: 1.25rem;
}

.hero-quiet h1 {
  max-width: 14ch;
  margin-inline: 0;
  margin-bottom: 1.5rem;
}

.hero-quiet__lead {
  max-width: 62ch;
  margin-inline: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 0;
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  min-height: 420px;
}

.cat-band:last-child {
  border-bottom: 0;
}

.cat-band__media {
  overflow: hidden;
  background: var(--surface-alt);
}

.cat-band__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cat-band:hover .cat-band__media img {
  transform: scale(1.02);
}

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  background: var(--surface);
}

.cat-band--flip .cat-band__media {
  order: 2;
}

.cat-band--flip .cat-band__body {
  order: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  margin-top: 3rem;
}

.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.quote-card p {
  margin-bottom: 1rem;
  color: var(--text);
}

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

.photo-strip__intro {
  max-width: 52ch;
  margin-inline: 0;
  margin-bottom: 3rem;
  color: var(--text-muted);
}

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

.mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mosaic figure:hover img {
  transform: scale(1.02);
}

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

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

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

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

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

.mission-pull {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 300;
  letter-spacing: -1.2px;
  line-height: 1.2;
  color: var(--accent);
  max-width: 28ch;
  margin-inline: 0;
  margin-bottom: 2rem;
}

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

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

.page-title {
  padding: clamp(64px, 10vw, 110px) 0 64px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-title__intro {
  max-width: 62ch;
  margin-inline: 0;
  color: var(--text-muted);
  margin-top: 1rem;
}

.catalog-list {
  padding: 0;
}

.urban-rows {
  padding-top: var(--section-pad);
}

.catalog-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.catalog-row__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: var(--radius);
}

.catalog-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.catalog-row:hover .catalog-row__thumb img {
  transform: scale(1.02);
}

.catalog-row__body {
  text-align: center;
}

.catalog-row__body .kicker {
  margin-bottom: 0.5rem;
}

.catalog-row__body h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 0.5rem;
}

.catalog-row__body p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
  font-size: 0.98rem;
}

.catalog-row__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

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

.venue-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: var(--section-pad) 0 0;
}

.venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 34, 26, 0.1);
}

.venue-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.venue-card__media--square {
  aspect-ratio: 1;
  max-height: 420px;
}

.venue-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.venue-card:hover .venue-card__media img {
  transform: scale(1.02);
}

.venue-card__body {
  padding: 1.75rem 1.75rem 2rem;
}

.venue-card__body .kicker {
  margin-bottom: 0.65rem;
}

.venue-card__identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.venue-card__identity h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: -1px;
  color: var(--secondary);
  margin: 0;
  line-height: 1.25;
}

.venue-card__loc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

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

.venue-card .btn {
  width: 100%;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: var(--section-pad) 0 0;
  align-items: start;
}

.masonry-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.masonry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 34, 26, 0.1);
}

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

.masonry-card--bottom .masonry-card__text {
  order: 1;
}

.masonry-card--bottom .masonry-card__actions {
  order: 3;
}

.masonry-card__media {
  overflow: hidden;
  border-radius: var(--radius);
}

.masonry-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.masonry-card:hover .masonry-card__media img {
  transform: scale(1.02);
}

.masonry-card__text h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: 0.35rem;
}

.masonry-card__loc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.masonry-card__text p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

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

.story-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  padding: var(--section-pad) 0;
  align-items: start;
}

.story-index {
  position: sticky;
  top: 2rem;
}

.story-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.story-index a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text-muted);
  display: block;
  padding-left: 0.85rem;
  border-left: 2px solid var(--border);
}

.story-index a:hover,
.story-index a:focus {
  color: var(--accent);
  border-left-color: var(--accent);
}

.story-prose section {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

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

.story-prose h2 {
  scroll-margin-top: 1.5rem;
}

.story-prose p {
  color: var(--text-muted);
  max-width: 68ch;
}

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

.contact-intro {
  color: var(--text-muted);
}

.contact-email {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

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

.form-field {
  margin-bottom: 1.35rem;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  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-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-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

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

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

.form-error {
  color: #8a3030;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

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

.form-success {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-success h2 {
  margin-bottom: 1rem;
}

.legal-body {
  padding: var(--section-pad) 0;
  max-width: 760px;
}

.legal-body h2 {
  margin-top: 2.5rem;
  font-size: clamp(24px, 3vw, 32px);
}

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

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

.legal-body ul {
  padding-left: 1.25rem;
}

.sitemap-list {
  padding: var(--section-pad) 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.sitemap-row a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--secondary);
}

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

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

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

.footer-upper {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 1.25rem;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.footer-regions {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-pill {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
}

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

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-group a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}

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

.footer-lower {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}

.footer-lower__inner {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.footer-lower .independence-footer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 72ch;
  margin: 0;
}

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

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

.footer-consent-line button {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(380px, calc(100vw - 2rem));
  background: var(--dark);
  color: #e8ece6;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  z-index: 1000;
  padding: 1.35rem 1.35rem 1.25rem;
  display: none;
}

.consent-banner.is-open {
  display: block;
}

.consent-banner h2 {
  font-size: 1.2rem;
  color: #f5f7f3;
  letter-spacing: -0.5px;
  margin-bottom: 0.65rem;
}

.consent-banner p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 247, 243, 0.78);
  margin-bottom: 0.75rem;
}

.consent-banner a {
  color: #c5d4b8;
}

.consent-cats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.15rem 0 1.25rem;
}

.consent-cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: center;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(245, 247, 243, 0.12);
}

.consent-cat__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f5f7f3;
}

.consent-cat__desc {
  grid-column: 1;
  font-size: 0.8rem;
  color: rgba(245, 247, 243, 0.6);
  line-height: 1.4;
}

.consent-switch {
  position: relative;
  width: 44px;
  height: 24px;
  grid-row: 1 / 3;
  grid-column: 2;
}

.consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-switch span {
  position: absolute;
  inset: 0;
  background: rgba(245, 247, 243, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consent-switch span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f5f7f3;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
}

.consent-switch input:checked + span {
  background: var(--accent);
}

.consent-switch input:checked + span::after {
  transform: translateX(20px);
}

.consent-switch input:disabled + span {
  opacity: 0.55;
  cursor: not-allowed;
}

.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.consent-actions button {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 247, 243, 0.35);
  background: transparent;
  color: #f5f7f3;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.consent-actions__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.consent-manage {
  margin-top: 0.35rem;
}

.consent-policy-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .footer-upper {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 220px;
  }

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

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

  .mosaic figure:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
  }

  .mosaic figure:nth-child(4) {
    grid-row: 3;
    grid-column: 1;
  }

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

  .cat-band {
    grid-template-columns: 1fr;
  }

  .cat-band--flip .cat-band__media,
  .cat-band--flip .cat-band__body {
    order: unset;
  }

  .cat-band__media img {
    min-height: 280px;
  }
}

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

  .site-nav {
    display: none;
    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 0;
    box-shadow: 0 12px 28px rgba(26, 34, 26, 0.08);
  }

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

  .site-nav a {
    padding: 0.9rem 24px;
    border-bottom: 0;
    letter-spacing: 0.18em;
  }

  .site-header {
    position: relative;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-index {
    position: static;
  }

  .story-index ol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }

  .story-index a {
    border-left: 0;
    padding-left: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .container,
  .site-header__inner,
  .independence-notice p,
  .footer-upper,
  .footer-lower__inner {
    width: min(100% - 32px, var(--max-width));
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps::before {
    display: none;
  }

  .step {
    text-align: left;
    padding: 0;
  }

  .catalog-row {
    grid-template-columns: 96px 1fr;
    gap: 1.25rem;
  }

  .catalog-row__thumb {
    width: 96px;
    height: 96px;
  }

  .catalog-row__body {
    text-align: left;
  }

  .catalog-row__body p {
    margin-inline: 0;
  }

  .catalog-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .footer-upper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

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

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero-quiet {
    padding: 64px 0 80px;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.75rem;
  }

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

  .mosaic figure:nth-child(1) {
    height: 260px;
  }

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

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

  .catalog-row__thumb {
    width: 100%;
    height: 200px;
  }
}
