:root {
  --bg: #f5f1ea;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --ink: #18211c;
  --muted: #5d685f;
  --line: rgba(24, 33, 28, 0.1);
  --sage: #dce8d6;
  --sage-strong: #7a9b70;
  --sand: #efe4d2;
  --charcoal: #202825;
  --charcoal-soft: #2c3631;
  --accent: #1f7a57;
  --accent-dark: #11543b;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 28px 80px rgba(24, 33, 28, 0.08);
  --shadow-md: 0 20px 44px rgba(24, 33, 28, 0.08);
  --container: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(122, 155, 112, 0.1), transparent 28%),
    linear-gradient(180deg, #f4f0e8 0%, #f7f3ec 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 64px;
}

.topbar,
.hero,
.category-strip,
.offers-band,
.services-section,
.split-showcase,
.how-it-works,
.download-band,
.site-footer {
  width: 100%;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(24, 33, 28, 0.06);
  position: sticky;
  top: 16px;
  z-index: 30;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brandmark__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(24, 33, 28, 0.12);
  background: #fff;
}

.brandmark__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brandmark__text strong {
  font-size: 1rem;
}

.brandmark__text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.topbar__nav,
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__nav {
  justify-content: center;
}

.topbar__nav a,
.ghost-link {
  color: var(--muted);
  font-size: 0.95rem;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  padding: 40px 0 24px;
}

.hero__content {
  padding: 18px 0;
}

.location-pill {
  display: inline-grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 33, 28, 0.08);
  box-shadow: 0 18px 44px rgba(24, 33, 28, 0.06);
}

.location-pill__label,
.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.location-pill strong {
  font-size: 1rem;
}

.location-pill__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero h1,
.section-heading h2,
.split-showcase h2,
.download-band h2 {
  font-family: "Fraunces", serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  margin: 22px 0 18px;
  max-width: 10ch;
}

.hero__lede,
.section-heading p,
.split-showcase p,
.download-band p,
.offer-card p,
.step-card p,
.service-card__desc,
.category-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero__lede {
  max-width: 56ch;
  font-size: 1.02rem;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px;
  margin: 26px 0 24px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(24, 33, 28, 0.08);
  box-shadow: var(--shadow-md);
}

.search-panel input {
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  color: var(--ink);
}

.search-panel button {
  border: 0;
  border-radius: 18px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

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

.hero__metrics article,
.hero-card,
.category-card,
.offer-card,
.service-card,
.mini-panel,
.step-card {
  border: 1px solid rgba(24, 33, 28, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.hero__metrics article {
  padding: 18px;
  border-radius: 20px;
}

.hero__metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.hero__metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  border-radius: 30px;
  overflow: hidden;
}

.hero-card--feature {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(21, 32, 27, 0.04), rgba(21, 32, 27, 0.86)),
    url("./media/bathroom-clean.png") center/cover no-repeat;
  color: #fff;
}

.hero-card--feature h2 {
  margin: 10px 0 8px;
  font-size: 2rem;
}

.hero-card--feature p,
.hero-card--review p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-card__badge,
.offer-card__tag,
.service-card__meta span,
.service-card__highlight {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-card__badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-card__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 16px;
}

.hero-card__price strong {
  font-size: 1.5rem;
}

.hero-card__cta {
  align-self: flex-start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal);
  font-weight: 800;
}

.hero-card--review {
  padding: 24px;
  background: linear-gradient(180deg, #1c2520, #303d36);
  color: #fff;
}

.hero-card__quote {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.hero-card__quote-meta strong {
  display: block;
  margin-bottom: 4px;
}

.category-strip,
.offers-band,
.services-section,
.split-showcase,
.how-it-works,
.download-band {
  padding: 28px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  padding: 22px 18px;
  border-radius: 22px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-card:hover,
.category-card:focus-visible,
.offer-card:hover,
.offer-card:focus-visible,
.service-card__cta:hover,
.service-card__cta:focus-visible {
  transform: translateY(-3px);
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(31, 122, 87, 0.3);
  box-shadow: 0 24px 48px rgba(24, 33, 28, 0.1);
  outline: none;
}

.category-card.is-active {
  background: linear-gradient(160deg, #edf7eb, #dce8d6);
  border-color: rgba(31, 122, 87, 0.34);
}

.category-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(122, 155, 112, 0.16), rgba(31, 122, 87, 0.14));
  color: var(--accent-dark);
  font-size: 1.4rem;
}

.category-card h3,
.offer-card h3,
.service-card h3,
.step-card h3 {
  margin: 0 0 8px;
}

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

.offer-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.offer-card--sage {
  background: linear-gradient(160deg, #eef7eb, #dfe9d7);
}

.offer-card--sand {
  background: linear-gradient(160deg, #fbf4ea, #efe4d4);
}

.offer-card--charcoal {
  background: linear-gradient(160deg, #25312b, #1c2520);
  color: #fff;
}

.offer-card--charcoal p {
  color: rgba(255, 255, 255, 0.74);
}

.offer-card__tag {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
}

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

.service-card {
  border-radius: 28px;
  overflow: hidden;
}

.service-card__media {
  aspect-ratio: 1.25 / 0.9;
  background: linear-gradient(180deg, rgba(24, 33, 28, 0), rgba(24, 33, 28, 0.06));
}

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

.service-card__body {
  padding: 22px;
}

.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.service-card__meta span {
  background: rgba(122, 155, 112, 0.12);
  color: var(--accent-dark);
}

.service-card__desc {
  margin: 0 0 18px;
}

.service-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
}

.service-card__price strong {
  display: block;
  font-size: 1.45rem;
}

.service-card__price small {
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card__cta {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  background: var(--charcoal);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.service-card__cta-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.service-card__cta-link:hover,
.service-card__cta-link:focus-visible {
  transform: translateY(-3px);
  background: var(--charcoal-soft);
  outline: none;
}

.service-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.service-modal.is-open {
  display: block;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 18, 0.58);
  backdrop-filter: blur(8px);
}

.service-modal__dialog {
  position: relative;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  border-radius: 28px;
  background: #fffdf9;
  box-shadow: 0 40px 100px rgba(18, 28, 23, 0.24);
}

.service-modal__close {
  position: sticky;
  top: 16px;
  margin-left: auto;
  margin-right: 16px;
  margin-top: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 33, 28, 0.08);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.service-modal__content {
  padding: 0 28px 32px;
}

.service-modal__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.service-modal__hero-copy h2 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.service-modal__hero-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.service-modal__hero-media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1.06 / 0.92;
  box-shadow: var(--shadow-md);
}

.service-modal__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.service-modal__summary span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 122, 87, 0.1);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-modal__sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.service-modal__panel {
  padding: 22px;
  border: 1px solid rgba(24, 33, 28, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.service-modal__panel h3 {
  margin: 0 0 12px;
}

.service-modal__panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.72;
}

.service-modal__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
}

.service-modal__price strong {
  display: block;
  font-size: 1.8rem;
}

.service-modal__price span {
  color: var(--muted);
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 24px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: start;
}

.check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 122, 87, 0.12);
  color: var(--accent-dark);
  font-weight: 900;
}

.split-showcase__panel {
  display: grid;
  gap: 14px;
}

.mini-panel {
  padding: 22px;
  border-radius: 22px;
}

.mini-panel span {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-panel strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.12rem;
}

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

.step-card {
  padding: 24px;
  border-radius: 24px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-weight: 900;
}

.download-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  margin-top: 12px;
  border-radius: 32px;
  background: linear-gradient(145deg, #e4f0df, #f8efe2);
  border: 1px solid rgba(24, 33, 28, 0.08);
  box-shadow: var(--shadow-lg);
}

.download-band__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.download-band__legal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.download-band__legal a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 12px;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.catalog-page {
  padding: 38px 0 28px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  margin-bottom: 28px;
}

.page-hero--category {
  align-items: center;
}

.page-hero__copy,
.page-summary-card,
.page-hero__media,
.detail-panel,
.price-card,
.empty-state {
  border: 1px solid rgba(24, 33, 28, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.page-hero__copy,
.page-summary-card,
.detail-panel,
.price-card,
.empty-state {
  border-radius: 28px;
  padding: 28px;
}

.page-hero h1,
.empty-state h1,
.detail-panel h2,
.price-card h2 {
  font-family: "Fraunces", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.page-hero h1,
.empty-state h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.page-hero__lede,
.detail-panel__header p,
.page-summary-card p,
.price-card p,
.empty-state p {
  color: var(--muted);
  line-height: 1.7;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 122, 87, 0.1);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.page-summary-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-summary-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(122, 155, 112, 0.16), rgba(31, 122, 87, 0.14));
  color: var(--accent-dark);
  font-size: 1.8rem;
}

.page-summary-card strong {
  font-size: 1.25rem;
}

.page-hero__media {
  border-radius: 30px;
  overflow: hidden;
  min-height: 360px;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-section {
  padding: 14px 0 20px;
}

.section-heading--stacked {
  grid-template-columns: 1fr;
  align-items: start;
}

.service-grid--catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 18px;
}

.detail-sidebar {
  position: sticky;
  top: 110px;
}

.detail-panel__header {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.detail-panel__header h2,
.price-card h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-list li {
  display: flex;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  line-height: 1.65;
}

.detail-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 122, 87, 0.12);
  color: var(--accent-dark);
  font-weight: 900;
}

.detail-panel--muted .detail-list li::before {
  content: "–";
  background: rgba(24, 33, 28, 0.08);
  color: var(--muted);
}

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(24, 33, 28, 0.08);
}

.timeline-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(31, 122, 87, 0.1);
  color: var(--accent-dark);
  font-weight: 800;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.review-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 28, 0.08);
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 4px;
  color: var(--accent-dark);
  font-weight: 800;
}

.review-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-card {
  display: grid;
  gap: 16px;
}

.price-card__price strong {
  display: block;
  font-size: 2rem;
}

.price-card__price small {
  color: var(--muted);
}

.price-card__actions {
  display: grid;
  gap: 12px;
}

.ghost-link--panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(24, 33, 28, 0.06);
  color: var(--ink);
  font-weight: 700;
}

.empty-state {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 10px 0 32px;
}

.legal-page__header,
.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(24, 33, 28, 0.08);
}

.legal-page__header h1,
.legal-section h2 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.legal-page__header h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.legal-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
}

.legal-page__header p,
.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-section h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

.legal-section ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-section a {
  color: var(--accent-dark);
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .topbar__nav {
    justify-content: start;
    flex-wrap: wrap;
  }

  .hero,
  .split-showcase,
  .section-heading,
  .download-band,
  .page-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .offers-grid,
  .service-grid,
  .steps-grid,
  .service-grid--catalog,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .site-shell {
    padding-top: 14px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__metrics,
  .category-grid,
  .offers-grid,
  .service-grid,
  .steps-grid,
  .service-grid--catalog,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .download-band,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .service-modal__hero,
  .service-modal__sections,
  .service-modal__actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .service-modal__content {
    padding: 0 18px 24px;
  }

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

  .page-hero__copy,
  .page-summary-card,
  .detail-panel,
  .price-card,
  .empty-state {
    padding: 22px;
  }
}
