/* ============================================
   Enorme Home & Companion Services
   Shared Stylesheet (Mobile-First)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --blue-900: #1a3a5c;
  --blue-700: #2b6cb0;
  --blue-600: #3182ce;
  --blue-500: #4299e1;
  --blue-100: #bee3f8;
  --blue-50:  #ebf8ff;

  --green-700: #276749;
  --green-500: #48bb78;
  --green-100: #c6f6d5;
  --green-50:  #f0fff4;

  --warm-white: #fdfbf7;
  --off-white:  #f7f5f0;
  --gray-100:   #f7fafc;
  --gray-200:   #edf2f7;
  --gray-300:   #e2e8f0;
  --gray-400:   #cbd5e0;
  --gray-500:   #a0aec0;
  --gray-600:   #718096;
  --gray-700:   #4a5568;
  --gray-800:   #2d3748;
  --gray-900:   #1a202c;

  --cream: #fefcf6;
  --coral: #e8785e;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --max-width: 1200px;
  --nav-height: 64px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-600); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--blue-900);
  line-height: 1.25;
  margin-bottom: .5em;
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }

p { margin-bottom: 1em; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: var(--off-white);
}

.section--blue {
  background: var(--blue-50);
}

.section--green {
  background: var(--green-50);
}

.section--center h2 {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: .3em;
}

.section--center p.subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  text-align: center;
  line-height: 1.3;
}

.btn--primary {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600);
}
.btn--primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-700);
}
.btn--secondary:hover {
  background: var(--blue-700);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--blue-700);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.btn--green {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}
.btn--green:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: #fff;
}

.btn--lg {
  padding: .9rem 2.25rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue-50);
  box-shadow: var(--shadow-sm);
  height: var(--nav-height);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.05;
}

.logo-main {
  color: #5a9a6a;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--blue-600);
  margin-top: 2px;
}
@media (max-width: 500px) {
  .logo-sub {
    display: none;
  }
}

.nav__links {
  display: none;
  list-style: none;
  align-items: center;
  gap: .25rem;
}

.nav__link {
  color: var(--gray-700);
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.nav__link:hover,
.nav__link--active {
  color: var(--blue-700);
  background: rgba(0,0,0,.04);
}

.nav__cta {
  margin-left: .5rem;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--blue-50);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__link {
    width: 100%;
    padding: .75rem .5rem;
  }
  .nav__cta {
    margin-left: 0;
    margin-top: .5rem;
    width: 100%;
  }
  .nav__cta .btn {
    width: 100%;
    display: block;
  }
  .nav__toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .nav__toggle {
    display: none;
  }
  .nav__links {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .nav-logo {
    margin-right: 0.5rem;
  }
  .nav-logo svg {
    width: 48px;
    height: 48px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--green-50) 100%);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.hero__image {
  width: 100%;
  max-width: 500px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Hero slideshow */
.hero__slideshow {
  position: relative;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 2s ease-in-out; /* was 1s */
}
.hero__slide.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }
}

.hero__title {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
}

.hero__title span {
  color: var(--green-700);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray-600);
  max-width: 560px;
}

@media (min-width: 769px) {
  .hero {
    padding: 4.5rem 0 5rem;
  }
  .hero__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: stretch;        /* was implicitly stretch via flex default, but lock it in */
    gap: 2.5rem;
  }
  .hero__content {
    flex: 1 1 52%;               /* slightly less than half so the image gets more room */
  }
  .hero__image {
    flex: 1 1 48%;               /* was flex:0 0 auto + width:400px */
    width: auto;
    max-width: 620px;
    height: auto;                /* was 320px — let it grow with the column */
    min-height: 420px;
    align-self: stretch;         /* match the text column's full height */
  }
}

/* ---------- Home Banner ---------- */
.home-banner {
  padding: 0 clamp(1rem, 3vw, 0.5in);
  margin: 3rem 0;
}

.home-banner__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1408 / 768;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--blue-900);
  padding: 1.5rem 0;
}

.trust-bar__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
}

.trust-bar__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .trust-bar__grid {
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
}

/* ---------- How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step__icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}

.step__title {
  margin-bottom: .4em;
}

.step__text {
  color: var(--gray-600);
  font-size: .95rem;
}

@media (min-width: 600px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Service Cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.25rem;
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.service-card__title {
  font-size: 1.1rem;
  margin-bottom: .5em;
}

.service-card__text {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

@media (min-width: 500px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial__stars {
  color: var(--coral);
  font-size: 1.1rem;
  margin-bottom: .75rem;
  letter-spacing: 2px;
}

.testimonial__quote {
  font-style: italic;
  color: var(--gray-700);
  font-size: .95rem;
  margin-bottom: 1rem;
}

.testimonial__name {
  font-weight: 600;
  color: var(--blue-900);
  font-size: .9rem;
}

@media (min-width: 700px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Feature Blocks ---------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature__icon--blue { background: var(--blue-50); }
.feature__icon--green { background: var(--green-50); }
.feature__icon--cream { background: var(--cream); }
.feature__icon--warm { background: #fef2e9; }

@media (min-width: 600px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- FAQ Accordion ---------- */
.faq {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  overflow: hidden;
  background: #fff;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-900);
  text-align: left;
  transition: background .2s;
}
.faq__question:hover {
  background: var(--gray-100);
}

.faq__chevron {
  font-size: 1.25rem;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: .75rem;
}
.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq__answer-inner {
  padding: 0 1.25rem 1rem;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.7;
}

.faq__item.is-open .faq__answer {
  max-height: 400px;
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto;
}

.form-card h3 {
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .35rem;
  color: var(--gray-800);
}

.form-label .required {
  color: var(--coral);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-800);
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(66,153,225,.15);
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,120,94,.12);
}

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

.form-error {
  color: var(--coral);
  font-size: .82rem;
  margin-top: .25rem;
  display: none;
}
.form-error.is-visible {
  display: block;
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 400;
  cursor: pointer;
  font-size: .95rem;
}

.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-600);
}

.form-submit {
  margin-top: .5rem;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1.5rem;
}
.form-success.is-visible {
  display: block;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: .75rem;
}

.form-success__title {
  color: var(--green-700);
  margin-bottom: .5em;
}

.form-success__text {
  color: var(--gray-600);
  max-width: 400px;
  margin: 0 auto;
}

/* ---------- Contact Grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-item__label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue-900);
  margin-bottom: .15rem;
}

.contact-item__value {
  color: var(--gray-600);
  font-size: .95rem;
}

.hours-table {
  width: 100%;
  font-size: .95rem;
}
.hours-table td {
  padding: .35rem 0;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--gray-800);
  width: 45%;
}
.hours-table td:last-child {
  color: var(--gray-600);
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--gray-500);
  text-align: center;
  padding: 1rem;
}

@media (min-width: 769px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* ---------- Service Detail (services.html) ---------- */
.service-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.service-detail__icon {
  font-size: 1.5rem;
}

.service-detail__title {
  font-size: 1.15rem;
  margin-bottom: .35em;
}

.service-detail__text {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.7;
}

.service-detail__list {
  list-style: none;
  padding: 0;
}
.service-detail__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .4rem;
  font-size: .95rem;
  color: var(--gray-700);
}
.service-detail__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 700;
}

@media (min-width: 769px) {
  .service-detail {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
  .service-detail__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
}

/* ---------- What We Look For ---------- */
.lookup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.lookup__item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.lookup__check {
  width: 28px;
  height: 28px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-weight: 700;
  flex-shrink: 0;
  font-size: .85rem;
}

.lookup__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .15rem;
  color: var(--blue-900);
}

.lookup__text {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .lookup {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: .5em;
}

.cta-banner p {
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.cta-banner .btn--white:hover {
  background: var(--blue-50);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.75);
  padding: 2.5rem 0 1.5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
}
.footer__logo span {
  color: var(--green-500);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .25rem .5rem;
  list-style: none;
}

.footer__link {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  padding: .3rem .5rem;
  transition: color .2s;
}
.footer__link:hover {
  color: #fff;
}

.footer__contact {
  font-size: .85rem;
  line-height: 1.8;
}

.footer__copy {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  width: 100%;
}

@media (min-width: 600px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 2.5rem;
  }
  .footer__contact {
    text-align: center;
  }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--green-50) 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.page-hero__title {
  margin-bottom: .5em;
}

.page-hero__subtitle {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

@media (min-width: 769px) {
  .page-hero {
    padding: 4rem 0 3rem;
  }
}

/* ---------- Mission Section ---------- */
.mission-section {
  background: var(--blue-50);
  padding: 3.5rem 0;
  text-align: center;
}

.mission-section h2 {
  margin-bottom: 1em;
}

.mission-section h3 {
  font-size: 1.2rem;
  margin-top: 1.5em;
}

.mission-section .mission-lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 720px;
  margin: 0 auto 1.5em;
  line-height: 1.7;
}

.mission-section p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray-600);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mission-section {
    padding: 2.5rem 0;
  }
  .mission-section h2,
  .mission-section h3 {
    text-align: center;
  }
  .mission-section .mission-lead,
  .mission-section p {
    max-width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
