/* ==========================================================================
   Cairns Aircon Installers — main stylesheet
   Modeled on evendenair.com.au (layout) + sunshinecoastaircon.com.au (content)
   ========================================================================== */

:root {
  --teal: #00a7c4;
  --teal-dark: #00819a;
  --teal-deep: #0b3c49;
  --navy: #14262f;
  --navy-2: #1b333e;
  --orange: #ee7114;
  --orange-dark: #d65f08;
  --amber: #f5a623;
  --ink: #2c3640;
  --body: #5a6570;
  --line: #e4e9ec;
  --bg-soft: #f4f8fa;
  --bg-softer: #fafcfd;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(20, 38, 47, 0.08);
  --shadow-md: 0 8px 28px rgba(20, 38, 47, 0.12);
  --shadow-lg: 0 18px 48px rgba(20, 38, 47, 0.18);
  --radius: 6px;
  --font-head: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Roboto", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--orange); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

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

.section { padding: 80px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 60px 0; }
.section--dark {
  background: linear-gradient(150deg, #0f2530 0%, #14323e 55%, #10465a 100%);
}
.section--dark p, .section--dark .lead { color: #9db4bd; }
.section--dark .review p, .section--dark .card p { color: var(--body); }
.section--dark .checklist li { color: #e2ecf1; }

/* --------------------------------------------------------------------------
   Section headings — "our SERVICES" pattern
   -------------------------------------------------------------------------- */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head .kicker {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: lowercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.sec-head h2 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.sec-head .bar {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
  margin: 18px auto 0;
}
.sec-head p.lead {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 17px;
}
.sec-head--left { text-align: left; }
.sec-head--left .bar { margin-left: 0; }
.sec-head--light h2 { color: var(--white); }
.sec-head--light .kicker { color: #8fe3f2; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
}
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--teal { background: var(--teal); color: var(--white); }
.btn--teal:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--navy); }
.btn--wide { width: 100%; }

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
  padding: 6px 0;
}
.topbar__left { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: var(--white); }
.topbar__item svg { width: 14px; height: 14px; fill: currentColor; }
.topbar__item a { color: var(--white); font-weight: 500; }
.topbar__item a:hover { color: var(--navy); }
.topbar__social { display: flex; align-items: center; gap: 10px; }
.topbar__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.18); color: var(--white);
}
.topbar__social a:hover { background: var(--navy); color: var(--white); }
.topbar__social svg { width: 13px; height: 13px; fill: currentColor; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(20, 38, 47, 0.07);
  position: sticky;
  top: 0;
  z-index: 300;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 66px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 12px;
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav > ul > li > a:hover::after,
.nav > ul > li.is-active > a::after { transform: scaleX(1); }
.nav a:hover { color: var(--ink); }

/* dropdown */
.nav li.has-sub { position: relative; }
.nav li.has-sub > a .caret {
  display: inline-block;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}
.nav .sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 6px 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.22s ease;
  z-index: 400;
}
.nav li.has-sub:hover .sub,
.nav li.has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .sub a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  border-left: 3px solid transparent;
}
.nav .sub a:hover { border-left-color: var(--teal); background: var(--bg-soft); color: var(--teal-dark); }

.header__phone { display: inline-flex; align-items: center; gap: 10px; }
.header__phone .btn { padding: 12px 20px; white-space: nowrap; font-size: 12px; letter-spacing: 1.4px; }
@media (max-width: 1500px) and (min-width: 901px) {
  .logo img { height: 56px; }
  .nav a { padding: 10px 8px; font-size: 11.5px; letter-spacing: 0.9px; }
  .header__phone .btn { padding: 11px 15px; font-size: 11.5px; letter-spacing: 1px; }
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--teal-deep);
  display: flex;
  align-items: stretch;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 34, 43, 0.82) 0%, rgba(11, 34, 43, 0.55) 45%, rgba(11, 34, 43, 0.25) 100%);
}
.hero__inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  min-height: 660px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero__copy { max-width: 600px; color: var(--white); }
.hero__copy .eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8fe3f2;
  margin-bottom: 18px;
  display: block;
}
.hero__copy h1, .hero__copy .h1 {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 30px;
}
.hero__copy h1 strong, .hero__copy .h1 strong { font-weight: 800; }
.hero__copy p { font-size: 18px; margin-bottom: 32px; color: rgba(255,255,255,0.88); max-width: 480px; }

/* slide copy swap */
.hero__texts { position: relative; }
.hero__text { display: none; }
.hero__text.is-active { display: block; animation: heroIn 0.7s ease both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* quote form card */
.quote-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 34px 30px;
  width: 380px;
  flex-shrink: 0;
}
.quote-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
}
.quote-card .sub {
  text-align: center;
  font-size: 13px;
  margin-bottom: 20px;
  color: var(--body);
}
.quote-card .field { margin-bottom: 12px; }
.quote-card input,
.quote-card select,
.quote-card textarea,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 167, 196, 0.15);
}
.quote-card textarea { resize: vertical; min-height: 84px; }
.quote-card select { appearance: none; -webkit-appearance: none; cursor: pointer; color: var(--ink);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%235a6570' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 11px; padding-right: 34px; }
.quote-card select:invalid { color: #9aa4ad; }
.form-note { font-size: 12px; color: #8a949d; margin-top: 10px; text-align: center; }
/* lead form: honeypot (hidden from people, visible to bots) + error message */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 4px;
  background: #fdecec;
  border: 1px solid #f0b4b4;
  color: #a02525;
  font-size: 13.5px;
  line-height: 1.5;
}

.form-success {
  display: none;
  background: #e7f8ee;
  border: 1px solid #9adbb4;
  color: #1e7a44;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  margin-top: 12px;
}
.form-success.is-visible { display: block; }

/* slider controls */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s ease;
}
.hero__arrow:hover { background: var(--orange); }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }
.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero__dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero__dots button.is-active { background: var(--orange); transform: scale(1.25); }

/* --------------------------------------------------------------------------
   Trust strip (badges under hero)
   -------------------------------------------------------------------------- */
.trust-strip {
  background: linear-gradient(115deg, #0f2027 0%, var(--navy) 45%, #0e4b5c 100%);
  color: var(--white);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 30px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 4px 26px;
}
.trust-item + .trust-item { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; }
.trust-item .ico {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 167, 196, 0.16);
  border: 1px solid rgba(79, 208, 230, 0.35);
  color: #5fd6ea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item .ico svg { width: 23px; height: 23px; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 3px;
}
.trust-item span:not(.ico) { font-size: 12.5px; line-height: 1.4; color: #9db4bd; display: block; }

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  width: 74px; height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3f6fa, #cdeff6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.card:hover .card__icon { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.card__icon svg { width: 38px; height: 38px; fill: var(--teal-dark); transition: fill 0.25s ease; }
.card:hover .card__icon svg { fill: var(--white); }
.card h3 { font-size: 17px; letter-spacing: 0.5px; margin-bottom: 14px; min-height: 44px; display:flex; align-items:center; justify-content:center; }
.card p { font-size: 14.5px; flex: 1; }
.card .more {
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.card .more:hover { color: var(--orange-dark); }
.card .more::after { content: " →"; }

/* photo-topped service cards (Sydney Heating & Cooling style) */
.card--photo { padding: 0; overflow: hidden; text-align: left; }
.card--photo .card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.card--photo .card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.card--photo:hover .card__media img { transform: scale(1.05); }
.card--photo .card__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card--photo h3 { min-height: 0; justify-content: flex-start; text-align: left; }

/* product-cutout media (transparent PNG on a light panel) */
.card--product .card__media {
  background: linear-gradient(160deg, #f6fafc, #e8f1f5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 34px;
}
.card--product .card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.card--product:hover .card__media img { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   What we do (image + checklist)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.checklist { display: grid; gap: 16px; margin-top: 8px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.checklist .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.split .btn { margin-top: 28px; }

/* --------------------------------------------------------------------------
   Brands section
   -------------------------------------------------------------------------- */
.brand-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.brand-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 28px;
  text-align: center;
  transition: all 0.25s ease;
}
.brand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.brand-card .wordmark {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 4px;
}
.brand-card .tag {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.brand-card p { font-size: 14.5px; }

/* --------------------------------------------------------------------------
   Comparison (ducted vs split)
   -------------------------------------------------------------------------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 8px; }
.compare__col {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.compare__col header {
  background: var(--navy);
  color: var(--white);
  padding: 20px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
}
.compare__col.is-teal header { background: var(--teal-dark); }
.compare__col ul { padding: 22px 26px; display: grid; gap: 12px; }
.compare__col li { display: flex; gap: 12px; font-size: 15px; }
.compare__col li::before { content: "✓"; color: var(--teal); font-weight: 700; }
.compare__verdict {
  grid-column: 1 / -1;
  background: #fff6ee;
  border: 1px solid #f7d4b4;
  border-radius: 8px;
  padding: 24px 28px;
  font-size: 15.5px;
  color: var(--ink);
}
.compare__verdict strong { color: var(--orange-dark); }

/* --------------------------------------------------------------------------
   Numbered steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; counter-reset: step; }
.steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 22px 24px;
  position: relative;
  transition: all 0.25s ease;
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 15px; margin-bottom: 10px; letter-spacing: 0.3px; }
.step p { font-size: 14px; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.review {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.review:hover { box-shadow: var(--shadow-md); }
.review .quote-mark {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.6;
  color: var(--teal);
  margin-bottom: 16px;
}
.review p { font-size: 14.5px; flex: 1; font-style: italic; }
.review footer { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.review .who strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--ink); }
.review .who span { font-size: 13px; color: #8a949d; }
.review .stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; white-space: nowrap; }
.review .stars small { color: var(--body); font-size: 12px; letter-spacing: 0; margin-left: 4px; }

/* --------------------------------------------------------------------------
   Guarantee band
   -------------------------------------------------------------------------- */
.guarantee {
  background: linear-gradient(120deg, #0e4b5c 0%, var(--teal-dark) 45%, var(--teal) 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}
.guarantee blockquote {
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 860px;
  margin: 0 auto;
}
.guarantee blockquote strong { font-weight: 700; }
.guarantee .sub {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-head);
  color: #cdeff6;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery a:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(11, 34, 43, 0.85));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 26px 16px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery a:hover figcaption { opacity: 1; }

/* featured layout: real job photos, first + last tiles span two rows */
.gallery--featured { grid-auto-rows: 250px; }
.gallery--featured a { aspect-ratio: auto; }
.gallery--featured .tall { grid-row: span 2; }
.gallery--featured figcaption { opacity: 1; }

/* single wide feature photo */
.gallery--single { grid-template-columns: minmax(0, 1fr); }
.gallery--single a { aspect-ratio: 16 / 7; }
.gallery--single figcaption { opacity: 1; font-size: 14px; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding: 20px 56px 20px 24px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
.faq__q:hover { color: var(--teal-dark); }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__a-inner { padding: 0 24px 22px; font-size: 15px; }
.faq__a-inner p + p { margin-top: 12px; }

/* --------------------------------------------------------------------------
   Blog cards
   -------------------------------------------------------------------------- */
.posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.post-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card time {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.post-card h3 { font-size: 17px; margin-bottom: 10px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--teal-dark); }
.post-card p { font-size: 14px; flex: 1; }
.post-card .more {
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.post-card .more::after { content: " →"; }

/* --------------------------------------------------------------------------
   Partners strip
   -------------------------------------------------------------------------- */
.partners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.partner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-align: center;
  padding: 22px 26px;
}
.partner img {
  max-height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: all 0.25s ease;
}
.partner:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.partner:hover img { filter: grayscale(0); opacity: 1; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-2) 60%, #0e4b5c 100%);
  color: var(--white);
  padding: 64px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-band p { color: #9db4bd; margin-top: 8px; font-size: 16px; }
.cta-band__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(110deg, rgba(11, 34, 43, 0.88), rgba(11, 60, 73, 0.72)), var(--teal-deep);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 167, 196, 0.25), transparent 70%);
}
.page-hero h1 {
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.page-hero .crumbs {
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8fe3f2;
}
.page-hero .crumbs a { color: #8fe3f2; }
.page-hero .crumbs a:hover { color: var(--white); }
.page-hero .crumbs span { color: rgba(255,255,255,0.55); margin: 0 8px; }

/* page hero with a compact quote form alongside the headline */
.page-hero--quote { padding: 54px 0 50px; }
.page-hero--quote .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: center;
}
.page-hero--quote .page-hero__copy { position: relative; z-index: 2; max-width: 620px; min-width: 0; }
.page-hero--quote h1 { font-size: 36px; line-height: 1.18; }
.page-hero--quote .page-hero__copy p.intro {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 520px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 20px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #cfe6ee;
}
.hero-trust span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* compact variant of the quote card */
.quote-card--compact {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  padding: 26px 24px 24px;
}
.quote-card--compact h3 { font-size: 16px; letter-spacing: 2px; margin-bottom: 4px; }
.quote-card--compact .sub { font-size: 12.5px; margin-bottom: 16px; line-height: 1.45; }
.quote-card--compact .field { margin-bottom: 10px; }
.quote-card--compact input { padding: 11px 13px; font-size: 13.5px; }
.quote-card--compact .btn { padding: 13px 20px; font-size: 12px; }
.quote-card--compact .form-note { font-size: 11px; margin-top: 8px; }

@media (max-width: 980px) {
  .page-hero--quote { padding: 44px 0 44px; }
  .page-hero--quote .container { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .page-hero--quote .page-hero__copy { max-width: 100%; }
  .page-hero--quote h1 { font-size: 30px; }
  .quote-card--compact { max-width: 440px; }
}

@media (max-width: 620px) {
  .page-hero.page-hero--quote { padding: 30px 0 34px; }
  .page-hero--quote .container { gap: 22px; }
  .page-hero.page-hero--quote h1 { font-size: 25px; letter-spacing: 0.2px; line-height: 1.22; }
  .page-hero--quote .page-hero__copy p.intro { font-size: 14.5px; margin-top: 10px; }
  .hero-trust { gap: 8px 16px; margin-top: 16px; }
  .hero-trust span { font-size: 11.5px; }
  .quote-card--compact { max-width: 100%; padding: 22px 20px 20px; }
  .page-hero--quote .quote-card--compact .form-note { margin-bottom: 4px; }
}

/* landing pages (suburb): no phone chrome — the sticky call bar carries the call CTA */
.landing .header__phone { display: none; }
.landing .widget--cta h4 { margin-bottom: 18px; }
.landing .cta-band__actions .btn--ghost { display: none; }
.landing .mobile-call { display: none; }
.landing body, body.landing { padding-bottom: 0; }

/* section with a faded photo behind the content */
.section--photo {
  position: relative;
  background-image: url("../images/photos/new-home-cairns.jpg");
  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
}
.section--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.86), rgba(240, 247, 250, 0.9));
}
.section--photo > .container { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .section--photo::before { background: linear-gradient(rgba(255,255,255,0.93), rgba(240,247,250,0.95)); }
}

/* --------------------------------------------------------------------------
   Prose / article content
   -------------------------------------------------------------------------- */
.prose { max-width: 800px; }
.prose--center { margin: 0 auto; }
.prose h2 { font-size: 26px; margin: 40px 0 16px; }
.prose h3 { font-size: 20px; margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 4px solid var(--teal);
  background: var(--bg-soft);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--ink);
}
.prose .callout {
  background: #fff6ee;
  border: 1px solid #f7d4b4;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}
.prose .callout strong { color: var(--orange-dark); }

/* --------------------------------------------------------------------------
   Service page layout
   -------------------------------------------------------------------------- */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.sidebar { display: grid; gap: 26px; position: sticky; top: 110px; }
.widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 24px;
}
.widget h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.widget ul { display: grid; gap: 4px; }
.widget ul a {
  display: block;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink);
  border-left: 3px solid transparent;
}
.widget ul a:hover, .widget ul li.is-active a {
  background: var(--bg-soft);
  border-left-color: var(--orange);
  color: var(--teal-dark);
}
.widget--cta {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  text-align: center;
  border: 0;
}
.widget--cta h4 { color: var(--white); border-color: var(--white); }
.widget--cta p { font-size: 14px; color: #d9f4fa; margin-bottom: 18px; }
.widget--cta .phone-big {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

/* feature list on service pages */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.feature {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature .tick {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.feature strong { display: block; color: var(--ink); font-size: 15px; }
.feature span { font-size: 13.5px; }

/* --------------------------------------------------------------------------
   Specials
   -------------------------------------------------------------------------- */
.specials-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.special {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.special:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.special__banner {
  background: linear-gradient(120deg, var(--orange), var(--amber));
  color: var(--white);
  padding: 28px 28px;
}
.special__banner .price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}
.special__banner .label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 6px;
}
.special--teal .special__banner { background: linear-gradient(120deg, var(--teal-dark), var(--teal)); }
.special__body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.special__body h3 { font-size: 19px; margin-bottom: 10px; }
.special__body p { font-size: 14.5px; flex: 1; }
.special__body ul { margin: 14px 0 0; display: grid; gap: 8px; }
.special__body li { display: flex; gap: 10px; font-size: 14px; }
.special__body li::before { content: "✓"; color: var(--teal); font-weight: 700; }
.special__body .btn { margin-top: 22px; align-self: flex-start; }
.special .fineprint { font-size: 11.5px; color: #99a3ab; margin-top: 14px; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 36px 32px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .field { margin-bottom: 14px; }
.contact-form label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.info-blocks { display: grid; gap: 20px; }
.info-block {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
  align-items: flex-start;
}
.info-block .ico {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3f6fa, #cdeff6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-block .ico svg { width: 24px; height: 24px; fill: var(--teal-dark); }
.info-block h4 { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.info-block p, .info-block a { font-size: 15px; }
.map-placeholder {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
  background: var(--bg-soft);
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* service area chips */
.areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas a, .areas span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}
.areas a:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--bg-soft); }
.areas a small { display: block; font-size: 10.5px; letter-spacing: 1.5px; color: #93a1aa; font-weight: 600; }
.areas a:hover small { color: var(--teal); }

.area-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.area-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 26px;
}
.area-group h3 {
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
}
.area-group ul { display: grid; gap: 2px; }
.area-group a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  border-left: 3px solid transparent;
}
.area-group a:hover { background: var(--bg-soft); border-left-color: var(--orange); color: var(--teal-dark); }
.area-group a em {
  font-style: normal;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: #93a1aa;
}
@media (max-width: 900px) { .area-groups { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--navy); color: #9db4bd; font-size: 14.5px; }
.footer__main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 64px 0 48px;
}
.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.footer__about img { height: 62px; margin-bottom: 20px; }
.footer__about p { margin-bottom: 16px; }
.footer a { color: #9db4bd; }
.footer a:hover { color: var(--white); }
.footer ul { display: grid; gap: 10px; }
.footer ul a { display: inline-block; }
.footer__links a::before { content: "› "; color: var(--orange); }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 12px; }
.footer__contact svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; margin-top: 5px; }
.footer .hours { display: grid; gap: 8px; }
.footer .hours li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed rgba(255,255,255,0.12); padding-bottom: 8px; }
.footer .hours span:last-child { color: var(--white); }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bar .abn { color: #6d838d; }

/* sticky mobile call button */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: calc(100vw - 36px);
  z-index: 500;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
}
.mobile-call:hover { color: var(--white); background: var(--orange-dark); }

/* --------------------------------------------------------------------------
   Suburb pages — indicative price cards + local factors
   -------------------------------------------------------------------------- */
.price-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 30px 0 8px; }
.price-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 26px 24px;
  text-align: center;
  transition: all 0.25s ease;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.price-card .label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.price-card .amount {
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}
.price-card .note { font-size: 13px; margin-top: 8px; }
.price-fineprint { font-size: 12.5px; color: #8a949d; margin-top: 14px; }

.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.local-item {
  background: var(--bg-soft);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 20px 22px;
}
.local-item strong { display: block; color: var(--ink); font-size: 15.5px; margin-bottom: 4px; }
.local-item span { font-size: 14px; }

.nearby { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby a {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 15px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.nearby a:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--bg-soft); }

@media (max-width: 900px) {
  .price-cards { grid-template-columns: minmax(0, 1fr); }
  .local-grid { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; }
  .trust-item:nth-child(odd) { padding-left: 0; }
  .trust-item:nth-child(3) { border-left: 0; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .hero__copy h1, .hero__copy .h1 { font-size: 38px; }
  .service-layout { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    background: var(--navy);
    padding: 90px 0 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 350;
  }
  .nav.is-open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,0.3); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { color: var(--white); padding: 15px 28px; display: block; }
  .nav > ul > li > a::after { display: none; }
  .nav > ul > li.is-active > a { color: var(--orange); }
  .nav .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .nav .sub a { color: #9db4bd; padding: 12px 28px 12px 44px; }
  .nav-toggle { display: block; z-index: 400; position: relative; }
  .nav-toggle.is-open span { background: var(--white); }
  .header__phone { display: none; }
  .hero__inner { flex-direction: column; justify-content: center; text-align: center; gap: 36px; }
  .hero__copy { width: 100%; max-width: 640px; }
  .hero__copy p { margin-left: auto; margin-right: auto; }
  .hero { min-height: 0; }
  .hero__inner { min-height: 0; padding-top: 70px; padding-bottom: 90px; }
  .quote-card { width: 100%; max-width: 420px; }
  .split { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .compare { grid-template-columns: minmax(0, 1fr); }
  .brand-cards, .cards--3 { grid-template-columns: minmax(0, 1fr); }
  .specials-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
  .posts { grid-template-columns: minmax(0, 1fr); }
  .partners { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__arrow { display: none; }
  .feature-grid { grid-template-columns: minmax(0, 1fr); }
  .section { padding: 60px 0; }
}

@media (max-width: 620px) {
  .topbar__inner { justify-content: center; }
  .topbar__right, .topbar__hours, .topbar__social { display: none; }
  .hero__copy h1, .hero__copy .h1 { font-size: 28px; letter-spacing: 2px; }
  .sec-head h2 { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
  .cards, .steps, .reviews, .trust-strip__inner { grid-template-columns: minmax(0, 1fr); }
  .trust-strip__inner { gap: 20px; }
  .trust-item { padding: 0; }
  .trust-item + .trust-item { border-left: 0; }
  .footer__main { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .gallery { grid-template-columns: minmax(0, 1fr); }
  .contact-form .row { grid-template-columns: minmax(0, 1fr); }
  .sidebar { grid-template-columns: minmax(0, 1fr); }
  .cta-band h2 { font-size: 24px; }
  .guarantee blockquote { font-size: 21px; }
  .mobile-call { display: block; }
  body { padding-bottom: 70px; }
  .prose h2 { font-size: 20px; line-height: 1.32; margin: 32px 0 14px; }
  .prose h3 { font-size: 17px; }
  .prose p, .prose li { font-size: 15px; }
}
