/* ============================================
   快快救 SOS Rescue — Design tokens & base
   ============================================ */

:root {
  --color-primary: #00645a;
  --color-primary-dark: #003c39;
  --color-primary-mid: #0a7a6e;
  --color-primary-soft: #e6f2f0;
  --color-white: #ffffff;
  --color-bg: #f4f7f6;
  --color-text: #1a2b29;
  --color-text-muted: #4d6360;
  --color-border: #d5e3e0;
  --color-whatsapp: #1a9f55;
  --color-whatsapp-hover: #158a49;
  --color-overlay: rgba(0, 30, 28, 0.72);

  --font-sans: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-display: "Barlow", "Noto Sans TC", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 4px 16px rgba(0, 60, 57, 0.08);
  --shadow-md: 0 12px 32px rgba(0, 60, 57, 0.12);
  --header-h: 72px;
  --container: 1120px;
  --transition: 0.22s ease;
  --z-header: 1000;
  --z-overlay: 2000;
  --z-fab: 1500;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.25;
  margin: 0 0 var(--space-4);
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 var(--space-4);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-primary-mid);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 3000;
  background: var(--color-white);
  color: var(--color-primary-dark);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-2);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

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

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

.section--dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section--dark .section-kicker {
  color: #8fd4cb;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, var(--text-3xl));
}

.section-lead {
  color: var(--color-text-muted);
  max-width: 38rem;
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  margin-bottom: var(--space-7);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
}

.btn:hover {
  color: inherit;
  transform: translateY(-1px);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.btn-light:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: var(--color-white);
}

.btn-call {
  background: var(--color-white);
  color: var(--color-primary-dark);
  min-height: 42px;
  padding: 0.45rem 1rem;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--color-white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-en {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
}

.nav-desktop {
  margin-left: auto;
}

.nav-desktop ul {
  display: flex;
  gap: 0.15rem;
  list-style: none;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
  padding: 0.5rem 0.8rem;
  font-size: var(--text-sm);
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 50%;
  margin-left: -9px;
}

.menu-toggle-bars {
  top: 50%;
  margin-top: -1px;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
}

.menu-toggle-bars::before {
  top: -6px;
}

.menu-toggle-bars::after {
  top: 6px;
}

body.nav-open .menu-toggle-bars {
  background: transparent;
}

body.nav-open .menu-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================
   Mobile full-screen overlay (independent)
   ============================================ */

.nav-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: var(--z-overlay);
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, visibility 0.28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-overlay.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay-inner {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 2rem;
}

.nav-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.nav-overlay-close {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.nav-overlay-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.nav-overlay-list a {
  display: block;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-overlay-list a[aria-current="page"] {
  color: #8fd4cb;
}

.nav-overlay-cta {
  display: grid;
  gap: var(--space-3);
  margin-top: 1.75rem;
  padding-bottom: env(safe-area-inset-bottom);
}

.nav-overlay-cta .btn {
  width: 100%;
}

/* ============================================
   Hero slider
   ============================================ */

.hero {
  position: relative;
  background: var(--color-primary-dark);
  min-height: min(78vh, 640px);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  z-index: 1;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
  min-height: min(78vh, 640px);
}

.hero-slide:hover {
  color: var(--color-white);
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 60, 57, 0.92) 0%,
    rgba(0, 60, 57, 0.55) 48%,
    rgba(0, 30, 28, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: 5.5rem 0 6.5rem;
  max-width: 38rem;
  margin-left: max(1rem, calc((100% - var(--container)) / 2));
}

.hero-watermark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 16vw, 10rem);
  line-height: 0.8;
  opacity: 0.12;
  position: absolute;
  right: 4%;
  top: 18%;
  pointer-events: none;
  z-index: 1;
}

.hero-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: #b7ebe4;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin-bottom: var(--space-4);
}

.hero-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-6);
}

.hero-nav {
  position: absolute;
  inset: auto 1rem 1.25rem auto;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.hero-nav button,
.slider-dots button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 60, 57, 0.45);
  color: var(--color-white);
  cursor: pointer;
}

.slider-dots {
  position: absolute;
  left: max(1rem, calc((100% - var(--container)) / 2));
  bottom: 1.4rem;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  min-height: 0;
}

.slider-dots button.is-active {
  background: var(--color-white);
  border-color: var(--color-white);
}

/* ============================================
   Cards / grids
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card h3 {
  font-size: var(--text-xl);
}

.card p {
  color: var(--color-text-muted);
  flex: 1;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-7);
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 2px solid var(--color-primary);
  z-index: -1;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.stat {
  border-top: 2px solid var(--color-primary);
  padding-top: var(--space-3);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-primary-dark);
}

.stat span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Services detail
   ============================================ */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.service-block:nth-child(even) .service-copy {
  order: -1;
}

.service-block img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-copy {
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================
   Cases
   ============================================ */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.case-card {
  position: relative;
  display: block;
  color: var(--color-white);
  overflow: hidden;
  min-height: 240px;
  background: var(--color-primary-dark);
  cursor: pointer;
  border: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  font: inherit;
}

.case-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card:hover,
a.case-card:hover {
  color: var(--color-white);
}

.case-card:hover img {
  transform: scale(1.05);
}

.case-card .case-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(0, 30, 28, 0.88));
}

.case-card h3 {
  font-size: var(--text-base);
  margin: 0 0 0.2rem;
  color: inherit;
}

.case-card p {
  margin: 0;
  font-size: var(--text-sm);
  opacity: 0.88;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0, 20, 18, 0.88);
  display: none;
  place-items: center;
  padding: 1.5rem;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(960px, 100%);
  max-height: 80dvh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--color-white);
  font-size: 1.6rem;
  cursor: pointer;
}

.lightbox-caption {
  color: var(--color-white);
  margin-top: var(--space-3);
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 650;
  font-family: var(--font-display);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--color-text-muted);
}

/* ============================================
   Contact
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-7);
}

.contact-panel {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: var(--space-7);
}

.contact-panel a {
  color: var(--color-white);
}

.contact-panel dt {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: var(--space-5);
}

.contact-panel dd {
  margin: 0.2rem 0 0;
  font-size: var(--text-lg);
}

.contact-panel .btn {
  width: 100%;
}

.contact-panel .btn-light,
.contact-panel .btn-light:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.form {
  display: grid;
  gap: var(--space-4);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: var(--text-sm);
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
  background: var(--color-white);
}

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

.form-error {
  color: #9b1c1c;
  font-size: var(--text-sm);
  display: none;
}

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

.map-wrap {
  margin-top: var(--space-7);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.cta-band h2 {
  margin: 0 0 0.4rem;
}

.page-hero {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 3.5rem 0 3rem;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
}

/* ============================================
   Footer / FAB / back to top
   ============================================ */

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-8) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}

.site-footer a,
.nav-overlay a,
.contact-panel a,
.section--dark a {
  color: var(--color-white);
}

.site-footer a:hover:not(.brand),
.nav-overlay-list a:hover,
.contact-panel a:not(.btn):hover,
.section--dark a:not(.btn):hover {
  color: var(--color-white);
  text-decoration: underline;
}

.site-footer .brand {
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-4);
  font-size: var(--text-sm);
}

.fab-group {
  position: fixed;
  right: 1rem;
  bottom: 5.2rem;
  z-index: var(--z-fab);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.fab:hover {
  color: var(--color-white);
}

.fab-wa {
  background: var(--color-whatsapp);
}

.fab-call {
  background: var(--color-primary);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  z-index: var(--z-fab);
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--color-primary-dark);
  color: var(--color-white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.cases-more {
  margin-top: 1.75rem;
}

.faq-more {
  margin-top: 1.5rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .card-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-grid,
  .footer-grid,
  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block:nth-child(even) .service-copy {
    order: 0;
  }

  .split-media::after {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
  }

  .nav-desktop,
  .header-actions .btn-call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding: 4rem 0 5.5rem;
  }

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

@media (max-width: 640px) {
  .card-grid,
  .case-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70dvh;
  }

  .hero-slide.is-active {
    min-height: 70dvh;
  }

  .btn-row .btn {
    width: 100%;
  }

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

  .contact-panel,
  .service-copy {
    padding: var(--space-5);
  }

  .fab-group {
    right: 0.75rem;
  }
}

@media (min-width: 861px) {
  .nav-overlay {
    display: none;
  }
}
