/* =========================================================
   THEME V3 — Warm & Modern
   A dedicated layer for the redesigned public pages
   (home, services, request, contact). Loaded after
   styles.css so it can freely override/extend it without
   touching the admin panel.
   ========================================================= */

:root {
  --warm-cream: #f7f9ff;
  --warm-peach: #fff0e8;
  --warm-peach-deep: #ffd8c3;
  --warm-orange: #f26322;
  --warm-orange-soft: #ff9455;
  --warm-blue: #0616b8;
  --warm-blue-deep: #07123a;
  --warm-ink: #07123a;
  --warm-muted: #58627f;
  --warm-line: #dfe5f2;
  --warm-radius-sm: 14px;
  --warm-radius-md: 22px;
  --warm-radius-lg: 32px;
  --warm-shadow: 0 20px 50px rgba(7, 18, 58, 0.12);
  --warm-shadow-lift: 0 30px 70px rgba(7, 18, 58, 0.2);
}

.warm-site {
  background: var(--warm-cream);
  color: var(--warm-ink);
}

.warm-site .topbar.reputation-topbar {
  background: rgba(255, 249, 242, 0.9);
  border-bottom: 1px solid var(--warm-line);
}

.warm-site .reputation-nav a {
  color: var(--warm-blue-deep);
  position: relative;
  text-decoration: none;
}

.warm-site .reputation-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--warm-orange);
  transition: right 0.2s ease;
  border-radius: 2px;
}

.warm-site .reputation-nav a:hover::after,
.warm-site .reputation-nav a.active::after {
  right: 0;
}

.warm-site .reputation-nav a.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--warm-orange);
  color: #fff !important;
}

.warm-site .reputation-nav a.nav-cta::after {
  display: none;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-stagger.in-view > * {
  animation: revealFade 0.6s ease forwards;
}

.reveal-stagger.in-view > *:nth-child(1) { animation-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { animation-delay: 0.1s; }
.reveal-stagger.in-view > *:nth-child(3) { animation-delay: 0.18s; }
.reveal-stagger.in-view > *:nth-child(4) { animation-delay: 0.26s; }
.reveal-stagger.in-view > *:nth-child(5) { animation-delay: 0.34s; }
.reveal-stagger.in-view > *:nth-child(6) { animation-delay: 0.42s; }
.reveal-stagger.in-view > *:nth-child(7) { animation-delay: 0.5s; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
}

@keyframes revealFade {
  to { opacity: 1; transform: none; }
}

/* ---------- Split hero (home) ---------- */

.split-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 40px;
  padding: 64px 6vw 70px;
  overflow: hidden;
}

.split-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--warm-peach) 0%, rgba(255, 231, 209, 0) 70%);
  z-index: 0;
}

.split-hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(6, 22, 184, 0.08) 0%, rgba(6, 22, 184, 0) 70%);
  z-index: 0;
}

.split-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.split-hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--warm-peach);
  color: var(--warm-orange);
  margin-bottom: 18px;
}

.split-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--warm-blue-deep);
}

.split-hero-copy h1 span {
  color: var(--warm-orange);
}

.split-hero-copy p {
  margin: 0 0 28px;
  font-size: 1.1rem;
  color: var(--warm-muted);
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats article strong {
  display: block;
  font-size: 1.7rem;
  color: var(--warm-blue-deep);
}

.hero-stats article span {
  color: var(--warm-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- Hero marquee (shuttling service images) ---------- */

.hero-marquee-wrap {
  position: relative;
  z-index: 1;
}

.hero-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 560px;
  overflow: hidden;
  border-radius: var(--warm-radius-lg);
  mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
}

.marquee-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: marqueeUp 26s linear infinite;
}

.marquee-col.down {
  animation-name: marqueeDown;
  animation-duration: 30s;
}

.marquee-col figure {
  position: relative;
  margin: 0;
  border-radius: var(--warm-radius-md);
  overflow: hidden;
  box-shadow: var(--warm-shadow);
  flex-shrink: 0;
}

.marquee-col img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.marquee-col figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(7, 18, 58, 0.82), transparent);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

@keyframes marqueeUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes marqueeDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-col {
    animation: none;
  }
}

/* ---------- Page hero (services / request / contact) ---------- */

.page-hero {
  position: relative;
  padding: 78px 6vw 60px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, var(--warm-peach) 0%, rgba(255, 231, 209, 0) 55%),
    radial-gradient(circle at 85% 80%, rgba(6, 22, 184, 0.08) 0%, rgba(6, 22, 184, 0) 55%);
  overflow: hidden;
}

.page-hero .eyebrow {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--warm-peach);
  color: var(--warm-orange);
  margin-bottom: 16px;
}

.page-hero h1 {
  margin: 0 auto 14px;
  max-width: 780px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--warm-blue-deep);
  line-height: 1.1;
}

.page-hero p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--warm-muted);
  font-size: 1.08rem;
}

/* ---------- Warm section wrapper ---------- */

.warm-section {
  padding: 70px 6vw;
}

.warm-section.alt {
  background: linear-gradient(180deg, #fff, var(--warm-peach) 180%);
}

.warm-heading {
  max-width: 640px;
  margin: 0 auto 46px;
  text-align: center;
}

.warm-heading .eyebrow {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--warm-peach);
  color: var(--warm-orange);
  margin-bottom: 14px;
}

.warm-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--warm-blue-deep);
}

.warm-heading p {
  margin: 0;
  color: var(--warm-muted);
}

/* ---------- Services list (services.html) ---------- */

.service-row-grid {
  display: grid;
  gap: 26px;
}

.service-row-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: var(--warm-radius-lg);
  overflow: hidden;
  box-shadow: var(--warm-shadow);
  border: 1px solid var(--warm-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.service-row-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--warm-shadow-lift);
}

.service-row-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.service-row-card:nth-child(even) .service-row-media {
  order: 2;
}

.service-row-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-row-card:hover .service-row-media img {
  transform: scale(1.08);
}

.service-row-media .service-index {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--warm-orange);
  font-weight: 900;
}

.service-row-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.service-row-body h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--warm-blue-deep);
}

.service-row-body p {
  margin: 0;
  color: var(--warm-muted);
  line-height: 1.65;
}

.service-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.service-row-tags span {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--warm-peach);
  color: var(--warm-orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-row-link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--warm-blue);
}

.service-row-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.service-row-card:hover .service-row-link svg {
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .service-row-card,
  .service-row-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-row-card:nth-child(even) .service-row-media {
    order: 0;
  }

  .service-row-media {
    min-height: 220px;
  }

  .service-row-body {
    padding: 26px 24px;
  }
}

/* ---------- Request page ---------- */

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}

.request-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}

.request-side-card {
  padding: 26px;
  border-radius: var(--warm-radius-md);
  background: #fff;
  border: 1px solid var(--warm-line);
  box-shadow: var(--warm-shadow);
}

.request-side-card h3 {
  margin: 0 0 8px;
  color: var(--warm-blue-deep);
}

.request-side-card p {
  margin: 0;
  color: var(--warm-muted);
}

.request-side-card.dark {
  background: linear-gradient(135deg, var(--warm-blue-deep), var(--warm-blue));
  color: #fff;
  border: none;
}

.request-side-card.dark h3 {
  color: #fff;
}

.request-side-card.dark p,
.request-side-card.dark a {
  color: rgba(255, 255, 255, 0.85);
}

.request-steps {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.request-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  list-style: none;
}

.request-steps span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--warm-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.request-form-card {
  padding: 34px;
  background: #fff;
  border-radius: var(--warm-radius-lg);
  border: 1px solid var(--warm-line);
  box-shadow: var(--warm-shadow);
}

.request-form-card .request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.request-form-card label {
  color: var(--warm-blue-deep);
}

.request-form-card input,
.request-form-card select,
.request-form-card textarea {
  border-radius: var(--warm-radius-sm);
  border: 1px solid var(--warm-line);
  background: var(--warm-cream);
}

.request-form-card input:focus,
.request-form-card select:focus,
.request-form-card textarea:focus {
  outline: 2px solid var(--warm-orange-soft);
  outline-offset: 1px;
}

.request-form-card .request-form label.wide,
.request-form-card .request-form button,
.request-form-card .request-form .form-message {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-side {
    position: static;
  }

  .request-form-card .request-form {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.contact-card-list {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--warm-radius-md);
  background: #fff;
  border: 1px solid var(--warm-line);
  box-shadow: var(--warm-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--warm-shadow-lift);
}

.contact-card-item .contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--warm-peach);
  color: var(--warm-orange);
}

.contact-card-item .contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-card-item small {
  display: block;
  color: var(--warm-muted);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-card-item strong {
  display: block;
  color: var(--warm-blue-deep);
  font-size: 1rem;
}

.social-grid {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-grid a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--warm-blue-deep);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-grid a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.social-grid a:hover {
  transform: translateY(-3px);
  background: var(--warm-orange);
}

.map-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--warm-radius-lg);
  overflow: hidden;
  box-shadow: var(--warm-shadow);
  border: 1px solid var(--warm-line);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 320px;
  }

  .map-card iframe {
    min-height: 320px;
  }
}

/* ---------- Warm footer ---------- */

.warm-footer {
  position: relative;
  padding: 56px 6vw 30px;
  background: linear-gradient(160deg, var(--warm-blue-deep), #0a1a4d);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 40px 40px 0 0;
  margin-top: 10px;
}

.warm-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.warm-footer-brand img {
  width: 160px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 14px;
}

.warm-footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.7);
}

.warm-footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.warm-footer-links {
  display: grid;
  gap: 10px;
}

.warm-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.warm-footer-links a:hover {
  color: var(--warm-orange-soft);
}

.warm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 760px) {
  .warm-footer-grid {
    grid-template-columns: 1fr;
  }

  .split-hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero-marquee {
    height: 340px;
  }

  .hero-stats {
    gap: 20px;
  }
}

/* ---------- WhatsApp float refresh ---------- */

.warm-site .whatsapp-float {
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- Service detail page (service.html) — warm restyle ---------- */

.warm-site .service-detail-hero {
  background:
    radial-gradient(circle at 12% 20%, var(--warm-peach) 0%, rgba(255, 231, 209, 0) 55%),
    radial-gradient(circle at 90% 80%, rgba(6, 22, 184, 0.08) 0%, rgba(6, 22, 184, 0) 55%),
    var(--warm-cream);
  padding: 70px 6vw 66px;
}

.warm-site .service-detail-hero h1 {
  color: var(--warm-blue-deep);
}

.warm-site .service-detail-hero p:not(.eyebrow) {
  color: var(--warm-muted);
}

.warm-site .service-detail-hero .eyebrow {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--warm-peach);
  color: var(--warm-orange);
  margin-bottom: 10px;
}

.warm-site .service-detail-hero img {
  border-radius: var(--warm-radius-lg);
  box-shadow: var(--warm-shadow-lift);
}

.warm-site .service-detail-body {
  background: linear-gradient(180deg, #fff, var(--warm-peach) 220%);
  padding: 70px 6vw;
}

.warm-site .service-detail-body .section-heading .eyebrow {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--warm-peach);
  color: var(--warm-orange);
  margin-bottom: 10px;
}

.warm-site .service-detail-body .section-heading h2 {
  color: var(--warm-blue-deep);
}

.warm-site .subservice-detail-card {
  border-radius: var(--warm-radius-md);
  border: 1px solid var(--warm-line);
  box-shadow: var(--warm-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warm-site .subservice-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--warm-shadow-lift);
}

.warm-site .subservice-detail-card img {
  transition: transform 0.5s ease;
}

.warm-site .subservice-detail-card:hover img {
  transform: scale(1.07);
}

.warm-site .subservice-detail-card h3 {
  color: var(--warm-blue-deep);
}

.warm-site .subservice-detail-card p {
  color: var(--warm-muted);
}

@media (max-width: 760px) {
  .warm-site .service-detail-hero {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ULTRA PASS — sticky glass nav, gradient text, floating
   trust card, richer motion, deeper premium feel.
   ========================================================= */

.warm-site .topbar.reputation-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: rgba(255, 249, 242, 0.72);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.warm-site .reputation-nav a.nav-cta {
  box-shadow: 0 10px 24px rgba(242, 99, 34, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.warm-site .reputation-nav a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(242, 99, 34, 0.42);
}

/* ---------- Gradient text ---------- */

.split-hero-copy h1 span,
.page-hero h1 .accent {
  background: linear-gradient(120deg, var(--warm-orange) 0%, #ffb44d 55%, var(--warm-orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ---------- Floating blobs, stronger presence ---------- */

.split-hero::before {
  width: 560px;
  height: 560px;
  animation: floatBlob 9s ease-in-out infinite;
}

.split-hero::after {
  width: 440px;
  height: 440px;
  animation: floatBlob 11s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-16px, 20px) scale(1.06); }
}

/* ---------- Floating trust card over the marquee ---------- */

.hero-floating-card {
  position: absolute;
  left: -18px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--warm-radius-md);
  box-shadow: var(--warm-shadow-lift);
  animation: floatCard 5s ease-in-out infinite;
  max-width: 250px;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-floating-card .badge-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-orange), #ffb44d);
  color: #fff;
}

.hero-floating-card .badge-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.hero-floating-card strong {
  display: block;
  color: var(--warm-blue-deep);
  font-size: 0.95rem;
}

.hero-floating-card span {
  display: block;
  color: var(--warm-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-floating-card {
    display: none;
  }
}

/* ---------- Hero stat icons ---------- */

.hero-stats article {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stats .stat-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--warm-peach);
  color: var(--warm-orange);
}

.hero-stats .stat-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- Bigger, bolder CTA buttons ---------- */

.warm-site .button.primary {
  background: linear-gradient(135deg, var(--warm-orange), #ff8a3d);
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  box-shadow: 0 16px 34px rgba(242, 99, 34, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.warm-site .button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(242, 99, 34, 0.42);
}

.warm-site .button.secondary {
  border: 1.5px solid var(--warm-line);
  background: #fff;
  padding: 14px 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.warm-site .button.secondary:hover {
  transform: translateY(-3px);
  border-color: var(--warm-orange);
  color: var(--warm-orange);
}

/* ---------- Choice grid icons get a lift ---------- */

.warm-site .choice-grid article,
.warm-site .principle-grid article {
  border-radius: var(--warm-radius-md);
  border: 1px solid var(--warm-line);
  background: #fff;
  box-shadow: var(--warm-shadow);
}

.warm-site .choice-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 28px;
}

.warm-site .choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--warm-peach), var(--warm-peach-deep));
  color: var(--warm-orange);
  font-weight: 900;
  margin-bottom: 12px;
}

.warm-site .choice-grid h3 {
  display: block;
  margin: 6px 0 0;
  color: var(--warm-blue-deep);
  font-size: 1.18rem;
  line-height: 1.25;
}

.warm-site .choice-grid p {
  display: block;
  margin: 0;
  color: var(--warm-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ---------- Section divider wave ---------- */

.warm-section.alt {
  position: relative;
}

/* ---------- Image service card polish ---------- */

.warm-site .image-service-card {
  border-radius: var(--warm-radius-md);
  border: 1px solid var(--warm-line);
  box-shadow: var(--warm-shadow);
}

.warm-site .image-service-card:hover {
  box-shadow: var(--warm-shadow-lift);
}

.warm-site .image-service-card span {
  background: var(--warm-peach) !important;
  color: var(--warm-orange) !important;
}

.warm-site img[src$=".svg"],
.warm-site img[src$=".jpg"],
.warm-site img[src$=".png"] {
  background: #f7f9ff;
}

.warm-site .image-service-card img,
.warm-site .service-row-media img,
.warm-site .subservice-detail-card img,
.warm-site .hero-marquee figure img {
  object-position: center;
}

.warm-site .image-service-card img[src$=".svg"],
.warm-site .service-row-media img[src$=".svg"],
.warm-site .subservice-detail-card img[src$=".svg"],
.warm-site .hero-marquee figure img[src$=".svg"] {
  object-fit: contain;
  padding: 10px;
}

/* ---------- Top utility bar (phone / location / email) ---------- */

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 8px 6vw;
  background: var(--warm-blue-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 700;
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.utility-bar a:hover {
  color: var(--warm-orange-soft);
}

.utility-bar svg {
  width: 14px;
  height: 14px;
  fill: var(--warm-orange-soft);
  flex-shrink: 0;
}

@media (max-width: 620px) {
  .utility-bar {
    gap: 14px;
    font-size: 0.76rem;
  }

  .utility-bar .utility-location {
    display: none;
  }
}

@media (max-width: 760px) {
  .warm-site .topbar.reputation-topbar {
    min-height: 66px;
    padding: 10px 5vw;
  }

  .warm-site .reputation-brand img {
    width: 102px;
  }

  .split-hero {
    padding: 34px 5vw 44px;
    gap: 26px;
  }

  .split-hero-copy h1,
  .page-hero h1,
  .warm-heading h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
    line-height: 1.04;
  }

  .split-hero-copy p,
  .page-hero p,
  .warm-heading p {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-marquee-wrap {
    min-height: 430px;
  }

  .hero-marquee {
    height: 430px;
  }

  .hero-marquee figure {
    min-height: 190px;
  }

  .warm-section,
  .page-hero,
  .service-detail-hero,
  .service-detail-body {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .service-row-card,
  .image-service-card,
  .public-gallery-card {
    border-radius: var(--warm-radius-md);
  }

  .service-row-media,
  .image-service-card img {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .utility-bar {
    justify-content: flex-start;
    padding: 8px 5vw;
  }

  .split-hero-copy h1,
  .page-hero h1,
  .warm-heading h2 {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .choice-grid,
  .image-service-grid,
  .service-row-grid,
  .subservice-detail-grid {
    grid-template-columns: 1fr;
  }

  .warm-footer-grid {
    gap: 22px;
  }
}
