/* ============================================================
   SLC Premier Cleaning Co.
   Brand: navy #282c80, white, warm gold accent
   Font: Plus Jakarta Sans
   ============================================================ */

:root {
  --navy: #282c80;
  --navy-700: #22276e;
  --navy-900: #171a4a;
  --ink: #14152b;
  --body: #40435c;
  --muted: #6d7089;
  --paper: #ffffff;
  --mist: #f5f6fb;
  --mist-2: #eef0f8;
  --line: #e4e6f0;
  --gold: #c8a24a;
  --gold-soft: #f3ead4;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(20, 21, 43, .06), 0 4px 16px rgba(20, 21, 43, .05);
  --shadow-md: 0 12px 40px rgba(23, 26, 74, .12);
  --wrap: 1160px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--body);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 .8rem;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-weight: 700; font-size: .98rem;
  padding: .92rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(40, 44, 128, .28); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(20, 21, 43, .05); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-mark { border-radius: 9px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.05rem; color: var(--ink); font-weight: 800; letter-spacing: -0.01em; }
.brand-text em { font-style: normal; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: .96rem; font-weight: 600; color: var(--body); position: relative; transition: color .2s; }
.nav a:not(.nav-cta):hover { color: var(--navy); }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--navy); transition: width .25s var(--ease);
}
.nav a:not(.nav-cta):hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--navy); }
.nav a.nav-cta { background: var(--navy); color: #fff; padding: .6rem 1.15rem; border-radius: 999px; box-shadow: 0 8px 18px rgba(40, 44, 128, .22); }
.nav a.nav-cta::after { display: none; }
.nav a.nav-cta:hover { background: var(--navy-700); color: #fff; }

/* Services dropdown */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item::before { content: ""; position: absolute; top: 100%; left: -8px; right: -8px; height: 18px; }
.nav-link {
  display: inline-flex; align-items: center; gap: .32rem;
  font-size: .96rem; font-weight: 600; color: var(--body);
  background: none; border: 0; padding: 0; font-family: inherit; cursor: pointer;
  transition: color .2s;
}
.nav-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: .5rem; min-width: 250px;
  display: grid; gap: 2px; z-index: 120;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.dropdown a { padding: .62rem .8rem; border-radius: 9px; font-size: .92rem; font-weight: 600; color: var(--body); white-space: nowrap; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--mist); color: var(--navy); }
.dropdown a.dd-all { color: var(--navy); border-bottom: 1px solid var(--line); border-radius: 9px 9px 0 0; margin-bottom: 2px; }

@media (min-width: 821px) {
  .nav-item:hover .nav-link, .nav-item:focus-within .nav-link, .nav-item.open .nav-link { color: var(--navy); }
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  .nav-item:hover .nav-link svg, .nav-item:focus-within .nav-link svg, .nav-item.open .nav-link svg { transform: rotate(180deg); }
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 55% at 88% 6%, rgba(40, 44, 128, .10), transparent 62%),
    radial-gradient(45% 45% at 6% 96%, rgba(200, 162, 74, .12), transparent 60%),
    linear-gradient(180deg, #fbfbfe 0%, #ffffff 100%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy, .hero-media { min-width: 0; }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--navy); z-index: 0; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .06em; height: .18em;
  background: var(--gold); opacity: .45; border-radius: 4px; z-index: -1;
}
.hero-copy .lead { font-size: 1.14rem; color: var(--body); max-width: 46ch; margin-bottom: 1.9rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }

.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 600; color: var(--ink); }
.hero-trust svg { width: 22px; height: 22px; color: var(--navy); flex: none; }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(23, 26, 74, .06);
}
.hero-media-frame img { display: block; width: 100%; height: 100%; aspect-ratio: 5/4; object-fit: cover; }
.hero-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: .7rem .95rem; box-shadow: var(--shadow-md); max-width: 270px;
}
.hero-badge-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .06em; flex: none; }
.hero-badge div { display: flex; flex-direction: column; line-height: 1.25; }
.hero-badge strong { color: var(--ink); font-size: .9rem; font-weight: 700; }
.hero-badge div span { font-size: .78rem; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1rem; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy); color: #fff; }
.trustbar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem 1.4rem; padding: 1rem 22px; text-align: center; }
.trustbar span:not(.dot) { font-size: .9rem; font-weight: 600; letter-spacing: .01em; }
.trustbar .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, .5); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--mist); }
.section-head { max-width: 640px; margin-bottom: 2.8rem; }
.section-head h2 { margin-bottom: .8rem; }
.section-sub { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card-link {
  margin-top: auto; padding-top: 1.1rem;
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 700; font-size: .9rem; color: var(--navy);
}
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4d7ea; }
.card-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--mist-2); color: var(--navy); margin-bottom: 1rem;
}
.card-ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why-media, .why-copy { min-width: 0; }
.why-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.why-copy h2 { margin-bottom: 1rem; }
.checks { list-style: none; margin: 1.4rem 0 2rem; padding: 0; display: grid; gap: .75rem; }
.checks li { position: relative; padding-left: 2rem; font-weight: 600; color: var(--ink); font-size: 1rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m5 12 4.5 4.5L19 7'/%3E%3C/svg%3E") center / 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m5 12 4.5 4.5L19 7'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ---------- Results / before after ---------- */
.results-feature { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 1.2rem; }
.results-feature img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.results-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.8rem 1.6rem;
  background: linear-gradient(180deg, transparent, rgba(23, 26, 74, .88));
  color: #fff;
}
.results-caption .tag {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold); color: #2a2410; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .6rem;
}
.results-caption p { margin: 0; max-width: 46ch; font-size: 1rem; color: rgba(255,255,255,.92); }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery img { aspect-ratio: 1/1; object-fit: cover; width: 100%; transition: transform .4s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,255,255,.94); color: var(--ink);
  font-size: .8rem; font-weight: 700; padding: .35rem .7rem; border-radius: 999px;
}

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.plan h3 { font-size: 1.4rem; margin-bottom: .2rem; }
.plan-tag { color: var(--navy); font-weight: 700; font-size: .95rem; margin-bottom: 1.2rem; }
.plan ul { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .6rem; flex: 1; }
.plan li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--body); }
.plan li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.plan-featured { background: var(--navy); border-color: var(--navy); color: #fff; position: relative; box-shadow: var(--shadow-md); }
.plan-featured h3, .plan-featured .plan-tag { color: #fff; }
.plan-featured .plan-tag { color: #c7c9ee; }
.plan-featured li { color: rgba(255,255,255,.9); }
.plan-featured li::before { background: var(--gold); }
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #2a2410; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: 999px; white-space: nowrap;
}
.plan-featured .btn-primary { background: #fff; color: var(--navy); box-shadow: none; }
.plan-featured .btn-primary:hover { background: var(--gold-soft); }
.plans-note { text-align: center; color: var(--muted); margin-top: 1.6rem; font-size: .98rem; }

/* ---------- Reviews ---------- */
.reviews { columns: 3; column-gap: 1.2rem; }
.review {
  break-inside: avoid; margin: 0 0 1.2rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.5rem 1.4rem; box-shadow: var(--shadow-sm);
}
.review .stars { font-size: 1.05rem; display: block; margin-bottom: .7rem; }
.review p { font-size: .98rem; color: var(--body); margin-bottom: 1rem; }
.review cite { font-style: normal; font-weight: 700; color: var(--ink); }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.areas-copy h2 { margin-bottom: 1rem; }
.areas-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; }
.areas-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: .7rem .9rem; font-weight: 600; font-size: .92rem; color: var(--ink);
  display: flex; align-items: center; gap: .5rem;
}
.areas-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex: none; }

/* ---------- Booking embed ---------- */
.booking-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.booking-frame {
  display: block;
  width: 100%;
  height: 100vh;   /* fixed to the viewport, no iframe-resizer */
  height: 100dvh;  /* dynamic viewport height for mobile browser toolbars */
  border: 0;
}

/* ---------- Areas extra ---------- */
.areas-zips { font-size: .92rem; color: var(--muted); margin-top: 1rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem;
  font-weight: 700; color: var(--ink); font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--navy); font-weight: 400; line-height: 1;
  transition: transform .25s var(--ease); flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--navy); }
.faq-a { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq-a p { margin: 0; font-size: .98rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, #ffffff, #f5f6fb); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-copy, .quote-form { min-width: 0; }
.contact-copy h2 { margin-bottom: 1rem; }
.contact-info { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact-info li { display: flex; align-items: center; gap: .8rem; font-weight: 600; color: var(--ink); }
.contact-info svg { width: 24px; height: 24px; color: var(--navy); flex: none; }
.contact-info a:hover { color: var(--navy); }

.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 11px;
  background: #fcfcfe; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(40, 44, 128, .1);
}
.form-status { margin: .9rem 0 0; font-size: .92rem; font-weight: 600; color: var(--navy); text-align: center; min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #c7c9e4; padding: 3.2rem 0 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text em { color: #9ea1cf; }
.footer-slogan { margin: 1rem 0 .4rem; color: #d7d9f0; font-weight: 600; }
.footer-badges { font-size: .88rem; color: #9ea1cf; margin: 0; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .02em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a, .footer-col li { font-size: .93rem; color: #b6b9dd; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.6rem; padding-top: 1.4rem;
  font-size: .85rem; color: #8f92c2;
}
.footer-bottom p { margin: 0; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-700); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Service pages ---------- */
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1.4rem; display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--ink); font-weight: 700; }
.breadcrumb .sep { opacity: .5; }

.svc-hero { position: relative; padding: clamp(1.4rem, 4vw, 2.4rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.svc-hero .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(55% 55% at 90% 0%, rgba(40,44,128,.10), transparent 62%),
    radial-gradient(45% 45% at 4% 100%, rgba(200,162,74,.12), transparent 60%),
    linear-gradient(180deg, #fbfbfe 0%, #ffffff 100%); }
.svc-hero .wrap { position: relative; z-index: 1; }
.svc-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.svc-hero-copy { min-width: 0; }
.svc-hero-copy h1 { margin-bottom: 1rem; }
.svc-hero-copy .lead { font-size: 1.12rem; color: var(--body); max-width: 48ch; margin-bottom: 1.7rem; }
.svc-hero-media { min-width: 0; }

.svc-detail-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.svc-detail-copy { min-width: 0; }
.svc-detail-copy h2 { margin-bottom: 1rem; }
.svc-detail-media { min-width: 0; }
.svc-detail-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }

.svc-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.svc-gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.svc-gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .4s var(--ease); }
.svc-gallery figure:hover img { transform: scale(1.05); }

.other-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.other-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.25rem; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  font-weight: 700; font-size: .98rem; color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), color .2s;
}
.other-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d4d7ea; color: var(--navy); }
.other-card svg { width: 18px; height: 18px; flex: none; color: var(--navy); }

.cta-band { background: var(--navy); color: #fff; }
.cta-band .wrap { padding-top: clamp(2.6rem, 5vw, 3.6rem); padding-bottom: clamp(2.6rem, 5vw, 3.6rem); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .7rem; }
.cta-band p { color: rgba(255, 255, 255, .85); max-width: 52ch; margin: 0 auto 1.6rem; }
.cta-band .btn-primary { background: #fff; color: var(--navy); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--gold-soft); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews { columns: 2; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .other-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 72px; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 22px 1.4rem; box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .35s var(--ease); z-index: 99;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .95rem .2rem; border-bottom: 1px solid var(--mist-2); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav a.nav-cta { margin-top: .8rem; text-align: center; justify-content: center; border-bottom: 0; box-shadow: none; }
  .nav-toggle { display: flex; }

  /* Mobile services accordion */
  .nav-item { display: block; }
  .nav-link { width: 100%; justify-content: space-between; padding: .95rem .2rem; border-bottom: 1px solid var(--mist-2); font-size: 1.05rem; }
  .nav-link svg { width: 18px; height: 18px; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-radius: 0; padding: .1rem 0 .5rem .7rem;
    min-width: 0; display: none;
  }
  .nav-item.open .dropdown { display: grid; }
  .nav-item.open .nav-link svg { transform: rotate(180deg); }
  .dropdown a { border-bottom: 0; font-size: 1rem; padding: .6rem .3rem; color: var(--muted); }
  .dropdown a.dd-all { border-bottom: 0; color: var(--navy); }

  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy .lead { max-width: none; }
  .hero-media { order: -1; }
  .why-grid, .areas-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .why-media { order: -1; }
  .plans { grid-template-columns: minmax(0, 1fr); max-width: 440px; margin-inline: auto; }
  .svc-hero-grid, .svc-detail-grid { grid-template-columns: minmax(0, 1fr); }
  .svc-hero-media { order: -1; }
  .svc-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-featured { order: -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews { columns: 1; }
  .areas-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .other-grid { grid-template-columns: minmax(0, 1fr); }
  .svc-gallery { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero-badge { left: 8px; right: 8px; max-width: none; bottom: 10px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .results-caption { padding: 1.8rem 1.2rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
