@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --bg: #fbf6ee;
  --bg-soft: #f3e9d7;
  --paper: #fffdf8;
  --ink: #1f1913;
  --muted: #1a1a1a;
  --brand: #cf5d1f;
  --brand-deep: #8f3200;
  --accent: #0f6b66;
  --line: rgba(65, 40, 20, 0.14);
  --shadow-sm: 0 8px 24px rgba(89, 49, 20, 0.09);
  --shadow-lg: 0 28px 70px rgba(89, 49, 20, 0.15);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1400px 600px at -15% -10%, rgba(207, 93, 31, 0.2), transparent 60%),
    radial-gradient(1200px 520px at 110% 20%, rgba(15, 107, 102, 0.18), transparent 58%),
    linear-gradient(180deg, #fffdf9 0%, #faf2e4 42%, #f8eddc 100%);
  font-family: 'Outfit', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -90px;
  z-index: 200;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  top: 0.75rem;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(115, 73, 35, 0.14);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(50, 24, 10, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
}

.site-nav > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: rgba(207, 93, 31, 0.11);
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 210px;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  font-size: 0.93rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  color: var(--ink);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(15, 107, 102, 0.1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  width: 44px;
  height: 44px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 3px;
  background: var(--ink);
}

.cta-phone {
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  background: linear-gradient(120deg, var(--brand), #e67c35);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.cta-phone:hover,
.cta-phone:focus-visible {
  transform: translateY(-1px);
}

.phone-icon {
  width: 18px;
  height: 18px;
}

main {
  padding-bottom: 2.5rem;
}

.hero {
  position: relative;
  min-height: clamp(580px, 90vh, 780px);
}

.hero-carousel,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  overflow: hidden;
}

.carousel-slide {
  opacity: 0;
  transition: opacity 600ms ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.2) contrast(1.05);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.about-grid img {
  max-height: 520px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.gallery-carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  max-height: 460px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.gallery-slide h4 {
  margin: 0.75rem 0 0;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(15, 14, 12, 0.85) 0%, rgba(15, 14, 12, 0.7) 45%, rgba(15, 14, 12, 0.55) 100%),
    radial-gradient(900px 380px at 10% 90%, rgba(207, 93, 31, 0.4), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: clamp(7rem, 12vh, 9rem);
  padding-bottom: 2.5rem;
  max-width: 740px;
}

.eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.85rem;
}

.hero-content .eyebrow {
  color: #ffd5ac;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.14;
}

h1,
h2,
.page-hero h1,
.hero-content h1 {
  font-family: 'Sora', sans-serif;
}

.hero-content h1,
h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  margin-bottom: 0.55rem;
}

.hero-text,
.section-heading p,
.service-card p,
.seo-article p,
.page-hero p,
.trust-item span,
li,
p {
  color: inherit;
}

.hero-text {
  font-size: 1.06rem;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
}

.btn-primary {
  background: linear-gradient(120deg, #b3470d, #8f3200);
  color: #fff;
  box-shadow: 0 12px 24px rgba(207, 93, 31, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.btn-secondary-contrast {
  border-color: #1a1a1a;
  color: #1a1a1a;
  background: rgba(26, 26, 26, 0.03);
}

.btn-secondary-contrast:hover,
.btn-secondary-contrast:focus-visible {
  background: rgba(26, 26, 26, 0.1);
}

.btn-outline {
  border: 1px solid var(--brand);
  color: #1a1a1a;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(207, 93, 31, 0.08);
}

.google-review-btn {
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.2;
  text-align: center;
}

.google-review-stars {
  color: #ffd966;
  letter-spacing: 0.08em;
}

.testimonials-widget {
  max-width: 960px;
  margin: 0 auto 1.75rem;
}

.testimonials-cta {
  text-align: center;
}

.hero-badges,
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges a,
.hero-highlights a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.83rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.hero-badges a:hover,
.hero-badges a:focus-visible,
.hero-highlights a:hover,
.hero-highlights a:focus-visible {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 1.1rem 0 0.65rem;
  }

  .hero-badges a {
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0.4rem;
    font-size: 0.8rem;
  }

  .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 0 35px;
  }

  .hero-highlights a {
    justify-content: center;
    text-align: center;
  }
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 15, 15, 0.45);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.carousel-prev {
  left: 0.85rem;
}

.carousel-next {
  right: 0.85rem;
}

.carousel-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.dot {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%);
}

.dot.active::after {
  background: #fff;
}

.footer-social,
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.footer-social a,
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  margin: -0.4rem;
  color: inherit;
  transition: opacity 0.2s ease;
}

.footer-social a:hover,
.social-icons a:hover {
  opacity: 0.7;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.social-icons svg {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  background: rgba(31, 25, 19, 0.04);
  border-top: 1px solid var(--line);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem clamp(1.25rem, 3vw, 2.5rem);
}

.footer-section h4 {
  font-family: 'Sora', sans-serif;
  color: var(--brand-deep);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section a {
  color: var(--muted);
}

.footer-section a:hover,
.footer-section a:focus-visible {
  color: var(--brand-deep);
  text-decoration: underline;
}

.footer-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.75rem;
}

.footer-locations-grid li {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.trust-bar {
  margin-top: 1.75rem;
  position: relative;
  z-index: 3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  color: var(--brand-deep);
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Sora', sans-serif;
}

.section {
  padding: clamp(2.9rem, 6.5vw, 5rem) 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(102, 62, 31, 0.08);
  border-bottom: 1px solid rgba(102, 62, 31, 0.08);
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 760px;
  text-align: center;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
}

.section-heading p,
.page-hero p,
.service-card p,
.seo-article p,
.seo-list,
.about-features,
.service-card li {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.service-card,
.seo-card,
.seo-article,
.page-hero .container {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card,
.seo-card {
  padding: 1.15rem;
}

.service-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin-bottom: 0.8rem;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, rgba(207, 93, 31, 0.16), rgba(15, 107, 102, 0.2));
  color: var(--brand-deep);
}

.service-link {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.card-actions .service-link {
  margin-top: 0;
}

.service-link-outline {
  text-decoration: none;
  color: var(--brand-deep);
}

.service-link-outline:hover {
  text-decoration: underline;
}

.vehicle-size-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.vehicle-size-group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.vehicle-size-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--brand-deep);
}

.vehicle-size-toggle::-webkit-details-marker {
  display: none;
}

.vehicle-size-chevron {
  transition: transform 200ms ease;
  color: var(--brand);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.vehicle-size-group[open] .vehicle-size-chevron {
  transform: rotate(90deg);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 0 1.35rem 1.35rem;
}

.package-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.55);
}

.package-card h4 {
  margin-bottom: 0.4rem;
  color: var(--brand-deep);
}

.package-card p {
  color: var(--muted);
  margin: 0;
}

.tier-card {
  display: flex;
  flex-direction: column;
}

.consultation-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--brand);
  color: var(--brand-deep);
  background: rgba(207, 93, 31, 0.08);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0.5rem 0 0.75rem;
}

.tier-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.pricing-note {
  margin-top: 2.25rem;
  padding: 1.1rem 1.4rem;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  font-style: italic;
  text-align: center;
}

.pricing-note,
.pricing-note p {
  color: var(--muted);
  margin: 0;
}

.callout-block {
  margin-top: 2.25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink), #2b2016);
  box-shadow: var(--shadow-lg);
}

.callout-block h3 {
  color: #fff;
}

.callout-block p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.faq-grid,
.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-category {
  margin: 2.5rem 0 1.1rem;
}

.faq-category:first-of-type {
  margin-top: 0;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--brand-deep);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p,
.faq-item ul {
  padding: 0 1.35rem 1.35rem;
  margin: 0;
  color: var(--muted);
}

.faq-item ul {
  padding-left: 2.6rem;
  list-style: disc;
}

.policy-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.policy-block h3 {
  color: var(--brand-deep);
  margin: 1.75rem 0 0.5rem;
}

.policy-block h3:first-child {
  margin-top: 0;
}

.policy-block p,
.policy-block li {
  color: var(--muted);
}

.policy-block ul {
  margin: 0.4rem 0 1rem 1.2rem;
  padding: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.85rem 1.15rem 1.15rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(207, 93, 31, 0.28);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, var(--ink), #2b2016);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
}

.promise-copy h2 {
  color: #fff;
}

.promise-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.promise-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.promise-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
}

.promise-card h3 {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.promise-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.promise-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promise-quote {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 1.5rem;
}

.promise-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  margin: 0 0 0.6rem;
}

.promise-quote span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.promise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 860px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  padding: clamp(2.2rem, 5.5vw, 4rem) 0 1.2rem;
}

.page-hero .container {
  padding: clamp(1.5rem, 3.2vw, 2.25rem);
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.9)),
    radial-gradient(700px 220px at 100% -20%, rgba(15, 107, 102, 0.15), transparent 60%),
    radial-gradient(700px 220px at -10% 120%, rgba(207, 93, 31, 0.15), transparent 56%),
    url('media/2026-03-09.webp');
  background-size: auto, auto, auto, cover;
  background-position: center;
}

.seo-content {
  padding: 0 0 clamp(2.4rem, 6vw, 4rem);
}

.seo-article {
  padding: clamp(1.15rem, 2.8vw, 1.9rem);
}

.seo-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.seo-list,
.about-features,
.service-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 999;
}

.booking-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 9, 0.72);
  backdrop-filter: blur(6px);
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  max-height: min(94vh, 940px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #ece2d2;
}

.booking-modal__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  font-size: 1.35rem;
  background: #f7f2ea;
  color: #3a2c22;
  cursor: pointer;
}

.booking-modal iframe {
  width: 100%;
  border: 0;
  min-height: calc(86vh - 75px);
}

body.modal-open {
  overflow: hidden;
}

.reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

fieldd-lead-form {
  display: block;
  margin-top: 0.7rem;
  border-radius: 14px;
  overflow: hidden;
}

@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .cta-phone {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 252, 246, 0.98);
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    box-shadow: none;
    border-radius: 10px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-top: 6.7rem;
  }

  .carousel-nav {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid img,
  .gallery-slide img {
    max-height: 380px;
  }
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: stretch;
}

.coverage-map {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}

.coverage-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.coverage-links {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
}

.coverage-links h3 {
  color: var(--brand-deep);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.coverage-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  width: 100%;
}

.coverage-link {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper, #fff);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.25;
  color: var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.coverage-link:hover,
.coverage-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(120deg, var(--brand), #e67c35);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 860px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .coverage-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1160px, calc(100% - 1.2rem));
  }

  .logo {
    height: 58px;
  }

  .hero {
    min-height: 590px;
  }

  .about-grid img,
  .gallery-slide img {
    max-height: 300px;
  }

  .hero-highlights {
    gap: 0.4rem;
  }

  .hero-highlights a {
    font-size: 0.78rem;
    padding: 0.4rem 0.65rem;
  }

  .booking-modal {
    padding: 0.4rem;
  }

  .booking-modal__panel {
    border-radius: 12px;
  }

  .section {
    padding: 2.35rem 0;
  }
}

