:root {
  --bg: #f4f0e8;
  --panel: #fffaf1;
  --card: #ffffff;
  --text: #17221f;
  --muted: #5f6c67;
  --accent: #246b4f;
  --accent-strong: #174634;
  --gold: #d99d2b;
  --sky: #dcecf8;
  --border: #d8d2c4;
  --shadow: 0 18px 45px rgba(23, 34, 31, 0.14);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; }

.public-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 210, 196, 0.9);
  background: rgba(255, 250, 241, 0.96);
  backdrop-filter: blur(10px);
}

.public-nav {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.public-brand {
  color: var(--accent-strong);
}

.public-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.public-nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.72rem;
  border-radius: 6px;
  color: #263b34;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.public-nav-links a:hover,
.public-nav-links a.is-active {
  background: #edf7f1;
  color: var(--accent-strong);
}

.public-nav-links .public-nav-cta {
  background: var(--accent);
  color: #fff;
}

.public-nav-links .public-nav-cta:hover,
.public-nav-links .public-nav-cta.is-active {
  background: var(--accent-strong);
  color: #fff;
}

.public-nav-links .public-nav-secondary {
  border: 1px solid rgba(36, 107, 79, 0.25);
}

.hero {
  min-height: clamp(420px, 58vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 29, 24, 0.88), rgba(13, 29, 24, 0.62) 38%, rgba(13, 29, 24, 0.18)),
    url('/assets/gear-hero.png') center / cover no-repeat;
}

.topbar {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.nav-actions a {
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}

.hero-content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #ffd88f;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  line-height: 0.9;
}

.tagline {
  max-width: 520px;
  margin: 1rem 0 0;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-trust {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
}

.button-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  background: var(--gold);
  color: #191814;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-link.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
}

.button-link.ghost-on-light {
  border: 1px solid rgba(36, 107, 79, 0.32);
  background: #f2fbf6;
  color: var(--accent-strong);
}

button {
  width: 100%;
  background: var(--accent);
  color: #fff;
}

button:hover,
.button-link:hover,
.nav-actions a:hover {
  filter: brightness(0.96);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.container {
  max-width: 1120px;
  margin: -2rem auto 0;
  padding: 0 1rem 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.category-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.category-strip a,
.category-strip span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(216, 210, 196, 0.88);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 8px 22px rgba(23, 34, 31, 0.1);
  font-weight: 800;
}

.city-links-section {
  grid-column: 1 / -1;
}

.city-link-grid,
.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.city-link-grid a,
.category-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.broad-category-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.broad-category-strip a {
  display: grid;
  align-content: center;
  gap: 0.35rem;
}

.broad-category-strip a span {
  min-height: auto;
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1.35rem;
}

.broad-category-strip a strong {
  line-height: 1.25;
}

.category-strip a:hover {
  border-color: rgba(36, 107, 79, 0.35);
  background: #f2fbf6;
}

.city-link-grid a:hover,
.category-links a:hover,
.category-links a.is-active {
  border-color: rgba(36, 107, 79, 0.35);
  background: #f2fbf6;
}

.info-section {
  grid-column: 1 / -1;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

.mini-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.mini-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.mini-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.mini-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.side-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.side-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.side-card p {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.local-finder-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 1rem;
  align-items: end;
}

.zip-locator-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.zip-locator-form button {
  width: auto;
  min-width: 96px;
}

.location-filter-link {
  grid-column: 1 / -1;
  justify-self: start;
  font-size: 0.92rem;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.page-cta-row {
  margin: 1rem 0;
}

.listings-panel {
  grid-column: 1 / -1;
  padding: 1.25rem;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.section-heading h2 { margin: 0; }

.section-copy {
  max-width: 680px;
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading .section-copy {
  margin: 0.35rem 0 0;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  min-width: 0;
}

.listing,
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.listing {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 260px;
}

.listing h3 {
  margin: 0;
  font-size: 1.05rem;
  min-width: 0;
}

.listing h2 {
  margin: 0;
  font-size: 1.05rem;
  min-width: 0;
}

.listing h2 a,
.listing h3 a {
  text-decoration: none;
}

.listing h2 a:hover,
.listing h3 a:hover {
  text-decoration: underline;
}

.listing p {
  margin: 0.45rem 0 0;
  line-height: 1.45;
  min-width: 0;
}

.listing-title {
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.listing-description {
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: #303b37;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.listing-status {
  color: var(--muted);
  font-size: 0.9rem;
}

.listing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  min-width: 0;
}

.listing-cta {
  width: auto;
  min-height: 40px;
  padding: 0.65rem 0.85rem;
  background: var(--gold);
  color: #191814;
}

.listing-secondary-link {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.listing-secondary-link:hover {
  text-decoration: underline;
}

.listing-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.listing-date,
.listing-meta,
.empty-state {
  color: var(--muted);
  font-size: 0.9rem;
}

.listing-date {
  flex: 0 0 auto;
  max-width: 7rem;
  text-align: right;
}

.listing-meta {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
}

.empty-state p {
  margin: 0 0 0.85rem;
}

.empty-state-action {
  min-height: 40px;
  padding: 0.65rem 0.85rem;
}

.card {
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(23, 34, 31, 0.08);
}

.wide-card {
  grid-column: 1 / -1;
}

.confirmation-card {
  padding: 1rem;
  border: 1px solid rgba(36, 107, 79, 0.26);
  border-radius: 8px;
  background: #f2fbf6;
}

.rental-request-panel {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(36, 107, 79, 0.26);
  border-radius: 8px;
  background: #f2fbf6;
}

.rental-request-panel h3 {
  margin: 0;
  font-size: 1.15rem;
}

.request-activity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.85rem;
}

.request-activity-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.request-activity-card strong {
  line-height: 1.35;
}

.rental-request-panel p {
  margin: 0.5rem 0 1rem;
  color: #303b37;
  line-height: 1.5;
}

.selected-gear-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  margin: 0.9rem 0 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(36, 107, 79, 0.22);
  border-radius: 8px;
  background: #fffdf8;
}

.selected-gear-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.selected-gear-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.selected-gear-summary strong {
  display: block;
  margin-top: 0.15rem;
  overflow-wrap: anywhere;
}

.selected-gear-summary p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.panel-actions button {
  width: auto;
}

.confirmation-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

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

.confirmation-card p {
  margin: 0.5rem 0 0;
  color: #303b37;
  line-height: 1.5;
}

.accepted-state-card {
  margin-bottom: 1rem;
}

.request-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.request-summary div {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.request-summary dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.request-summary dd {
  margin: 0.25rem 0 0;
  color: var(--text);
  font-weight: 800;
}

form {
  display: grid;
  gap: 0.75rem;
}

.spam-trap {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

label {
  display: grid;
  gap: 0.35rem;
  color: #303b37;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-required-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.required-mark {
  color: #b42318;
  font-weight: 900;
}

.optional-note {
  margin-left: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.field-help {
  margin: -0.25rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  font: inherit;
  padding: 0.65rem 0.7rem;
  border: 1px solid #b8b2a5;
  border-radius: 6px;
  background: #fffdf8;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(36, 107, 79, 0.2);
  border-color: var(--accent);
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.secondary-button {
  width: auto;
  min-width: 92px;
  background: var(--accent-strong);
}

.status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.9rem;
}

.status.error,
.empty-state.error { color: #b42318; }

.status.success { color: #067647; }

.status.notice {
  padding: 0.75rem;
  border: 1px solid rgba(180, 83, 9, 0.28);
  border-radius: 8px;
  background: #fff7ed;
  color: #92400e;
}

.privacy-notice {
  margin: 0 0 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(36, 107, 79, 0.22);
  border-radius: 8px;
  background: #f2fbf6;
  color: #303b37;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0 1rem;
}

.summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 28px;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(36, 107, 79, 0.18);
  border-radius: 999px;
  background: #f6fbf8;
  color: #244238;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.urgency-score-high {
  border-color: rgba(180, 83, 9, 0.32);
  background: #fff7ed;
  color: #92400e;
}

.status-badge,
.primary-offer-badge {
  background: #eaf7ef;
  color: #067647;
}

.warning-badge {
  border-color: rgba(180, 83, 9, 0.32);
  background: #fff7ed;
  color: #92400e;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 2rem 1rem;
}

.simple-card {
  width: min(100%, 720px);
}

.marketplace-page {
  width: min(100%, 1040px);
}

.simple-card h1 {
  margin: 0.75rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1.1;
}

.location-page {
  width: min(100%, 900px);
}

.filter-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.filter-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.filter-actions button {
  width: auto;
  min-width: 92px;
}

.marketplace-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.browse-empty {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.detail-main,
.request-panel {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.detail-description {
  color: #303b37;
  line-height: 1.6;
}

.detail-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.request-panel {
  position: sticky;
  top: 1rem;
}

.request-panel h2 {
  margin-bottom: 0.5rem;
}

.location-listings {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.back-link {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--accent-strong);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.offer-list {
  display: grid;
  gap: 0.85rem;
}

.offer-card {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.offer-card.is-selected {
  border-color: rgba(36, 107, 79, 0.55);
  background: #f2fbf6;
}

.offer-card.is-primary-offer {
  border-color: rgba(36, 107, 79, 0.42);
  box-shadow: 0 14px 32px rgba(36, 107, 79, 0.09);
}

.offer-card.is-secondary-offer {
  gap: 0.5rem;
  padding: 0.85rem;
}

.offer-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.offer-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.offer-card p {
  margin: 0;
  line-height: 1.45;
}

.offer-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.offer-price {
  font-size: 1.35rem;
}

.is-secondary-offer .offer-price {
  font-size: 1.12rem;
}

.primary-accept-button {
  width: 100%;
}

.secondary-accept-button {
  min-height: 38px;
  padding: 0.6rem 0.8rem;
  background: #f5f1e8;
  color: var(--text);
}

.offer-empty-state {
  display: grid;
  gap: 0.25rem;
}

.status-section {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.status-section h2 {
  margin: 0;
  font-size: 1.35rem;
}

.offer-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #ece7dc;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: capitalize;
  white-space: nowrap;
}

.offer-status-accepted {
  background: #d8f3df;
  color: #067647;
}

.offer-status-declined {
  background: #f8d7da;
  color: #b42318;
}

.accepted-offer-note {
  padding: 0.75rem;
  border: 1px solid rgba(36, 107, 79, 0.24);
  border-radius: 8px;
  background: #eaf7ef;
  color: #067647;
  font-weight: 800;
}

.trust-section {
  box-shadow: 0 10px 30px rgba(23, 34, 31, 0.08);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: #303b37;
  font-weight: 700;
  line-height: 1.35;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0 1rem 1.5rem;
}

footer a {
  color: inherit;
  font-weight: 800;
}

.legal-page h2 {
  margin: 1.25rem 0 0.35rem;
  font-size: 1.1rem;
}

.legal-page p {
  color: #303b37;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .hero {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(13, 29, 24, 0.88), rgba(13, 29, 24, 0.58)),
      url('/assets/gear-hero.png') center / cover no-repeat;
  }

  .topbar {
    align-items: flex-start;
  }

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

  .public-nav-links {
    justify-content: flex-start;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-content {
    padding: 2rem 0 3rem;
  }

  .container {
    grid-template-columns: 1fr;
    margin-top: -1.5rem;
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .broad-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .side-grid,
  .trust-list,
  .request-summary,
  .filter-bar,
  .marketplace-grid,
  .detail-layout,
  .local-finder-section,
  .zip-locator-form {
    grid-template-columns: 1fr;
  }

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

  .request-panel {
    position: static;
  }
}

@media (max-width: 460px) {
  .hero {
    padding: 0.85rem;
  }

  .nav-actions a {
    padding: 0.5rem;
    font-size: 0.86rem;
  }

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

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