/* ============================================================
   Pure Steps — puresteps.com.au
   Design system: design-system/pure-steps/MASTER.md
   Brand tokens sampled from the client logo:
   blue gradient #147FD0 → #134976, peach #F7B99C, white #FAFEFF
   ============================================================ */

:root {
  --primary: #134976;
  --primary-dark: #0C3557;
  --on-primary: #FAFEFF;
  --secondary: #147FD0;
  --mid: #11609B;
  --accent: #F7B99C;
  --accent-soft: #FBD9C6;
  --cta-deep: #C9552E;
  --bg: #F6FAFD;
  --fg: #12283C;
  --fg-soft: #3D5A75;
  --muted: #E7F0F8;
  --border: #CBDEEC;
  --ring: #147FD0;
  --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(19, 73, 118, .10);
  --shadow-md: 0 6px 20px rgba(19, 73, 118, .12);
  --shadow-lg: 0 18px 44px rgba(12, 53, 87, .20);
  --wrap: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
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); }
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(--mid);
}
.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(--mid); }
.btn-outline { background: transparent; color: var(--on-primary); box-shadow: inset 0 0 0 2px rgba(250, 254, 255, .55); }
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--accent); color: var(--accent); }

/* ---------- Header ---------- */
.topbar {
  background: var(--primary-dark); color: var(--on-primary);
  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; opacity: .92; }
.topbar a { color: var(--accent); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

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

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--on-primary); overflow: hidden;
  background:
    radial-gradient(1100px 620px at 12% -10%, #1B8BDD 0%, rgba(27, 139, 221, 0) 55%),
    linear-gradient(148deg, var(--secondary) 0%, var(--mid) 42%, var(--primary) 72%, var(--primary-dark) 100%);
}
.hero .wrap {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 56px; align-items: center; padding-top: 88px; padding-bottom: 108px;
}
.hero h1 { color: var(--on-primary); 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); }
.hero .lede { font-size: 19px; max-width: 54ch; color: rgba(250, 254, 255, .88); }
.hero .eyebrow { color: var(--accent); }
.hero .eyebrow::before { background: 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(250, 254, 255, .92); }
.hero-trust svg { color: var(--accent); flex: none; }

/* steam wisps */
.steam { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.steam path { fill: none; stroke: rgba(250, 254, 255, .16); 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: 34px 32px 30px; box-shadow: var(--shadow-lg);
}
.quote-card::before {
  content: ""; position: absolute; inset: -10px auto auto -10px; width: 74px; height: 74px;
  background: var(--accent); border-radius: 22px; z-index: -1; opacity: .9;
}
.quote-card h3 { font-size: 22px; margin-bottom: 4px; }
.quote-card > p { font-size: 14.5px; color: var(--fg-soft); margin-bottom: 20px; }
.quote-card label { display: block; font-family: var(--font-head); font-size: 13.5px; font-weight: 600; color: var(--primary); margin: 14px 0 6px; }
.quote-card input, .quote-card select {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 15.5px; color: var(--fg);
  border: 1.5px solid var(--border); border-radius: 10px; 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: 22px; }
.quote-card .fineprint { font-size: 12.5px; color: var(--fg-soft); text-align: center; margin-top: 12px; }

/* ---------- Stats band ---------- */
.stats { background: var(--white); border-bottom: 1px solid var(--border); }
.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: linear-gradient(140deg, var(--secondary), var(--primary)); color: var(--on-primary);
}
.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(--muted); color: var(--primary);
}
.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 (footsteps) ---------- */
.process { background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--on-primary); position: relative; overflow: hidden; }
.process .section-head h2, .process .section-head p { color: var(--on-primary); }
.process .section-head p { opacity: .85; }
.process .eyebrow { color: var(--accent); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; position: relative; z-index: 1; }
.step-card { background: rgba(250, 254, 255, .07); border: 1px solid rgba(250, 254, 255, .16); border-radius: var(--radius-lg); padding: 28px 24px; }
.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(--on-primary); font-size: 18.5px; margin-bottom: 8px; }
.step-card h3::before { counter-increment: step; content: "Step " counter(step) " · "; color: var(--accent); font-weight: 600; }
.step-card p { font-size: 15px; color: rgba(250, 254, 255, .82); }
.trail { position: absolute; inset: 0; pointer-events: none; opacity: .12; }

/* ---------- 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; }

/* ---------- 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 ---------- */
.cta-band {
  background:
    radial-gradient(700px 380px at 85% 20%, rgba(247, 185, 156, .28) 0%, rgba(247, 185, 156, 0) 60%),
    linear-gradient(140deg, var(--mid) 0%, var(--primary) 55%, var(--primary-dark) 100%);
  color: var(--on-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-lg);
}
.cta-band h2 { color: var(--on-primary); font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 12px; }
.cta-band p { color: rgba(250, 254, 255, .88); font-size: 17px; max-width: 52ch; }
.cta-band .actions { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-dark); color: rgba(250, 254, 255, .84); 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(250, 254, 255, .84); 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(250, 254, 255, .14); 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(12, 53, 87, .18);
}
.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: 560px; }
  .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-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; }
}
