:root {
  --orange: #f4901e;
  --plum: #332c39;
  --bg-soft: #faf9f6;
  --border: #e3e3e3;
  --border-light: #ddd;
  --gray: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  color: #333;
  padding-bottom: calc(66px + env(safe-area-inset-bottom));
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .85; }
h1, h2, h3 { font-family: 'Sora', sans-serif; }
img { max-width: 100%; display: block; }

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 800 15px 'Sora', sans-serif;
  flex: none;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: var(--plum);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font: 800 20px 'Sora', sans-serif; letter-spacing: .3px; }
.site-nav { display: flex; align-items: center; gap: 24px; font: 500 14px 'Inter', sans-serif; }

.mobile-call-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 24px calc(12px + env(safe-area-inset-bottom));
  background: var(--plum);
  box-shadow: 0 -4px 16px rgba(0,0,0,.2);
}
.mobile-call-urgency {
  font: 600 13px/1.4 'Inter', sans-serif;
  color: rgba(255,255,255,.85);
  text-align: left;
}
.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 8px;
  white-space: nowrap;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(244,144,30,.35);
}

/* Hero */
.hero {
  background: var(--orange);
  color: #fff;
  padding: 72px 48px 24px;
  position: relative;
  z-index: 2;
}
.hero-ring-wrap {
  position: absolute;
  inset: 0;
  overflow-x: hidden;
  overflow-y: visible;
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  right: -120px;
  top: -60px;
  width: 440px;
  height: 440px;
  border: 22px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.hero-inner { position: relative; }
.hero h1 { font-family: 'Sora', sans-serif; font-weight: 800; line-height: 1.05; font-size: clamp(2.5rem, 8vw, 6.5rem); margin-bottom: 16px; text-wrap: balance; }
.hero h1 .nowrap { white-space: nowrap; }
.hero-desc { font: 400 16px/1.6 'Inter', sans-serif; margin-bottom: 20px; color: #fff; }

.trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  padding: 8px 14px;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  transition: box-shadow .15s ease, transform .15s ease;
}
.trust-rating:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transform: translateY(-1px);
  opacity: 1;
}
.trust-rating-stars {
  display: inline-flex;
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 1px;
}
.trust-rating-stars .star {
  display: inline-block;
  opacity: 0;
  transform: scale(0) rotate(-90deg);
  animation: star-pop .45s cubic-bezier(.34,1.56,.64,1) forwards;
}
.trust-rating-stars .star:nth-child(1) { animation-delay: .05s; }
.trust-rating-stars .star:nth-child(2) { animation-delay: .15s; }
.trust-rating-stars .star:nth-child(3) { animation-delay: .25s; }
.trust-rating-stars .star:nth-child(4) { animation-delay: .35s; }
.trust-rating-stars .star:nth-child(5) { animation-delay: .45s; }
@keyframes star-pop {
  0% { opacity: 0; transform: scale(0) rotate(-90deg); }
  60% { opacity: 1; transform: scale(1.25) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-rating-stars .star { animation: none; opacity: 1; transform: none; }
}
.trust-rating-text {
  font: 600 14px/1.3 'Inter', sans-serif;
  color: #3c4043;
}
.trust-rating-text strong { font-weight: 800; }

.hero-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: -420px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; }
.btn {
  display: inline-block;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 15px;
}
.btn-dark { background: var(--plum); color: #fff; }
.btn-text {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 14px 4px;
}

/* Quote card */
.quote-card {
  background: #fff;
  color: var(--plum);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.quote-card h2 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.15; font-size: clamp(18px, 4vw, 28px); margin-bottom: 18px; overflow-wrap: break-word; }
.quote-card form { display: flex; flex-direction: column; gap: 10px; }
.quote-card select,
.quote-card input,
.quote-card textarea {
  padding: 11px 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font: 14px 'Inter', sans-serif;
  color: #333;
  width: 100%;
}
.quote-card select { color: #555; }
.quote-card textarea { resize: none; }
.quote-card button {
  background: var(--plum);
  color: #fff;
  text-align: center;
  padding: 13px;
  border-radius: 6px;
  font: 700 14px 'Inter', sans-serif;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}
.quote-card button:disabled { opacity: .6; cursor: not-allowed; }
.form-status { font: 13px 'Inter', sans-serif; text-align: center; color: var(--plum); min-height: 18px; }
.form-status.error { color: #c0392b; }

/* Services */
.services { padding: 80px 48px; background: var(--bg-soft); }
.services-inner { max-width: calc(50% - 24px); }
.services h2 { font: 800 40px 'Sora', sans-serif; color: var(--plum); margin-bottom: 10px; }
.section-desc { font: 400 15px/1.6 'Inter', sans-serif; color: var(--gray); margin-bottom: 20px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 20px;
  font: 13px 'Inter', sans-serif;
  color: var(--plum);
}
.call-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  background: #fff;
  border: 1px solid #eee;
  color: var(--plum);
  padding: 16px 26px;
  border-radius: 8px;
}
.call-card-label {
  display: block;
  font: 700 12px 'Inter', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
}
.call-card-number { display: block; font: 700 20px 'Sora', sans-serif; color: var(--plum); }

/* Expertise */
.expertise { padding: 64px 48px; background: #fff; }
.expertise h2 { font: 800 40px 'Sora', sans-serif; color: var(--plum); margin-bottom: 28px; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.expertise-card { background: var(--bg-soft); border-radius: 10px; padding: 28px 22px; }
.expertise-card h3 { font: 700 16px 'Sora', sans-serif; margin-bottom: 8px; color: var(--plum); }
.expertise-card p { font: 14px/1.6 'Inter', sans-serif; color: var(--gray); }

/* Reviews */
.reviews { padding: 80px 48px; background: var(--bg-soft); }
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 16px;
}
.reviews-head h2 { font: 800 40px 'Sora', sans-serif; color: var(--plum); margin-bottom: 8px; }
.reviews-score { display: block; font: 600 13px 'Inter', sans-serif; color: var(--orange); }
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  padding: 13px 26px;
  border-radius: 6px;
  font: 600 15px 'Inter', sans-serif;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.btn-google:hover { background: #f8f9fa; opacity: 1; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}
.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  font: 13px/1.6 'Inter', sans-serif;
  color: #333;
}
.review-name { font-weight: 600; color: var(--plum); margin-bottom: 6px; }
.review-stars { color: var(--orange); font-size: 13px; margin-bottom: 8px; }

/* Contact */
.contact { padding: 80px 48px; background: #fff; }
.contact h2 { font: 800 40px 'Sora', sans-serif; color: var(--plum); margin-bottom: 20px; }
.contact iframe { border: 1px solid var(--border); border-radius: 8px; height: 420px; width: 100%; }

/* Callout */
.callout { background: var(--bg-soft); color: var(--plum); padding: 80px 48px; text-align: center; }
.callout h2 { font: 800 40px 'Sora', sans-serif; margin-bottom: 10px; }
.callout p { font: 400 16px 'Inter', sans-serif; margin-bottom: 26px; color: var(--gray); }
.callout-ctas { display: flex; gap: 14px; justify-content: center; }
.btn-pill-orange { background: var(--orange); color: #fff; font-weight: 700; padding: 14px 28px; border-radius: 6px; font-size: 15px; }
.btn-pill-outline { border: 1px solid var(--border-light); color: var(--plum); font-weight: 700; padding: 14px 28px; border-radius: 6px; font-size: 15px; }

/* Footer */
.site-footer { background: var(--plum); color: #fff; padding: 56px 48px 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-desc { font: 14px/1.6 'Inter', sans-serif; color: rgba(255,255,255,.6); max-width: 260px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer-heading {
  font: 700 13px 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font: 14px 'Inter', sans-serif; color: rgba(255,255,255,.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font: 12px 'Inter', sans-serif;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .site-header { padding: 14px 20px; }
  .site-nav { display: none; }
  .hero { padding: 48px 20px 24px; }
  .hero-row { grid-template-columns: 1fr; margin-bottom: 0; }
  .hero-ctas { display: none; }
  .services, .expertise, .reviews, .contact, .callout { padding: 48px 20px; }
  .services-inner { max-width: 100%; }
  .call-card { display: flex; justify-content: center; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px 4px;
  }
  .review-card { flex: 0 0 85%; scroll-snap-align: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 40px 20px 24px calc(20px + env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .mobile-call-bar { flex-direction: column; gap: 8px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); }
  .mobile-call-urgency { font-size: 12px; text-align: center; }
  .mobile-call-btn { width: 100%; padding: 13px; font-size: 16px; }
}

@media (max-width: 560px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
}
