/* American Cleaning Experts — americancleaningexperts.com / aceorlando.com */

:root {
  --navy: #0B2545;
  --navy-2: #14406E;
  --teal: #2EC4B6;
  --teal-dark: #1A9E92;
  --red: #D7263D;
  --ink: #1B2733;
  --muted: #5A6B7C;
  --soft: #F2F7F9;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 22px 55px rgba(11, 37, 69, 0.22);
  --font: "Avenir Next", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 700; text-decoration: none; border-radius: 999px;
  padding: 0.8em 1.6em; font-size: 1rem; line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 8px 24px rgba(215, 38, 61, 0.35); }
.btn-primary:hover { background: #E93A50; box-shadow: 0 12px 30px rgba(215, 38, 61, 0.45); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); border: 2px solid rgba(255,255,255,0.65); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-lg { padding: 1em 2em; font-size: 1.08rem; }
.btn-phone { background: var(--teal); color: var(--navy); padding: 0.55em 1.1em; font-size: 0.92rem; }
.btn-phone:hover { background: #3FD6C8; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(11, 37, 69, 0.0);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.nav.is-scrolled { background: rgba(11, 37, 69, 0.96); box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.nav-inner {
  width: min(1200px, 94%); margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.65rem 0;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand-emblem { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { color: var(--white); font-weight: 800; font-size: 1.02rem; letter-spacing: 0.01em; }
.brand-name em { font-style: normal; color: var(--teal); }
.brand-tag { color: rgba(255,255,255,0.75); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; gap: 1.4rem; }
.nav-links a {
  color: rgba(255,255,255,0.92); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 0.3em 0; border-bottom: 2px solid transparent; transition: border-color 0.18s, color 0.18s;
}
.nav-links a:hover { color: var(--teal); border-bottom-color: var(--teal); }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: 0.25s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/hero.jpg") center 60% / cover no-repeat;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(112deg, rgba(11,37,69,0.92) 0%, rgba(11,37,69,0.78) 42%, rgba(11,37,69,0.28) 100%);
}
.hero-content { position: relative; z-index: 2; width: min(1120px, 92%); margin: 0 auto; padding: 7.5rem 0 5rem; max-width: 1120px; }
.hero-kicker {
  color: var(--teal); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.4rem, 6vw, 4.3rem); line-height: 1.06;
  font-weight: 800; letter-spacing: -0.015em; margin-bottom: 1.2rem; max-width: 14em;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--teal), #7FE3D9);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: rgba(255,255,255,0.9); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 34em; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; }
.hero-badges li { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.95rem; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.7); font-size: 1.6rem; text-decoration: none;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* sparkles */
.sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sp {
  position: absolute; color: var(--teal); opacity: 0;
  animation: twinkle 5.5s ease-in-out infinite;
  text-shadow: 0 0 14px rgba(46, 196, 182, 0.9);
}
.sp1 { top: 18%; left: 66%; font-size: 1.6rem; animation-delay: 0s; }
.sp2 { top: 32%; left: 84%; font-size: 1.1rem; animation-delay: 0.9s; }
.sp3 { top: 60%; left: 74%; font-size: 2rem;   animation-delay: 1.7s; }
.sp4 { top: 74%; left: 88%; font-size: 1.2rem; animation-delay: 2.6s; }
.sp5 { top: 12%; left: 42%; font-size: 1rem;   animation-delay: 3.4s; color: #fff; }
.sp6 { top: 48%; left: 92%; font-size: 1.4rem; animation-delay: 4.2s; color: #fff; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  50% { opacity: 0.95; transform: scale(1) rotate(90deg); }
}

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-kicker {
  color: var(--red); font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
.section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 0.8rem; }
.section-sub { color: var(--muted); font-size: 1.08rem; max-width: 40em; margin-bottom: 2.6rem; }
.section-soft { background: var(--soft); }
.section-navy { background: linear-gradient(160deg, var(--navy-2), var(--navy)); }
.section-navy .section-kicker { color: var(--teal); }
.section-navy h2 { color: var(--white); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,0.88) 0%, rgba(11,37,69,0.25) 45%, rgba(11,37,69,0) 70%);
}
.card-title {
  position: absolute; left: 1.2rem; right: 1.2rem; bottom: 0.95rem; z-index: 2;
  color: var(--white); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.card-title::before {
  content: ""; display: block; width: 2.2em; height: 3px; border-radius: 2px;
  background: var(--teal); margin-bottom: 0.45rem;
  transition: width 0.3s ease;
}
.card:hover .card-title::before { width: 3.6em; }
.card-body { padding: 1.15rem 1.4rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.card-list { list-style: none; margin: 0 0 1rem; }
.card-list li {
  color: var(--ink); font-size: 0.94rem; padding: 0.28em 0 0.28em 1.75em; position: relative;
}
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 0.52em; width: 1.15em; height: 1.15em;
  border-radius: 50%; background: rgba(46,196,182,0.15);
}
.card-list li::after {
  content: ""; position: absolute; left: 0.28em; top: 0.78em; width: 0.62em; height: 0.35em;
  border-left: 2.2px solid var(--teal-dark); border-bottom: 2.2px solid var(--teal-dark);
  transform: rotate(-45deg);
}
.card-cta {
  margin-top: auto; align-self: flex-start;
  color: var(--red); font-weight: 800; font-size: 0.93rem; text-decoration: none;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.card-cta span { display: inline-block; transition: transform 0.25s ease; }
.card-cta:hover span { transform: translateX(5px); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; margin-top: 2.4rem; }
.feature {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.feature:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.feature-icon { margin-bottom: 0.9rem; color: var(--teal); }
.feature-icon svg { width: 34px; height: 34px; }
.feature h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 0.45rem; }
.feature p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; }
.gallery figure {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure::after {
  content: "✦"; position: absolute; right: 0.9rem; top: 0.8rem; color: var(--white);
  text-shadow: 0 0 12px rgba(46,196,182,0.95); font-size: 1.1rem; opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery figure:hover::after { opacity: 1; }

/* ---------- Reviews ---------- */
.quote-rotator { position: relative; max-width: 46em; }
.quote {
  display: none; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2rem 2.2rem; border-left: 5px solid var(--teal);
}
.quote.is-active { display: block; animation: quoteIn 0.5s ease; }
@keyframes quoteIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.quote p { font-size: 1.12rem; color: var(--ink); margin-bottom: 0.9rem; }
.quote footer { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.quote-note { color: #A6B3BF; font-weight: 400; font-size: 0.8em; }
.quote-dots { display: flex; gap: 0.5rem; margin-top: 1.1rem; }
.dot {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer;
  background: #C9D6DF; transition: background 0.2s ease, transform 0.2s ease;
}
.dot.is-active { background: var(--teal); transform: scale(1.25); }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }
.area-list {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.6rem;
}
.area-list li { color: var(--ink); font-weight: 600; padding-left: 1.3em; position: relative; }
.area-list li::before { content: "✦"; position: absolute; left: 0; color: var(--teal); }
.area-art svg { width: 100%; max-width: 320px; margin: 0 auto; display: block; }

/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 60%, #185B8D 100%);
  padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.contact::before, .contact::after {
  content: "✦"; position: absolute; color: rgba(46,196,182,0.25); font-size: 8rem; pointer-events: none;
}
.contact::before { left: -1.5rem; top: -2rem; transform: rotate(-15deg); }
.contact::after { right: -1rem; bottom: -2.5rem; transform: rotate(20deg); }
.contact-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact-emblem { width: 96px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4)); }
.contact h2 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 800; }
.contact p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.contact .hero-ctas { justify-content: center; margin: 0.8rem 0 0.4rem; }
.contact-hours { font-size: 0.95rem !important; color: rgba(255,255,255,0.65) !important; }

/* ---------- Footer ---------- */
.footer { background: #081B33; padding: 1.6rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; justify-content: space-between; }
.footer p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer a:hover { color: var(--teal); }

/* ---------- Sticky call button (mobile) ---------- */
.sticky-call {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(215,38,61,0.5);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(215,38,61,0.5), 0 0 0 0 rgba(215,38,61,0.45); }
  50% { box-shadow: 0 10px 26px rgba(215,38,61,0.5), 0 0 0 14px rgba(215,38,61,0); }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,37,69,0.98); flex-direction: column; gap: 0; padding: 0.6rem 0 1rem; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.7em 6%; border-bottom: 0; }
  .nav-burger { display: block; }
  .btn-phone { display: none; }
  .sticky-call { display: flex; }
  .area-grid { grid-template-columns: 1fr; }
  .area-art { order: -1; }
  .area-art svg { max-width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg, .hero-scroll, .sp, .sticky-call { animation: none; }
  .sp { opacity: 0.6; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Quote / contact page ---------- */
.page-contact { background: var(--soft); }
.quote-main { padding-top: 4.6rem; }
.quote-hero { background: linear-gradient(160deg, var(--navy-2), var(--navy)); padding: 3.6rem 0 2.8rem; }
.quote-hero h1 { color: var(--white); font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 0.7rem; }
.quote-hero .section-sub { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.quote-hero .section-sub a { color: var(--teal); text-decoration: none; }
.quote-form-section { padding: 3rem 0 5rem; }
.quote-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 2.4rem; align-items: start; }

.quote-form {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2rem 2.2rem 2.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.15rem; display: flex; flex-direction: column; }
.form-field label { font-weight: 700; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.35rem; }
.req { color: var(--red); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; color: var(--ink);
  border: 1.5px solid #C9D6DF; border-radius: 10px;
  padding: 0.7em 0.9em; background: #FBFDFE;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,196,182,0.18);
}
.form-field textarea { resize: vertical; min-height: 7em; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 1px; overflow: hidden; }
.btn-submit { width: 100%; justify-content: center; margin-top: 0.4rem; }
.btn-submit:disabled { opacity: 0.65; cursor: default; transform: none; }
.form-status { margin-top: 0.9rem; font-weight: 600; min-height: 1.4em; }
.form-status.is-ok { color: var(--teal-dark); }
.form-status.is-err { color: var(--red); }
.form-privacy { margin-top: 0.7rem; font-size: 0.82rem; color: var(--muted); }

.quote-aside { display: flex; flex-direction: column; gap: 1.3rem; }
.aside-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.9rem 1.7rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
}
.aside-card h2 { color: var(--navy); font-size: 1.25rem; }
.aside-card p { color: var(--muted); font-size: 0.95rem; }
.aside-mail { font-size: 0.92rem; word-break: break-all; }
.aside-points { list-style: none; padding: 0 0.4rem; }
.aside-points li { color: var(--ink); font-weight: 600; padding: 0.32em 0; }

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 1.5rem 1.2rem 1.8rem; }
}

.contact-mail { color: rgba(255,255,255,0.85); font-size: 0.98rem; text-decoration: none; border-bottom: 1px solid rgba(46,196,182,0.6); }
.contact-mail:hover { color: var(--teal); }

/* ---------- Our Promise ---------- */
.promise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; margin-top: 0.6rem; }
.promise-item {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.9rem 1.7rem; border-top: 4px solid var(--teal);
}
.promise-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1em; height: 2.1em; border-radius: 50%;
  background: var(--navy); color: var(--teal); font-weight: 800; font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.promise-item h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 0.45rem; }
.promise-item p { color: var(--muted); font-size: 0.96rem; }
.promise-note { margin-top: 2rem; color: var(--muted); font-style: italic; max-width: 44em; }

@media (max-width: 480px) {
  .brand-name { font-size: 0.9rem; }
  .brand-tag { display: none; }
  .brand-emblem { width: 36px; height: 40px; }
}

/* "Something else?" grid-filler tile */
.card-ask {
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
  text-decoration: none; padding: 2rem 1.6rem;
  display: flex; flex-direction: column; justify-content: center; gap: 0.6rem;
}
.card-ask-spark { color: var(--teal); font-size: 2rem; text-shadow: 0 0 16px rgba(46,196,182,0.8); }
.card-ask h3 { color: var(--white); font-size: 1.35rem; font-weight: 800; }
.card-ask p { color: rgba(255,255,255,0.8); font-size: 0.96rem; }
.card-ask .card-cta { color: var(--teal); margin-top: 0.5rem; }

/* ---------- Reviews page ---------- */
.hint { color: var(--muted); font-weight: 400; font-size: 0.85em; }
.reviews-heading { color: var(--navy); font-size: 1.5rem; font-weight: 800; margin: 2.5rem 0 1.2rem; }
.reviews-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.review-card { position: relative; }
.review-stars { color: #E8B04B; font-size: 1.05rem; letter-spacing: 0.12em; display: block; margin-bottom: 0.5rem; }
.reviews-empty { color: var(--muted); font-style: italic; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 46em; }
.faq-item {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  margin-bottom: 0.8rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.05rem 3rem 1.05rem 1.4rem;
  font-weight: 700; color: var(--navy); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%); color: var(--teal-dark);
  font-size: 1.5rem; font-weight: 400; transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.4rem 1.2rem; color: var(--muted); font-size: 0.97rem; }

/* mobile hero: lighter image for LCP */
@media (max-width: 700px) {
  .hero-bg { background-image: url("../img/hero-mobile.jpg"); }
}

/* footer NAP */
.footer-nap { color: rgba(255,255,255,0.7) !important; }
.footer-nap a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-nap a:hover { color: var(--teal); }

/* homepage reviews (promise section) */
.home-reviews { margin-top: 2.4rem; }
.home-reviews-heading { color: var(--navy); font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.home-reviews .promise-note { margin-top: 1.2rem; }
