: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: 0px;
  --radius-card: 20px;
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Palatino Linotype', Palatino, serif;
  --max: 1320px;
  --section-pad: 120px;
  --header-h: 118px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: clip;
}

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: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--secondary);
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

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

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

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

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

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

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

.band--plain {
  background: var(--bg);
}

.urban-card,
.water-card,
.category-card {
  transition: box-shadow 240ms ease;
}

.urban-card:hover,
.water-card:hover,
.category-card:hover {
  box-shadow: 0 16px 40px rgba(26, 34, 26, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 12px 28px rgba(26, 34, 26, 0.14);
}

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

.btn--filled:hover {
  background: var(--secondary);
  box-shadow: 0 12px 28px rgba(26, 34, 26, 0.18);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.site-header.is-solid {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header:not(.is-solid) + .independence {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
}

.site-header:not(.is-solid) ~ main .hero {
  padding-top: calc(var(--header-h) + 3.25rem);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  padding: 1rem 0 0.85rem;
}

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.85rem;
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.nav-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 0.65rem;
}

.nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.75rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.independence {
  border: 1px solid var(--border);
  border-left: 0;
  border-right: 0;
  background: var(--surface);
  padding: 0.65rem 1rem;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
}

.independence p {
  width: min(100% - 24px, var(--max));
  margin-inline: auto;
}

.page-hero-space {
  padding-top: 0;
}

.site-header.is-solid + .independence + main .page-title,
.site-header.is-solid + .independence + main .legal-body,
.site-header.is-solid + .independence + main .contact-intro {
  margin-top: 0;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  background: var(--bg);
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  min-height: 88vh;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 88vh;
}

.hero-panel {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  z-index: 2;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  margin-right: -12%;
  background: var(--surface);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 560px;
  box-shadow: none;
}

.hero-panel h1 {
  margin-bottom: 1.25rem;
  color: var(--secondary);
}

.hero-panel p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.category-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-card);
}

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

.category-panel {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius-card) - 6px);
}

.category-panel h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 0.65rem;
}

.category-panel p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2.75rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.55rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--surface);
}

.timeline-item h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.timeline-item p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  border-radius: var(--radius-card);
}

.split-copy h2 {
  margin-bottom: 1.25rem;
}

.split-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-head p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 0.85fr 1.05fr;
  grid-template-rows: 220px 280px;
  gap: 1rem;
}

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

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

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

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

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

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

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

.page-title {
  padding: 5rem 0 3rem;
}

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

.page-title p {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

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

.urban-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.urban-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  overflow: hidden;
  padding: 1.25rem;
}

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

.urban-card.is-flip .urban-card__media {
  order: 2;
}

.urban-card.is-flip .urban-card__body {
  order: 1;
}

.urban-card__media {
  overflow: hidden;
  border-radius: calc(var(--radius-card) - 8px);
}

.urban-card__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.urban-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
}

.urban-card__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.urban-card__body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0.85rem;
}

.urban-card__body p {
  color: var(--text-muted);
  flex: 1;
}

.urban-card__rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0 1.25rem;
}

.water-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 4rem;
  align-items: start;
}

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

.water-card.is-bottom .water-card__media {
  order: 2;
  margin-top: 1.25rem;
}

.water-card.is-bottom .water-card__body {
  order: 1;
}

.water-card__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
}

.water-card.is-bottom .water-card__action {
  order: 3;
}

.water-card__media {
  border-radius: calc(var(--radius-card) - 8px);
  overflow: hidden;
  margin-bottom: 1.15rem;
}

.water-card.is-bottom .water-card__media {
  margin-bottom: 0;
}

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

.water-card__city {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.65rem;
}

.water-card__body h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-bottom: 0.75rem;
}

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

.water-card__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.water-card:nth-child(odd) {
  margin-top: 0;
}

.water-card:nth-child(even) {
  margin-top: 3rem;
}

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

.method-band:nth-of-type(even) {
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

.method-band:nth-of-type(odd) {
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.method-band.is-flip .method-copy {
  order: 2;
}

.method-band.is-flip .method-aside {
  order: 1;
}

.method-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.method-copy h2 {
  margin-bottom: 1.25rem;
}

.method-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.method-aside {
  border-left: 1px solid var(--border);
  padding: 1.5rem 0 1.5rem 2.5rem;
}

.method-aside .aside-mark {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.method-aside .aside-line {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  color: var(--secondary);
  font-weight: 400;
}

.contact-intro {
  background: var(--surface-alt);
  padding: 4.5rem 0 3.5rem;
}

.contact-intro p {
  max-width: 640px;
  color: var(--text-muted);
  margin-top: 1rem;
}

.contact-email {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
}

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

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  max-width: 880px;
}

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

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

.form-field label {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  line-height: 1.5;
}

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

.agree-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.agree-row label {
  flex: 1;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.field-error {
  color: #8a3030;
  font-size: 0.9rem;
  width: 100%;
  margin-left: 1.75rem;
}

.form-actions {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  color: #8a3030;
  font-size: 0.95rem;
}

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

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

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

.legal-body {
  padding: 4rem 0 var(--section-pad);
}

.legal-body .wrap {
  max-width: 820px;
}

.legal-body h1 {
  margin-bottom: 0.75rem;
}

.legal-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  font-size: clamp(22px, 3vw, 30px);
}

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

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

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

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

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

.site-footer {
  background: var(--dark);
  color: rgba(245, 247, 243, 0.88);
  padding: 4rem 0 0;
}

.footer-main {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 3rem 4rem;
  padding-bottom: 3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: 0;
}

.footer-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-group a,
.site-footer a {
  color: rgba(245, 247, 243, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
}

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

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

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  color: rgba(245, 247, 243, 0.72);
  margin-bottom: 1rem;
  max-width: 520px;
  font-size: 0.98rem;
}

.footer-independence {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245, 247, 243, 0.55);
  border-top: 1px solid rgba(245, 247, 243, 0.12);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  max-width: 640px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 247, 243, 0.12);
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 1.15rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(245, 247, 243, 0.55);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.footer-bottom button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: rgba(245, 247, 243, 0.78);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom button:hover {
  color: #fff;
}

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

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

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

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

.consent-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: min(100% - 2.5rem, 400px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: none;
}

.consent-banner::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

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

.consent-banner h2 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--secondary);
}

.consent-banner p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.consent-btn {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.consent-btn:hover,
.consent-btn:focus-visible {
  background: var(--accent);
  color: var(--on-accent);
  outline: none;
}

.consent-btn--ghost {
  border-color: var(--border);
  color: var(--text-muted);
}

.consent-btn--ghost:hover,
.consent-btn--ghost:focus-visible {
  background: var(--surface-alt);
  color: var(--secondary);
}

.consent-policy {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(22, 31, 22, 0.45);
}

.consent-dialog {
  width: min(100%, 420px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}

.consent-dialog h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.consent-cats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  background: var(--bg);
}

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

.consent-cat label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--secondary);
}

.consent-cat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

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

  .photo-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .photo-strip figure:nth-child(1),
  .photo-strip figure:nth-child(2),
  .photo-strip figure:nth-child(3),
  .photo-strip figure:nth-child(4),
  .photo-strip figure:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-strip figure {
    min-height: 220px;
  }

  .photo-strip figure:nth-child(1),
  .photo-strip figure:nth-child(4) {
    min-height: 280px;
  }

  .split {
    gap: 2.5rem;
  }

  .method-inner {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }

  .site-header:not(.is-solid) ~ main .hero {
    padding-top: calc(var(--header-h) + 4.5rem);
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "rule rule"
      "nav nav";
    align-items: center;
  }

  .brand-row {
    grid-area: brand;
    justify-content: flex-start;
    padding-bottom: 0;
  }

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

  .nav-rule {
    grid-area: rule;
    margin: 0.75rem 0 0;
  }

  .nav-row {
    grid-area: nav;
    display: none;
    padding: 0.75rem 0 0.25rem;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-media {
    order: 1;
    min-height: 48vh;
  }

  .hero-media img {
    min-height: 48vh;
  }

  .hero-panel {
    order: 2;
    margin: 0;
    max-width: none;
    width: 100%;
  }

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

  .category-card {
    min-height: 460px;
  }
}

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

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

  .split,
  .method-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .method-band.is-flip .method-copy,
  .method-band.is-flip .method-aside {
    order: initial;
  }

  .method-aside {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 1.5rem 0 0;
  }

  .urban-card,
  .urban-card.is-flip {
    grid-template-columns: 1fr;
  }

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

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

  .water-card:nth-child(even) {
    margin-top: 0;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .hero-panel {
    padding: 2rem 1.25rem;
  }

  .urban-card {
    padding: 0.85rem;
  }

  .urban-card__body {
    padding: 1rem 0.35rem 0.35rem;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip figure {
    min-height: 200px !important;
  }

  .category-panel {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 1.25rem 1rem;
  }
}
