:root {
  --bg: #f3f4f6;
  --bg-elevated: #ffffff;
  --bg-soft: #fff7ed;
  --accent: #0ea5e9;
  --accent-soft: rgba(14, 165, 233, 0.12);
  --accent-strong: #22c55e;
  --accent-warm: #f59e0b;
  --text: #0f172a;
  --text-soft: #6b7280;
  --border-subtle: rgba(148, 163, 184, 0.45);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.15);
  --blur-bg: blur(22px);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe 0, #fefce8 40%, #f3f4f6 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

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

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

.skip-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  background: #0f172a;
  color: #f9fafb;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 50;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: radial-gradient(circle at top, #fefce8 0, #f9fafb 36%, #fffbeb 100%);
}

/* about section alternative layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* clickable lightbox indicator */
.lightbox-target {
  cursor: zoom-in;
}

@media (max-width: 600px) {
  .lightbox-target {
    cursor: default;
  }
}

.about-content {
  background: var(--accent-soft);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

@media(max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    margin-top: 1.5rem;
  }
}

/* scroll reveal base */
[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in-up-slow"] {
  transform: translateY(36px);
  transition-duration: 0.7s;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: flex-start;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

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

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

.icon-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid {
  align-items: flex-start;
}

.center-text {
  text-align: center;
  margin-top: 1.8rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin: 0 0 0.6rem;
}

h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.3rem, 3vw, 3rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 34rem;
}

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

.small {
  font-size: 0.88rem;
}

.section-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2.4rem;
}

.section-head p {
  margin: 0.1rem 0;
  color: var(--text-soft);
}

.section-head::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  border-radius: 999px;
  margin: 1.2rem auto 0;
  background: linear-gradient(90deg, #0ea5e9, #22c55e, #f59e0b);
  opacity: 0.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.4);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.5);
  background: #ffffff;
}

.btn-ghost:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.94rem;
}

.link::after {
  content: "↗";
  font-size: 0.8rem;
}

.link:hover {
  text-decoration: none;
}

/* utility colors */
.text-danger {
  color: #dc2626;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  /* scaled back to original dimensions for better balance */
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 0.6rem; /* give the enlarged logo some breathing room */
}

.brand-name {
  font-weight: 620;
  font-size: 1rem;
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-size: 0.92rem;
  color: var(--text-soft);
  padding: 0.25rem 0.4rem;
}

.nav-link:hover {
  color: #0f172a;
  text-decoration: none;
}

.nav-cta {
  margin-left: 0.6rem;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #ffffff;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  position: relative;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    top 0.18s ease,
    bottom 0.18s ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
}

.nav-toggle-lines::before {
  top: -5px;
}

.nav-toggle-lines::after {
  bottom: -5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  bottom: 0;
  transform: rotate(90deg);
}

.hero {
  padding: 3.25rem 0 3.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.15fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.7rem 0 1.4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 0;
}

.hero-metrics dt {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.15rem;
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.metric-detail {
  display: block;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.hero-card .card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur-bg);
}

.hero-media {
  display: grid;
  gap: 1.4rem;
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(148, 163, 184, 0.45);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.card-title {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 0;
  margin-bottom: 1rem;
}

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

.field {
  display: grid;
  gap: 0.25rem;
}

.field label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.55rem 0.7rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.field textarea {
  resize: vertical;
  min-height: 72px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.8);
}

.form-note {
  color: var(--text-soft);
  margin: 0.2rem 0 0;
}

.form-success {
  margin: 0.25rem 0 0;
  color: var(--accent-strong);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.4rem;
  font-size: 0.96rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
  color: var(--accent-strong);
}

.about-highlight {
  align-self: center;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: #ffffff;
}

.about-media {
  display: grid;
  gap: 1rem;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 35px rgba(148, 163, 184, 0.35);
}

.about-photo img {
  width: 100%;
  display: block;
}

.badge-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.65rem;
}

.badge-title {
  font-weight: 600;
}

.badge-sub {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.service {
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.2rem 1.3rem;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 16px 40px rgba(148, 163, 184, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service p {
  margin: 0 0 0.75rem;
  color: var(--text-soft);
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(148, 163, 184, 0.4);
  border-color: rgba(129, 140, 248, 0.9);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 16px 40px rgba(148, 163, 184, 0.4);
  background: #ffffff;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .gallery-item img {
    height: 160px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  max-width: min(960px, 96vw);
  max-height: 90vh;
  padding: 0.9rem;
  border-radius: 1.3rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  transform: scale(0.96);
  transition: transform 0.22s ease-out;
}

.lightbox.open .lightbox-inner {
  transform: scale(1);
}

.lightbox figure {
  margin: 0;
}

/* navigation arrows inside lightbox */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  border-radius: 0.35rem;
  cursor: pointer;
  z-index: 45;
}

.lightbox-nav.prev {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}

@media (max-width: 600px) {
  .lightbox-nav {
    font-size: 1.8rem;
    padding: 0.3rem 0.5rem;
  }
}

.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
}

.lightbox-caption {
  margin-top: 0.6rem;
  color: #e5e7eb;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}

.lightbox-close:hover {
  border-color: var(--accent);
  color: #f9fafb;
}

.stat {
  border-radius: 1.2rem;
  padding: 1.1rem 1.05rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.stat-num {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 650;
}

.stat-suffix {
  font-size: 0.9rem;
  margin-left: 0.12rem;
  color: var(--accent);
}

.stat-label {
  margin: 0.2rem 0 0.3rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.stat-text {
  margin: 0;
  color: var(--text-soft);
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.35);
  border-color: rgba(129, 140, 248, 0.9);
}

.steps {
  display: grid;
  gap: 0.8rem;
}

.step {
  border-radius: 1.1rem;
  padding: 1rem 1rem 0.9rem;
  background: #ffffff;
  border: 1px dashed rgba(148, 163, 184, 0.9);
}

.step p {
  margin: 0;
  color: var(--text-soft);
}

.person {
  position: relative;
  border-radius: 1.4rem;
  padding: 1.6rem 1.55rem;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.6rem;
  align-items: center;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.person h3 {
  margin: 0 0 0.5rem;
}

.person .muted {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.person:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  border-color: rgba(129, 140, 248, 0.9);
}

.person-text {
  position: relative;
  z-index: 1;
}

.person-text p {
  margin: 0 0 0.7rem;
}

.person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.person-photo-wrap {
  position: relative;
  align-self: stretch;
}

.person-photo-bg {
  position: absolute;
  inset: 14px -26px -18px 26px;
  border-radius: 1.6rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(22, 163, 74, 0.85));
}

.person-photo {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 3px solid rgba(248, 250, 252, 0.88);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.72);
}

.person-photo img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.person-tagline {
  font-size: 0.9rem;
  color: var(--text-soft);
}

@media (max-width: 860px) {
  .person {
    grid-template-columns: minmax(0, 1fr);
  }

  .person-photo-bg {
    inset: 10px;
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.4rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.map-section {
  padding: 0 0 4.5rem;
}

.map-shell {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
  background: #ffffff;
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
}

.map-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem 1rem;
}

.map-placeholder {
  border-radius: 1.4rem;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  padding: 1.3rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(191, 219, 254, 0.6), #eff6ff);
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  padding: 0.45rem 0.75rem 0.45rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  font-size: 0.9rem;
}

.video-link:hover {
  text-decoration: none;
  border-color: var(--accent);
}

.video-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #f9fafb;
}

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1.2rem 0 1.4rem;
  color: var(--text-soft);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 0.4rem;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-card {
    order: -1;
  }

  .header-inner {
    padding-block: 0.65rem;
  }

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

  .nav-menu {
    position: absolute;
    inset-inline: 0.9rem;
    top: calc(100% + 0.45rem);
    border-radius: 1rem;
    padding: 0.6rem 0.7rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.9);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    transform-origin: top;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.16s ease,
      transform 0.16s ease;
  }

  .nav-menu.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.32rem 0.4rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 0.3rem;
  }
}

@media (max-width: 768px) {
  /* stack hero & about columns */
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-media,
  .about-photo,
  .about-content {
    text-align: center;
  }
  .about-photo img {
    margin: 0 auto;
  }

  /* prevent large images from dominating on phones */
  .hero-photo,
  .about-photo {
    max-width: 90%;
    margin: 0 auto;
  }
  .hero-photo img,
  .about-photo img {
    max-height: 240px;
    width: auto;
    height: auto;
  }
  /* more visual gap between sections */
  .section {
    padding-bottom: 4rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding-block: 3.4rem;
  }

  .hero {
    padding-bottom: 3.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

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

  /* enlarge nav links for easy tapping */
  .nav-link {
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
  }

  .nav-cta {
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .map-frame {
    height: 240px;
  }
}

