/* ============================================================
   Pure Steps — puresteps.com.au
   Design system: design-system/pure-steps/MASTER.md
   Client palette (soft, female-leaning): light blue #2D9CDB,
   navy #1B3A57 (text/anchor), pink-peach #EFA38A, white.
   Light, airy surfaces — navy reserved for type & footer.
   ============================================================ */

:root {
  --primary: #1B3A57;
  --primary-dark: #142C42;
  --on-primary: #FFFFFF;
  --secondary: #2D9CDB;
  --secondary-deep: #1D6E9F;
  --sky: #EAF5FC;
  --sky-deep: #D6EBF8;
  --accent: #EFA38A;
  --accent-soft: #FBE3DA;
  --pink-tint: #FDF1EC;
  --cta-deep: #B94A26;
  --bg: #FBFDFF;
  --fg: #1B3A57;
  --fg-soft: #4C6880;
  --muted: #EAF3FA;
  --border: #D3E4F0;
  --ring: #2D9CDB;
  --white: #FFFFFF;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(27, 58, 87, .08);
  --shadow-md: 0 6px 20px rgba(27, 58, 87, .10);
  --shadow-lg: 0 18px 44px rgba(27, 58, 87, .16);
  --wrap: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--secondary-deep); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; color: var(--primary); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--secondary-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin: 10px 0 14px; }
.section-head p { color: var(--fg-soft); font-size: 17.5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn svg { flex: none; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--ring); outline-offset: 2px;
}
.btn-peach { background: var(--accent); color: var(--primary-dark); }
.btn-peach:hover { background: var(--accent-soft); }
.btn-navy { background: var(--primary); color: var(--on-primary); }
.btn-navy:hover { background: var(--secondary-deep); }
.btn-outline { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px rgba(27, 58, 87, .4); }
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--cta-deep); color: var(--cta-deep); }

/* ---------- Header ---------- */
.topbar {
  background: var(--primary-dark); color: rgba(255, 255, 255, .92);
  font-size: 14px; padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar a { color: var(--accent); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar .wrap { flex-wrap: wrap; }
.topbar-review { display: inline-flex; align-items: center; gap: 7px; color: #FFFFFF !important; }
.topbar-review:hover { color: var(--accent) !important; }

/* Google profile card */
.gbp-card {
  margin-top: 36px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px; box-shadow: var(--shadow-sm);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.gbp-left { display: flex; align-items: center; gap: 16px; }
.gbp-g { width: 54px; height: 54px; border-radius: 50%; background: var(--sky); display: grid; place-items: center; flex: none; }
.gbp-left b { font-family: var(--font-head); font-size: 17px; color: var(--primary); display: block; }
.gbp-stars { display: inline-flex; align-items: center; gap: 3px; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--primary); margin: 2px 0; }
.gbp-left small { display: block; font-size: 13px; color: var(--fg-soft); }
.gbp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .gbp-card { padding: 22px; }
  .gbp-actions { width: 100%; }
  .gbp-actions .btn { flex: 1; padding: 14px 16px; font-size: 15px; }
}

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { width: 52px; height: 52px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand b { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--primary); letter-spacing: .01em; }
.brand small { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--cta-deep); }

.nav { display: flex; gap: 26px; }
.nav a {
  font-family: var(--font-head); font-size: 15px; font-weight: 500;
  color: var(--fg); text-decoration: none; padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--secondary); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }

/* nav dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
.nav .caret { transition: transform .22s ease; color: var(--secondary-deep); }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.has-dropdown::before { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: -14px; min-width: 250px;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 80;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { display: block; padding: 10px 14px; border-radius: 9px; font-family: var(--font-head); font-size: 14.5px; font-weight: 500; color: var(--fg); text-decoration: none; }
.dropdown a:hover { background: var(--sky); color: var(--secondary-deep); }
.dropdown a::after { display: none; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.call-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--primary); text-decoration: none; font-size: 16px; }
.call-link:hover { color: var(--secondary-deep); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle svg { display: block; }

/* ---------- Hero (soft sky → blush wash) ---------- */
.hero {
  position: relative; color: #FFFFFF; overflow: hidden;
  background:
    radial-gradient(1000px 560px at 92% -12%, rgba(45, 156, 219, .85) 0%, rgba(45, 156, 219, 0) 62%),
    radial-gradient(760px 420px at -6% 112%, rgba(239, 163, 138, .28) 0%, rgba(239, 163, 138, 0) 58%),
    linear-gradient(148deg, #1F6FA6 0%, #1B4E77 48%, var(--primary) 72%, var(--primary-dark) 100%);
}
.hero .wrap {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
  gap: 56px; align-items: center; padding-top: 88px; padding-bottom: 108px;
}
.hero h1 { color: #FFFFFF; font-size: clamp(34px, 5vw, 56px); font-weight: 700; letter-spacing: -.015em; margin: 18px 0 20px; }
.hero h1 em { font-style: normal; color: var(--accent-soft); }
.hero .lede { font-size: 19px; max-width: 54ch; color: rgba(255, 255, 255, .9); }
.hero .eyebrow { color: var(--accent-soft); }
.hero .eyebrow::before { background: var(--accent); }
.hero .btn-outline { color: #FFFFFF; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .6); }
.hero .btn-outline:hover { box-shadow: inset 0 0 0 2px var(--accent); color: var(--accent); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; padding: 0; list-style: none; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, .94); }
.hero-trust svg { color: var(--accent); flex: none; }

/* steam wisps */
.steam { position: absolute; inset: 0; pointer-events: none; opacity: .6; }
.steam path { fill: none; stroke: rgba(255, 255, 255, .18); stroke-width: 2.5; stroke-linecap: round; }
@media (prefers-reduced-motion: no-preference) {
  .steam path { stroke-dasharray: 220; stroke-dashoffset: 220; animation: steam-rise 7s ease-in-out infinite; }
  .steam path:nth-child(2) { animation-delay: 2.2s; }
  .steam path:nth-child(3) { animation-delay: 4.1s; }
  @keyframes steam-rise {
    0% { stroke-dashoffset: 220; opacity: 0; }
    18% { opacity: 1; }
    62% { stroke-dashoffset: 0; opacity: .55; }
    100% { stroke-dashoffset: -220; opacity: 0; }
  }
}

/* quote card */
.quote-card {
  position: relative; background: var(--white); color: var(--fg);
  border-radius: var(--radius-lg); padding: 24px 24px 20px; box-shadow: var(--shadow-md);
  max-width: 360px; justify-self: end; width: 100%;
}
.quote-card::before {
  content: ""; position: absolute; inset: -8px auto auto -8px; width: 54px; height: 54px;
  background: var(--accent); border-radius: 16px; z-index: -1; opacity: .9;
}
.quote-card h3 { font-size: 18.5px; margin-bottom: 3px; }
.quote-card > p { font-size: 13.5px; color: var(--fg-soft); margin-bottom: 14px; }
.quote-card label { display: block; font-family: var(--font-head); font-size: 12.5px; font-weight: 600; color: var(--primary); margin: 10px 0 5px; }
.quote-card input, .quote-card select {
  width: 100%; padding: 10px 12px; font: inherit; font-size: 14.5px; color: var(--fg);
  border: 1.5px solid var(--border); border-radius: 9px; background: var(--bg);
  transition: border-color .2s ease;
}
.quote-card input:hover, .quote-card select:hover { border-color: var(--secondary); }
.quote-card .btn { width: 100%; margin-top: 16px; padding: 12px 20px; font-size: 15px; }
.quote-card .fineprint { font-size: 11.5px; color: var(--fg-soft); text-align: center; margin-top: 10px; }

/* step-flow quote card */
.q-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.q-count { font-family: var(--font-head); font-size: 12.5px; font-weight: 600; color: var(--fg-soft); }
.q-count b { color: var(--cta-deep); font-size: 15px; }
.q-progress { height: 6px; background: var(--muted); border-radius: 999px; margin: 12px 0 4px; overflow: hidden; }
.q-progress span { display: block; height: 100%; width: 33.33%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--cta-deep)); transition: width .3s ease; }
@media (prefers-reduced-motion: reduce) { .q-progress span { transition: none; } }
.q-nav { display: flex; align-items: center; gap: 12px; }
.q-nav .btn { flex: 1; }
.q-back { background: none; border: 0; cursor: pointer; font-family: var(--font-head); font-size: 13.5px; font-weight: 600; color: var(--secondary-deep); padding: 8px 2px; margin-top: 16px; }
.q-back:hover { color: var(--cta-deep); }

/* ---------- Sub-page hero + content pages ---------- */
.hero-sub .wrap { display: block; padding-top: 64px; padding-bottom: 64px; }
.hero-sub h1 { max-width: 22ch; }
.hero-sub .lede { margin-bottom: 6px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: 13.5px; margin-bottom: 18px; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .75); }
.breadcrumb a { color: rgba(255, 255, 255, .9); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li + li::before { content: "/"; opacity: .5; }
.content-page { max-width: 780px; }
.content-page h2 { font-size: clamp(24px, 3vw, 32px); margin: 44px 0 14px; }
.content-page h3 { font-size: 20px; margin: 28px 0 10px; }
.content-page p { margin: 0 0 16px; color: var(--fg-soft); }
.content-page ul { margin: 0 0 18px 22px; color: var(--fg-soft); }
.content-page li { margin-bottom: 8px; }
.content-page strong { color: var(--primary); }
.content-cta {
  margin: 36px 0; background: var(--sky); border: 1px solid var(--sky-deep); border-radius: var(--radius-lg);
  padding: 26px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.content-cta b { font-family: var(--font-head); font-size: 18px; color: var(--primary); display: block; }
.content-cta span { font-size: 14.5px; color: var(--fg-soft); }
.content-cta .btn { flex: none; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; }
.side-rail { position: sticky; top: 96px; display: grid; gap: 18px; }
.rail-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.rail-card h4 { font-size: 16px; margin-bottom: 12px; }
.rail-card ul { list-style: none; display: grid; gap: 9px; }
.rail-card li a { font-family: var(--font-head); font-size: 14.5px; font-weight: 500; text-decoration: none; color: var(--fg); display: inline-flex; align-items: center; gap: 7px; }
.rail-card li a:hover { color: var(--cta-deep); }
.rail-card li a.current { color: var(--secondary-deep); }
.rail-card .btn { width: 100%; margin-top: 4px; }
.rail-card.rail-call { background: linear-gradient(148deg, #1F6FA6 0%, var(--primary) 80%); border: 0; color: #fff; }
.rail-card.rail-call b { font-family: var(--font-head); font-size: 17px; display: block; margin-bottom: 6px; }
.rail-card.rail-call p { font-size: 13.5px; color: rgba(255, 255, 255, .85); margin-bottom: 14px; }
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .side-rail { position: static; }
}

/* ---------- Stats band (blush) ---------- */
.stats { background: var(--pink-tint); border-bottom: 1px solid var(--accent-soft); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 34px; padding-bottom: 34px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(26px, 3vw, 34px); font-weight: 700; color: var(--primary); }
.stat > span { font-size: 14px; font-weight: 600; color: var(--fg-soft); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 12px; text-decoration: none;
  transition: border-color .25s ease;
}
.service-card:hover { border-color: var(--secondary); }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--sky-deep); color: var(--secondary-deep);
}
.service-card:nth-child(even) .service-icon { background: var(--accent-soft); color: var(--cta-deep); }
.service-card h3 { font-size: 20px; }
.service-card p { color: var(--fg-soft); font-size: 15.5px; flex: 1; }
.service-card .more { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--cta-deep); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Why / feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { list-style: none; display: grid; gap: 18px; margin-top: 28px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-list .tick {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--sky); color: var(--secondary-deep);
}
.why-list li:nth-child(even) .tick { background: var(--accent-soft); color: var(--cta-deep); }
.why-list b { font-family: var(--font-head); font-size: 17px; color: var(--primary); display: block; }
.why-list p { color: var(--fg-soft); font-size: 15.5px; }

.photo-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; }
.photo-frame .badge {
  position: absolute; left: 20px; bottom: 20px; background: var(--white); border-radius: 14px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md);
}
.photo-frame .badge b { font-family: var(--font-head); color: var(--primary); font-size: 15px; display: block; line-height: 1.3; }
.photo-frame .badge span { font-size: 13px; color: var(--fg-soft); }

/* ---------- Process (light footsteps) ---------- */
.process {
  background: linear-gradient(160deg, var(--sky) 0%, #FFFFFF 55%, var(--pink-tint) 100%);
  color: var(--fg); position: relative; overflow: hidden;
}
.process .section-head h2 { color: var(--primary); }
.process .section-head p { color: var(--fg-soft); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; position: relative; z-index: 1; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.step-card .foot { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: var(--primary-dark); display: grid; place-items: center; margin-bottom: 16px; }
.step-card h3 { color: var(--primary); font-size: 18.5px; margin-bottom: 8px; }
.step-card h3::before { counter-increment: step; content: "Step " counter(step) " · "; color: var(--cta-deep); font-weight: 600; }
.step-card p { font-size: 15px; color: var(--fg-soft); }
.trail { position: absolute; inset: 0; pointer-events: none; opacity: .10; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.review-stars { color: #E8A33D; display: flex; gap: 3px; }
.review-card blockquote { font-size: 15.5px; color: var(--fg-soft); flex: 1; }
.review-card cite { font-style: normal; font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: 15px; }
.review-card cite span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--fg-soft); }
.reviews-cta { margin-top: 36px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ---------- Area / map ---------- */
.area .split { align-items: stretch; gap: 44px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.suburbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.suburbs span {
  background: var(--muted); color: var(--primary); font-family: var(--font-head);
  font-size: 13.5px; font-weight: 500; padding: 7px 14px; border-radius: 999px;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.suburbs span:nth-child(even) { background: var(--accent-soft); }
.suburbs span:hover, .suburbs span.hl {
  background: var(--accent); color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
@media (prefers-reduced-motion: reduce) {
  .suburbs span:hover, .suburbs span.hl { transform: none; }
}

/* interactive region map */
.area-map { position: relative; background: #D9EEFA; }
.area-map #region-map { display: block; width: 100%; height: 100%; min-height: 380px; }
.ocean-label { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .3em; fill: #7FB6DA; }
.river { fill: none; stroke: #A9D6EF; stroke-width: 5; stroke-linecap: round; opacity: .8; }
.region { cursor: pointer; }
.region path {
  fill: #FFFFFF; stroke: var(--sky-deep); stroke-width: 2;
  transition: fill .22s ease, stroke .22s ease;
}
.region:nth-of-type(even) path { fill: #F3FAFE; }
.region:hover path, .region.active path, .region:focus-visible path {
  fill: var(--accent-soft); stroke: var(--accent);
}
.region:focus-visible { outline: none; }
.region .r-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; fill: var(--primary); text-anchor: middle; pointer-events: none; }
.region .r-count { font-family: var(--font-body); font-size: 11.5px; fill: #4C6880; text-anchor: middle; pointer-events: none; }
.region .pin { fill: var(--cta-deep); stroke: #FFFFFF; stroke-width: 2; }
.map-tip {
  position: absolute; top: 16px; left: 16px; z-index: 5; max-width: 260px; pointer-events: none;
  background: var(--primary); color: #FFFFFF; font-family: var(--font-head);
  font-size: 13px; font-weight: 500; line-height: 1.45; padding: 9px 13px; border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.map-gmaps {
  position: absolute; right: 12px; bottom: 12px; z-index: 5;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, .95); color: var(--secondary-deep);
  font-family: var(--font-head); font-size: 12.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 999px; text-decoration: none; box-shadow: var(--shadow-sm);
}
.map-gmaps:hover { color: var(--cta-deep); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; display: grid; gap: 14px; }
.faq-list details { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 0; overflow: hidden; }
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--primary); padding: 19px 22px;
  transition: background-color .2s ease;
}
.faq-list summary:hover { background: var(--muted); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: none; transition: transform .25s ease; color: var(--secondary); }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { padding: 0 22px 20px; color: var(--fg-soft); font-size: 15.5px; }

/* ---------- Final CTA (blush band) ---------- */
.cta-band {
  background:
    radial-gradient(700px 380px at 85% 20%, rgba(45, 156, 219, .16) 0%, rgba(45, 156, 219, 0) 60%),
    linear-gradient(140deg, var(--accent-soft) 0%, #F6CDBB 100%);
  color: var(--primary); border-radius: var(--radius-lg); padding: 64px 56px;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: var(--primary); font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 12px; }
.cta-band p { color: #57453C; font-size: 17px; max-width: 52ch; }
.cta-band .actions { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary); color: rgba(255, 255, 255, .86); margin-top: 88px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; }
.site-footer h4 { color: var(--on-primary); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: rgba(255, 255, 255, .86); text-decoration: none; font-size: 15px; }
.site-footer a:hover { color: var(--accent); }
.site-footer .about { font-size: 15px; max-width: 34ch; }
.site-footer .brandline { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.site-footer .brandline img { width: 46px; height: 46px; border-radius: 50%; }
.site-footer .brandline b { font-family: var(--font-head); color: var(--on-primary); font-size: 18px; }
.footer-contact li { display: flex; gap: 10px; align-items: center; }
.footer-contact svg { color: var(--accent); flex: none; }
.footer-base { border-top: 1px solid rgba(255, 255, 255, .16); padding: 20px 0; font-size: 13.5px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-base a { font-size: 13.5px; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border);
  box-shadow: 0 -6px 20px rgba(27, 58, 87, .16);
}
.mobile-callbar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; text-decoration: none; padding: 15px 10px;
}
.mobile-callbar .mc-call { background: var(--primary); color: var(--on-primary); }
.mobile-callbar .mc-book { background: var(--accent); color: var(--primary-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; padding-top: 64px; padding-bottom: 72px; }
  .quote-card { max-width: 420px; justify-self: start; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { grid-template-columns: 1fr; padding: 48px 36px; }
  .cta-band .actions { flex-direction: row; flex-wrap: wrap; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 10px 24px 18px; box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--muted); }
  .nav-item { flex-direction: column; align-items: stretch; }
  .nav .caret { display: none; }
  .has-dropdown::before { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; background: transparent; min-width: 0;
    padding: 0 0 0 16px;
  }
  .dropdown a { border-radius: 0; padding: 12px 0; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .services-grid, .steps-grid, .reviews-grid { grid-template-columns: 1fr; }
  .mobile-callbar { display: grid; }
  body { padding-bottom: 54px; }
  .topbar .wrap span:first-child { display: none; }
  .call-link span { display: none; }
  .quote-card { padding: 26px 22px 24px; }
  .cta-band { padding: 40px 24px; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 32px; }
}
