/* ============================================================
   Prestige Property Care Sydney — shared site styles
   Used by: index.html and all /services/ pages
   ============================================================ */

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Mulish, system-ui, sans-serif;
  color: #33474a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: Montserrat, sans-serif;
  margin: 0;
}
p {
  margin: 0;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
input::placeholder,
textarea::placeholder {
  color: #9fb1b1;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible {
  outline: 3px solid #1b5562;
  outline-offset: 2px;
  border-radius: 6px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 200;
  background: #143f48;
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 0;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- media / image placeholders ---------- */
.media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #dce9e9, #eef5f5);
  display: block;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(20, 63, 72, 0.04),
    rgba(20, 63, 72, 0)
  );
}

/* ---------- header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6efef;
}
.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.brand img {
  height: 38px;
  width: auto;
}
.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.brand .name .n1 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #163f48;
}
.brand .name .n2 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #2a7d8c;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navlink {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #33474a;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.navlink:hover {
  color: #1b5562;
  background: #f0f6f6;
}
.navphone {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #1b5562;
  padding: 8px 12px;
  margin-left: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  font-family: Montserrat;
  font-weight: 700;
  transition:
    background 0.15s,
    border-color 0.15s,
    box-shadow 0.15s;
}
.btn-primary {
  background: #1b5562;
  color: #fff;
  box-shadow: 0 10px 24px rgba(27, 85, 98, 0.24);
}
.btn-primary:hover {
  background: #143f48;
}
.btn-ghost {
  background: #fff;
  color: #1b5562;
  border: 1.5px solid #cfe0e0;
}
.btn-ghost:hover {
  border-color: #1b5562;
  background: #f4f9f9;
}
.btn-lg {
  font-size: 16px;
  padding: 16px 26px;
}
.btn-md {
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 11px;
}
.btn-nav {
  background: #1b5562;
  color: #fff;
  font-size: 14.5px;
  padding: 12px 20px;
  border-radius: 10px;
  margin-left: 6px;
  box-shadow: 0 6px 16px rgba(27, 85, 98, 0.22);
}
.btn-nav:hover {
  background: #143f48;
}

.hamburger {
  background: #1b5562;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
}
nav.mobile {
  display: none;
  border-top: 1px solid #e6efef;
  background: #fff;
  padding: 14px 24px 22px;
  flex-direction: column;
  gap: 6px;
}
nav.mobile.open {
  display: flex;
}
nav.mobile a,
nav.mobile button {
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: #33474a;
  padding: 12px 6px;
  text-decoration: none;
}
nav.mobile .m-phone {
  font-weight: 700;
  color: #1b5562;
}
nav.mobile .m-cta {
  margin-top: 8px;
  background: #1b5562;
  color: #fff;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  padding: 15px;
  border-radius: 11px;
  text-align: center;
}

@media (max-width: 839px) {
  nav.primary {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(180deg, #f4f9f9 0%, #ffffff 100%);
}
.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  padding-top: clamp(44px, 6vw, 84px);
  padding-bottom: clamp(44px, 6vw, 84px);
}
.hero-copy {
  flex: 1 1 380px;
  min-width: 300px;
}
.hero-media {
  flex: 1 1 380px;
  min-width: 300px;
  position: relative;
}
.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #e2eded;
  color: #33474a;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 15px 8px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 14px -6px rgba(20, 63, 72, 0.25);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.review-pill:hover {
  border-color: #1b5562;
  box-shadow: 0 6px 18px -6px rgba(20, 63, 72, 0.35);
}
.stars {
  color: #f0a500;
  letter-spacing: 1px;
}
h1.hero-title {
  font-weight: 800;
  font-size: clamp(33px, 4.7vw, 54px);
  line-height: 1.04;
  color: #143f48;
  margin: 18px 0 0;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.6;
  color: #516365;
  max-width: 560px;
  margin: 20px 0 0;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.tick {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: #445658;
}
.tick .mk {
  color: #1b8a6b;
  font-size: 16px;
}
.hero-frame {
  border-radius: 22px;
  width: 100%;
  height: clamp(300px, 40vw, 470px);
  box-shadow: 0 30px 60px -20px rgba(20, 63, 72, 0.4);
}
.hero-badge {
  position: absolute;
  left: -14px;
  bottom: -18px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px -12px rgba(20, 63, 72, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-badge .t1 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 16px;
  color: #143f48;
  line-height: 1.1;
}
.hero-badge .t2 {
  font-size: 12.5px;
  color: #6b7d7f;
}

/* ---------- trust strip ---------- */
.strip {
  background: #143f48;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.strip-item {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eaf4f4;
  font-weight: 600;
  font-size: 15px;
}
.strip-item .mk {
  color: #5fb3ba;
  font-size: 18px;
}

/* ---------- sections ---------- */
section[id] {
  scroll-margin-top: 90px;
}
.sec-pad {
  padding-top: clamp(56px, 7vw, 90px);
  padding-bottom: clamp(56px, 7vw, 90px);
}
.eyebrow {
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a7d8c;
}
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.sec-head h2 {
  font-weight: 800;
  font-size: clamp(27px, 3.3vw, 40px);
  color: #143f48;
  margin: 12px 0 0;
  line-height: 1.1;
}
.sec-head p {
  font-size: 17px;
  line-height: 1.6;
  color: #566769;
  margin: 16px 0 0;
}

/* ---------- services ---------- */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.card {
  flex: 1 1 320px;
  min-width: 280px;
  border: 1px solid #e6efef;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px -32px rgba(20, 63, 72, 0.45);
  display: flex;
  flex-direction: column;
}
.card .media {
  height: 210px;
}
.card-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  font-weight: 800;
  font-size: 22px;
  color: #143f48;
}
.card-body h3 a {
  text-decoration: none;
}
.card-body h3 a:hover {
  color: #1b5562;
  text-decoration: underline;
}
.card-body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #566769;
  margin: 12px 0 18px;
}
.card-body .card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.card-body .btn {
  align-self: flex-start;
}
.card-more {
  font-weight: 700;
  font-size: 14.5px;
  color: #1b5562;
  text-decoration: none;
  padding: 8px 4px;
}
.card-more:hover {
  text-decoration: underline;
}

/* ---------- why ---------- */
.why {
  background: #f4f9f9;
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.why-card {
  flex: 1 1 280px;
  min-width: 260px;
  background: #fff;
  border: 1px solid #e6efef;
  border-radius: 18px;
  padding: 30px 26px;
}
.why-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #e4f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 {
  font-weight: 800;
  font-size: 19px;
  color: #143f48;
  margin: 0 0 8px;
}
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #566769;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.step {
  flex: 1 1 240px;
  min-width: 230px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step .num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1b5562;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 800;
  font-size: 18px;
}
.step h4 {
  font-weight: 700;
  font-size: 17px;
  color: #143f48;
  margin: 6px 0 6px;
}
.step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #566769;
}

/* ---------- guarantee band ---------- */
.band {
  background: #143f48;
}
.band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.band-copy {
  flex: 1 1 420px;
  min-width: 300px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.band-copy h2 {
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 32px);
  color: #fff;
  line-height: 1.12;
}
.band-copy p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #cfe2e2;
  margin: 12px 0 0;
  max-width: 560px;
}
.btn-white {
  background: #fff;
  color: #143f48;
  font-size: 16px;
  padding: 16px 28px;
}
.btn-white:hover {
  background: #e4f0f0;
}

/* ---------- testimonial ---------- */
.testi {
  background: #fff;
}
.testi-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #e2eded;
  color: #33474a;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 26px;
  box-shadow: 0 4px 14px -8px rgba(20, 63, 72, 0.25);
}
.testi-stars {
  color: #f0a500;
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 26px;
}
.testi-quote {
  font-family: Montserrat;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 25px);
  line-height: 1.42;
  color: #143f48;
  margin: 0 0 30px;
  letter-spacing: -0.01em;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1b5562;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 800;
  font-size: 17px;
}
.testi-author .who {
  font-weight: 700;
  font-size: 16px;
  color: #143f48;
  text-align: left;
}
.testi-author .who span {
  display: block;
  font-weight: 500;
  font-size: 13.5px;
  color: #6b7d7f;
}

.testi-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testi-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 8px;
  text-align: center;
}

/* .testi-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  border: 1px solid #e6efef;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 26px 55px -30px rgba(20, 63, 72, 0.5);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
} */

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.testi-dot:hover {
  background: #b3b3b3;
  transform: scale(1.15);
}

.testi-dot.active {
  background: #4285f4;
}

/* ---------- faq ---------- */
.faq {
  background: #f4f9f9;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
details.qa {
  background: #fff;
  border: 1px solid #e6efef;
  border-radius: 14px;
  overflow: hidden;
}
details.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16.5px;
  color: #143f48;
}
details.qa summary::-webkit-details-marker {
  display: none;
}
details.qa summary .pm {
  flex: none;
  color: #1b5562;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s;
}
details.qa[open] summary .pm {
  transform: rotate(45deg);
}
details.qa .a {
  padding: 0 22px 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #566769;
}

/* ---------- quote form ---------- */
.quote {
  background: #fff;
}
.quote-inner {
  max-width: 680px;
  margin: 0 auto;
}
.quote-card {
  background: #f4f9f9;
  border: 1px solid #e2eded;
  border-radius: 22px;
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: 0 30px 60px -34px rgba(20, 63, 72, 0.4);
}
.quote-head {
  text-align: center;
  margin-bottom: 28px;
}
.quote-head h2 {
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  color: #143f48;
  margin: 10px 0 0;
  line-height: 1.08;
}
.quote-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #566769;
  margin: 14px auto 0;
  max-width: 440px;
}
.form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-label {
  display: flex;
  align-items: center;
  gap: 11px;
}
.step-num {
  flex: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #1b5562;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 800;
  font-size: 13.5px;
}
.step-label span.txt {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 16.5px;
  color: #143f48;
}
fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
legend {
  padding: 0;
  font-weight: 600;
  font-size: 13.5px;
  color: #5f7174;
}
legend .opt {
  font-weight: 400;
  color: #8a9c9c;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 15px;
  border-radius: 11px;
  border: 1.5px solid #d7e3e3;
  background: #fff;
  color: #33474a;
  transition:
    background 0.12s,
    border-color 0.12s,
    color 0.12s;
}
.chip .tk {
  display: none;
  color: #1b5562;
  font-weight: 800;
  font-size: 15px;
}
.chip[aria-pressed="true"] {
  border-color: #1b5562;
  background: #eaf3f3;
  color: #143f48;
}
.chip[aria-pressed="true"] .tk {
  display: inline;
}
.chip.seg {
  flex: 1 1 140px;
  justify-content: center;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-weight: 600;
  font-size: 13.5px;
  color: #5f7174;
}
.field .req {
  color: #c0392b;
}
.field input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #d7e3e3;
  border-radius: 11px;
  font-family: Mulish;
  font-size: 15px;
  color: #22343a;
  background: #fff;
  outline: none;
  transition:
    border-color 0.12s,
    box-shadow 0.12s;
}
.field input:focus {
  border-color: #1b5562;
  box-shadow: 0 0 0 3px rgba(27, 85, 98, 0.12);
}
.field .hint {
  font-size: 12.5px;
  color: #8a9c9c;
}
.row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.row .field {
  flex: 1 1 150px;
}
.divider {
  height: 1px;
  background: #e2eded;
  margin: 6px 0 2px;
}
.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #eef5f5;
  border-radius: 11px;
  padding: 13px 15px;
}
.privacy p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #4f6467;
}
.alert {
  font-size: 14px;
  color: #c0392b;
  background: #fdecea;
  border: 1px solid #f6c9c2;
  padding: 11px 14px;
  border-radius: 10px;
}
.btn-submit {
  background: #1b5562;
  color: #fff;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 17px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(27, 85, 98, 0.24);
  transition: background 0.15s;
}
.btn-submit:hover {
  background: #143f48;
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: default;
}
.form-foot {
  font-size: 12.5px;
  color: #8a9c9c;
  text-align: center;
}
.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.success {
  text-align: center;
  padding: 30px 10px;
}
.success .ok {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #e3f3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success h3 {
  font-weight: 800;
  font-size: 24px;
  color: #143f48;
  margin: 0 0 10px;
}
.success p {
  font-size: 16px;
  line-height: 1.6;
  color: #566769;
  margin: 0 auto;
  max-width: 360px;
}
[hidden] {
  display: none !important;
}

/* ---------- footer ---------- */
footer.site {
  background: #143f48;
}
.foot-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: 44px;
}
.foot-brand {
  flex: 1 1 280px;
  min-width: 240px;
}
.foot-brand .logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.foot-brand .logo img {
  height: 40px;
  width: auto;
}
.foot-brand .n1 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #fff;
}
.foot-brand .n2 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #7fc1c7;
}
.foot-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #aac8c8;
  max-width: 300px;
}
.foot-col {
  flex: 0 1 220px;
}
.foot-col h4 {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.foot-col .links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot-col a,
.foot-col button {
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Mulish;
  font-size: 15px;
  color: #aac8c8;
  padding: 0;
  text-decoration: none;
  transition: color 0.12s;
}
.foot-col a:hover,
.foot-col button:hover {
  color: #fff;
}
.foot-cta {
  margin-top: 6px;
  align-self: flex-start;
  background: #5fb3ba;
  color: #0f3640;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}
.foot-cta:hover {
  background: #7fc8ce;
}
.foot-bottom {
  border-top: 1px solid #2a565f;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #85aaaa;
}

/* ============================================================
   Service page components
   ============================================================ */

/* ---------- breadcrumbs ---------- */
.crumbs {
  background: #f4f9f9;
  border-bottom: 1px solid #e6efef;
}
.crumbs ol {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #6b7d7f;
}
.crumbs a {
  color: #1b5562;
  text-decoration: none;
}
.crumbs a:hover {
  text-decoration: underline;
}
.crumbs li + li::before {
  content: "›";
  margin-right: 6px;
  color: #9fb1b1;
}
.crumbs [aria-current="page"] {
  color: #33474a;
}

/* ---------- service hero (smaller than home hero) ---------- */
.svc-hero .hero-inner {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(40px, 5.5vw, 72px);
}
.svc-hero .hero-frame {
  height: clamp(260px, 34vw, 400px);
}

/* ---------- long-form article content ---------- */
.article {
  background: #fff;
}
.article-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.article h2 {
  font-weight: 800;
  font-size: clamp(24px, 2.9vw, 33px);
  color: #143f48;
  line-height: 1.15;
  margin: 0 0 18px;
}
.article h3 {
  font-weight: 800;
  font-size: 21px;
  color: #143f48;
  margin: 34px 0 12px;
}
.article p {
  font-size: 16.5px;
  line-height: 1.72;
  color: #4c5f61;
  margin: 0 0 18px;
}
.article ul {
  margin: 0 0 20px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.article ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #4c5f61;
}
.article a {
  color: #1b5562;
  font-weight: 600;
}
.article-block + .article-block {
  margin-top: clamp(44px, 5vw, 64px);
}
.article .eyebrow {
  display: block;
  margin-bottom: 10px;
}

/* checklist ("what's included") */
.checklist {
  list-style: none !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px !important;
}
.checklist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: #f4f9f9;
  border: 1px solid #e6efef;
  border-radius: 12px;
  padding: 14px 16px;
}
.checklist li .mk {
  flex: none;
  color: #1b8a6b;
  font-weight: 800;
  font-size: 16px;
  margin-top: 1px;
}
.checklist li strong {
  color: #143f48;
}

/* inline figure with caption */
.figure {
  margin: 30px 0;
}
.figure .media {
  border-radius: 18px;
  height: clamp(220px, 32vw, 380px);
  box-shadow: 0 24px 50px -28px rgba(20, 63, 72, 0.45);
}
.figure figcaption {
  font-size: 13.5px;
  color: #8a9c9c;
  margin-top: 10px;
  text-align: center;
}

/* two-up figures */
.figure-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
.figure-pair .figure {
  flex: 1 1 280px;
  margin: 0;
}
.figure-pair .figure .media {
  height: clamp(200px, 24vw, 280px);
}

/* mini CTA inside the article */
.inline-cta {
  background: #143f48;
  border-radius: 18px;
  padding: clamp(26px, 3.4vw, 38px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin: clamp(44px, 5vw, 64px) 0;
}
.inline-cta h3 {
  font-weight: 800;
  font-size: clamp(20px, 2.3vw, 25px);
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.inline-cta p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #cfe2e2;
  margin: 0;
  max-width: 460px;
}

/* ---------- related services ---------- */
.related {
  background: #f4f9f9;
}
.related .cards .card .media {
  height: 180px;
}
