:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --dark-band: #122029;
  --radius: 10px;
  --radius-btn: 6px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --max: 1040px;
  --section-pad: 68px;
  --header-h: 58px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

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

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

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

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

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

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

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

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

.nav-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

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

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 40px;
  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: 1.5px;
  background: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 0;
  white-space: nowrap;
}

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

.nav-links a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}

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

.independence .wrap {
  padding: 0.55rem 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  border-left: none;
}

.independence p {
  margin: 0;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: max(420px, 62vh);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-accent);
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 32, 41, 0.55) 0%, rgba(18, 32, 41, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100% - 40px, 720px);
  padding: 3rem 0;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  color: var(--on-accent);
  margin-bottom: 0.85rem;
}

.hero__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

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

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

.section-head {
  margin-bottom: 2rem;
}

.section-head p {
  color: var(--text-muted);
  max-width: 38em;
}

.page-hero {
  padding: 2.75rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero .wrap {
  max-width: var(--max);
}

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

.page-hero .lead {
  color: var(--text-muted);
  max-width: 42em;
  margin: 0;
}

.cat-rows {
  border-top: 1px solid var(--border);
}

.cat-row {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr auto;
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.cat-row:hover h3 {
  color: var(--accent);
}

.cat-row h3 {
  margin: 0;
  font-size: 1.05rem;
}

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

.cat-row__link {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.region-list {
  border-top: 1px solid var(--border);
}

.region-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1rem 2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}

.region-row dt {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

.region-row dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

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

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

.approach-block {
  text-align: left;
  padding-top: 1rem;
  border-top: 2px solid var(--accent);
}

.approach-block h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.approach-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.closing-cta__panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--text);
}

.quote-card cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.card--tall .card__photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.card--tall .card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--tall .card__body {
  padding: 1.5rem 1.4rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.card__meta {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  display: block;
  width: 100%;
}

.card__body > h2,
.card__body > h3 {
  display: block;
  width: 100%;
}

.card h2,
.card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-btn);
  padding: 0.7rem 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

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

.btn-block {
  width: 100%;
  margin-top: 0.35rem;
}

.card--shore {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card--shore .card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.card--shore .card__nameplate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(18, 32, 41, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.card--shore .card__body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.card--shore.is-flip {
  flex-direction: column;
}

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

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

.card--shore .card__cta {
  order: 3;
  padding: 0 1.2rem 1.25rem;
}

.card--sig {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.9rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.card--sig .card__media {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

.card--sig .card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  padding: 0.15rem 0.15rem 0;
}

.card--sig .card__cta {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.card--sig.is-flip {
  flex-direction: column;
}

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

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

.card--sig.is-flip .card__cta {
  order: 3;
}

.catalog-close {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 40em;
}

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

.editorial-index {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--border);
}

.editorial-index a {
  display: block;
  padding: 0.45rem 0 0.45rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
}

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

.editorial-prose h2 {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
  margin-top: 2.25rem;
}

.editorial-prose h2:first-child {
  margin-top: 0;
}

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

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

.legal-body h2 {
  margin-top: 2rem;
  font-size: clamp(18px, 2.4vw, 24px);
}

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

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

.contact-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}

.contact-intro {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-email {
  max-width: 560px;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
  color: var(--text);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

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

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

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

.form-error {
  display: none;
  color: #8b2e2e;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

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

.form-status {
  display: none;
  color: #8b2e2e;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

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

.confirm-panel {
  text-align: center;
}

.confirm-panel h2 {
  font-size: 1.4rem;
}

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

.sitemap-row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 1rem 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

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

.sitemap-row__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
}

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

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

.footer-upper {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 2.75rem 0 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem 1.75rem;
}

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

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

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

.footer-col h3 {
  font-size: 1rem;
  margin: 0 0 0.85rem;
  display: inline-block;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--accent);
}

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

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-muted);
}

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

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

.footer-lower-inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 1.15rem 0 1.35rem;
}

.footer-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  line-height: 1.45;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  align-items: center;
}

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

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

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

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

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

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

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--accent);
}

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

.consent__inner {
  width: min(100% - 28px, var(--max));
  margin-inline: auto;
  padding: 1rem 0 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.75rem;
  align-items: start;
}

.consent__copy h2 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.consent__copy p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.consent__copy a {
  font-size: 0.85rem;
}

.consent__controls {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
  min-width: 220px;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.consent__actions button {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent__actions .consent__accept {
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
}

.consent__actions .consent__accept:hover {
  background: var(--secondary);
}

.consent__cats {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
}

.consent__cats.is-open {
  display: block;
}

.consent__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
}

.consent__cat-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
}

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

.consent__switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.consent__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent__switch-ui {
  position: absolute;
  inset: 0;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consent__switch-ui::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 3px;
  left: 3px;
  background: var(--surface);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.consent__switch input:checked + .consent__switch-ui {
  background: var(--accent);
  border-color: var(--accent);
}

.consent__switch input:checked + .consent__switch-ui::after {
  transform: translateX(18px);
}

.consent__switch input:disabled + .consent__switch-ui {
  opacity: 0.7;
  cursor: not-allowed;
  background: var(--secondary);
  border-color: var(--secondary);
}

.consent__switch input:focus-visible + .consent__switch-ui {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

  .closing-cta {
    gap: 1.75rem;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem 1rem;
    gap: 0;
  }

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

  .nav-links a {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .site-header {
    position: sticky;
  }

  .nav-inner {
    position: relative;
  }

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

  .editorial-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
  }

  .editorial-index li {
    list-style: none;
  }

  .editorial-index a {
    padding: 0.35rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    background: var(--surface);
  }
}

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

  .cat-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .cat-row__link {
    justify-self: start;
  }

  .region-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .closing-cta {
    grid-template-columns: 1fr;
  }

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

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

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

  .consent__controls {
    align-items: stretch;
    min-width: 0;
  }

  .consent__actions {
    justify-content: flex-start;
  }

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

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

  .hero {
    min-height: 420px;
  }

  .contact-panel {
    padding: 1.5rem 1.15rem;
  }

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

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

  .nav-inner {
    width: min(100% - 20px, var(--max));
  }

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

  .brand {
    font-size: 0.85rem;
  }

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