:root {
  --bg: #fbf6ed;
  --surface: #ffffff;
  --ink: #172324;
  --muted: #66706b;
  --line: #e5dacb;
  --teal: #145d68;
  --teal-dark: #0b414b;
  --aqua: #e0f0ee;
  --green: #557b4f;
  --gold: #c99135;
  --coral: #c7644f;
  --warm-soft: #fff7ea;
  --shadow: 0 22px 60px rgba(18, 39, 41, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 42%, #f6f7f2 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.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-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(229, 218, 203, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 270px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 74px;
  height: 58px;
  flex: 0 0 74px;
  display: block;
  background: url("brand-icon.png") center / contain no-repeat;
  mix-blend-mode: multiply;
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: #314043;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.site-nav a:hover {
  background: var(--aqua);
  color: var(--teal-dark);
}

.site-nav .nav-cta {
  background: var(--teal);
  color: white;
}

.site-nav .nav-cta:hover {
  background: var(--teal-dark);
  color: white;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 72px) 36px;
  color: white;
  background:
    radial-gradient(circle at 76% 22%, rgba(245, 186, 98, 0.28), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(199, 100, 79, 0.2), transparent 34%),
    linear-gradient(120deg, rgba(8, 64, 68, 0.96), rgba(28, 105, 105, 0.82)),
    linear-gradient(145deg, #12393e 0%, #2f7470 45%, #f4c986 100%);
}

.hero-copy {
  max-width: 790px;
}

.hero-slogan {
  width: fit-content;
  margin: 0 0 16px;
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 247, 234, 0.16);
  color: #ffe0a8;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.05;
  box-shadow: inset 0 -10px 0 rgba(199, 100, 79, 0.28);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c06f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.finder-panel {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  max-width: 940px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 247, 234, 0.16);
  box-shadow: 0 18px 50px rgba(54, 33, 16, 0.2);
}

label span {
  display: block;
  margin-bottom: 7px;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: white;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.field-note {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.field-note.is-confirmed {
  color: var(--teal);
}

.field-note.is-warning {
  color: var(--coral);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 17px;
  cursor: pointer;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(135deg, #d87558, #bf5b48);
  color: white;
  box-shadow: 0 12px 28px rgba(199, 100, 79, 0.24);
}

.button.primary:hover {
  background: linear-gradient(135deg, #c8654e, #a94739);
}

.button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--teal);
}

.button.small {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 14px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-strip span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 247, 234, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 540px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 47, 54, 0.04), rgba(12, 47, 54, 0.72));
}

.hero-visual figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 5px;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.hero-visual figcaption strong {
  font-size: 18px;
}

.hero-visual figcaption span {
  color: var(--muted);
  line-height: 1.45;
}

.match-results {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 24px;
  align-items: center;
  margin: -18px clamp(18px, 5vw, 72px) 0;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf7, #fff3df);
  box-shadow: var(--shadow);
}

.match-results h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.match-card {
  display: grid;
  gap: 8px;
  border-left: 5px solid var(--coral);
  padding: 18px;
  border-radius: 8px;
  background: #fffaf0;
}

.match-card strong {
  font-size: 22px;
}

.match-card span {
  color: var(--muted);
  line-height: 1.5;
}

.match-card a {
  width: fit-content;
  color: var(--teal);
  font-weight: 950;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.search-section,
.service-main {
  background: #fffaf0;
}

.destination-section {
  background: linear-gradient(135deg, #fff3df, #e9f3ef);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading p,
.request-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.destination-grid article {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.7fr);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: white;
  box-shadow: 0 12px 34px rgba(18, 39, 41, 0.07);
}

.destination-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  background: #eef3f1;
}

.destination-grid p {
  color: var(--muted);
  line-height: 1.55;
}

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

.search-grid a,
.info-card,
.faq-item,
.service-cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 34px rgba(18, 39, 41, 0.07);
}

.search-grid a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
}

.search-grid a:hover {
  border-color: rgba(20, 93, 104, 0.45);
  box-shadow: 0 18px 42px rgba(18, 39, 41, 0.12);
}

.search-grid strong {
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.2;
}

.search-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(38px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(9, 55, 64, 0.94), rgba(20, 93, 104, 0.78)),
    linear-gradient(145deg, #0d3137 0%, #357078 50%, #f6f2df 100%);
  color: white;
}

.service-hero h1 {
  max-width: 880px;
}

.service-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

.service-hero .eyebrow {
  color: #f0c06f;
}

.scooter-landing-hero {
  background:
    radial-gradient(circle at 80% 24%, rgba(54, 185, 170, 0.28), transparent 30%),
    linear-gradient(120deg, rgba(9, 55, 64, 0.94), rgba(20, 93, 104, 0.78)),
    linear-gradient(145deg, #0d3137 0%, #357078 50%, #f6f2df 100%);
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.service-hero-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.service-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.service-hero-card strong {
  font-size: 21px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 72px);
}

.service-content {
  display: grid;
  gap: 26px;
}

.service-content section {
  display: grid;
  gap: 12px;
}

.service-content h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.service-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

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

.scooter-option-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: white;
  box-shadow: 0 12px 34px rgba(18, 39, 41, 0.07);
}

.scooter-option-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #eef3f1;
}

.scooter-option-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 20px;
}

.scooter-option-card span {
  color: var(--muted);
  line-height: 1.5;
}

.hotel-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hotel-area-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: white;
  color: var(--teal-dark);
  font-weight: 900;
}

.info-card,
.faq-item,
.service-cta-panel {
  padding: 18px;
}

.info-card strong,
.faq-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.info-card span,
.faq-item p,
.service-cta-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.service-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.service-cta-panel {
  display: grid;
  gap: 12px;
}

.quote-panel {
  border-color: rgba(20, 93, 104, 0.28);
  background: linear-gradient(135deg, #fffaf0, #e9f3ef);
}

.quote-note {
  margin-bottom: 0;
  font-size: 13px;
}

.service-cta-panel h2 {
  font-size: 25px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.related-links {
  display: grid;
  gap: 8px;
}

.related-links a {
  color: var(--teal);
  font-weight: 900;
}

.rental-grid,
.provider-grid,
.area-map,
.rule-list,
.local-search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rental-grid article,
.provider-card,
.area-map article,
.rule-list article,
.local-search-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 34px rgba(18, 39, 41, 0.07);
}

.rental-grid article {
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}

.rental-card {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rental-card:hover,
.rental-card:focus-visible {
  border-color: rgba(199, 100, 79, 0.55);
  box-shadow: 0 20px 48px rgba(102, 59, 33, 0.15);
  transform: translateY(-3px);
  outline: none;
}

.rental-card:focus-visible {
  box-shadow:
    0 0 0 3px rgba(201, 145, 53, 0.28),
    0 20px 48px rgba(102, 59, 33, 0.15);
}

.rental-grid p,
.provider-card p,
.area-map span,
.rule-list p,
.local-search-grid p,
.contact-card span {
  color: var(--muted);
  line-height: 1.55;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 16px 0;
  border-radius: 8px;
  background: var(--aqua);
  color: var(--teal-dark);
  font-weight: 950;
}

.equipment-photo {
  width: calc(100% + 40px);
  height: 190px;
  display: block;
  margin: -20px -20px 0;
  object-fit: cover;
  background: #eef3f1;
  border-bottom: 1px solid var(--line);
}

.equipment-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 18px;
  color: #354649;
  font-size: 14px;
  line-height: 1.4;
}

.equipment-list li::marker {
  color: var(--coral);
}

.text-link {
  margin-top: auto;
  color: var(--teal);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.provider-section {
  background: #edf3f1;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-row button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: white;
  color: #324346;
  cursor: pointer;
  font-weight: 900;
}

.filter-row button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

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

.provider-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.provider-card.is-hidden {
  display: none;
}

.provider-card.official-card {
  border-color: rgba(184, 134, 59, 0.55);
  background: #fffaf0;
}

.provider-type {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 6px 9px;
  background: #e8eeee;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.provider-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.provider-card dl div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
}

.provider-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.provider-card dd {
  margin: 0;
  line-height: 1.4;
}

.provider-card dd a {
  color: var(--teal);
  font-weight: 950;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.area-map {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.area-map article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.area-map strong {
  color: var(--teal-dark);
  font-size: 21px;
}

.local-search-section {
  background: #fffaf0;
}

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

.local-search-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.local-search-grid strong {
  color: var(--teal-dark);
  font-size: 20px;
  line-height: 1.2;
}

.faq-section {
  background: linear-gradient(135deg, #fff8ec, #edf3f1);
}

.faq-list.wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rules-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  background: var(--teal-dark);
  color: white;
}

.rules-section .eyebrow {
  color: #f0c06f;
}

.rule-list {
  grid-template-columns: 1fr;
}

.rule-list article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.rule-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

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

.form-status {
  min-height: 22px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--teal);
  font-weight: 900;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #122a2e;
  color: white;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  color: white;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  .hero,
  .service-hero,
  .request-section,
  .rules-section {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .destination-grid,
  .rental-grid,
  .provider-grid,
  .search-grid,
  .local-search-grid,
  .faq-list.wide,
  .scooter-option-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-grid article {
    grid-template-columns: 1fr;
  }

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

  .service-sidebar {
    position: static;
  }

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

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 39px;
  }

  .hero {
    min-height: auto;
  }

  .finder-panel,
  .match-results,
  .request-form {
    grid-template-columns: 1fr;
  }

  .match-results {
    margin-top: 0;
    border-radius: 0;
  }

  .rental-grid,
  .provider-grid,
  .area-map,
  .destination-grid,
  .search-grid,
  .local-search-grid,
  .faq-list.wide,
  .scooter-option-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 340px;
  }

  .provider-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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