:root {
  --navy: #17355f;
  --navy-dark: #0e2747;
  --navy-deep: #081c34;

  --teal: #25bfc5;
  --teal-dark: #159ca3;

  --pink: #ef8fb8;

  --white: #ffffff;

  --bg: #f7fbfc;
  --bg-soft: #eef7f8;
  --bg-blue: #f2f7fb;

  --border: #dce8ea;

  --text: #24364b;
  --text-soft: #647486;

  --shadow-sm:
    0 8px 28px rgba(23, 53, 95, 0.08);

  --shadow-md:
    0 24px 70px rgba(23, 53, 95, 0.14);

  --shadow-strong:
    0 30px 80px rgba(8, 28, 52, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1180px;
  --page-gutter: 24px;
}

/* WhatsApp contact */

.whatsapp-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: #1f9d78;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 46, 66, 0.24);
}

.whatsapp-contact:hover,
.whatsapp-contact:focus-visible {
  background: #177b5e;
  color: #ffffff;
}

@media (max-width: 640px) {
  .whatsapp-contact {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.92rem;
  }
}


/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--white);

  color: var(--text);

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

ul {
  padding: 0;
  margin: 0;
}

p {
  margin-top: 0;
}

section {
  padding:
    96px
    24px;
}


/* ========================================
   ACCESSIBILITY
======================================== */

:focus-visible {
  outline:
    3px solid
    var(--teal);

  outline-offset: 4px;
}

::selection {
  background:
    rgba(
      37,
      191,
      197,
      0.22
    );
}


/* ========================================
   TYPOGRAPHY
======================================== */

h1,
h2,
h3 {
  margin-top: 0;

  color: var(--navy-dark);

  line-height: 1.1;
}

h1 {
  margin-bottom: 24px;

  font-size:
    clamp(
      2.75rem,
      4.7vw,
      4.65rem
    );

  letter-spacing: -0.048em;
}

h2 {
  margin-bottom: 22px;

  font-size:
    clamp(
      2rem,
      3.5vw,
      3.35rem
    );

  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;

  font-size: 1.3rem;
}

p {
  color: var(--text-soft);
}

.eyebrow {
  margin-bottom: 16px;

  color: var(--teal-dark);

  font-size: 0.78rem;

  font-weight: 850;

  text-transform: uppercase;

  letter-spacing: 0.13em;
}

.light-eyebrow {
  color: var(--teal);
}


/* ========================================
   BUTTONS
======================================== */

.button {
  min-height: 54px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    0
    25px;

  border-radius: 999px;

  font-size: 0.96rem;

  font-weight: 800;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button-primary {
  background: var(--navy);

  color: var(--white);

  box-shadow: var(--shadow-sm);
}

.button-primary:hover {
  background: var(--navy-dark);

  transform: translateY(-2px);

  box-shadow: var(--shadow-md);
}

.button-secondary {
  background: var(--white);

  color: var(--navy);

  border:
    1px solid
    var(--border);
}

.button-secondary:hover {
  border-color: var(--teal);

  transform: translateY(-2px);
}

.button-teal {
  background: var(--teal);

  color: var(--navy-deep);
}

.button-teal:hover {
  background: #36cbd1;

  transform: translateY(-2px);
}


/* ========================================
   HEADER
======================================== */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  background:
    rgba(
      255,
      255,
      255,
      0.95
    );

  border-bottom:
    1px solid
    rgba(
      220,
      232,
      234,
      0.85
    );

  backdrop-filter:
    blur(16px);
}

.main-nav {
  width:
    min(
      calc(100% - (var(--page-gutter) * 2)),
      var(--container)
    );

  min-height: 80px;

  margin-inline: auto;

  display: flex;

  align-items: center;

  gap: 28px;
}


/* ========================================
   REAL LOGO
======================================== */

.brand {
  display: inline-flex;

  align-items: center;

  flex-shrink: 0;

  line-height: 0;
}

.brand-logo {
  display: block;

  width: 205px;
  height: auto;

  max-height: 68px;

  object-fit: contain;

  object-position: left center;
}


/* ========================================
   NAVIGATION
======================================== */

.nav-links {
  margin-left: auto;

  display: flex;

  align-items: center;

  gap: 20px;

  list-style: none;
}

.nav-links a {
  color: var(--text);

  font-size: 0.86rem;

  font-weight: 650;

  white-space: nowrap;

  transition:
    color 0.2s ease;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.nav-cta {
  min-height: 46px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    0
    21px;

  border-radius: 999px;

  background: var(--navy);

  color: var(--white);

  font-size: 0.91rem;

  font-weight: 800;
}

.nav-cta:hover {
  background: var(--navy-dark);
}


/* ========================================
   MOBILE NAVIGATION
======================================== */

.mobile-menu {
  position: relative;
  z-index: 1100;
  display: none;
}

.mobile-menu summary {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
}

.mobile-menu[open] summary {
  border-color: var(--teal);
  background: var(--soft-teal);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(82vw, 310px);
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(8, 28, 52, 0.18);
}

.mobile-menu-panel a {
  display: block;
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.25;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: var(--soft-teal);
  color: var(--teal-dark);
}

.mobile-menu-panel .mobile-menu-quote {
  margin-top: 7px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.mobile-menu-panel .mobile-menu-quote:hover,
.mobile-menu-panel .mobile-menu-quote:focus-visible {
  background: var(--navy-dark);
  color: var(--white);
}


/* ========================================
   HERO
======================================== */

.hero {
  padding-top: 58px;
  padding-bottom: 70px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(37, 191, 197, 0.15),
      transparent 27%
    ),
    radial-gradient(
      circle at 72% 75%,
      rgba(239, 143, 184, 0.10),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5fafc 100%
    );
}

.hero-layout {
  width:
    min(
      calc(100% - (var(--page-gutter) * 2)),
      var(--container)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.03fr)
    minmax(380px, 0.97fr);

  gap: 46px;

  align-items: center;
}

.hero-content {
  max-width: 730px;
}

.hero-image {
  min-width: 0;

  position: relative;

  overflow: hidden;

  border-radius: var(--radius-lg);

  background: var(--bg-soft);

  box-shadow: var(--shadow-strong);

  aspect-ratio: 4 / 3;
}

.hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: 58% center;
}

.hero-description {
  max-width: 690px;

  margin-bottom: 25px;

  color: #43566a;

  font-size: 1.17rem;

  line-height: 1.72;
}


/* ========================================
   HERO PRICE
======================================== */

.hero-price {
  width: fit-content;

  margin-bottom: 29px;

  display: flex;

  align-items: center;

  gap: 13px;

  padding:
    11px 17px;

  border:
    1px solid
    var(--border);

  border-radius: 999px;

  background:
    rgba(
      255,
      255,
      255,
      0.85
    );

  box-shadow: var(--shadow-sm);
}

.hero-price-label {
  color: var(--text-soft);

  font-size: 0.83rem;

  font-weight: 700;
}

.hero-price strong {
  color: var(--navy);

  font-size: 1.04rem;
}

.hero-price > span:last-child {
  color: var(--text-soft);

  font-size: 0.81rem;
}


/* ========================================
   HERO ACTIONS
======================================== */

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 13px;

  margin-bottom: 32px;
}


/* ========================================
   HERO POINTS
======================================== */

.hero-points {
  display: flex;

  flex-wrap: wrap;

  gap:
    11px
    24px;

  list-style: none;
}

.hero-points li {
  position: relative;

  padding-left: 19px;

  color: var(--text-soft);

  font-size: 0.9rem;

  font-weight: 650;
}

.hero-points li::before {
  content: "";

  width: 8px;
  height: 8px;

  position: absolute;

  left: 0;
  top: 0.58em;

  border-radius: 50%;

  background: var(--teal);
}


/* ========================================
   SECTION HEADING
======================================== */

.section-heading {
  width:
    min(
      100%,
      var(--container)
    );

  margin:
    0 auto 45px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading > p:last-child {
  max-width: 690px;

  font-size: 1.04rem;
}


/* ========================================
   SERVICES
======================================== */

.services-section {
  background: var(--white);
}

.services-grid {
  width:
    min(
      100%,
      var(--container)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 18px;
}

.service-card {
  min-height: 310px;

  padding: 29px;

  display: flex;

  flex-direction: column;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius-md);

  background: var(--bg);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(
      37,
      191,
      197,
      0.5
    );

  box-shadow: var(--shadow-md);
}

.service-number {
  margin-bottom: 31px;

  color: var(--pink);

  font-size: 0.76rem;

  font-weight: 900;

  letter-spacing: 0.12em;
}

.service-card p {
  flex-grow: 1;
}

.service-price {
  display: block;

  margin-top: 15px;

  color: var(--navy);

  font-size: 1.13rem;
}

.service-note {
  display: block;

  margin-top: 5px;

  color: var(--text-soft);

  font-size: 0.81rem;
}

.service-card a {
  margin-top: 23px;

  color: var(--teal-dark);

  font-size: 0.88rem;

  font-weight: 800;
}

.featured-service {
  background:
    linear-gradient(
      145deg,
      #f0fbfb,
      #f8fbfd
    );

  border-color:
    rgba(
      37,
      191,
      197,
      0.38
    );
}


/* ========================================
   REGULAR CLEANING
======================================== */

.regular-section {
  background: var(--navy-deep);

  color: var(--white);
}

.regular-layout {
  width:
    min(
      100%,
      var(--container)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    1.2fr
    0.8fr;

  gap: 70px;

  align-items: center;
}

.regular-layout h2 {
  color: var(--white);
}

.regular-layout p {
  max-width: 700px;

  color:
    rgba(
      255,
      255,
      255,
      0.72
    );
}

.regular-price-box {
  padding: 34px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.12
    );

  border-radius: var(--radius-lg);

  background:
    rgba(
      255,
      255,
      255,
      0.07
    );
}

.regular-price-box > span:first-child {
  display: block;

  margin-bottom: 13px;

  color:
    rgba(
      255,
      255,
      255,
      0.68
    );

  font-size: 0.8rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.regular-price-box > strong {
  color: var(--white);

  font-size: 3.7rem;

  line-height: 1;
}

.regular-price-box > strong + span {
  margin-left: 6px;

  color: var(--teal);
}

.regular-price-box p {
  margin:
    17px 0 0;

  font-size: 0.88rem;
}

.regular-price-box .button {
  margin-top: 25px;
}

.frequency-grid {
  width:
    min(
      100%,
      var(--container)
    );

  margin:
    42px auto 0;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 18px;
}

.frequency-grid article {
  padding: 25px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.1
    );

  border-radius: var(--radius-md);

  background:
    rgba(
      255,
      255,
      255,
      0.05
    );
}

.frequency-grid h3 {
  color: var(--white);
}

.frequency-grid p {
  margin-bottom: 0;

  color:
    rgba(
      255,
      255,
      255,
      0.66
    );
}


/* ========================================
   PRICES
======================================== */

.prices-section {
  background: var(--bg-soft);
}

.price-grid {
  width:
    min(
      100%,
      var(--container)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    repeat(
      5,
      minmax(0, 1fr)
    );

  gap: 14px;
}

.price-grid article {
  padding: 25px;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius-md);

  background: var(--white);

  box-shadow: var(--shadow-sm);
}

.price-grid h3 {
  min-height: 48px;

  font-size: 1rem;
}

.price-grid strong {
  display: block;

  margin-top: 19px;

  color: var(--navy);

  font-size: 1.25rem;
}

.price-grid span {
  display: block;

  margin-top: 6px;

  color: var(--text-soft);

  font-size: 0.79rem;
}


/* ========================================
   INCLUDED
======================================== */

.included-section {
  background: var(--white);
}

.included-grid {
  width:
    min(
      100%,
      var(--container)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 18px;
}

.included-grid article {
  padding: 27px;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius-md);

  background: var(--bg);
}

.included-grid ul {
  list-style: none;
}

.included-grid li {
  position: relative;

  margin-bottom: 9px;

  padding-left: 21px;

  color: var(--text-soft);

  font-size: 0.9rem;
}

.included-grid li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--teal-dark);

  font-weight: 900;
}


/* ========================================
   AREAS
======================================== */

.areas-section {
  background:
    linear-gradient(
      135deg,
      rgba(37, 191, 197, 0.08),
      rgba(239, 143, 184, 0.07)
    );
}

.areas-layout {
  width:
    min(
      100%,
      var(--container)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    1.2fr
    0.8fr;

  gap: 65px;

  align-items: center;
}

.areas-layout > div:first-child p:last-of-type {
  max-width: 680px;
}

.postcode-box {
  padding: 30px;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius-lg);

  background:
    rgba(
      255,
      255,
      255,
      0.8
    );

  box-shadow: var(--shadow-sm);
}

.postcode-box > span {
  display: block;

  margin-bottom: 7px;

  color: var(--text-soft);

  font-size: 0.76rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}

.postcode-box strong {
  color: var(--navy);

  font-size: 2.2rem;
}

.postcode-box p {
  margin-top: 12px;
}

.postcode-box a {
  color: var(--teal-dark);

  font-weight: 800;
}


/* ========================================
   QUOTE FORM
======================================== */

.quote-section {
  background: var(--white);
}

.quote-section form {
  width:
    min(
      100%,
      860px
    );

  margin-inline: auto;

  padding: 35px;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 20px;

  position: relative;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius-lg);

  background: var(--bg);

  box-shadow: var(--shadow-md);
}

.quote-section form > div {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.quote-section label {
  color: var(--navy-dark);

  font-size: 0.9rem;

  font-weight: 750;
}

.quote-section input,
.quote-section select,
.quote-section textarea {
  width: 100%;

  min-height: 50px;

  padding:
    0
    14px;

  border:
    1px solid
    #cbdadd;

  border-radius: var(--radius-sm);

  outline: none;

  background: var(--white);

  color: var(--text);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.quote-section input:focus,
.quote-section select:focus,
.quote-section textarea:focus {
  border-color: var(--teal);

  box-shadow:
    0 0 0 4px
    rgba(
      37,
      191,
      197,
      0.11
    );
}

.quote-section button {
  grid-column: 1 / -1;

  min-height: 55px;

  border: 0;

  border-radius: 999px;

  background: var(--navy);

  color: var(--white);

  font-weight: 850;
}

.quote-section button:hover {
  background: var(--navy-dark);
}

.quote-section button:disabled {
  cursor: not-allowed;

  opacity: 0.6;
}


/* ========================================
   HONEYPOT
======================================== */

.honeypot-field {
  position: absolute !important;

  left: -10000px !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;

  opacity: 0 !important;

  pointer-events: none !important;
}


/* ========================================
   FAQ
======================================== */

.faq-section {
  background: var(--bg-soft);
}

.faq-grid {
  width:
    min(
      100%,
      var(--container)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 15px;
}

.faq-grid article {
  padding: 25px;

  border:
    1px solid
    var(--border);

  border-radius: var(--radius-md);

  background: var(--white);
}

.faq-grid h3 {
  font-size: 1.05rem;
}

.faq-grid p {
  margin-bottom: 0;

  font-size: 0.91rem;
}


/* ========================================
   FINAL CTA
======================================== */

.final-cta {
  text-align: center;

  background: var(--navy);
}

.final-cta > div {
  width:
    min(
      100%,
      760px
    );

  margin-inline: auto;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  opacity: 0.78;
}


/* ========================================
   FOOTER
======================================== */

footer {
  padding:
    70px
    24px
    30px;

  display: grid;

  grid-template-columns:
    1.6fr
    1fr
    1fr;

  gap: 40px;

  background: var(--navy-deep);

  color:
    rgba(
      255,
      255,
      255,
      0.72
    );
}

footer > div {
  width: 100%;
}

.footer-brand {
  display: inline-block;

  margin-bottom: 13px;

  color: var(--white);

  font-family: Georgia, serif;

  font-size: 1.4rem;

  font-weight: 700;
}

footer p {
  max-width: 390px;

  color:
    rgba(
      255,
      255,
      255,
      0.65
    );
}

footer h2 {
  color: var(--white);

  font-size: 0.95rem;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 8px;
}

footer a:hover {
  color: var(--teal);
}

.footer-bottom {
  grid-column: 1 / -1;

  margin-top: 12px;

  padding-top: 25px;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.1
    );
}


/* ========================================
   SERVICE AND CONTACT PAGES
======================================== */

.service-page > header { position: sticky; top: 0; z-index: 900; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(16px); }
.service-page > header nav { width: min(calc(100% - 48px), var(--container)); min-height: 78px; margin-inline: auto; display: flex; align-items: center; gap: 26px; }
.service-page > header nav > a:first-child { margin-right: auto; color: var(--navy-dark); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 800; }
.service-page > header nav ul { display: flex; align-items: center; gap: 20px; list-style: none; }
.service-page > header nav ul a { color: var(--text); font-size: 0.88rem; font-weight: 750; }
.service-page > header nav ul a:hover,
.service-page > header nav ul a[aria-current="page"] { color: var(--teal-dark); }
.service-page > header nav > a:last-child { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 19px; border-radius: 999px; background: var(--navy); color: var(--white); font-size: 0.88rem; font-weight: 800; }

.service-page main > section { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; padding: 78px 0; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.service-page main > section:nth-child(even) { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-page main > section:first-child { width: 100%; max-width: none; padding: 108px 24px; background: radial-gradient(circle at 82% 20%, rgba(37, 191, 197, 0.16), transparent 34%), linear-gradient(135deg, var(--bg-blue), var(--white)); }
.service-page main > section:first-child > div { width: min(100%, var(--container)); margin-inline: auto; grid-column: 1 / -1; }
.service-page main > section:first-child > div > p:first-child,
.service-page main > section > div:first-child > p:first-child { margin-bottom: 14px; color: var(--teal-dark); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.service-page main > section:first-child h1 { max-width: 920px; }
.service-page main > section:first-child > div > p { max-width: 760px; font-size: 1.05rem; }
.service-page main > section:first-child > div > div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.service-page main > section:first-child > div > div a,
.service-page main > section > div > a,
.service-page main > section > a { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; background: var(--navy); color: var(--white); font-weight: 800; }
.service-page main > section:first-child > div > div a + a { border: 1px solid var(--border); background: var(--white); color: var(--navy); }
.service-page main > section > div:first-child { grid-column: 1 / -1; max-width: 840px; margin-bottom: 16px; }
.service-page main > section > div:not(:first-child) { grid-column: span 4; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.service-page main > section > div:has(> article) { grid-column: 1 / -1; padding: 0; border: 0; background: transparent; box-shadow: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-page main > section > div:has(> article) article { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.service-page main > section ul { padding-left: 20px; }
.service-page main > section li { margin-bottom: 8px; color: var(--text-soft); }

.service-page main > section > form { grid-column: 1 / -1; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-soft); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-page main > section > form > div { display: flex; flex-direction: column; gap: 7px; }
.service-page main > section > form label { color: var(--navy-dark); font-weight: 800; }
.service-page main > section > form input,
.service-page main > section > form select,
.service-page main > section > form textarea { width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid #c9dadd; border-radius: var(--radius-sm); background: var(--white); color: var(--text); }
.service-page main > section > form button { grid-column: 1 / -1; min-height: 52px; border: 0; border-radius: 999px; background: var(--navy); color: var(--white); font-weight: 850; }
.service-page .honeypot-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }

/* Explicit full-width groups for browsers and page structures */
.service-page #prices > div:last-child,
.service-page #included > div:last-child,
.service-page #faq > div:last-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-page #prices > div:last-child article,
.service-page #included > div:last-child article,
.service-page #faq > div:last-child article {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow-wrap: anywhere;
}

.service-page > header nav { gap: 16px; }
.service-page > header nav ul { gap: 15px; }
.service-page > header nav ul a { font-size: 0.8rem; white-space: nowrap; }
.service-page > header nav > a:first-child { font-size: 1.2rem; white-space: nowrap; }
.service-page > header nav > a:last-child { padding-inline: 16px; white-space: nowrap; }

@media (max-width: 900px) {
  .service-page > header nav ul { display: none; }
  .service-page main > section > div:not(:first-child) { grid-column: span 6; }
  .service-page main > section > div:has(> article) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-page #prices > div:last-child,
  .service-page #included > div:last-child,
  .service-page #faq > div:last-child { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .service-page > header nav { width: min(calc(100% - 28px), var(--container)); min-height: 68px; }
  .service-page > header nav > a:first-child { font-size: 1.08rem; }
  .service-page > header nav > a:last-child { min-height: 40px; padding: 0 14px; }
  .service-page main > section,
  .service-page main > section:first-child { width: 100%; padding: 62px 18px; }
  .service-page main > section > div:not(:first-child) { grid-column: 1 / -1; }
  .service-page main > section > div:has(> article) { grid-template-columns: 1fr; }
  .service-page #prices > div:last-child,
  .service-page #included > div:last-child,
  .service-page #faq > div:last-child { grid-template-columns: 1fr; }
  .service-page main > section > form { grid-template-columns: 1fr; padding: 24px 18px; }
}


/* ========================================
   FORM MESSAGES
======================================== */

.form-message {
  grid-column: 1 / -1;

  padding:
    14px
    16px;

  border-radius: var(--radius-sm);

  font-weight: 700;
}


/* ========================================
   GLOBAL ALIGNMENT SYSTEM
======================================== */

.section-heading,
.services-grid,
.regular-layout,
.frequency-grid,
.price-grid,
.included-grid,
.areas-layout,
.faq-grid {
  width:
    min(
      calc(100% - (var(--page-gutter) * 2)),
      var(--container)
    );

  margin-left: auto;
  margin-right: auto;
}

.quote-section form {
  width:
    min(
      calc(100% - (var(--page-gutter) * 2)),
      860px
    );
}

footer {
  padding-left:
    max(
      var(--page-gutter),
      calc((100% - var(--container)) / 2)
    );

  padding-right:
    max(
      var(--page-gutter),
      calc((100% - var(--container)) / 2)
    );
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1050px) {

  .nav-links {
    display: none;
  }

  .site-header .mobile-menu,
  .service-page > header .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .service-page > header nav > ul {
    display: none;
  }

  .main-nav {
    width:
      min(
        calc(100% - 32px),
        var(--container)
      );
  }

  .hero-layout,
  .section-heading,
  .services-grid,
  .regular-layout,
  .frequency-grid,
  .price-grid,
  .included-grid,
  .areas-layout,
  .faq-grid {
    width:
      min(
        calc(100% - 32px),
        var(--container)
      );
  }

  .brand-logo {
    width: 185px;
    max-height: 64px;
  }

  .hero-layout {
    gap: 42px;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .services-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

  .price-grid {
    grid-template-columns:
      repeat(
        3,
        minmax(0, 1fr)
      );
  }

  .included-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 760px) {

  html {
    scroll-padding-top: 72px;
  }

  section {
    padding:
      72px
      18px;
  }

  .hero-layout,
  .section-heading,
  .services-grid,
  .regular-layout,
  .frequency-grid,
  .price-grid,
  .included-grid,
  .areas-layout,
  .faq-grid,
  .quote-section form {
    width: 100%;
  }

  .section-heading {
    margin-left: 0;
    margin-right: 0;
  }

  .main-nav {
    min-height: 72px;

    gap: 12px;
  }

  .brand-logo {
    width: 150px;
    max-height: 56px;
  }

  .nav-cta {
    display: none;
  }

  .service-page > header nav > a:last-child {
    display: none;
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .hero-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  h1 {
    font-size:
      clamp(
        2.55rem,
        12vw,
        3.7rem
      );
  }

  .hero-description {
    font-size: 1.03rem;
  }

  .hero-price {
    width: 100%;

    justify-content: space-between;

    border-radius: var(--radius-md);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-image {
    aspect-ratio: 4 / 3;

    border-radius: var(--radius-md);
  }

  .hero-image img {
    object-position: 58% center;
  }

  .hero-points {
    display: grid;

    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .regular-layout {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .frequency-grid {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .areas-layout {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .quote-section form {
    grid-template-columns: 1fr;

    padding:
      25px
      18px;
  }

  .quote-section button {
    grid-column: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-column: auto;
  }

}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

}


/* ========================================
   SERVICE PAGE FINAL QUOTE — DEFINITIVE FIX
   Supports both the older and newer HTML class names.
======================================== */

.service-page main > section.final-cta,
.service-page main > section.service-final-cta,
.service-page main > section:last-of-type {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  padding: 78px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
  background: transparent;
  color: var(--text);
}

.service-page main > section.final-cta > h2,
.service-page main > section.service-final-cta > h2,
.service-page main > section:last-of-type > h2 {
  width: min(100%, 760px);
  margin: 0;
  color: var(--navy-dark);
}

.service-page main > section.final-cta > p,
.service-page main > section.service-final-cta > p,
.service-page main > section:last-of-type > p {
  width: min(100%, 680px);
  margin: 14px 0 0;
  color: var(--text-soft);
  opacity: 1;
}

.service-page main > section.final-cta > a,
.service-page main > section.service-final-cta > a,
.service-page main > section:last-of-type > a {
  width: auto;
  margin-top: 22px;
  align-self: flex-start;
}

@media (max-width: 640px) {
  .service-page main > section.final-cta,
  .service-page main > section.service-final-cta,
  .service-page main > section:last-of-type {
    width: 100%;
    padding: 62px 18px;
  }
}


/* ========================================
   REGULAR CLEANING HERO
======================================== */

.regular-hero {
  padding-top: 54px;
  padding-bottom: 64px;
}

.regular-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.5vw, 4.65rem);
  line-height: 0.98;
}

.regular-hero-price {
  margin: 0 0 24px;
  color: var(--text-soft);
}

.regular-hero-image {
  max-height: 520px;
}

@media (max-width: 760px) {
  .regular-hero {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .regular-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }
}


/* ========================================
   SERVICE HERO — REAL HTML STRUCTURE
======================================== */

.service-page main > section.service-visual-hero {
  width: 100%;
  max-width: none;
  padding: 58px 24px 70px;
}

.service-page main > section.service-visual-hero > .service-visual-layout {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  gap: 46px;
  align-items: center;
}

.service-page main > section.service-visual-hero > .service-visual-layout::after {
  content: none;
  display: none;
}

.service-visual-content {
  min-width: 0;
}

.service-page main > section.service-visual-hero > .service-visual-layout > .service-visual-content {
  grid-column: 1;
}

.service-page .service-visual-content > p:first-child {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-page .service-visual-content h1 {
  width: 100%;
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.5vw, 4.65rem);
  line-height: 0.98;
}

.service-page .service-visual-content > p:not(:first-child) {
  max-width: 690px;
  font-size: 1.05rem;
}

.service-page .service-visual-content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.service-page .service-visual-content > div a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.service-page .service-visual-content > div a + a {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
}

.service-visual-image {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4 / 3;
}

.service-page main > section.service-visual-hero > .service-visual-layout > .service-visual-image {
  grid-column: 2;
  grid-row: 1;
}

.service-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

@media (max-width: 760px) {
  .service-page main > section.service-visual-hero {
    padding: 46px 18px 56px;
  }

  .service-page main > section.service-visual-hero > .service-visual-layout {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-page main > section.service-visual-hero > .service-visual-layout > .service-visual-image {
    grid-column: 1;
    grid-row: auto;
  }

  .service-page .service-visual-content h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }
}


/* ========================================
   SERVICE PAGE HERO — IMAGE AND SPACING
======================================== */

.service-page main > section:first-child {
  padding-top: 72px;
  padding-bottom: 76px;
}

.service-page main > section:first-child > div {
  position: relative;
  min-height: 390px;
  padding-right: min(43%, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-page main > section:first-child > div::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: min(38%, 440px);
  height: 330px;
  transform: translateY(-50%);
  border-radius: var(--radius-lg);
  background:
    url("../images/juliete-cleaning-hero.webp")
    58% center / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.service-page main > section:first-child h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.6vw, 4.75rem);
  line-height: 0.99;
}

.service-page main > section:first-child > div > p {
  max-width: 700px;
}

.service-page main > section:not(:first-child) {
  padding-top: 68px;
  padding-bottom: 68px;
}

@media (max-width: 900px) {
  .service-page main > section:first-child > div {
    min-height: 340px;
    padding-right: min(41%, 360px);
  }

  .service-page main > section:first-child > div::after {
    width: 36%;
    height: 280px;
  }
}

@media (max-width: 700px) {
  .service-page main > section:first-child {
    padding: 50px 18px 56px;
  }

  .service-page main > section:first-child > div {
    min-height: 0;
    padding-right: 0;
  }

  .service-page main > section:first-child > div::after {
    position: relative;
    top: auto;
    right: auto;
    order: 10;
    width: 100%;
    height: auto;
    margin-top: 32px;
    transform: none;
    aspect-ratio: 4 / 3;
  }

  .service-page main > section:first-child h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .service-page main > section:not(:first-child) {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}


/* ========================================
   SERVICE HERO — TRUE TWO-COLUMN LAYOUT
======================================== */

.service-page main > section:first-child > div {
  min-height: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  grid-auto-rows: auto;
  column-gap: 72px;
  align-items: center;
}

.service-page main > section:first-child > div > * {
  grid-column: 1;
}

.service-page main > section:first-child > div::after {
  position: relative;
  top: auto;
  right: auto;
  grid-column: 2;
  grid-row: 1 / span 8;
  width: 100%;
  height: auto;
  transform: none;
  aspect-ratio: 4 / 3;
  align-self: center;
}

.service-page main > section:first-child h1 {
  width: 100%;
  max-width: 760px;
  font-size: clamp(3rem, 3.7vw, 4rem);
}

.service-page main > section:first-child > div > p {
  width: 100%;
  max-width: 680px;
}

.service-page main > section:first-child > div > div {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-page main > section:first-child > div > div a {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .service-page main > section:first-child > div {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    column-gap: 42px;
  }

  .service-page main > section:first-child h1 {
    font-size: clamp(2.8rem, 5vw, 3.5rem);
  }
}

@media (max-width: 760px) {
  .service-page main > section:first-child > div {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .service-page main > section:first-child > div::after {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 32px;
  }

  .service-page main > section:first-child > div > div a {
    white-space: normal;
  }
}


/* ========================================
   SERVICE HERO BALANCE + FOOTER LOGO
======================================== */

.service-page main > section:first-child > div {
  min-height: 0;
  padding-right: 0;
}

.service-page main > section:first-child > div::after {
  width: 100%;
  height: auto;
}

.service-page main > section:first-child h1 {
  max-width: 760px;
  font-size: clamp(3rem, 3.7vw, 4rem);
  line-height: 1.02;
}

.service-page main > section:first-child > div > div {
  width: 100%;
  max-width: 720px;
  flex-wrap: wrap;
}

.service-page footer > div:first-child > a:first-child,
body:not(.service-page) footer > div:first-child > a:first-child {
  display: block;
  width: 210px;
  height: 94px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  background:
    #ffffff
    url("../images/juliete-cleaning-logo.webp")
    center / 175px auto no-repeat;
  text-indent: -9999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

@media (max-width: 900px) {
  .service-page main > section:first-child > div {
    min-height: 0;
    padding-right: 0;
  }

  .service-page main > section:first-child > div::after {
    width: 100%;
    height: auto;
  }

  .service-page main > section:first-child h1 {
    font-size: clamp(2.8rem, 6vw, 3.65rem);
  }
}

@media (max-width: 700px) {
  .service-page main > section:first-child > div {
    min-height: 0;
    padding-right: 0;
  }

  .service-page main > section:first-child > div::after {
    width: 100%;
    height: auto;
  }

  .service-page main > section:first-child > div > div {
    flex-wrap: wrap;
  }
}


/* ========================================
   SERVICE HERO — MATCH REGULAR PAGE SCALE
======================================== */

.service-page main > section:first-child > div {
  width: min(calc(100% - 48px), 1480px);
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1.05fr);
  column-gap: 72px;
}

.service-page main > section:first-child > div::after {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 3;
}

@media (max-width: 1200px) {
  .service-page main > section:first-child > div {
    width: min(calc(100% - 40px), 1120px);
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
    column-gap: 48px;
  }
}

@media (max-width: 900px) {
  .service-page main > section:first-child > div {
    width: min(calc(100% - 36px), 820px);
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    column-gap: 34px;
  }
}

@media (max-width: 760px) {
  .service-page main > section:first-child > div {
    width: 100%;
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}


/* ========================================
   SERVICE HERO — EXACT REGULAR PAGE GRID
======================================== */

.service-page main > section:first-child > div {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  gap: 46px;
}

.service-page main > section:first-child h1 {
  max-width: 730px;
  font-size: clamp(3rem, 4.5vw, 4.65rem);
  line-height: 0.98;
}

@media (max-width: 1050px) {
  .service-page main > section:first-child > div {
    width: min(calc(100% - 32px), var(--container));
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .service-page main > section:first-child > div {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-page main > section:first-child h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }
}
