/* ============================================================
   Stay Ready Property Care
   Palette: warm espresso + bronze/gold on cream
   Type:    Playfair Display (display) · Inter (body) · Montserrat (labels)
   ============================================================ */

:root{
  --espresso:   #0e3a44;
  --espresso-2: #2c2419;
  --gold:       #a17b4c;
  --gold-deep:  #8a6739;
  --gold-soft:  #c2a578;
  --cream:      #f7f2ea;
  --cream-2:    #fbf8f2;
  --panel:      #efe6d8;
  --card:       #ffffff;
  --ink:        #2a2218;
  --body:       #5d5448;
  --muted:      #8c8275;
  --line:       #e7ddcd;
  --line-dark:  #3a3024;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --label: "Montserrat", system-ui, sans-serif;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 48px);
  --radius: 4px;
}

/* ---------- reset / base ---------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--body);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ margin:0; color:var(--ink); line-height:1.12; }
p{ margin:0; }
ul,ol{ margin:0; padding:0; list-style:none; }

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

.display{ font-family:var(--serif); font-weight:600; letter-spacing:-.01em; }
.gold{ color:var(--gold); }

.eyebrow{
  font-family:var(--label);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.72rem;
  font-weight:600;
  color:var(--gold);
  line-height:1.7;
  margin:0;
}

.rule{ display:block; width:54px; height:2px; background:var(--gold); margin:22px 0; }
.center-rule{ margin-inline:auto; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--label); font-weight:600;
  font-size:.74rem; letter-spacing:.16em; text-transform:uppercase;
  padding:.95em 1.7em; border-radius:var(--radius);
  border:1.5px solid transparent; cursor:pointer;
  transition:transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:#fff; }
.btn-gold:hover{ background:var(--gold-deep); }
.btn-dark{ background:var(--espresso); color:#f4eee4; }
.btn-dark:hover{ background:#000; }
.btn-outline{ border-color:var(--ink); color:var(--ink); background:transparent; }
.btn-outline:hover{ background:var(--ink); color:var(--cream); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:50;
  background:var(--espresso);
  color:#f3ece1;
}
.header-inner{
  display:flex; align-items:center; gap:24px;
  min-height:74px;
}
.nav{ display:flex; gap:20px; margin-left:auto; }
.nav a{
  font-family:var(--label); font-size:.74rem; font-weight:600;
  letter-spacing:.13em; text-transform:uppercase; color:#e6ddcf;
  padding:6px 0; position:relative;
}
.nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:1.5px; width:0;
  background:var(--gold); transition:width .25s ease;
}
.nav a:hover{ color:#fff; }
.nav a:hover::after{ width:100%; }
.header-cta{ margin-left:8px; }

/* brand mark */
.brand{ display:inline-flex; align-items:center; gap:13px; color:#f3ece1; }
.brand-mark{ width:38px; height:38px; color:var(--gold-soft); flex:0 0 auto; }
.brand-mark svg{ width:100%; height:100%; }
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{
  font-family:var(--serif); font-weight:600; font-size:1.32rem;
  letter-spacing:.06em; color:#f5efe5;
}
.brand-sub{
  font-family:var(--label); font-size:.58rem; font-weight:600;
  letter-spacing:.32em; text-transform:uppercase; color:var(--gold-soft);
  margin-top:5px;
}

.menu-toggle{
  display:none; margin-left:auto;
  width:42px; height:42px; background:transparent; border:0; cursor:pointer;
  flex-direction:column; justify-content:center; gap:5px; padding:8px;
}
.menu-toggle span{ height:2px; background:#f3ece1; border-radius:2px; transition:.25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero{ background:var(--cream); }
.hero-grid{
  display:grid; grid-template-columns:1fr 1.05fr;
  gap:clamp(28px,5vw,64px); align-items:center;
  padding-block:clamp(40px,6vw,76px);
}
.hero-copy .eyebrow{ margin-bottom:24px; }
.hero h1{
  font-family:var(--serif); font-weight:600;
  font-size:clamp(2.6rem,5.2vw,4rem); line-height:1.06;
  letter-spacing:-.015em;
}
.lede{ max-width:34ch; color:var(--body); font-size:1.02rem; }
.hero-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.hero-media img{
  width:100%; aspect-ratio:4/3.1; object-fit:cover; border-radius:var(--radius);
  box-shadow:0 28px 60px -34px rgba(35,28,20,.5);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust{ background:var(--cream-2); border-block:1px solid var(--line); }
.trust-grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(16px,3vw,34px);
  padding-block:34px;
}
.trust-item{ display:flex; gap:15px; align-items:flex-start; }
.trust-item + .trust-item{ position:relative; }
.trust-item + .trust-item::before{
  content:""; position:absolute; left:calc(var(--gut) * -.5 - 8px); top:6px; bottom:6px;
  width:1px; background:var(--line);
}
.trust-ic{
  flex:0 0 auto; width:46px; height:46px; border-radius:50%;
  border:1.5px solid var(--gold-soft); color:var(--gold);
  display:grid; place-items:center;
}
.trust-ic svg{ width:22px; height:22px; }
.trust-item h3{
  font-family:var(--label); font-size:.82rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; color:var(--ink);
  margin-bottom:5px;
}
.trust-item p{ font-size:.86rem; color:var(--muted); line-height:1.45; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head{ margin-bottom:42px; }
.section-head.center{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.section-title{
  font-family:var(--serif); font-weight:600;
  font-size:clamp(1.7rem,3vw,2.2rem); letter-spacing:.02em; color:var(--ink);
}
.gold-eyebrow{ color:var(--gold); }

/* ============================================================
   SERVICES
   ============================================================ */
.services{ padding-block:clamp(56px,7vw,90px); background:var(--cream); }
.service-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.service-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .22s ease, box-shadow .22s ease;
}
.service-card:hover{ transform:translateY(-5px); box-shadow:0 22px 44px -28px rgba(35,28,20,.45); }
.service-img{ position:relative; }
.service-img img{ width:100%; aspect-ratio:4/3; object-fit:cover; }
.service-badge{
  position:absolute; left:50%; bottom:-22px; transform:translateX(-50%);
  width:48px; height:48px; border-radius:50%;
  background:var(--espresso); color:var(--gold-soft);
  display:grid; place-items:center;
  border:3px solid var(--card);
}
.service-badge svg{ width:22px; height:22px; }
.service-body{ padding:34px 22px 26px; text-align:center; }
.service-body h3{
  font-family:var(--label); font-size:.92rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; color:var(--ink);
  margin-bottom:11px;
}
.service-body p{ font-size:.88rem; color:var(--body); min-height:3.4em; }
.learn{
  display:inline-block; margin-top:16px;
  font-family:var(--label); font-size:.68rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink);
}
.learn span{ color:var(--gold); transition:transform .2s ease; display:inline-block; }
.learn:hover span{ transform:translateX(4px); }

/* ============================================================
   FEATURE / ABOUT
   ============================================================ */
.feature{ background:var(--espresso); color:#e9e0d2; padding-block:clamp(56px,7vw,90px); }
.feature-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,64px); align-items:center;
}
.feature-title{ color:#f4ece0; font-size:clamp(2rem,3.6vw,2.9rem); margin-bottom:20px; }
.feature-lede{ color:#c8bdab; max-width:42ch; }
.feature-list{ display:flex; flex-direction:column; gap:13px; margin:28px 0 34px; }
.feature-list li{
  display:flex; align-items:center; gap:13px;
  font-family:var(--label); font-size:.82rem; font-weight:600;
  letter-spacing:.07em; text-transform:uppercase; color:#e3d8c7;
}
.tick{ flex:0 0 auto; width:22px; height:22px; border-radius:50%; position:relative;
  border:1.5px solid var(--gold); }
.tick::after{
  content:""; position:absolute; left:7px; top:4px; width:5px; height:9px;
  border:solid var(--gold); border-width:0 1.5px 1.5px 0; transform:rotate(45deg);
}
.feature-media img{
  width:100%; aspect-ratio:3/3.6; object-fit:cover; border-radius:var(--radius);
  box-shadow:0 30px 60px -34px rgba(0,0,0,.7);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how{ background:var(--cream); padding-block:clamp(50px,6vw,80px); }
.how-panel{
  background:var(--panel); border:1px solid var(--line); border-radius:8px;
  padding:clamp(34px,5vw,56px) clamp(24px,4vw,48px);
}
.how-panel .section-head{ margin-bottom:36px; }
.steps{
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
  align-items:start; gap:8px;
}
.step{ text-align:center; padding-inline:8px; }
.step-ic{
  width:64px; height:64px; border-radius:50%; background:var(--cream-2);
  border:1px solid var(--line); color:var(--gold);
  display:grid; place-items:center; margin:0 auto 18px;
}
.step-ic svg{ width:28px; height:28px; }
.step h3{
  font-family:var(--label); font-size:.84rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; color:var(--ink); margin-bottom:8px;
}
.step h3 span{ color:var(--gold); }
.step p{ font-size:.84rem; color:var(--body); max-width:22ch; margin-inline:auto; }
.step-arrow{
  align-self:center; color:var(--gold-soft); font-size:1.3rem; padding-top:18px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ background:var(--cream-2); padding-block:clamp(56px,7vw,90px); }
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.g-item{ margin:0; position:relative; border-radius:var(--radius); overflow:hidden; }
.g-item img{
  width:100%; aspect-ratio:1; object-fit:cover;
  transition:transform .5s ease; display:block;
}
.g-item:hover img{ transform:scale(1.06); }
.g-item figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:18px 16px 14px;
  font-family:var(--label); font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:#fff;
  background:linear-gradient(to top, rgba(28,22,15,.82), rgba(28,22,15,0));
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{ background:var(--cream); padding-block:clamp(56px,7vw,86px); }
.testimonials .section-head{ margin-bottom:40px; }
.quote-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.quote-card{
  margin:0; background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius); padding:30px 28px;
}
.stars{ color:var(--gold); letter-spacing:3px; font-size:1rem; margin-bottom:16px; }
.quote-card blockquote{
  margin:0 0 18px; font-size:.95rem; color:var(--body); line-height:1.65; font-style:italic;
}
.quote-card figcaption{
  font-family:var(--label); font-size:.78rem; font-weight:700;
  letter-spacing:.06em; color:var(--ink);
}

/* ============================================================
   CTA
   ============================================================ */
.cta{ background:var(--espresso); color:#ece3d4; }
.cta-grid{ display:grid; grid-template-columns:1fr 1.15fr; align-items:center;
  gap:clamp(28px,5vw,60px); padding-block:0; }
.cta-media{ align-self:stretch; }
.cta-media img{ width:100%; height:100%; min-height:280px; object-fit:cover; }
.cta-copy{ padding-block:clamp(46px,6vw,72px); padding-right:var(--gut); }
.cta-copy h2{ color:#f5ede1; font-size:clamp(1.7rem,3.2vw,2.5rem); margin-bottom:16px; }
.cta-copy p{ color:#c5bba9; max-width:46ch; margin-bottom:28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--espresso-2); color:#cfc5b4; padding-top:clamp(46px,5vw,64px); }
.footer-grid{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr auto;
  gap:clamp(24px,4vw,48px); padding-bottom:40px;
}
.brand--light .brand-name{ color:#f1e9db; }
.footer-tag{ margin-top:16px; font-size:.85rem; color:#9b917f; max-width:26ch; }
.footer-col h4{
  font-family:var(--label); font-size:.74rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase; color:var(--gold-soft);
  margin-bottom:16px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:.88rem; color:#cfc5b4; transition:color .2s; }
.footer-col a:hover{ color:#fff; }
.contact-list li{ font-size:.88rem; }
.socials{ display:flex; gap:12px; }
.socials a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line-dark);
  display:grid; place-items:center; color:#cfc5b4; transition:.2s;
}
.socials a:hover{ border-color:var(--gold); color:var(--gold-soft); }
.socials svg{ width:18px; height:18px; }
.footer-bottom{
  border-top:1px solid var(--line-dark); padding-block:22px;
  font-size:.78rem; color:#8a8170; text-align:center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1000px){
  .footer-grid{ grid-template-columns:1fr 1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
}

@media (max-width:900px){
  .menu-toggle{ display:flex; }
  .header-cta{ display:none; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0; background:var(--espresso);
    border-top:1px solid var(--line-dark);
    max-height:0; overflow:hidden; transition:max-height .3s ease;
    box-shadow:0 18px 32px -18px rgba(0,0,0,.55);
  }
  .nav.open{ max-height:80vh; overflow-y:auto; }
  .nav a{ padding:16px var(--gut); border-bottom:1px solid var(--line-dark); }
  .nav a::after{ display:none; }

  .hero-grid{ grid-template-columns:1fr; }
  .hero-media{ order:-1; }
  .lede{ max-width:46ch; }

  .trust-grid{ grid-template-columns:1fr 1fr; gap:24px 30px; }
  .trust-item + .trust-item::before{ display:none; }

  .service-grid{ grid-template-columns:1fr 1fr; gap:30px 22px; }

  .feature-grid{ grid-template-columns:1fr; }
  .feature-media{ order:-1; max-width:480px; }

  .steps{ grid-template-columns:repeat(2,1fr); gap:34px 16px; }
  .step-arrow{ display:none; }

  .gallery-grid{ grid-template-columns:1fr 1fr; }
  .quote-grid{ grid-template-columns:1fr; max-width:560px; margin-inline:auto; }

  .cta-grid{ grid-template-columns:1fr; }
  .cta-media{ order:-1; }
  .cta-media img{ min-height:240px; }
  .cta-copy{ padding-inline:var(--gut); }
}

@media (max-width:560px){
  .trust-grid{ grid-template-columns:1fr; }
  .service-grid{ grid-template-columns:1fr; max-width:380px; margin-inline:auto; }
  .gallery-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .hero h1{ font-size:clamp(2.3rem,9vw,3rem); }
  .hero-actions .btn{ flex:1; }
}

/* ---------- a11y ---------- */
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* active nav state */
.nav a.active{ color:#fff; }
.nav a.active::after{ width:100%; }

/* reassurance microbar under hero */
.assure{
  display:flex; flex-wrap:wrap; gap:10px 26px; margin-top:26px;
  font-family:var(--label); font-size:.7rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase; color:var(--muted);
}
.assure span{ display:inline-flex; align-items:center; gap:8px; }
.assure span::before{
  content:""; width:6px; height:6px; border-radius:50%; background:var(--gold);
}

/* ---------- inner page hero ---------- */
.page-hero{
  background:var(--espresso); color:#ece3d4;
  padding-block:clamp(52px,7vw,90px); text-align:center;
}
.page-hero .eyebrow{ color:var(--gold-soft); }
.page-hero h1{
  font-family:var(--serif); font-weight:600; color:#f6eee2;
  font-size:clamp(2.1rem,4.6vw,3.3rem); letter-spacing:-.01em; margin-top:14px;
}
.page-hero p{ color:#c6bca9; max-width:56ch; margin:18px auto 0; }
.page-hero .rule{ margin:24px auto 0; }
.crumbs{
  font-family:var(--label); font-size:.68rem; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase; color:var(--gold-soft);
  margin-bottom:6px;
}
.crumbs a{ color:#9c917f; }
.crumbs a:hover{ color:var(--gold-soft); }

/* generic section wrappers */
.section{ padding-block:clamp(56px,7vw,92px); }
.section.cream{ background:var(--cream); }
.section.cream2{ background:var(--cream-2); }
.section.panel{ background:var(--panel); }
.section.dark{ background:var(--espresso); color:#e7ded0; }
.section.dark h2,.section.dark h3{ color:#f4ece0; }
.section-head.left{ text-align:left; align-items:flex-start; }
.section-intro{ max-width:60ch; color:var(--body); margin-top:14px; }
.section.dark .section-intro{ color:#c4b9a7; }

/* ---------- alternating service rows ---------- */
.svc-row{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,64px);
  align-items:center;
}
.svc-row + .svc-row{ margin-top:clamp(48px,6vw,84px); }
.svc-row:nth-child(even) .svc-media{ order:2; }
.svc-media img{
  width:100%; aspect-ratio:4/3.2; object-fit:cover; border-radius:var(--radius);
  box-shadow:0 24px 50px -32px rgba(35,28,20,.5);
}
.svc-text .eyebrow{ margin-bottom:12px; }
.svc-text h2{ font-family:var(--serif); font-size:clamp(1.6rem,2.8vw,2.1rem); margin-bottom:14px; }
.svc-text p{ color:var(--body); }
.check-list{ display:flex; flex-direction:column; gap:11px; margin-top:20px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:.94rem; color:var(--body); }
.check-list li{ position:relative; }
.check-list li::before{
  content:""; flex:0 0 auto; width:22px; height:22px; margin-top:1px; border-radius:50%;
  border:1.5px solid var(--gold); position:relative;
}
.check-list li::after{
  content:""; position:absolute; left:8px; top:6px; width:5px; height:9px;
  border:solid var(--gold); border-width:0 1.6px 1.6px 0; transform:rotate(45deg);
}

/* ---------- stats band ---------- */
.stats-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;
}
.stat-num{
  font-family:var(--serif); font-weight:600; color:var(--gold);
  font-size:clamp(2.2rem,4vw,2.9rem); line-height:1;
}
.stat-label{
  font-family:var(--label); font-size:.74rem; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase; margin-top:10px; color:var(--muted);
}
.section.dark .stat-label{ color:#b3a895; }

/* ---------- values / cards grid ---------- */
.tri-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.info-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:32px 28px;
}
.info-card .ic{
  width:52px; height:52px; border-radius:50%; border:1.5px solid var(--gold-soft);
  color:var(--gold); display:grid; place-items:center; margin-bottom:18px;
}
.info-card .ic svg{ width:24px; height:24px; }
.info-card h3{
  font-family:var(--label); font-size:.92rem; font-weight:700; letter-spacing:.05em;
  text-transform:uppercase; margin-bottom:10px; color:var(--ink);
}
.info-card p{ font-size:.92rem; color:var(--body); }

/* ---------- service area tags ---------- */
.area-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:6px; }
.area-tags span{
  font-family:var(--label); font-size:.74rem; font-weight:600; letter-spacing:.06em;
  color:var(--body); background:var(--cream-2); border:1px solid var(--line);
  padding:8px 15px; border-radius:50px;
}

/* ---------- pricing ---------- */
.price-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; }
.price-card{
  background:var(--card); border:1px solid var(--line); border-radius:6px;
  padding:38px 30px; display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.price-card:hover{ transform:translateY(-5px); box-shadow:0 24px 48px -30px rgba(35,28,20,.4); }
.price-card.featured{ background:var(--espresso); color:#e7ded0; border-color:var(--espresso); }
.price-card.featured h3,.price-card.featured .price-amount{ color:#f4ece0; }
.price-tag{
  font-family:var(--label); font-size:.66rem; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.price-card.featured .price-tag{ color:var(--gold-soft); }
.price-card h3{
  font-family:var(--serif); font-size:1.5rem; margin-bottom:6px; color:var(--ink);
}
.price-card > p.sub{ font-size:.88rem; color:var(--muted); min-height:2.6em; }
.price-card.featured > p.sub{ color:#b3a895; }
.price-amount{ font-family:var(--serif); font-size:2.4rem; font-weight:600; margin:20px 0 4px; }
.price-amount small{ font-family:var(--sans); font-size:.8rem; font-weight:500; color:var(--muted); letter-spacing:0; }
.price-card.featured .price-amount small{ color:#b3a895; }
.price-feats{ display:flex; flex-direction:column; gap:11px; margin:24px 0 28px; }
.price-feats li{ display:flex; gap:11px; font-size:.9rem; }
.price-feats li::before{
  content:"✓"; color:var(--gold); font-weight:700; flex:0 0 auto;
}
.price-card.featured .price-feats li::before{ color:var(--gold-soft); }
.price-card .btn{ margin-top:auto; }

.price-note{
  text-align:center; font-size:.86rem; color:var(--muted); margin-top:30px;
}

/* ---------- FAQ ---------- */
.faq{ max-width:780px; margin-inline:auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:0; cursor:pointer; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 4px; font-family:var(--serif); font-size:1.12rem; color:var(--ink);
}
.faq-q .pm{ flex:0 0 auto; width:22px; height:22px; position:relative; }
.faq-q .pm::before,.faq-q .pm::after{
  content:""; position:absolute; background:var(--gold); transition:transform .25s ease;
}
.faq-q .pm::before{ top:10px; left:0; width:22px; height:2px; }
.faq-q .pm::after{ left:10px; top:0; width:2px; height:22px; }
.faq-item[open] .pm::after{ transform:scaleY(0); }
.faq-a{ overflow:hidden; }
.faq-a p{ padding:0 4px 24px; color:var(--body); font-size:.96rem; max-width:68ch; }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(32px,5vw,60px); }
.contact-info h3{ font-family:var(--serif); font-size:1.5rem; margin-bottom:18px; }
.contact-line{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.contact-line .ic{
  width:42px; height:42px; flex:0 0 auto; border-radius:50%;
  border:1px solid var(--line); color:var(--gold); display:grid; place-items:center;
}
.contact-line .ic svg{ width:20px; height:20px; }
.contact-line .lbl{
  font-family:var(--label); font-size:.66rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--muted); margin-bottom:3px;
}
.contact-line a,.contact-line .val{ color:var(--ink); font-size:.98rem; }
.contact-line a:hover{ color:var(--gold); }

/* ---------- forms ---------- */
.form-card{
  background:var(--card); border:1px solid var(--line); border-radius:6px;
  padding:clamp(26px,4vw,42px);
}
.field{ margin-bottom:20px; }
.field > label{
  display:block; font-family:var(--label); font-size:.72rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; color:var(--ink); margin-bottom:8px;
}
.field .req{ color:var(--gold); }
.input,select,textarea{
  width:100%; font-family:var(--sans); font-size:.96rem; color:var(--ink);
  background:var(--cream-2); border:1.5px solid var(--line); border-radius:var(--radius);
  padding:13px 15px; transition:border-color .2s ease, background .2s ease;
}
textarea{ resize:vertical; min-height:120px; }
.input:focus,select:focus,textarea:focus{ outline:none; border-color:var(--gold); background:#fff; }
.input::placeholder,textarea::placeholder{ color:#a99e8e; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field.err .input,.field.err select,.field.err textarea{ border-color:#b5523f; background:#fbf2ef; }
.err-msg{ display:none; color:#b5523f; font-size:.8rem; margin-top:6px; }
.field.err .err-msg{ display:block; }
.form-foot{ font-size:.82rem; color:var(--muted); margin-top:4px; }

/* ---------- quote wizard ---------- */
.quote-shell{ max-width:780px; margin-inline:auto; }
.progress{ display:flex; align-items:center; margin-bottom:38px; }
.progress .pstep{ display:flex; flex-direction:column; align-items:center; gap:9px; flex:0 0 auto; }
.progress .pnum{
  width:38px; height:38px; border-radius:50%; display:grid; place-items:center;
  font-family:var(--label); font-weight:700; font-size:.85rem;
  background:var(--cream-2); border:1.5px solid var(--line); color:var(--muted);
  transition:.25s;
}
.progress .plabel{
  font-family:var(--label); font-size:.62rem; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; color:var(--muted); white-space:nowrap;
}
.progress .pline{ flex:1; height:2px; background:var(--line); margin:0 8px; margin-bottom:26px; transition:.25s; }
.progress .pstep.active .pnum{ background:var(--gold); border-color:var(--gold); color:#fff; }
.progress .pstep.active .plabel{ color:var(--ink); }
.progress .pstep.done .pnum{ background:var(--espresso); border-color:var(--espresso); color:var(--gold-soft); }
.progress .pline.done{ background:var(--gold); }

.q-step{ display:none; }
.q-step.active{ display:block; animation:fade .35s ease; }
@keyframes fade{ from{ opacity:0; transform:translateY(8px);} to{ opacity:1; transform:none;} }
.q-step h2{ font-family:var(--serif); font-size:clamp(1.5rem,2.6vw,1.9rem); margin-bottom:6px; }
.q-step .q-sub{ color:var(--muted); margin-bottom:26px; font-size:.95rem; }

.opt-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-bottom:8px; }
.opt-grid.cols4{ grid-template-columns:repeat(4,1fr); }
.opt-grid.cols3{ grid-template-columns:repeat(3,1fr); }
.opt{ position:relative; cursor:pointer; }
.opt input{ position:absolute; opacity:0; pointer-events:none; }
.opt .opt-box{
  display:flex; flex-direction:column; gap:8px; height:100%;
  border:1.5px solid var(--line); border-radius:6px; padding:18px 18px;
  background:var(--cream-2); transition:.18s; text-align:left;
}
.opt .opt-ic{ color:var(--gold); width:26px; height:26px; }
.opt .opt-ic svg{ width:26px; height:26px; }
.opt .opt-t{ font-family:var(--label); font-weight:700; font-size:.86rem; letter-spacing:.04em; color:var(--ink); text-transform:uppercase; }
.opt .opt-d{ font-size:.82rem; color:var(--muted); }
.opt:hover .opt-box{ border-color:var(--gold-soft); }
.opt input:checked + .opt-box{ border-color:var(--gold); background:#fff; box-shadow:inset 0 0 0 1px var(--gold); }
.opt input:focus-visible + .opt-box{ outline:2px solid var(--gold); outline-offset:2px; }

.wizard-nav{ display:flex; justify-content:space-between; gap:14px; margin-top:32px; }
.wizard-nav .btn.ghost{ background:none; border-color:var(--line); color:var(--body); }
.wizard-nav .btn.ghost:hover{ border-color:var(--ink); color:var(--ink); }
.wizard-nav .spacer{ flex:1; }

/* review */
.review-list{ border:1px solid var(--line); border-radius:6px; overflow:hidden; }
.review-list dl{ margin:0; }
.review-row{ display:grid; grid-template-columns:38% 1fr; gap:16px; padding:15px 20px; border-bottom:1px solid var(--line); }
.review-row:last-child{ border-bottom:0; }
.review-row dt{ font-family:var(--label); font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.review-row dd{ margin:0; color:var(--ink); font-size:.95rem; }
.edit-link{ background:none; border:0; color:var(--gold); font-family:var(--label); font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; cursor:pointer; margin-top:14px; }
.edit-link:hover{ text-decoration:underline; }

/* confirmation */
.confirm{ text-align:center; padding:20px 0 8px; }
.confirm .tickbig{
  width:74px; height:74px; border-radius:50%; background:var(--gold); color:#fff;
  display:grid; place-items:center; margin:0 auto 22px;
}
.confirm .tickbig svg{ width:36px; height:36px; }
.confirm h2{ font-family:var(--serif); font-size:1.8rem; margin-bottom:12px; }
.confirm p{ color:var(--body); max-width:50ch; margin:0 auto 8px; }

/* trust strip on quote page */
.mini-trust{
  display:flex; flex-wrap:wrap; justify-content:center; gap:14px 30px; margin-top:30px;
  font-family:var(--label); font-size:.7rem; font-weight:600; letter-spacing:.1em;
  text-transform:uppercase; color:var(--muted);
}
.mini-trust span{ display:inline-flex; gap:8px; align-items:center; }
.mini-trust svg{ width:16px; height:16px; color:var(--gold); }

/* ---------- responsive for new bits ---------- */
@media (max-width:900px){
  .svc-row{ grid-template-columns:1fr; gap:24px; }
  .svc-row:nth-child(even) .svc-media{ order:-1; }
  .svc-media{ max-width:520px; }
  .stats-grid{ grid-template-columns:1fr 1fr; gap:30px 24px; }
  .tri-grid{ grid-template-columns:1fr; max-width:460px; margin-inline:auto; }
  .price-grid{ grid-template-columns:1fr; max-width:440px; margin-inline:auto; }
  .contact-grid{ grid-template-columns:1fr; }
  .opt-grid.cols4{ grid-template-columns:1fr 1fr; }
  .opt-grid.cols3{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .field-row{ grid-template-columns:1fr; }
  .opt-grid,.opt-grid.cols4,.opt-grid.cols3{ grid-template-columns:1fr; }
  .progress .plabel{ display:none; }
  .review-row{ grid-template-columns:1fr; gap:4px; }
}

/* native <details> FAQ marker reset */
.faq-q{ list-style:none; }
.faq-q::-webkit-details-marker{ display:none; }
.faq-item[open] .faq-q{ color:var(--gold-deep); }

/* ---------- scroll reveal: disabled for reliability (content always visible) ---------- */
[data-reveal]{ opacity:1; transform:none; }

/* suppress outline on programmatically-focused wizard headings */
.q-step h2:focus,.q-step h2:focus-visible{ outline:none; }

/* ============================================================
   MEMBERSHIPS · ECO · GIVEAWAY
   ============================================================ */
.eco-badge{
  display:inline-flex; align-items:center; gap:9px;
  background:#edf1e6; color:#5c6b41; border:1px solid #d8e0c8;
  padding:9px 17px; border-radius:50px;
  font-family:var(--label); font-size:.7rem; font-weight:700;
  letter-spacing:.13em; text-transform:uppercase;
}
.eco-badge svg{ width:16px; height:16px; }
.info-card .ic.eco{ border-color:#bcd09a; color:#6f8a45; }

/* per-unit emphasis under price */
.per-unit{ font-family:var(--label); font-size:.66rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-top:-2px; }
.price-card.featured .per-unit{ color:#b3a895; }

/* price guide */
.price-guide{ max-width:600px; margin:38px auto 0; border:1px solid var(--line); border-radius:8px; overflow:hidden; background:var(--card); }
.pg-row{ display:grid; grid-template-columns:1fr auto; gap:16px; padding:15px 22px; border-bottom:1px solid var(--line); align-items:baseline; }
.pg-row:last-child{ border-bottom:0; }
.pg-row.head{ background:var(--cream-2); }
.pg-row.head span{ font-family:var(--label); font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.pg-row b{ color:var(--ink); font-weight:600; }
.pg-row .amt{ font-family:var(--serif); color:var(--gold-deep); font-weight:600; font-size:1.05rem; }

/* giveaway callout */
.giveaway{
  background:linear-gradient(120deg, var(--espresso), #34291c);
  color:#ece3d4; border-radius:10px; padding:clamp(28px,4vw,46px);
  display:grid; grid-template-columns:auto 1fr auto; gap:28px; align-items:center;
}
.giveaway .gift{ width:66px; height:66px; border-radius:50%; background:var(--gold); color:#fff; display:grid; place-items:center; flex:0 0 auto; }
.giveaway .gift svg{ width:32px; height:32px; }
.giveaway h3{ font-family:var(--serif); color:#f6eee2; font-size:1.55rem; margin-bottom:8px; }
.giveaway p{ color:#cabfad; max-width:62ch; }
.giveaway .fine{ font-size:.74rem; color:#988e7c; margin-top:10px; }
.giveaway .btn{ white-space:nowrap; }
@media (max-width:820px){ .giveaway{ grid-template-columns:1fr; text-align:center; } .giveaway .gift{ margin:0 auto; } .giveaway p{ margin-inline:auto; } }

/* member highlight band */
.member-band{ display:grid; grid-template-columns:1.05fr 1fr; gap:clamp(28px,5vw,56px); align-items:center; }
.member-perks{ display:flex; flex-direction:column; gap:13px; background:var(--card); border:1px solid var(--line); border-radius:8px; padding:28px 30px; }
.member-perks li{ display:flex; gap:13px; align-items:flex-start; font-size:.96rem; color:var(--body); }
.member-perks li svg{ width:20px; height:20px; color:var(--gold); flex:0 0 auto; margin-top:2px; }
@media (max-width:860px){ .member-band{ grid-template-columns:1fr; } }

/* 4-up values */
.tri-grid.quad{ grid-template-columns:repeat(4,1fr); }
@media (max-width:980px){ .tri-grid.quad{ grid-template-columns:1fr 1fr; max-width:560px; margin-inline:auto; } }
@media (max-width:560px){ .tri-grid.quad{ grid-template-columns:1fr; } }

/* image-free centered call to action */
.cta-plain{ background:var(--espresso); color:#ece3d4; text-align:center; padding-block:clamp(56px,7vw,92px); }
.cta-plain h2{ color:#f5ede1; font-size:clamp(1.8rem,3.6vw,2.7rem); margin-bottom:14px; }
.cta-plain p{ color:#c6bca9; max-width:54ch; margin:0 auto 28px; }

/* ============================================================
   GUARANTEE · CONSENT · LEGAL
   ============================================================ */
.guarantee{ display:grid; grid-template-columns:auto 1fr auto; gap:26px; align-items:center;
  background:var(--card); border:1px solid var(--line); border-radius:10px; padding:clamp(26px,4vw,40px); }
.guarantee .seal{ width:74px; height:74px; border-radius:50%; border:2px solid var(--gold); color:var(--gold);
  display:grid; place-items:center; flex:0 0 auto; }
.guarantee .seal svg{ width:36px; height:36px; }
.guarantee h2{ font-family:var(--serif); font-size:1.6rem; margin-bottom:6px; color:var(--ink); }
.guarantee p{ color:var(--body); max-width:60ch; }
.guarantee .btn{ white-space:nowrap; }
@media (max-width:820px){ .guarantee{ grid-template-columns:1fr; text-align:center; } .guarantee .seal{ margin:0 auto; } .guarantee p{ margin-inline:auto; } }

.consent{ display:flex; gap:11px; align-items:flex-start; }
.consent input{ width:18px; height:18px; margin-top:3px; flex:0 0 auto; accent-color:var(--gold); cursor:pointer; }
.consent label{ font-size:.84rem; color:var(--muted); line-height:1.5; }
.consent a{ color:var(--gold-deep); font-weight:600; }
.consent-field.err .consent label{ color:#b5523f; }

.footer-legal a{ color:#9b917f; }
.footer-legal a:hover{ color:var(--gold-soft); }
.footer-legal .sep{ color:#6f6657; margin:0 9px; }

.legal{ max-width:780px; margin-inline:auto; }
.legal h2{ font-family:var(--serif); font-size:1.35rem; margin:32px 0 10px; color:var(--ink); }
.legal h2:first-of-type{ margin-top:0; }
.legal p{ color:var(--body); font-size:.96rem; line-height:1.7; margin-bottom:12px; }
.legal ul{ list-style:disc; padding-left:22px; margin:10px 0 16px; display:flex; flex-direction:column; gap:7px; }
.legal li{ color:var(--body); font-size:.96rem; line-height:1.6; }
.legal .updated{ color:var(--muted); font-size:.85rem; margin-bottom:22px; }
.legal a{ color:var(--gold-deep); font-weight:600; }
.legal .note{ background:var(--cream-2); border:1px solid var(--line); border-left:3px solid var(--gold);
  border-radius:6px; padding:16px 18px; font-size:.88rem; color:var(--muted); margin:22px 0; }

/* ============================================================
   PROPERTY CARE REPOSITION
   ============================================================ */
.ital{ font-style:italic; }

/* six-up service grid */
.service-grid.six{ grid-template-columns:repeat(3,1fr); }
@media (max-width:900px){ .service-grid.six{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .service-grid.six{ grid-template-columns:1fr; } }
.services-soon{ text-align:center; color:var(--muted); font-family:var(--label); font-size:.72rem;
  font-weight:600; letter-spacing:.14em; text-transform:uppercase; margin-top:34px; }

/* who we serve */
.serve-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin-top:38px; }
@media (max-width:980px){ .serve-grid{ grid-template-columns:repeat(3,1fr); max-width:720px; margin-inline:auto; } }
@media (max-width:600px){ .serve-grid{ grid-template-columns:1fr 1fr; } }
.serve-item{ text-align:center; padding:24px 14px; background:var(--card); border:1px solid var(--line); border-radius:10px; }
.serve-ic{ width:48px; height:48px; border-radius:50%; border:1px solid var(--line); display:grid; place-items:center; margin:0 auto 14px; color:var(--gold); }
.serve-ic svg{ width:23px; height:23px; }
.serve-item h3{ font-size:1rem; margin-bottom:6px; color:var(--ink); }
.serve-item p{ font-size:.85rem; color:var(--muted); line-height:1.5; }

/* pricing snapshot at top */
.price-snapshot{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media (max-width:760px){ .price-snapshot{ grid-template-columns:1fr 1fr; } }
.snap{ display:flex; flex-direction:column; gap:5px; text-align:center; padding:26px 16px;
  background:var(--card); border:1px solid var(--line); border-radius:12px;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.snap:hover{ transform:translateY(-3px); border-color:var(--gold); box-shadow:0 12px 30px rgba(35,28,20,.08); }
.snap-label{ font-family:var(--label); font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.snap-amt{ font-family:var(--serif); font-size:1.75rem; line-height:1.1; color:var(--gold-deep); font-weight:600; }
.snap-unit{ font-size:.78rem; color:var(--muted); }

/* ============================================================
   BOND CLEANING SPOTLIGHT (home)
   ============================================================ */
.bond-spotlight{ display:grid; grid-template-columns:1.15fr .85fr; gap:48px; align-items:center; }
@media (max-width:860px){ .bond-spotlight{ grid-template-columns:1fr; gap:34px; } }
.bond-card{ background:var(--espresso); color:#ece3d4; border-radius:14px; padding:34px 32px; box-shadow:0 22px 55px rgba(35,28,20,.18); }
.bond-card-label{ font-family:var(--label); font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-soft); }
.bond-card-price{ font-family:var(--serif); font-size:3.3rem; color:#f5ede1; line-height:1; margin:4px 0 20px; }
.bond-card-price small{ font-size:1rem; color:#bcae98; font-family:var(--body); }
.bond-card-list{ list-style:none; margin:0 0 22px; padding:0; border-top:1px solid rgba(255,255,255,.13); }
.bond-card-list li{ display:flex; justify-content:space-between; align-items:center; padding:11px 0; border-bottom:1px solid rgba(255,255,255,.1); font-size:.95rem; color:#d8cdbb; }
.bond-card-list li b{ color:#f5ede1; font-weight:600; }
.bond-card .btn{ width:100%; }
.bond-card .btn-outline{ color:#f5ede1; border-color:rgba(255,255,255,.4); }
.bond-card .btn-outline:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.6); }
.bond-card-note{ text-align:center; margin-top:16px; font-size:.82rem; color:var(--gold-soft); letter-spacing:.05em; }
.bond-card-note::before{ content:"\2713  "; }
/* featured bond card in grid */
.service-card.feat{ outline:2px solid var(--gold); outline-offset:-2px; }

/* ============================================================
   BRISBANE BOND CLEAN — fresh lead-gen reskin
   ============================================================ */
:root{
  --espresso:   #0e3a44;
  --espresso-2: #124651;
  --gold:       #0fae9e;
  --gold-deep:  #0c8c80;
  --gold-soft:  #5fd0c4;
  --cream:      #eef7f7;
  --cream-2:    #f6fbfb;
  --panel:      #dceeed;
  --card:       #ffffff;
  --ink:        #0f2e36;
  --body:       #45565b;
  --muted:      #7a8a8e;
  --line:       #dbe9e9;
  --line-dark:  #1c4651;
  --serif: "Poppins", system-ui, sans-serif;
  --cta:      #ff7a33;
  --cta-deep: #ef6418;
}
.display{ font-weight:800; letter-spacing:-.02em; }
.btn-cta{ background:var(--cta); color:#fff; }
.btn-cta:hover{ background:var(--cta-deep); }
.gold.ital{ font-style:normal; }

/* lead-gen hero */
.lg-hero{ background:linear-gradient(135deg,#0e3a44 0%,#13525e 60%,#0e6b66 100%); color:#eaf6f5; padding-block:clamp(38px,6vw,72px); }
.lg-hero .wrap{ display:grid; grid-template-columns:1.05fr .95fr; gap:44px; align-items:center; }
@media (max-width:900px){ .lg-hero .wrap{ grid-template-columns:1fr; gap:30px; } }
.lg-hero h1{ font-weight:800; font-size:clamp(2.1rem,4.6vw,3.3rem); line-height:1.06; color:#fff; letter-spacing:-.02em; }
.lg-hero h1 span{ color:var(--gold-soft); }
.lg-hero .sub{ color:#bfe0dc; font-size:1.06rem; margin:16px 0 22px; max-width:50ch; }
.lg-ticks{ list-style:none; padding:0; margin:0 0 24px; display:grid; gap:11px; }
.lg-ticks li{ display:flex; gap:11px; align-items:flex-start; color:#e7f4f2; font-weight:500; }
.lg-ticks .t{ flex:0 0 auto; width:22px; height:22px; border-radius:50%; background:rgba(255,255,255,.14); display:grid; place-items:center; color:#7fe3d6; }
.lg-ticks .t svg{ width:13px; height:13px; }
.offer-badge{ display:inline-flex; align-items:center; gap:8px; background:var(--cta); color:#fff; font-weight:700; font-size:.92rem; padding:8px 16px; border-radius:30px; margin-bottom:18px; box-shadow:0 8px 20px rgba(255,122,51,.35); }
.lg-cta-row{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.call-btn{ display:inline-flex; align-items:center; gap:9px; font-weight:700; color:#fff; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.28); padding:13px 20px; border-radius:8px; }
.call-btn:hover{ background:rgba(255,255,255,.2); transform:translateY(-2px); }
.lg-reviews{ margin-top:18px; font-size:.9rem; color:#bfe0dc; }
.lg-reviews a{ color:#fff; text-decoration:underline; }
.lg-reviews .stars{ color:#ffc24b; letter-spacing:2px; }

/* hero quote form card */
.quote-hero{ background:#fff; border-radius:16px; padding:28px 26px; box-shadow:0 30px 70px rgba(0,0,0,.30); color:var(--ink); }
.quote-hero h2{ font-weight:800; font-size:1.5rem; color:var(--ink); margin-bottom:3px; }
.quote-hero .qh-sub{ color:var(--muted); font-size:.9rem; margin-bottom:18px; }
.quote-hero .qh-field{ margin-bottom:12px; }
.quote-hero label{ display:block; font-size:.8rem; font-weight:600; color:var(--body); margin-bottom:5px; }
.quote-hero input, .quote-hero select{ width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:8px; font-size:.95rem; font-family:inherit; background:#fff; color:var(--ink); }
.quote-hero input:focus, .quote-hero select:focus{ outline:none; border-color:var(--gold); }
.quote-hero .qh-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.quote-hero .qh-field.err input, .quote-hero .qh-field.err select{ border-color:#e0533c; }
.qh-consent{ display:flex; gap:9px; align-items:flex-start; margin:4px 0 14px; font-size:.78rem; color:var(--muted); }
.qh-consent input{ width:16px; height:16px; margin-top:2px; flex:0 0 auto; accent-color:var(--gold); }
.qh-consent a{ color:var(--gold-deep); font-weight:600; }
.quote-hero .btn-cta{ width:100%; font-size:1rem; padding:15px; }
.qh-trust{ text-align:center; font-size:.78rem; color:var(--muted); margin-top:12px; }
.qh-done{ display:none; background:#e8f7f3; border:1px solid #b9e6da; color:#0c7a5e; border-radius:8px; padding:16px; font-size:.92rem; text-align:center; }

/* sticky mobile call/quote bar */
.sticky-call{ display:none; }
@media (max-width:720px){
  .sticky-call{ display:grid; grid-template-columns:1fr 1fr; position:fixed; left:0; right:0; bottom:0; z-index:95; box-shadow:0 -4px 20px rgba(0,0,0,.20); }
  .sticky-call a{ padding:15px; text-align:center; font-weight:700; color:#fff; font-size:.95rem; }
  .sticky-call .sc-call{ background:var(--gold-deep); }
  .sticky-call .sc-quote{ background:var(--cta); }
  body{ padding-bottom:54px; }
}

.call-btn svg{ width:26px; height:26px; flex:0 0 auto; }
.lg-cta-row .call-btn{ line-height:1.2; }

/* ============================================================
   FOOTER trust elements
   ============================================================ */
.footer-badges{ list-style:none; padding:0; margin:16px 0 0; display:flex; flex-wrap:wrap; gap:8px; }
.footer-badges li{ font-size:.72rem; font-weight:600; letter-spacing:.03em; color:#cfe7e3; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); padding:5px 11px; border-radius:30px; }
.footer-pay{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; justify-content:center; padding:22px 0 6px; border-top:1px solid rgba(255,255,255,.12); margin-top:8px; }
.pay-label{ font-size:.8rem; font-weight:600; color:#cfe7e3; letter-spacing:.04em; }
.pay-pills{ list-style:none; display:flex; flex-wrap:wrap; gap:8px; padding:0; margin:0; justify-content:center; }
.pay-pills li{ font-size:.72rem; font-weight:700; letter-spacing:.02em; color:#0f2e36; background:#eef7f7; padding:7px 12px; border-radius:6px; box-shadow:0 1px 0 rgba(0,0,0,.05); }
.footer-acknowledge{ display:flex; align-items:center; gap:16px; justify-content:center; flex-wrap:wrap; padding:18px 0 4px; max-width:760px; margin:0 auto; text-align:center; }
.footer-acknowledge .ack-flags{ display:flex; gap:8px; flex:0 0 auto; }
.footer-acknowledge img{ width:46px; height:auto; border-radius:3px; display:block; }
.footer-acknowledge p{ font-size:.8rem; color:#bcd6d2; line-height:1.5; margin:0; max-width:560px; }
@media (max-width:600px){ .footer-acknowledge{ flex-direction:column; gap:10px; } }

/* mobile menu CTA */
.nav-cta{ display:none; }
@media (max-width:900px){
  .nav.open{ max-height:460px; }
  .nav-cta{ display:block; margin:14px var(--gut) 18px; background:var(--cta); color:#fff !important; text-align:center; padding:14px; border-radius:8px; font-weight:700; border-bottom:none !important; }
  .nav-cta:hover{ background:var(--cta-deep); color:#fff !important; }
  .nav-cta::after{ display:none; }
}

/* ============================================================
   Our cleaning services — rebuilt cards
   ============================================================ */
.svc-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.svc-card{ position:relative; background:#fff; border:1px solid var(--line); border-radius:16px; padding:30px 26px 24px; display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.svc-card:hover{ transform:translateY(-6px); box-shadow:0 26px 50px -30px rgba(14,58,68,.42); border-color:var(--gold-soft); }
.svc-card.feat{ border:2px solid var(--cta); }
.svc-tag{ position:absolute; top:-12px; left:26px; background:var(--cta); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.03em; padding:5px 13px; border-radius:30px; box-shadow:0 6px 14px rgba(255,122,51,.3); }
.svc-ic{ width:54px; height:54px; border-radius:14px; background:var(--cream); color:var(--gold-deep); display:grid; place-items:center; margin-bottom:18px; }
.svc-ic svg{ width:26px; height:26px; }
.svc-card.feat .svc-ic{ background:var(--cta); color:#fff; }
.svc-card h3{ font-family:var(--serif); font-weight:700; font-size:1.16rem; color:var(--ink); margin-bottom:9px; line-height:1.2; }
.svc-card p{ font-size:.9rem; color:var(--body); line-height:1.6; flex:1; margin:0; }
.svc-foot{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:20px; padding-top:16px; border-top:1px solid var(--line); }
.svc-price{ font-weight:700; color:var(--gold-deep); font-size:.92rem; }
.svc-card.feat .svc-price{ color:var(--cta-deep); }
.svc-link{ font-size:.85rem; font-weight:600; color:var(--ink); display:inline-flex; gap:5px; align-items:center; white-space:nowrap; }
.svc-link span{ color:var(--gold); transition:transform .2s ease; }
.svc-link:hover span{ transform:translateX(4px); }
.svc-cta-row{ display:flex; gap:14px; justify-content:center; margin-top:38px; flex-wrap:wrap; }
.btn-outline-dark{ border:1.5px solid var(--ink); color:var(--ink); background:transparent; }
.btn-outline-dark:hover{ background:var(--ink); color:#fff; }
@media (max-width:900px){ .svc-cards{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .svc-cards{ grid-template-columns:1fr; max-width:400px; margin-inline:auto; } }

/* before/after gallery */
.ba-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.ba-item{ margin:0; border-radius:14px; overflow:hidden; background:#fff; border:1px solid var(--line); }
.ba-item img{ width:100%; aspect-ratio:5/2.8; object-fit:cover; display:block; }
.ba-item figcaption{ padding:13px 16px; font-weight:600; color:var(--ink); font-size:.92rem; text-align:center; }
@media (max-width:820px){ .ba-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:540px){ .ba-grid{ grid-template-columns:1fr; max-width:420px; margin-inline:auto; } }
/* guarantee seal image */
.seal-img{ width:128px; height:128px; flex:0 0 auto; }
@media (max-width:700px){ .seal-img{ width:104px; height:104px; } }
/* reviews rating line */
.review-rating{ text-align:center; margin:14px auto 0; color:var(--body); font-size:.98rem; max-width:60ch; }
.review-rating .stars{ color:#ffc24b; letter-spacing:2px; margin-right:6px; }
.review-rating a{ color:var(--gold-deep); font-weight:600; white-space:nowrap; }

/* checklist + suburb CTA block */
.checklist-cta{ background:var(--dark-teal,#0e3a44); background:var(--espresso); color:#fff; border-radius:16px; padding:32px 28px; text-align:center; margin-top:36px; }
.checklist-cta h3{ color:#fff; font-family:var(--serif); font-weight:700; font-size:1.4rem; margin-bottom:8px; }
.checklist-cta p{ color:#cfe7e3; margin-bottom:6px; max-width:52ch; margin-inline:auto; }
.section.cream .check-list li, .section.cream2 .check-list li{ }
/* footer suburbs row */
.footer-suburbs{ display:flex; flex-wrap:wrap; align-items:center; gap:8px 14px; justify-content:center; padding:20px 0 4px; border-top:1px solid rgba(255,255,255,.12); margin-top:8px; font-size:.85rem; }
.footer-suburbs .fs-label{ color:#9fc4be; font-weight:600; }
.footer-suburbs a{ color:#cfe7e3; }
.footer-suburbs a:hover{ color:#fff; }
.footer-suburbs .fs-sep{ color:#3a6068; }
.footer-suburbs .fs-guide{ color:var(--gold-soft); font-weight:600; }

/* ============================================================
   Header rework — less templated, real-business feel
   ============================================================ */
.topbar{ background:#0b2e36; color:#bcd6d2; font-size:.82rem; }
.topbar-inner{ display:flex; align-items:center; justify-content:space-between; min-height:38px; }
.topbar-inner .tb-right{ display:flex; align-items:center; gap:18px; }
.tb-trust{ color:#8fb8b2; }
.tb-phone{ display:inline-flex; align-items:center; gap:7px; color:#fff; font-weight:600; }
.tb-phone svg{ width:15px; height:15px; }
/* nav: normal case instead of tracked caps */
.nav a{ text-transform:none; letter-spacing:normal; font-weight:600; font-size:.92rem; }
/* logo: solid badge mark + single-line wordmark */
.brand-mark{ width:42px; height:42px; border-radius:11px; background:var(--gold); color:#fff; display:grid; place-items:center; }
.brand-mark svg{ width:24px; height:24px; }
.brand-name{ font-size:1.34rem; font-weight:800; letter-spacing:-.01em; line-height:1.05; }
.brand-name .accent{ color:var(--gold-soft); }
.brand--light .brand-name .accent{ color:var(--gold-soft); }
/* header phone block */
.header-phone{ display:inline-flex; align-items:center; gap:8px; margin-left:14px; color:#f3ece1; }
.header-phone svg{ width:28px; height:28px; color:var(--gold-soft); flex:0 0 auto; }
.header-phone .hp-text{ display:flex; flex-direction:column; line-height:1.15; }
.header-phone small{ font-size:.68rem; color:#9fc4be; letter-spacing:.02em; }
.header-phone b{ font-size:1.06rem; font-weight:700; color:#fff; }
.header-cta{ margin-left:10px; }
@media (max-width:1200px){ .header-phone{ display:none; } }
@media (max-width:720px){ .topbar .tb-left, .topbar .tb-trust{ display:none; } .topbar-inner{ justify-content:center; } }
.nav a{ white-space:nowrap; }
.header-phone b{ white-space:nowrap; }
.tb-phone{ white-space:nowrap; }

/* wordmark-only logo + one-line header CTA */
.brand{ gap:0; }
.brand-name{ font-size:1.42rem; }
.brand-name .accent{ color:var(--gold); }
.brand--light .brand-name{ color:#f3ece1; }
.brand--light .brand-name .accent{ color:var(--gold-soft); }
.header-cta{ white-space:nowrap; }
.brand-name{ white-space:nowrap; }

/* ============================================================
   Services page — clean icon detail cards
   ============================================================ */
.svc-detail{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:30px 30px 26px; margin-bottom:20px; scroll-margin-top:96px; }
.svc-detail.feat{ border:2px solid var(--cta); }
.svc-detail-top{ display:flex; align-items:center; gap:16px; }
.svc-detail .svc-ic{ width:56px; height:56px; border-radius:14px; background:var(--cream); color:var(--gold-deep); display:grid; place-items:center; flex:0 0 auto; margin:0; }
.svc-detail .svc-ic svg{ width:27px; height:27px; }
.svc-detail.feat .svc-ic{ background:var(--cta); color:#fff; }
.svc-detail-head{ flex:1; min-width:0; }
.svc-detail-kicker{ font-size:.72rem; letter-spacing:.13em; text-transform:uppercase; color:var(--gold-deep); font-weight:600; margin:0 0 3px; }
.svc-detail-head h2{ font-size:1.4rem; margin:0; color:var(--ink); line-height:1.15; }
.svc-detail-price{ flex:0 0 auto; font-weight:700; color:var(--gold-deep); background:var(--cream); border-radius:30px; padding:8px 16px; font-size:.9rem; white-space:nowrap; }
.svc-detail.feat .svc-detail-price{ background:var(--cta); color:#fff; }
.svc-detail-desc{ color:var(--body); margin:20px 0 18px; line-height:1.65; max-width:72ch; }
.svc-detail-list{ list-style:none; padding:0; margin:0 0 20px; display:grid; grid-template-columns:1fr 1fr; gap:11px 26px; }
.svc-detail-list li{ position:relative; padding-left:27px; color:var(--ink); font-size:.93rem; }
.svc-detail-list li::before{ content:""; position:absolute; left:0; top:2px; width:17px; height:17px; border-radius:50%; background:var(--gold); }
.svc-detail-list li::after{ content:""; position:absolute; left:5.5px; top:5.5px; width:5px; height:8px; border:solid #fff; border-width:0 2px 2px 0; transform:rotate(45deg); }
.svc-detail-cta{ display:inline-flex; align-items:center; gap:6px; font-weight:600; color:var(--ink); }
.svc-detail-cta:hover{ color:var(--gold-deep); }
@media (max-width:640px){ .svc-detail{ padding:24px 22px; } .svc-detail-list{ grid-template-columns:1fr; } .svc-detail-top{ flex-wrap:wrap; } .svc-detail-price{ order:3; margin-left:72px; } }

/* serve-grid: all six on one row */
.serve-grid{ grid-template-columns:repeat(6,1fr); gap:13px; }
.serve-item{ padding:22px 11px; }
.serve-item h3{ font-size:.95rem; }
.serve-item p{ font-size:.8rem; }
@media (max-width:1080px){ .serve-grid{ grid-template-columns:repeat(3,1fr); max-width:740px; margin-inline:auto; } }
@media (max-width:600px){ .serve-grid{ grid-template-columns:1fr 1fr; } }

/* form success / thank-you panel */
.form-success{ text-align:center; padding:16px 4px; }
.form-success .fs-check{ display:inline-grid; place-items:center; width:54px; height:54px; border-radius:50%; background:var(--gold); color:#fff; margin-bottom:12px; }
.form-success .fs-check svg{ width:28px; height:28px; }
.form-success h3{ font-family:var(--serif); font-weight:700; font-size:1.35rem; color:var(--ink); margin:0 0 6px; }
.form-success .fs-msg{ color:var(--body); margin:0 auto; line-height:1.6; max-width:42ch; }

/* hide the (empty) top bar on mobile so the header starts at the logo */
@media (max-width:720px){ .topbar{ display:none; } }

/* ============================================================
   Instant price estimator
   ============================================================ */
.estimator{ display:grid; grid-template-columns:1.25fr 1fr; background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden; max-width:900px; margin:36px auto 0; box-shadow:0 30px 60px -40px rgba(14,58,68,.4); }
.est-controls{ padding:32px 30px; display:flex; flex-direction:column; gap:24px; }
.est-group{ display:flex; flex-direction:column; gap:10px; }
.est-label-sm{ font-size:.74rem; letter-spacing:.13em; text-transform:uppercase; color:var(--gold-deep); font-weight:600; }
.est-opts{ display:flex; gap:8px; flex-wrap:wrap; }
.est-opts button{ flex:1; min-width:50px; padding:11px 6px; border:1.5px solid var(--line); background:#fff; border-radius:10px; font-weight:600; color:var(--ink); cursor:pointer; transition:all .15s ease; font-size:.95rem; font-family:inherit; }
.est-opts button:hover{ border-color:var(--gold-soft); }
.est-opts button.active{ background:var(--gold); border-color:var(--gold); color:#fff; }
.est-addons{ display:flex; flex-direction:column; gap:11px; }
.est-check{ display:flex; align-items:center; gap:10px; font-size:.95rem; color:var(--ink); cursor:pointer; }
.est-check input{ width:18px; height:18px; accent-color:var(--gold); cursor:pointer; }
.est-result{ background:var(--espresso); color:#fff; padding:34px 28px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:7px; }
.est-from{ font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:#9fc4be; }
.est-total{ font-family:var(--serif); font-weight:800; font-size:3.1rem; line-height:1; color:#fff; }
.est-note{ font-size:.78rem; color:#bcd6d2; line-height:1.5; max-width:30ch; margin-bottom:12px; }
.est-result .btn{ width:100%; }
@media (max-width:720px){ .estimator{ grid-template-columns:1fr; max-width:460px; } }

/* photo uploader */
.field .opt{ font-weight:400; color:var(--body); font-size:.85em; }
.photo-uploader{ margin-top:4px; }
.photo-drop{ width:100%; display:flex; flex-direction:column; align-items:center; gap:6px; text-align:center; padding:24px 18px; border:2px dashed var(--line); border-radius:14px; background:var(--cream); color:var(--ink); cursor:pointer; transition:border-color .15s ease, background .15s ease; font-family:inherit; }
.photo-drop:hover{ border-color:var(--gold); background:#fff; }
.photo-ic{ width:46px; height:46px; border-radius:12px; background:var(--gold); color:#fff; display:grid; place-items:center; }
.photo-ic svg{ width:24px; height:24px; }
.photo-cta{ font-weight:600; font-size:1rem; }
.photo-drop small{ color:var(--body); font-size:.82rem; line-height:1.5; max-width:36ch; }
.photo-previews{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.photo-thumb{ position:relative; width:84px; height:84px; border-radius:10px; overflow:hidden; border:1px solid var(--line); }
.photo-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.photo-thumb button{ position:absolute; top:3px; right:3px; width:22px; height:22px; border:none; border-radius:50%; background:rgba(14,58,68,.85); color:#fff; font-size:15px; line-height:1; cursor:pointer; display:grid; place-items:center; }
.photo-thumb button:hover{ background:var(--cta); }

/* ============================================================
   Commercial: sector grid, two-col list, home band
   ============================================================ */
.serve-grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:880px){ .serve-grid-4{ grid-template-columns:1fr 1fr; max-width:560px; margin-inline:auto; } }
@media (max-width:460px){ .serve-grid-4{ grid-template-columns:1fr; max-width:360px; } }
.check-list.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:12px 28px; }
@media (max-width:640px){ .check-list.two-col{ grid-template-columns:1fr; } }

/* home commercial band */
.commercial-band{ background:var(--espresso); }
.commercial-inner{ display:grid; grid-template-columns:1.35fr 1fr; gap:46px; align-items:center; }
.commercial-copy .eyebrow.gold{ color:var(--gold-soft); }
.commercial-copy h2{ color:#fff; margin:8px 0 14px; }
.commercial-copy p{ color:#cfe7e3; line-height:1.7; max-width:54ch; }
.commercial-ticks{ list-style:none; padding:0; margin:18px 0 24px; display:flex; flex-direction:column; gap:10px; }
.commercial-ticks li{ position:relative; padding-left:28px; color:#e7f4f2; }
.commercial-ticks li::before{ content:""; position:absolute; left:0; top:3px; width:17px; height:17px; border-radius:50%; background:var(--gold); }
.commercial-ticks li::after{ content:""; position:absolute; left:5.5px; top:6.5px; width:5px; height:8px; border:solid var(--espresso); border-width:0 2px 2px 0; transform:rotate(45deg); }
.commercial-cta{ display:flex; gap:12px; flex-wrap:wrap; }
.btn-ghost-light{ border:1.5px solid rgba(255,255,255,.4); color:#fff; background:transparent; }
.btn-ghost-light:hover{ background:rgba(255,255,255,.1); border-color:#fff; }
.commercial-sectors{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cs-item{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; text-align:center; padding:26px 14px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:14px; color:#fff; font-weight:600; }
.cs-item span{ width:46px; height:46px; border-radius:12px; background:var(--gold); color:#fff; display:grid; place-items:center; }
.cs-item span svg{ width:24px; height:24px; }
@media (max-width:820px){ .commercial-inner{ grid-template-columns:1fr; gap:30px; } }

/* header: collapse nav to hamburger earlier (6 nav items need more room) */
@media (max-width:1024px){
  .menu-toggle{ display:flex; }
  .header-cta{ display:none; }
  .header-phone{ display:none; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0; background:var(--espresso);
    border-top:1px solid var(--line-dark);
    max-height:0; overflow:hidden; transition:max-height .3s ease;
    box-shadow:0 18px 32px -18px rgba(0,0,0,.55);
  }
  .nav.open{ max-height:80vh; overflow-y:auto; }
  .nav a{ padding:16px var(--gut); border-bottom:1px solid var(--line-dark); }
  .nav a::after{ display:none; }
}

/* tidy the top bar on tablet widths */
@media (max-width:1024px){ .topbar .tb-trust{ display:none; } }
@media (max-width:880px){ .topbar .tb-left{ display:none; } .topbar-inner{ justify-content:flex-end; } }

/* estimator inside the hero card */
.estimator-hero{ display:block; background:transparent; border:none; box-shadow:none; margin:0; max-width:none; border-radius:0; overflow:visible; }
.estimator-hero .est-controls{ padding:0; gap:16px; }
.estimator-hero .est-result{ background:var(--espresso); color:#fff; border-radius:14px; padding:16px 16px 18px; margin-top:16px; gap:12px; align-items:stretch; }
.estimator-hero .est-result-top{ display:flex; align-items:baseline; justify-content:space-between; width:100%; }
.estimator-hero .est-from{ font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:#9fc4be; }
.estimator-hero .est-total{ font-size:2.3rem; line-height:1; }
.estimator-hero .est-result .btn{ width:100%; }
.estimator-hero .est-note{ font-size:.74rem; color:#bcd6d2; text-align:center; max-width:none; margin:0 auto; }

/* keep "Studio" from clipping in the tight hero estimator on phones */
@media (max-width:520px){
  .est-opts button{ padding:11px 3px; font-size:.85rem; letter-spacing:-.01em; }
}
