:root {
  --navy: #183b63;
  --navy-deep: #102e51;
  --lime: #b9d957;
  --lime-light: #dceb86;
  --cream: #fbf9ee;
  --warm: #f4efe4;
  --white: #ffffff;
  --ink-soft: #52657a;
  --line: #dfe5da;
  --shadow: 0 20px 60px rgba(24, 59, 99, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .logo-text { font-family: "Manrope", sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 138px;
  padding: 14px max(24px, calc((100vw - 1640px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: height .25s ease, padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  height: 94px;
  padding-top: 4px;
  padding-bottom: 4px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 30px rgba(24,59,99,.09);
  backdrop-filter: blur(12px);
}
.site-header.scrolled .logo,
.site-header.menu-open .logo {
  height: 82px;
}
.site-header.scrolled .logo img,
.site-header.menu-open .logo img {
  width: 105px;
}
.logo {
  width: 175px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 138px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.main-nav { display: flex; align-items: center; gap: 42px; font-weight: 700; font-size: 15px; }
.main-nav > a:not(.button) { position: relative; padding: 12px 0; }
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--lime);
  transition: right .25s ease;
}
.main-nav > a:hover::after, .main-nav > a.active::after { right: 0; }
.menu-toggle { display: none; }
.menu-backdrop {
  position: fixed;
  z-index: 18;
  inset: 0;
  border: 0;
  background: rgba(8,27,47,.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.button {
  min-width: 210px;
  min-height: 57px;
  padding: 17px 30px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--navy-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--lime-light); transform: translateY(-2px); }
.button-small { min-width: 190px; min-height: 52px; padding: 14px 26px; }
.button-outline { background: rgba(255,255,255,.08); border: 2px solid var(--navy); }
.button-dark { background: var(--navy); color: white; }
.button-dark:hover { background: var(--navy-deep); }

.hero {
  position: relative;
  height: 840px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249,244,235,.9) 0%, rgba(249,244,235,.64) 30%, rgba(249,244,235,.04) 58%),
    url("assets/hero-desktop.png") center center / cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1640px);
  margin: 0 auto;
  padding-top: 260px;
}
.eyebrow {
  color: #78951c;
  font: 800 13px/1.2 "Manrope", sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow,
.service-label {
  display: flex;
  align-items: center;
  gap: 7px;
}
.eyebrow::before,
.service-label::before {
  content: "✦";
  color: var(--lime);
  font-size: .9em;
}
.section-heading.centered .eyebrow { justify-content: center; }
.hero h1 { max-width: 620px; margin-bottom: 26px; font-size: clamp(58px, 6vw, 91px); line-height: 1.02; letter-spacing: -.055em; }
.hero .eyebrow { color: #698204; }
.hero-copy { max-width: 530px; margin-bottom: 35px; font-size: 20px; line-height: 1.45; }
.hero-actions { display: flex; gap: 18px; }
.hero-waves {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  line-height: 0;
}
.hero-waves svg {
  width: 100%;
  height: 100%;
}
.wave-accent { fill: var(--navy); }
.wave-main { fill: var(--white); }

.trust-bar {
  position: relative;
  z-index: 5;
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 20px 0 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
  text-align: center;
}
.trust-bar article { padding: 10px; }
.line-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  color: var(--lime);
}
.line-icon svg,
.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-bar h3 { margin: 9px 0 7px; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.trust-bar p { margin: 0 auto; max-width: 230px; color: var(--ink-soft); font-size: 14px; font-weight: 600; line-height: 1.45; }

.living-section {
  width: min(calc(100% - 48px), 1500px);
  margin: 90px auto;
  padding: 62px 68px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 80px;
  border-radius: 36px;
  background: var(--cream);
}
.living-copy { padding: 0; }
.living-copy h2, .section-heading h2, .pricing-heading h2, .faq-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.living-copy h2 span { display: block; width: max-content; color: var(--lime); font-family: "Caveat", cursive; font-size: 1em; font-weight: 600; transform: rotate(-3deg); border-bottom: 3px solid var(--lime); }
.section-intro { font-size: 18px; font-weight: 700; margin-bottom: 30px; }
.benefit { display: flex; align-items: center; gap: 18px; margin: 20px 0; }
.benefit-icon {
  flex: 0 0 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fffaf1;
  color: var(--lime);
  padding: 12px;
}
.benefit h3 { margin: 0 0 3px; font-size: 16px; }
.benefit p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.living-actions { display: flex; align-items: center; gap: 38px; margin-top: 30px; }
.text-link { font-weight: 800; text-transform: uppercase; }
.text-link span { margin-left: 15px; font-size: 24px; }
.living-visual {
  position: relative;
  padding: 14px;
  border-radius: 32px;
  background: white;
  box-shadow: 0 22px 55px rgba(24,59,99,.1);
  transform: rotate(1deg);
}
.living-image {
  min-height: 455px;
  border-radius: 23px;
  background: url("assets/less-cleaning-more-living.png") center / cover no-repeat;
}
.living-spark {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: white;
  box-shadow: 0 8px 22px rgba(120,149,28,.25);
}
.spark-one { width: 54px; height: 54px; top: -18px; right: 38px; font-size: 23px; }

.section { padding: 120px max(28px, calc((100vw - 1500px) / 2)); }
.section-heading { max-width: 680px; }
.section-heading.centered { margin: 0 auto 60px; text-align: center; }
.section-heading > p:not(.eyebrow) { color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.services { background: linear-gradient(180deg, #fff 0%, #fbfcf7 100%); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.service-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 35px rgba(24,59,99,.055);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover,
.service-card.open {
  border-color: rgba(185,217,87,.8);
  box-shadow: 0 20px 50px rgba(24,59,99,.09);
  transform: translateY(-5px);
}
.service-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  padding: 17px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--cream);
  color: #99bd32;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-label {
  display: block;
  margin-bottom: 8px;
  color: #78951c;
  font: 800 11px/1.2 "Manrope";
  letter-spacing: .09em;
  text-transform: uppercase;
}
.service-card h3 { margin-bottom: 13px; font-size: 24px; letter-spacing: -.035em; }
.service-card > p { min-height: 74px; margin-bottom: 25px; color: var(--ink-soft); line-height: 1.6; }
.service-toggle {
  width: 100%;
  padding: 16px 0 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.service-toggle i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font: normal 22px/1 "DM Sans";
  transition: transform .25s ease;
}
.service-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .25s ease, padding .3s ease;
}
.service-card.open .service-details {
  max-height: 480px;
  padding-top: 20px;
  opacity: 1;
}
.service-card.open .service-toggle i { transform: rotate(45deg); }
.details-intro { margin-bottom: 12px; color: var(--navy); font-size: 13px; font-weight: 700; }
.service-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li { position: relative; margin: 10px 0; padding-left: 20px; font-size: 14px; line-height: 1.4; }
.service-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #8bac2a; font-size: 12px; font-weight: 800; }
.pricing-extras {
  max-width: 850px;
  margin: 38px auto 28px;
  padding: 30px 34px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}
.pricing-extras h3 { margin: 0 0 8px; color: white; font-size: 29px; }
.pricing-extras > div > p:last-child { margin: 0; color: #c9d6e2; line-height: 1.5; }

.pricing { background: var(--navy); color: white; }
.pricing-heading { display: grid; grid-template-columns: 1.4fr 1fr; align-items: end; gap: 70px; margin-bottom: 55px; }
.pricing-heading h2 { max-width: 800px; margin: 0; }
.pricing-heading > p { margin: 0 0 8px; color: #d4dfea; font-size: 18px; line-height: 1.6; }
.pricing .eyebrow, .light { color: var(--lime); }
.pricing-tabs { display: flex; width: max-content; margin-bottom: 25px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.1); }
.pricing-tab { padding: 13px 25px; border: 0; border-radius: 999px; background: transparent; color: white; font-weight: 700; cursor: pointer; }
.pricing-tab.active { background: var(--lime); color: var(--navy); }
.table-wrap { display: none; overflow-x: auto; border-radius: 19px; background: white; color: var(--navy); }
.table-wrap.active { display: block; }
.mobile-price-cards { display: none; }
table { width: 100%; border-collapse: collapse; min-width: 780px; }
th { padding: 24px 19px; background: #eef4ca; font-family: "Manrope"; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
th:first-child { border-radius: 18px 0 0; background: var(--lime); }
th:last-child { border-radius: 0 18px 0 0; }
td { padding: 23px 19px; border-top: 1px solid #e6ebdf; text-align: center; font-weight: 700; }
td:first-child { background: #f5f7ee; font-family: "Manrope"; }
tbody tr:hover td { background: #fbfce9; }
.pricing-note { max-width: 830px; margin: 20px auto 25px; color: #c8d5e1; text-align: center; font-size: 12px; }
.pricing-cta { display: flex; width: max-content; margin: 0 auto; }
.quote-privacy { max-width: 660px; margin: 14px auto 0; color: #c9d6e2; text-align: center; font-size: 12px; line-height: 1.55; }

.testimonials { min-height: 730px; display: grid; grid-template-columns: .8fr 2fr; gap: 80px; align-items: center; overflow: hidden; background: var(--cream); }
.testimonials > .section-heading h2 { font-size: clamp(42px, 4vw, 62px); }
.testimonial-carousel { min-width: 0; }
.testimonial-grid {
  position: relative;
  height: 430px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.testimonial-card {
  position: absolute;
  top: 28px;
  left: 50%;
  width: min(390px, 48%);
  min-height: 365px;
  padding: 35px 28px;
  border-radius: 25px;
  background: white;
  box-shadow: 0 22px 55px rgba(24,59,99,.13);
  display: flex;
  flex-direction: column;
  opacity: .72;
  transform: translateX(-50%) scale(.78);
  transition: transform .7s cubic-bezier(.22,.8,.28,1), opacity .55s ease, background .45s ease, color .45s ease, box-shadow .55s ease;
  will-change: transform;
}
.testimonial-card.raised { background: white; color: var(--navy); }
.testimonial-card.is-active {
  z-index: 3;
  opacity: 1;
  background: var(--navy);
  color: white;
  box-shadow: 0 30px 70px rgba(16,46,81,.32);
  transform: translateX(-50%) translateZ(90px) scale(1);
}
.testimonial-card.is-prev {
  z-index: 2;
  opacity: .78;
  transform: translateX(-118%) rotateY(16deg) translateZ(-55px) scale(.82);
}
.testimonial-card.is-next {
  z-index: 2;
  opacity: .78;
  transform: translateX(18%) rotateY(-16deg) translateZ(-55px) scale(.82);
}
.testimonial-controls { display: flex; justify-content: center; gap: 9px; margin-top: 2px; }
.testimonial-controls button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: #bdc6bc; cursor: pointer; transition: width .25s ease, background .25s ease; }
.testimonial-controls button.active { width: 30px; background: var(--lime); }
.stars { color: #e9bd33; letter-spacing: 3px; }
blockquote { margin: 35px 0; flex: 1; font: 600 17px/1.65 "Manrope"; letter-spacing: -.02em; }
.reviewer { display: flex; align-items: center; gap: 13px; }
.reviewer > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--lime-light); color: var(--navy); font-weight: 800; }
.reviewer strong, .reviewer small { display: block; }
.reviewer small { margin-top: 3px; color: #8190a0; }
.placeholder-note { grid-column: 2; margin: -45px 0 0; color: #8c998f; text-align: right; font-size: 11px; }

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,.8,.28,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.revealed { opacity: 1; transform: none; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-intro { position: sticky; top: 40px; align-self: start; }
.faq-intro > p:not(.eyebrow) { max-width: 480px; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.phone-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; font: 800 27px "Manrope"; }
.phone-link span { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-size: 21px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font: 700 20px "Manrope";
  cursor: pointer;
}
.faq-item i { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--navy); font-style: normal; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { margin: 0; padding: 0 65px 28px 0; color: var(--ink-soft); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 250px; }
.faq-item.open i { background: var(--lime); }

.contact-section {
  background: var(--cream);
}
.contact-intro { max-width: 760px; margin-bottom: 48px; }
.contact-intro h2 {
  max-width: 540px;
  margin-bottom: 25px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.contact-intro > p:not(.eyebrow) { max-width: 500px; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.instant-quote-button { margin-top: 20px; }
.instant-quote-note { display: block; margin: 9px 0 0 18px; color: var(--ink-soft); }
.contact-divider {
  max-width: 950px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #82909b;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-divider::before,
.contact-divider::after { content: ""; height: 1px; flex: 1; background: #d9ded4; }
.contact-divider span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: white; box-shadow: 0 5px 16px rgba(24,59,99,.07); }
.contact-details { margin-top: 28px; padding-top: 22px; border-top: 1px solid #dfe3d6; }
.contact-details a,
.contact-details p { display: block; margin: 14px 0; color: var(--navy); font-weight: 700; }
.contact-details span { width: 75px; display: inline-block; color: #78951c; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.instagram-link { display: flex !important; align-items: center; gap: 7px; }
.instagram-link svg, .footer-instagram svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-instagram { display: flex !important; align-items: center; gap: 7px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.contact-content { max-width: 950px; margin: 0 auto; }
.contact-form {
  padding: 38px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 50px rgba(24,59,99,.08);
}
.form-heading h3 { margin-bottom: 7px; font-size: 27px; letter-spacing: -.035em; }
.form-heading p { margin-bottom: 28px; color: var(--ink-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label > span,
.contact-form legend { display: block; margin-bottom: 8px; color: var(--navy); font-size: 13px; font-weight: 800; }
.full-field { grid-column: 1 / -1; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid #d9e0d4;
  border-radius: 12px;
  background: #fdfdf9;
  color: var(--navy);
  outline: none;
  font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #98b936; box-shadow: 0 0 0 3px rgba(185,217,87,.2); }
.contact-form .field-error { border-color: #b64c4c !important; box-shadow: 0 0 0 3px rgba(182,76,76,.12) !important; }
.contact-requirement { margin: 10px 0 0; color: var(--ink-soft); font-size: 12px; }
.contact-requirement.error { color: #a53d3d; font-weight: 700; }
.contact-form fieldset { margin: 24px 0; padding: 0; border: 0; }
.contact-choice { margin-right: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-weight: 600; cursor: pointer; }
.contact-choice input { accent-color: #8eaa31; }
.contact-submit { min-width: 230px; }
.form-status { min-height: 20px; margin: 12px 0 0; color: #698204; font-size: 13px; font-weight: 700; }

.relax-banner {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251,249,238,.98) 0%, rgba(251,249,238,.9) 34%, rgba(251,249,238,.15) 62%),
    url("assets/relaxed-client-banner.png") center / cover no-repeat;
}
.relax-banner-content { width: min(100% - 48px, 1500px); margin: 0 auto; }
.relax-banner h2 { max-width: 560px; margin-bottom: 20px; font-size: clamp(44px, 4.5vw, 68px); line-height: 1.03; letter-spacing: -.05em; }
.relax-banner-content > p:not(.eyebrow) { max-width: 475px; margin-bottom: 28px; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }

.quote-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.quote-modal.open { opacity: 1; visibility: visible; }
.quote-modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(8,27,47,.72); backdrop-filter: blur(5px); }
.quote-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 40px);
  padding: 46px;
  overflow-y: auto;
  border-radius: 30px;
  background: white;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}
.quote-modal.open .quote-modal-panel { transform: none; }
.quote-modal-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--cream); color: var(--navy); font-size: 28px; cursor: pointer; }
.quote-modal-icon { width: 72px; height: 72px; margin-bottom: 25px; padding: 15px; border-radius: 22px; background: var(--lime-light); color: var(--navy); }
.quote-modal-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.quote-modal-panel h2 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 44px); line-height: 1.08; letter-spacing: -.045em; }
.quote-modal-panel > p:not(.eyebrow) { color: var(--ink-soft); line-height: 1.65; }
.quote-modal-panel ul { margin: 24px 0; padding: 22px 0; border-block: 1px solid var(--line); list-style: none; }
.quote-modal-panel li { position: relative; margin: 11px 0; padding-left: 25px; font-weight: 700; }
.quote-modal-panel li::before { content: "✓"; position: absolute; left: 0; color: #78951c; }
.quote-modal-start { width: 100%; }
.quote-modal-panel > small { display: block; margin-top: 10px; color: var(--ink-soft); text-align: center; }

footer { padding: 75px max(28px, calc((100vw - 1500px) / 2)) 25px; background: var(--navy-deep); color: white; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 80px; padding-bottom: 65px; }
.footer-logo {
  width: 165px;
  height: 112px;
  padding: 8px;
  border-radius: 18px;
  background: var(--cream);
}
.footer-logo img {
  width: 160px;
  height: 160px;
}
.footer-brand > p { max-width: 360px; color: #b8c7d6; line-height: 1.65; }
.footer-main h3 { margin: 23px 0; color: var(--lime); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.footer-main > div:not(.footer-brand) a, .footer-main > div:not(.footer-brand) p { display: block; margin: 12px 0; color: #d5dee7; }
.footer-main a:hover { color: var(--lime); }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; color: #91a4b7; font-size: 13px; }

@media (max-width: 1100px) {
  .site-header { height: 115px; }
  .main-nav { gap: 20px; }
  .main-nav .button { min-width: 140px; }
  .hero { height: 760px; }
  .hero-content { padding-top: 220px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .living-section { gap: 45px; padding: 50px 42px; }
  .living-image { min-height: 420px; }
  .testimonials { grid-template-columns: 1fr; gap: 45px; }
  .placeholder-note { grid-column: 1; margin: -25px 0 0; }
  .faq { gap: 50px; }
}

@media (max-width: 780px) {
  .site-header {
    top: 0;
    width: 100%;
    height: calc(100px + env(safe-area-inset-top, 0px));
    padding: calc(10px + env(safe-area-inset-top, 0px)) 17px 8px;
  }
  .site-header.scrolled,
  .site-header.menu-open {
    height: calc(88px + env(safe-area-inset-top, 0px));
    padding: calc(4px + env(safe-area-inset-top, 0px)) 17px 4px;
  }
  .logo { width: 118px; height: 78px; }
  .logo img { width: 96px; height: auto; }
  .site-header.scrolled .logo img,
  .site-header.menu-open .logo img { width: 92px; }
  .menu-toggle { position: relative; z-index: 22; width: 45px; height: 45px; padding: 8px; display: grid; align-content: center; gap: 6px; border: 0; background: transparent; }
  .menu-toggle span { width: 28px; height: 3px; border-radius: 2px; background: var(--navy); transition: .2s; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 24px 35px 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    z-index: 21;
    background: #fff;
    border-top: 1px solid rgba(24,59,99,.08);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 32px rgba(8,27,47,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-nav a { padding: 10px 0 !important; font: 700 24px "Manrope"; }
  .main-nav .button { margin-top: 12px; font-size: 14px; }
  .hero {
    height: 800px;
    background:
      linear-gradient(0deg, rgba(16,46,81,.58) 0%, rgba(16,46,81,.18) 52%, rgba(16,46,81,0) 78%),
      url("assets/hero-mobile.png") center center / cover no-repeat;
  }
  .hero-content { width: calc(100% - 40px); padding-top: 280px; color: white; }
  .hero h1 { font-size: 51px; line-height: 1.03; }
  .hero-copy { max-width: 420px; font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 9px; }
  .hero-actions .button {
    width: 211px;
    min-width: 211px;
    min-height: 48px;
    padding: 12px 24px;
  }
  .hero-actions .button-outline { border-color: white; color: white; }
  .hero-waves { height: 105px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 25px 10px; padding: 28px 0 65px; }
  .line-icon { width: 50px; height: 50px; }
  .trust-bar h3 { font-size: 12px; }
  .trust-bar p { font-size: 12px; }
  .living-section {
    width: calc(100% - 32px);
    margin: 55px auto;
    padding: 48px 22px 24px;
    grid-template-columns: 1fr;
    gap: 38px;
    border-radius: 28px;
  }
  .living-copy { padding: 0; }
  .living-copy h2, .section-heading h2, .pricing-heading h2, .faq-intro h2 { font-size: 42px; }
  .living-actions { flex-direction: column; align-items: stretch; gap: 14px; text-align: center; }
  .living-visual { padding: 9px; border-radius: 23px; transform: none; }
  .living-image { min-height: 285px; margin: 0; border-radius: 17px; background-position: 52% center; }
  .spark-one { width: 42px; height: 42px; top: -14px; right: 25px; font-size: 18px; }
  .section { padding: 80px 20px; }
  .services .section-heading.centered { text-align: left; }
  .services .section-heading.centered .eyebrow { justify-content: flex-start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 27px; }
  .service-card > p { min-height: 0; }
  .pricing-extras { padding: 28px 22px; grid-template-columns: 1fr; }
  .pricing-heading { grid-template-columns: 1fr; gap: 20px; }
  .pricing-tabs { width: 100%; }
  .pricing-tab { flex: 1; padding: 12px 8px; font-size: 12px; }
  .table-wrap {
    margin: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
  }
  .table-wrap table { display: none; }
  .mobile-price-cards { display: grid; gap: 14px; }
  .mobile-price-card {
    padding: 19px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 19px;
    background: white;
    color: var(--navy);
    box-shadow: 0 10px 26px rgba(4,20,37,.12);
  }
  .mobile-price-head {
    padding-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid #e4e9dd;
  }
  .mobile-price-head strong { font: 800 21px "Manrope"; }
  .mobile-price-head span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef4ca;
    color: #536719;
    font-size: 11px;
    font-weight: 800;
  }
  .mobile-price-grid {
    padding-top: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 10px;
  }
  .mobile-price-item { min-width: 0; }
  .mobile-price-item small { display: block; margin-bottom: 3px; color: #718091; font-size: 10px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
  .mobile-price-item b { display: block; font: 800 16px "Manrope"; }
  .pricing-cta { width: 100%; }
  .testimonials { display: block; }
  .testimonial-carousel { margin-top: 38px; }
  .testimonial-grid { height: 405px; }
  .testimonial-card { width: 86%; min-height: 345px; padding: 30px 24px; }
  .testimonial-card.is-prev { opacity: .36; transform: translateX(-92%) rotateY(12deg) scale(.72); }
  .testimonial-card.is-next { opacity: .36; transform: translateX(-8%) rotateY(-12deg) scale(.72); }
  .placeholder-note { margin-top: 15px; }
  .faq { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .faq-item button { font-size: 17px; }
  .faq-answer p { padding-right: 10px; }
  .contact-intro { margin-bottom: 38px; }
  .instant-quote-button { width: 100%; }
  .instant-quote-note { margin-left: 0; text-align: center; }
  .contact-form { padding: 28px 22px; border-radius: 23px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .contact-choice { margin: 0 18px 10px 0; }
  .contact-submit { width: 100%; }
  .relax-banner {
    min-height: 700px;
    align-items: flex-start;
    padding-top: 65px;
    background:
      linear-gradient(180deg, rgba(251,249,238,.98) 0%, rgba(251,249,238,.88) 34%, rgba(251,249,238,.02) 62%),
      url("assets/relaxed-client-banner.png") 67% center / cover no-repeat;
  }
  .relax-banner-content { width: calc(100% - 40px); }
  .relax-banner h2 { max-width: 360px; font-size: 43px; }
  .relax-banner-content > p:not(.eyebrow) { max-width: 330px; font-size: 15px; }
  .quote-modal-panel { padding: 38px 24px 28px; border-radius: 24px; }
  footer { padding-top: 50px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .hero { height: 760px; }
  .hero-content { padding-top: 235px; }
  .hero h1 { font-size: 46px; }
  .section-heading.centered { text-align: left; }
  .service-card { padding: 38px 26px; }
  .testimonial-card { min-height: 335px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.revealed,
  .testimonial-card {
    opacity: 1;
    transition: none;
  }
}
