/* =====================================================
   AMMA HOME NURSING — DESIGN TOKENS
   Palette: warm cream base, deep teal (trust), soft sage
   (calm/health), marigold gold (warmth/human touch), blush
   (softness). Type: Fraunces (warm serif display) + Work Sans.
   ===================================================== */
:root {
  /* Color */
  --color-cream: #FAF6EF;
  --color-cream-200: #F3ECE0;
  --color-teal-900: #14292C;
  --color-teal-700: #1F4649;
  --color-teal-600: #2C5F63;
  --color-teal-300: #7FAAA8;
  --color-teal-200: #BFD8D3;
  --color-teal-100: #E3EFEA;
  --color-sage-600: #6E9C7F;
  --color-sage-200: #D8E9DB;
  --color-gold: #D9A452;
  --color-gold-600: #C68C36;
  --color-gold-200: #F0DAB0;
  --color-blush: #F3E1D2;
  --color-charcoal: #24322F;
  --color-ink-soft: #4C5A56;
  --color-white: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-w: 1400px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 10px 30px -12px rgba(36, 50, 47, 0.18);
  --shadow-lift: 0 20px 45px -18px rgba(36, 50, 47, 0.28);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 250ms;
  --dur-med: 380ms;
  --dur-slow: 500ms;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn 600ms var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; color: var(--color-teal-900); line-height: 1.15; }
p { margin: 0 0 1em; color: var(--color-ink-soft); }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: 1rem; }

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: .9em;
}
.eyebrow--light { color: var(--color-gold-200); }

.section-title { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.section-title--light { color: var(--color-cream); }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head .section-title { margin-inline: auto; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 600;
  font-size: .95rem;
  padding: .85em 1.6em;
  border-radius: var(--radius-sm);
  border: none;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn--pill { border-radius: 999px; padding: .65em 1.4em; font-size: .9rem; }
.btn--lg { padding: 1em 2em; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-teal-900);
  box-shadow: var(--shadow-soft);
}
.btn--gold:hover { background: var(--color-gold-600); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn--gold:active { transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--color-teal-700);
  border: 1.5px solid var(--color-teal-300);
}
.btn--outline:hover { background: var(--color-teal-100); transform: translateY(-3px); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FAF6EF; /* Same color everywhere */
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  backdrop-filter: none;
  transition: box-shadow .3s ease;
}
.nav.is-scrolled {
 background: #FAF6EF;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }

.nav__logo { display: flex; align-items: center; gap: .5em; color: var(--color-teal-700); }
.nav__logo-mark { color: var(--color-gold-600); display: inline-flex; }
.nav__logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--color-teal-900); }
.nav__logo-text em { font-style: normal; color: var(--color-gold-600); font-weight: 500; }
.nav__logo-text--footer { font-size: 1.4rem; color: var(--color-cream); }
.nav__logo-text--footer em { color: var(--color-gold-200); }

.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-weight: 500; font-size: .95rem; color: var(--color-teal-700); position: relative; padding-bottom: 4px; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--color-gold);
  transition: width var(--dur-fast) var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: .5rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--color-teal-700); border-radius: 2px; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }

/* =====================================================
   HERO
   ===================================================== */
/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: linear-gradient(180deg, #FDFBF7 0%, var(--color-cream) 100%);
}

/* =========================
   LAYOUT
========================= */

.hero__inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;

    display: flex;
    align-items: center;
    gap: 4rem;
}

/* =========================
   TEXT (left group)
========================= */

.hero__copy {
    flex: 0 0 460px;   /* fixed comfortable reading width, never grows or shrinks */
    max-width: 460px;
}

.hero__title {
    font-size: clamp(2.6rem, 3.6vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.2rem;
    color: #5e6668;
}

/* =========================
   IMAGE (right group)
========================= */

.hero__visual {
    flex: 1 1 0;   /* takes up all remaining space in the row */
    min-width: 0;  /* prevents flex item from refusing to shrink below content size */
    display: flex;
}

.hero__frame {
    width: 100%;
    height: 560px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0,0,0,.15);
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slideshow__img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    transition: opacity .9s ease;
}

.hero-slideshow__img.is-active {
    opacity: 1;
}

/* =========================
   DECORATIVE BLOBS
========================= */

.hero__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: .55;
    filter: blur(2px);
    animation: float 12s ease-in-out infinite;
}

.blob--1 {
    width: 340px;
    height: 340px;
    background: var(--color-sage-200);
    top: -80px;
    left: -100px;
}

.blob--2 {
    width: 220px;
    height: 220px;
    background: var(--color-gold-200);
    bottom: 40px;
    right: 8%;
}

/* Teal blob: pulled fully inside the viewport and given a soft radial
   fade instead of a hard-edged circle, so it reads as a glow that's
   floating behind the hero rather than a shape cut off at the edge. */
.blob--3 {
    width: 260px;
    height: 260px;
    top: 12%;
    right: 4%;
    background: radial-gradient(circle at 35% 35%, var(--color-teal-200) 0%, var(--color-teal-300) 55%, transparent 78%);
    opacity: .5;
    filter: blur(6px);
    animation: float-teal 9s ease-in-out infinite;
}

/* A second, smaller companion circle layered behind it for depth */
.blob--3::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: 70%;
    left: -30%;
    background: radial-gradient(circle at 40% 40%, var(--color-teal-100) 0%, transparent 75%);
    opacity: .7;
}

@keyframes float {
    0%,100% {
        transform: translate(0,0) scale(1);
    }
    33% {
        transform: translate(20px,-24px) scale(1.05);
    }
    66% {
        transform: translate(-16px,16px) scale(.97);
    }
}

@keyframes float-teal {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-26px) scale(1.04); }
}

.wave-divider {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -2px;
}

/* =====================================================
   TRUST INDICATORS
   ===================================================== */
.trust { padding-block: 1rem 5rem; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust__card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.trust__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.trust__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-sage-200); color: var(--color-teal-700);
  margin-bottom: 1.1em;
}
.trust__card h3 { font-size: 1.1rem; margin-bottom: .4em; }
.trust__card p { font-size: .92rem; margin-bottom: 0; }

/* =====================================================
   ABOUT
   ===================================================== */
.about { padding-block: 5rem; }
.about__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
.about__frame { max-width: 380px; margin: 0 auto; }
.about__copy p { font-size: 1.02rem; }

/* =====================================================
   SERVICES
   ===================================================== */
.services { padding-block: 5rem; background: var(--color-cream-200); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.service-card:hover .service-card__icon { background: var(--color-gold); color: var(--color-teal-900); }
.service-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--color-teal-100); color: var(--color-teal-700);
  margin-bottom: 1.1em;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: .4em; }
.service-card p { font-size: .92rem; margin-bottom: 0; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-us { padding-block: 5rem; }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--color-blush);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.feature-card h3 { font-size: 1.1rem; }
.feature-card p { margin-bottom: 0; font-size: .95rem; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works { padding-block: 5rem; background: var(--color-cream-200); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--color-teal-300) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.timeline__step { position: relative; z-index: 1; text-align: center; padding: 0 .5rem; }
.timeline__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-teal-600); color: var(--color-cream);
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  margin-bottom: 1em;
}
.timeline__step h3 { font-size: 1.05rem; }
.timeline__step p { font-size: .92rem; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { padding-block: 5rem; }
.testimonial-slider { max-width: 720px; margin: 0 auto; }
.testimonial-track { position: relative; min-height: 220px; }
.testimonial-card {
  position: absolute; inset: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.6rem;
  box-shadow: var(--shadow-soft);
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  pointer-events: none;
}
.testimonial-card.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.testimonial-card p { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-teal-900); font-style: italic; }
.testimonial-card footer { display: flex; align-items: center; gap: .8em; font-size: .9rem; color: var(--color-ink-soft); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-sage-200); color: var(--color-teal-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-family: var(--font-body); flex-shrink: 0;
}
.testimonial-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.6rem; }
.testimonial-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: var(--color-teal-200);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.testimonial-dots button.is-active { background: var(--color-gold); transform: scale(1.25); }

/* =====================================================
   STATISTICS
   ===================================================== */
.stats { padding-block: 4.5rem; background: var(--color-teal-700); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--color-gold-200); }
.stat p { color: var(--color-teal-200); margin-bottom: 0; font-size: .95rem; }

/* =====================================================
   CALLBACK / LEAD CAPTURE
   ===================================================== */
.callback {
  padding-block: 5.5rem;
  background: var(--color-teal-900);
  background-image: radial-gradient(circle at 15% 20%, rgba(217,164,82,0.10), transparent 45%);
}
.callback__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.callback__desc { color: var(--color-teal-200); max-width: 46ch; }
.callback__points { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.callback__points li {
  color: var(--color-cream);
  font-weight: 500;
  padding-left: 1.6em;
  position: relative;
  font-size: .96rem;
}
.callback__points li::before {
  content: "";
  position: absolute; left: 0; top: 0.35em;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-gold);
}

.callback__form {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: flex; flex-direction: column; gap: .45em; }
.form-row label { font-size: .88rem; font-weight: 600; color: var(--color-teal-900); }
.form-row .optional { font-weight: 400; color: var(--color-ink-soft); }
.form-row input, .form-row select {
  padding: .85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-teal-200);
  background: var(--color-white);
  color: var(--color-charcoal);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.form-row input:focus, .form-row select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(217,164,82,0.18);
  outline: none;
}
.form-note { font-size: .88rem; color: var(--color-sage-600); min-height: 1.2em; margin: 0; text-align: center; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact { padding-block: 5.5rem; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.contact__list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.5rem; }
.contact__list li { display: flex; align-items: flex-start; gap: 1em; }
.contact__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--color-sage-200); color: var(--color-teal-700);
}
.contact__list strong { color: var(--color-teal-900); font-size: .95rem; }
.contact__list a:hover { color: var(--color-gold-600); }

.contact__map .map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  max-width: 380px;
  margin-left: auto;  
}
.map-placeholder__label {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(250,246,239,0.92);
  padding: .5em 1em; border-radius: 999px;
  font-size: .82rem; color: var(--color-teal-700); font-weight: 500;
}
.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-100);
}

.logo-panel__img {
  width: auto;
  height: auto;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--color-teal-900); color: var(--color-teal-200); padding-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand p { color: var(--color-teal-300); font-size: .92rem; max-width: 32ch; }
.footer__social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.footer__social a:hover { background: var(--color-gold); color: var(--color-teal-900); transform: translateY(-3px); }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__col h4 { color: var(--color-cream); font-size: 1rem; margin-bottom: .3em; }
.footer__col a, .footer__col span { color: var(--color-teal-300); font-size: .92rem; }
.footer__col a:hover { color: var(--color-gold-200); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.5rem; text-align: center; }
.footer__bottom p { margin: 0; font-size: .85rem; color: var(--color-teal-300); }

/* =====================================================
   MOBILE CALL FAB
   ===================================================== */
.mobile-call-fab {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-gold); color: var(--color-teal-900);
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,164,82,0.5), var(--shadow-lift); }
  50% { box-shadow: 0 0 0 10px rgba(217,164,82,0), var(--shadow-lift); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .trust__grid, .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .timeline::before { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .about__inner, .callback__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__visual, .contact__map { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__menu {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.6rem;
    box-shadow: -12px 0 40px -20px rgba(20,41,44,0.35);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__toggle { display: flex; }
  .nav__cta { margin-left: 0; }

  .hero__inner { flex-direction: column; text-align: center; padding-block: 2rem 3rem; }
  .hero__copy { flex: 0 0 auto; max-width: 100%; }
  .hero__desc { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; flex: 0 0 auto; justify-content: center; }
  .hero__frame { width: 280px; height: 280px; margin: 0 auto; }

  .trust__grid, .services__grid, .why-us__grid, .timeline, .stats__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .mobile-call-fab { display: inline-flex; }
}

@media (max-width: 480px) {
  .btn--lg { width: 100%; }
  .hero__actions { flex-direction: column; }
}
