/* ============================================================
   Nashville Flood Pros — Main Stylesheet
   Primary: #0d3d3a  |  Accent: #d4a017
   Fonts: DM Serif Display (headings) / Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary:     #0d3d3a;
  --primary-lt:  #145450;
  --primary-dk:  #082927;
  --accent:      #d4a017;
  --accent-lt:   #e8b93a;
  --accent-dk:   #a87c0e;
  --white:       #ffffff;
  --off-white:   #f7f9f8;
  --gray-100:    #f0f4f3;
  --gray-200:    #dde5e4;
  --gray-500:    #6b7e7d;
  --gray-700:    #2e4a48;
  --text:        #1a2e2d;
  --text-muted:  #4d6665;
  --radius:      8px;
  --shadow:      0 4px 20px rgba(13,61,58,.12);
  --shadow-lg:   0 8px 40px rgba(13,61,58,.18);
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dk); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

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

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .4rem; }

/* ── Layout Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--teal { background: var(--primary); color: var(--white); }
.section--teal h2, .section--teal h3, .section--teal h4 { color: var(--white); }
.section--teal p, .section--teal li { color: rgba(255,255,255,.88); }
.section--gray { background: var(--gray-100); }
.section--offwhite { background: var(--off-white); }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none; line-height: 1.2;
}
.btn--primary {
  background: var(--accent); color: var(--primary-dk);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-lt); border-color: var(--accent-lt);
  color: var(--primary-dk); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,.35);
}
.btn--outline {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white); color: var(--primary);
  transform: translateY(-2px);
}
.btn--teal {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}
.btn--teal:hover {
  background: var(--primary-lt); border-color: var(--primary-lt);
  color: var(--white); transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: .5rem 1.1rem; font-size: .85rem; }

/* ── Top Bar ── */
.topbar {
  background: var(--primary-dk);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .45rem 0;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.topbar a { color: var(--accent); font-weight: 600; }
.topbar a:hover { color: var(--accent-lt); }
.topbar__items { display: flex; gap: 1.5rem; }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: .9rem 1.25rem; max-width: 1160px; margin: 0 auto;
}
.nav__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; color: var(--white);
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.nav__logo span { color: var(--accent); }
.nav__logo-icon { font-size: 1.5rem; }

.nav__menu {
  display: flex; align-items: center; gap: .2rem;
  list-style: none; padding: 0; margin: 0;
}
.nav__menu a {
  color: rgba(255,255,255,.88);
  padding: .5rem .85rem;
  border-radius: 5px;
  font-size: .9rem; font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__menu a:hover,
.nav__menu a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav__cta { margin-left: .75rem; }

.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1.5rem; padding: .3rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
  transform: scale(1.03);
  transition: transform 6s ease;
}
.hero:hover .hero__bg { transform: scale(1.0); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,41,39,.82) 0%,
    rgba(13,61,58,.70) 50%,
    rgba(8,41,39,.55) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 860px;
}
.hero__badge {
  display: inline-block;
  background: var(--accent); color: var(--primary-dk);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .35rem .9rem;
  border-radius: 50px; margin-bottom: 1.25rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero__title em { color: var(--accent); font-style: normal; }
.hero__sub {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 580px; margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.6);
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: bounce 2s infinite;
}
.hero__scroll-arrow { font-size: 1.2rem; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--accent);
  padding: 1rem 0;
}
.trust-strip__inner {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
  max-width: 1160px; margin: 0 auto; padding: 0 1.25rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .9rem; color: var(--primary-dk);
}
.trust-item__icon { font-size: 1.1rem; }

/* ── Section Headings ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .65rem; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem; max-width: 560px; margin: 0 auto;
}
.section-header--white p { color: rgba(255,255,255,.8); }
.section-header--white h2 { color: var(--white); }
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .5rem;
}
.section-label--white { color: var(--accent-lt); }

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: .6rem; font-size: 1.25rem; }
.service-card p { color: var(--text-muted); font-size: .95rem; }
.service-card__link {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--accent-dk); font-weight: 600; font-size: .9rem;
  margin-top: 1rem;
}
.service-card__link:hover { color: var(--primary); }

/* ── Why Us / Features ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.75rem; }
.feature-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  transition: background var(--transition);
}
.feature-item:hover { background: rgba(255,255,255,.12); }
.feature-item__icon {
  font-size: 2.2rem;
  margin-bottom: .85rem;
  display: block;
}
.feature-item h4 { color: var(--white); margin-bottom: .5rem; }
.feature-item p { color: rgba(255,255,255,.78); font-size: .92rem; margin: 0; }

/* ── Process Steps ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; counter-reset: steps; }
.step {
  position: relative;
  padding: 1.75rem 1.5rem 1.75rem 4.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  counter-increment: steps;
}
.step::before {
  content: counter(steps);
  position: absolute; left: 1.25rem; top: 1.75rem;
  width: 2rem; height: 2rem;
  background: var(--accent); color: var(--primary-dk);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  font-family: 'Inter', sans-serif;
}
.step h4 { margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* ── Area Coverage ── */
.area-list {
  display: flex; flex-wrap: wrap; gap: .6rem;
  list-style: none; padding: 0;
}
.area-list li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .88rem; font-weight: 500;
  margin: 0;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=10') center/cover no-repeat;
  opacity: .08;
}
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner__phone {
  font-size: 2rem; font-weight: 700;
  color: var(--accent); letter-spacing: .02em;
  display: block; margin-bottom: 1.5rem;
  font-family: 'DM Serif Display', serif;
}
.cta-banner__phone:hover { color: var(--accent-lt); }

/* ── FAQ Accordion ── */
.faq-list { list-style: none; padding: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left;
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--primary);
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--primary-lt); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dk); font-weight: 700;
  font-size: .85rem; transition: transform var(--transition);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-muted); font-size: .97rem;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Cost Table / Cards ── */
.cost-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
}
.cost-card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.cost-card .cost-range {
  font-size: 1.5rem; font-weight: 700;
  color: var(--accent-dk);
  font-family: 'DM Serif Display', serif;
  margin-bottom: .5rem;
}
.cost-card p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3;
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(8,41,39,.85));
  color: var(--white); font-size: .85rem; font-weight: 500;
  padding: 1.5rem .9rem .75rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-item__caption { transform: translateY(0); }

/* ── Contact / Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }

.contact-info-card {
  background: var(--primary);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: .85rem;
  margin-bottom: 1.5rem;
}
.contact-detail__icon {
  font-size: 1.3rem;
  background: rgba(255,255,255,.1);
  width: 2.5rem; height: 2.5rem;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--accent); font-weight: 600; margin-bottom: .15rem;
}
.contact-detail__value { color: var(--white); font-size: .97rem; }
.contact-detail__value a { color: var(--white); }
.contact-detail__value a:hover { color: var(--accent); }

.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem; font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem; color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,61,58,.1);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Thank You Page ── */
.thankyou-wrap {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.25rem;
}
.thankyou-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 540px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--accent);
}
.thankyou-icon { font-size: 4rem; margin-bottom: 1rem; }
.thankyou-card h1 { margin-bottom: .75rem; }
.thankyou-card p { color: var(--text-muted); }

/* ── Footer ── */
.footer {
  background: var(--primary-dk);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: var(--white);
  margin-bottom: .6rem;
}
.footer__brand-name span { color: var(--accent); }
.footer__tagline { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.footer__phone { font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.footer__phone:hover { color: var(--accent-lt); }

.footer h4 {
  color: var(--white);
  font-size: .95rem; margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: .45rem; }
.footer ul a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer ul a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: var(--accent); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=10') center/cover no-repeat;
  opacity: .1;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: .65rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .84rem; color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── Info Box ── */
.info-box {
  background: var(--gray-100);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { color: var(--text); margin: 0; }

/* ── Two-col content ── */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-split--reverse .content-split__media { order: -1; }
.content-split__media { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); }
.content-split__media img { width: 100%; height: 100%; object-fit: cover; }
.content-split__text ul { color: var(--text-muted); }
.content-split__text li { margin-bottom: .6rem; }

/* ── Scroll-reveal placeholder ── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu-wrap {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--primary);
    padding: 1rem;
    flex-direction: column;
  }
  .nav__menu-wrap.open { display: flex; }
  .nav__menu { flex-direction: column; gap: .25rem; width: 100%; }
  .nav__menu a { display: block; }
  .nav__cta { margin: .5rem 0 0; }
  .nav__inner { position: relative; flex-wrap: wrap; }
}

/* ── Responsive Grids ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; gap: 2rem; }
  .content-split--reverse .content-split__media { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .section--lg { padding: 4.5rem 0; }
}

/* ── Mobile Hero ── */
@media (max-width: 768px) {
  .hero {
    min-height: 220px !important;
    height: 220px !important;
    max-height: 220px !important;
    overflow: hidden !important;
  }
  .hero__content { padding: 1.25rem; }
  .hero__badge { font-size: .7rem; padding: .25rem .7rem; margin-bottom: .75rem; }
  .hero__title { font-size: 1.5rem; margin-bottom: .65rem; }
  .hero__sub { font-size: .9rem; margin-bottom: 1rem; }
  .hero__actions .btn { padding: .6rem 1.25rem; font-size: .85rem; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .hero {
    min-height: 220px !important;
    height: 220px !important;
    max-height: 220px !important;
    overflow: hidden !important;
  }
  .topbar__items { gap: 1rem; }
  .trust-strip__inner { gap: 1rem; }
  .trust-item { font-size: .82rem; }
  .cta-banner__phone { font-size: 1.6rem; }
}
