:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: #e8eef7;
  --primary: #456ea7;
  --primary-strong: #17345c;
  --primary-deep: #0b1728;
  --accent: #7fb2e3;
  --accent-warm: #d9b16f;
  --text: #122033;
  --muted: #5c6a7e;
  --line: rgba(18, 32, 51, 0.12);
  --shadow: 0 24px 70px rgba(11, 23, 40, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(127, 178, 227, 0.22), transparent 32%),
    linear-gradient(180deg, #f7fafe 0%, #eef3f9 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(69, 110, 167, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding: 4.5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(232, 238, 247, 0.85), rgba(244, 247, 251, 0.9));
}

.section--white {
  background: rgba(255, 255, 255, 0.74);
}

.surface {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-heading,
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  color: var(--muted);
}

/* Keep a comfortable, consistent gap between headings and their text. */
h1 + p,
h2 + p,
h3 + p,
h4 + p {
  margin-top: 0.7rem;
}

p.lead + p {
  margin-top: 0.85rem;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button-link:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 18px 36px rgba(23, 52, 92, 0.25);
}

.button--secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.button--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.button--dark {
  color: #fff;
  background: var(--primary-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0 0;
}

.site-header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: left center;
}

.brand__text {
  display: grid;
  gap: 0.08rem;
}

.brand__name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__tag {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  color: var(--primary-deep);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.nav-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  transition: background-color var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--primary-deep);
  background: rgba(69, 110, 167, 0.1);
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
  margin-top: -5.5rem;
  padding-top: 10rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero--home {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 23, 40, 0.78), rgba(23, 52, 92, 0.34)),
    url("/assets/images/hero-cleaning.png") center/cover no-repeat;
}

.hero--home::before {
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(11, 23, 40, 0.24), rgba(11, 23, 40, 0.1));
}

.page-hero--brand {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(39, 78, 128, 0.97), rgba(17, 42, 73, 0.94)),
    linear-gradient(180deg, rgba(127, 178, 227, 0.14), transparent);
}

.page-hero--contact {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(39, 78, 128, 0.94), rgba(14, 31, 52, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.page-hero--booking {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 23, 40, 0.92), rgba(39, 78, 128, 0.88)),
    url("/assets/images/hero-cleaning.png") center/cover no-repeat;
}

.hero__grid,
.page-hero__grid,
.split,
.contact-shell,
.booking-grid,
.principles-layout,
.booking-steps,
.about-strip__grid {
  display: grid;
  gap: 2rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  min-height: 46rem;
  padding-bottom: 5rem;
}

.hero__left,
.hero__right,
.page-hero__content,
.page-hero__media,
.split__content,
.split__media,
.contact-shell__content,
.contact-shell__media,
.booking-card,
.principle-card,
.team-card,
.contact-info-card {
  position: relative;
  z-index: 1;
}

.price-badge {
  width: min(100%, 18rem);
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(11, 23, 40, 0.42);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-badge p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-badge strong {
  display: block;
  margin-top: 0.75rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero__right > p,
.page-hero__content > p {
  max-width: 40rem;
}

.hero--home .hero__right p,
.hero--home .hero__right .lead,
.page-hero--contact .page-hero__content p,
.page-hero--contact .page-hero__content .lead,
.page-hero--booking .booking-copy p,
.page-hero--brand .page-hero__content p {
  color: rgba(255, 255, 255, 0.88);
}

.hero--home h1,
.page-hero h1 {
  text-shadow: 0 8px 24px rgba(11, 23, 40, 0.18);
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.trust-card {
  max-width: 24rem;
  margin-top: 1.75rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-deep);
}

.trust-card p:first-child {
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-card p:last-child {
  margin-top: 0.6rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  min-height: 37rem;
  padding-bottom: 4.5rem;
}

.page-hero__subheading {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.collage {
  position: relative;
  min-height: 28rem;
}

.collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.collage img:first-child {
  top: 0;
  left: 0;
  width: 65%;
  height: 63%;
}

.collage img:last-child {
  right: 0;
  bottom: 0;
  width: 62%;
  height: 58%;
}

.section-intro {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  text-align: center;
}

.section-intro p {
  max-width: 42rem;
}

.wide-media,
.media-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.wide-media {
  width: 100%;
  margin-top: 1rem;
}

.wide-media img,
.media-frame img,
.split__media img,
.contact-shell__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.split--reverse .split__content {
  order: 1;
}

.split--reverse .split__media {
  order: 2;
}

.split__content {
  padding: 1rem 0;
}

.split__content p,
.about-strip__grid p,
.contact-note {
  max-width: 35rem;
}

/* Let the home About copy use the available row width beside its CTA. */
.about-strip__grid p {
  max-width: 62rem;
}

.split__media {
  min-height: 32rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-strip {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(232, 238, 247, 0.88), rgba(222, 230, 242, 0.92));
}

.about-strip__grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.banner {
  padding: 4.6rem 0;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(127, 178, 227, 0.32), transparent 35%),
    linear-gradient(135deg, #456ea7, #17345c);
}

.banner h2 {
  max-width: 32rem;
  text-align: center;
  margin: 0 auto;
}

.contact-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.contact-shell__media {
  min-height: 30rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.form-card,
.principle-card,
.team-card,
.booking-card,
.contact-info-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.form-card--dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.form-card--dark h2,
.form-card--dark p,
.form-card--dark label,
.page-hero--contact .contact-shell__content p {
  color: rgba(255, 255, 255, 0.88);
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 800;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-card--dark .field input,
.form-card--dark .field textarea {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(69, 110, 167, 0.75);
  box-shadow: 0 0 0 4px rgba(69, 110, 167, 0.14);
}

.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.field--full {
  grid-column: 1 / -1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.status-banner {
  display: none;
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.status-banner.is-visible {
  display: block;
}

.status-banner--error {
  color: #8a1f32;
  background: #fde7ec;
  border: 1px solid #f5b9c4;
}

.status-banner--success {
  color: #0d5c48;
  background: #ddf6ef;
  border: 1px solid #9de0ca;
}

.principles-layout {
  gap: 1.5rem;
}

.principles-layout > .wide-media {
  margin-top: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.principle-card h3,
.contact-info-card h3,
.booking-card h3 {
  font-size: 1.35rem;
}

.team-section {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, rgba(232, 238, 247, 0.94), rgba(244, 247, 251, 0.9));
}

.team-card {
  display: grid;
  gap: 1.2rem;
  padding: 2rem;
}

.team-quote {
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-info-card small {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card strong {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
}

.booking-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 35rem;
  padding-bottom: 4.5rem;
}

.booking-stack,
.booking-steps {
  display: grid;
  gap: 1.1rem;
}

.booking-card p strong {
  color: var(--text);
}

.booking-card .button {
  margin-top: 1rem;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.thank-you {
  min-height: calc(100vh - 8rem);
  display: grid;
  place-items: center;
  padding: 8rem 0 4rem;
}

.thank-you__card {
  width: min(calc(100% - 2rem), 46rem);
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.thank-you__card p {
  max-width: 30rem;
  margin: 0.8rem auto 0;
}

.footer {
  padding: 2.8rem 0 3.4rem;
  background: rgba(255, 255, 255, 0.74);
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: rgba(69, 110, 167, 0.08);
  transition: transform var(--transition), background-color var(--transition);
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(69, 110, 167, 0.16);
}

.socials svg {
  width: 1.2rem;
  height: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .button,
  .button-link,
  .socials a {
    transition: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .site-header__shell {
    position: relative;
    display: block;
    border-radius: 28px;
    padding-right: 4.75rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    padding-top: 0.9rem;
  }

  .nav-links a {
    width: auto;
  }

  .hero,
  .page-hero {
    margin-top: -7.7rem;
    padding-top: 11rem;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .split--reverse,
  .contact-shell,
  .booking-grid,
  .about-strip__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .page-hero__grid,
  .booking-grid {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero__left {
    order: 2;
  }

  .hero__right {
    order: 1;
  }

  .collage {
    min-height: 23rem;
  }

  .split--reverse .split__content,
  .split--reverse .split__media {
    order: initial;
  }

  .split__media,
  .contact-shell__media {
    min-height: 22rem;
  }

  .principles-grid,
  .contact-grid,
  .form-grid--two {
    grid-template-columns: 1fr;
  }

  .section,
  .team-section {
    padding: 4.25rem 0;
  }

  .banner {
    padding: 3.8rem 0;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.1rem, 9.5vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.45rem);
  }

  .site-header__shell {
    padding: 0.85rem 1rem;
    padding-right: 4.6rem;
  }

  .brand {
    gap: 0.65rem;
    max-width: calc(100% - 1rem);
  }

  .brand img {
    width: 2.6rem;
    height: 2.6rem;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__name {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand__tag {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 10.5rem;
  }

  .price-badge {
    width: 100%;
  }

  .trust-card,
  .button,
  .button-link {
    width: 100%;
  }

  .hero__actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-grid {
    gap: 1rem;
  }

  .form-card,
  .team-card,
  .booking-card,
  .contact-info-card,
  .principle-card {
    padding: 1.3rem;
  }
}

/* Light blue landing-page refresh based on the approved reference direction. */
:root {
  --bg: #f8fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-soft: #eaf5ff;
  --primary: #1e66d0;
  --primary-strong: #1852b6;
  --primary-deep: #163a78;
  --accent: #3ed5e8;
  --accent-warm: #8ce8ee;
  --text: #143465;
  --muted: #61718d;
  --line: rgba(27, 89, 179, 0.12);
  --shadow: 0 18px 48px rgba(42, 105, 192, 0.12);
}

body {
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 60%, #ffffff 100%);
}

h1, h2, h3, h4, .brand__name, .price-badge strong {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.site-header { padding-top: 0.7rem; }
.site-header__shell { max-width: none; margin: 0; border-radius: 999px; padding: 0.72rem 1.1rem; }
.brand img { width: 2.55rem; height: 2.55rem; }
.brand__tag { display: none; }
.nav-links a { font-size: 0.78rem; padding: 0.65rem 0.86rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; background: linear-gradient(90deg, #279bdc, #38d2df); }

.hero--home {
  background:
    radial-gradient(circle at 12% 28%, rgba(119, 212, 255, 0.32), transparent 20%),
    radial-gradient(circle at 78% 92%, rgba(132, 234, 239, 0.3), transparent 22%),
    linear-gradient(125deg, #2c72d3 0%, #1b58ba 52%, #4f92df 100%);
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/hero-cleaning.png") 73% 54% / auto 88% no-repeat;
  opacity: 0.92;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.hero--home::before { background: radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.22), transparent 12%), linear-gradient(90deg, rgba(14, 68, 158, 0.16), transparent 60%); }
.hero__grid { grid-template-columns: minmax(0, 0.82fr) minmax(14rem, 0.5fr); min-height: 39rem; padding-bottom: 3.4rem; }
.hero__right { z-index: 2; }
.hero--home h1 { max-width: 12ch; font-size: clamp(3rem, 5vw, 4.85rem); text-shadow: none; }
.hero--home .hero__right .lead { max-width: 23rem; color: rgba(255, 255, 255, 0.92); }
.button--secondary { color: #fff; background: linear-gradient(90deg, #27b6df, #40dbdd); border: 0; box-shadow: 0 12px 25px rgba(34, 206, 224, 0.25); }
.button--ghost { background: rgba(255, 255, 255, 0.17); border-color: rgba(255, 255, 255, 0.46); }
.trust-card { padding: 1.1rem 1.25rem; border-radius: 18px; background: rgba(255, 255, 255, 0.91); box-shadow: none; }
.trust-card p:last-child { font-size: 0.9rem; }
.price-badge { border-radius: 18px; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.42); color: #fff; box-shadow: none; }
.price-badge p { color: #fff; }

.benefits-section { position: relative; z-index: 3; margin-top: -3rem; padding-bottom: 2rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.benefit-card { padding: 1.7rem; border-radius: 20px; background: #fff; border: 1px solid #e9f1fb; box-shadow: var(--shadow); }
.benefit-card--featured { color: #fff; background: linear-gradient(145deg, #2877d4, #1c55b8); }
.benefit-card--featured p, .benefit-card--featured .benefit-icon { color: rgba(255, 255, 255, 0.82); }
.benefit-icon { display: inline-flex; margin-bottom: 1.1rem; color: #2588d7; font: 800 0.78rem "Plus Jakarta Sans", sans-serif; letter-spacing: 0.12em; }
.benefit-card h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.benefit-card p { font-size: 0.88rem; }

.section { padding: 5.8rem 0; }
.section--white { background: #fff; }
.section-intro { grid-template-columns: 0.92fr 1.08fr; grid-template-areas: "copy image"; align-items: center; justify-items: start; text-align: left; gap: 3.5rem; }
.section-intro .eyebrow, .section-intro h2, .section-intro > p { grid-column: 1; }
.section-intro .eyebrow { grid-row: 1; margin-bottom: -2.7rem; }
.section-intro h2 { grid-row: 2; }
.section-intro > p { grid-row: 3; }
.section-intro .wide-media { grid-area: image; width: 100%; margin: 0; }
.wide-media { border-radius: 22px; box-shadow: none; }
.wide-media img { min-height: 20rem; max-height: 25rem; }

.services-showcase { padding: 5.8rem 0; background: linear-gradient(135deg, #2f7ddd, #2172d2 52%, #36a6df); }
.services-showcase__intro { max-width: 38rem; margin: 0 auto 2.2rem; text-align: center; }
.services-showcase__intro .eyebrow, .services-showcase__intro h2, .services-showcase__intro p { color: #fff; }
.services-showcase__intro .eyebrow::before { background: #8beaf0; }
.service-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.service-card { overflow: hidden; border-radius: 20px; background: #fff; box-shadow: 0 14px 30px rgba(20, 62, 130, 0.18); }
.service-card img { width: 100%; height: 14rem; object-fit: cover; }
.service-card div { margin: -1.7rem 0.8rem 0.8rem; padding: 1.15rem; position: relative; border-radius: 15px; background: #fff; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.83rem; }
.services-showcase__action { display: flex; justify-content: center; margin-top: 2rem; }
.button--light { color: #1d60bb; background: #fff; }

.section--soft { background: #f1f9ff; }
.split__content { padding: 0; background: transparent; border: 0; box-shadow: none; }
.split__media { border-radius: 22px; box-shadow: none; }
.about-strip { background: #eaf7ff; padding: 5rem 0; }
.about-strip h3, .about-strip p, .about-strip .eyebrow { color: var(--text); }
.about-strip .eyebrow::before { background: var(--accent); }
.banner { background: linear-gradient(90deg, #3a87db, #38c9df); }
.contact-shell__media { border-radius: 22px; box-shadow: none; }
.form-card { border-radius: 22px; box-shadow: 0 14px 35px rgba(38, 114, 199, 0.1); }
.footer { background: #eaf5ff; }

@media (max-width: 960px) {
  .benefits-grid, .service-cards { grid-template-columns: 1fr; }
  .section-intro { grid-template-columns: 1fr; grid-template-areas: "copy" "image"; gap: 1.3rem; }
  .section-intro .eyebrow, .section-intro h2, .section-intro > p { grid-column: auto; grid-row: auto; }
  .section-intro .eyebrow { margin-bottom: 0; }
}

@media (max-width: 640px) {
  .site-header__shell { border-radius: 22px; }
  .hero--home::after { background-position: 80% 88%; background-size: auto 65%; opacity: 0.54; }
  .hero--home h1 { font-size: clamp(2.35rem, 10vw, 3rem); }
  .benefits-section { margin-top: -1.3rem; }
  .benefit-card { padding: 1.35rem; }
}

/* Refreshed visual direction: warm, editorial, and distinct from the original blue layout. */
:root {
  --bg: #f5f3ed;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-soft: #e6ece4;
  --primary: #3f765d;
  --primary-strong: #1f503d;
  --primary-deep: #15251e;
  --accent: #b8d66a;
  --accent-warm: #e4b57e;
  --text: #17221c;
  --muted: #5f6c64;
  --line: rgba(23, 34, 28, 0.12);
  --shadow: 0 22px 60px rgba(22, 37, 29, 0.13);
}

body {
  background: radial-gradient(circle at 0 12%, rgba(184, 214, 106, 0.18), transparent 28%), radial-gradient(circle at 95% 32%, rgba(228, 181, 126, 0.13), transparent 24%), linear-gradient(180deg, #faf9f4 0%, #f1f3ed 100%);
}

.section { padding: 7rem 0; }
.section--soft { background: linear-gradient(180deg, rgba(223, 232, 218, 0.76), rgba(245, 243, 237, 0.96)); }
.section--white { background: rgba(255, 255, 255, 0.58); }
.site-header__shell { border-radius: 18px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(63, 118, 93, 0.12); }

.hero--home {
  background: linear-gradient(105deg, rgba(17, 32, 25, 0.92) 0%, rgba(17, 32, 25, 0.78) 46%, rgba(17, 32, 25, 0.28) 100%), url("/assets/images/hero-cleaning.png") center/cover no-repeat;
}

.hero--home::before {
  background: radial-gradient(circle at 88% 18%, rgba(184, 214, 106, 0.34), transparent 18%), linear-gradient(135deg, transparent 65%, rgba(184, 214, 106, 0.14));
}

.hero__grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.55fr);
  align-items: center;
  min-height: 44rem;
  padding-bottom: 4rem;
}

.hero__left {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
}

.hero__right { grid-column: 1; grid-row: 1; }
.hero--home h1 { max-width: 13ch; font-size: clamp(3.3rem, 5.6vw, 5.7rem); }

.price-badge {
  width: min(100%, 15rem);
  padding: 1.6rem;
  border: 0;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  background: var(--accent);
  color: var(--primary-deep);
}

.price-badge p { color: var(--primary-deep); font-size: 0.74rem; }
.price-badge strong { font-size: clamp(2.55rem, 4vw, 3.8rem); }
.trust-card { max-width: 21rem; border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg); background: rgba(255, 255, 255, 0.96); }
.wide-media { width: min(100%, 56rem); margin-top: 1.5rem; }
.wide-media img { max-height: 29rem; object-fit: cover; }

.split__content {
  padding: 2.4rem;
  background: rgba(255, 255, 255, 0.72);
  border-left: 5px solid var(--accent);
  box-shadow: 14px 14px 0 rgba(184, 214, 106, 0.32);
}

.split__media { border-radius: 0 var(--radius-xl) 0 var(--radius-xl); }
.about-strip { padding: 5.5rem 0; background: var(--primary-deep); }
.about-strip h3, .about-strip p, .about-strip .eyebrow { color: #fff; }
.about-strip .eyebrow::before { background: var(--accent); }
.banner { background: radial-gradient(circle at top right, rgba(184, 214, 106, 0.52), transparent 30%), linear-gradient(135deg, #376c53, #1d4534); }
.contact-shell__media { border-radius: var(--radius-xl) 0 var(--radius-xl) 0; }
.form-card, .principle-card, .team-card, .booking-card, .contact-info-card { border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg); }
.footer { background: #e7ece4; }

@media (max-width: 960px) {
  .hero__left, .hero__right { grid-column: auto; grid-row: auto; }
  .hero__left { justify-self: stretch; }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .hero--home h1 { width: 100%; max-width: 10ch; font-size: clamp(2.35rem, 10vw, 2.85rem); overflow-wrap: anywhere; }
  .split__content { padding: 1.65rem; box-shadow: 8px 8px 0 rgba(184, 214, 106, 0.32); }

  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__right { min-width: 0; max-width: 100%; }
  .hero__left { grid-column: 1 !important; grid-row: auto !important; width: 100%; }
  .price-badge { width: 100%; max-width: none; }
}

/* Reference-template composition for the Trono Clean home page. */
.hero--home {
  min-height: 31rem;
  background:
    radial-gradient(circle at 10% 24%, transparent 0 4.5rem, rgba(255,255,255,.08) 4.6rem 4.72rem, transparent 4.82rem),
    radial-gradient(circle at 32% 30%, rgba(92, 166, 250, .24) 0 3.2rem, transparent 3.3rem),
    radial-gradient(circle at 73% 69%, rgba(96, 232, 239, .22) 0 6.2rem, transparent 6.3rem),
    linear-gradient(145deg, #286bce 0%, #204eae 54%, #2b74cd 100%);
}

/* September 2026 layout polish: centered landing hero, fuller About copy,
   balanced Contact panels, and a dedicated booking request form. */
.home-page .hero--home .hero__grid {
  grid-template-columns: minmax(0, .88fr) minmax(25rem, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1180px;
  margin-inline: auto;
  padding-bottom: 2.25rem;
}

.home-page .hero__right {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  max-width: 34rem;
  text-align: center;
}

.home-page .hero--home h1,
.home-page .hero--home .hero__right .lead {
  max-width: none;
  margin-inline: auto;
}

.home-page .hero__actions {
  justify-content: center;
}

.home-page .hero__visual {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 100%;
}

.principles-layout {
  gap: clamp(2rem, 4vw, 3.25rem);
}

.about-page .principles-intro {
  display: grid;
  justify-items: center;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.about-page .principles-intro h2 {
  max-width: 17ch;
  margin-top: .75rem;
}

.about-page .principles-intro .lead {
  max-width: 760px;
  margin-top: 1.25rem;
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

.about-page .principles-intro > p:not(.lead) {
  max-width: 720px;
  margin-top: 1rem;
  line-height: 1.8;
}

.about-page .principles-intro .button-row {
  justify-content: center;
  margin-top: 2rem;
}

.button--outline {
  color: var(--primary);
  background: transparent;
  border: 1px solid rgba(30, 102, 208, .28);
}

.button--outline:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.about-page .principles-grid {
  align-items: stretch;
}

.about-page .principle-card {
  min-height: 13rem;
}

.contact-page .page-hero__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.contact-page .page-hero__content,
.contact-page .page-hero__media {
  min-height: 34rem;
}

.contact-page .page-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(15, 67, 148, .22);
}

.contact-page .page-hero__media .form-card,
.contact-page .contact-shell__content,
.contact-page .contact-shell__content .form-card {
  height: 100%;
}

.contact-page .page-hero__media .form-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page .form-card--dark .field label {
  color: #fff;
}

.contact-page .contact-shell__media,
.contact-page .contact-shell__content {
  min-height: 30rem;
}

.contact-page .contact-shell__content .form-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-request-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 14%, rgba(62, 213, 232, .14), transparent 24rem),
    linear-gradient(180deg, #f7fbff, #eaf5ff);
}

.booking-request {
  display: grid;
  grid-template-columns: minmax(17rem, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.booking-request__intro {
  position: sticky;
  top: 7rem;
  padding-top: 1rem;
}

.booking-request__intro h2 {
  margin-top: .7rem;
  color: var(--primary-deep);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.booking-request__intro .lead {
  margin-top: 1.2rem;
  color: var(--muted);
}

.booking-benefits {
  display: grid;
  gap: .9rem;
  margin-top: 2rem;
}

.booking-benefits li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
  font-weight: 700;
  list-style: none;
}

.booking-benefits li::before {
  content: "✓";
  position: absolute;
  top: -.1rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: .78rem;
}

.booking-help {
  display: grid;
  gap: .25rem;
  margin-top: 2.2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(30, 102, 208, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
}

.booking-help span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.booking-help a {
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 800;
}

.booking-form-card {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(30, 102, 208, .11);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 60px rgba(36, 99, 185, .14);
}

.booking-form-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.booking-form-card__heading h3 {
  margin-top: .35rem;
  color: var(--primary-deep);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.booking-step {
  flex: 0 0 auto;
  padding: .55rem .75rem;
  border-radius: 999px;
  color: var(--primary);
  background: #e8f5ff;
  font-size: .76rem;
  font-weight: 800;
}

.booking-form {
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.field select {
  width: 100%;
  min-height: 3.2rem;
  padding: .9rem 2.6rem .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  background-color: #fff;
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field select:focus {
  outline: none;
  border-color: rgba(30, 102, 208, .75);
  box-shadow: 0 0 0 4px rgba(30, 102, 208, .12);
}

.booking-form .field label {
  font-size: .9rem;
}

.booking-form .field input,
.booking-form .field select {
  min-height: 3.2rem;
}

.booking-form .field textarea {
  min-height: 7.5rem;
}

.field-group-inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.field-group-inline > div {
  display: grid;
  gap: .45rem;
}

.booking-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: .45rem;
}

.booking-submit .button {
  flex: 0 0 auto;
}

.booking-submit p {
  max-width: 25rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .home-page .hero--home .hero__grid,
  .contact-page .page-hero__grid,
  .booking-request {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .hero__right,
  .home-page .hero__visual {
    grid-column: 1;
    grid-row: auto;
  }

  .home-page .hero__visual {
    max-width: 42rem;
  }

  .contact-page .page-hero__content,
  .contact-page .page-hero__media {
    min-height: auto;
  }

  .booking-request__intro {
    position: static;
    max-width: 42rem;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .home-page .hero--home .hero__grid {
    gap: 1.4rem;
    padding-top: 7.9rem;
  }

  .home-page .hero__right {
    width: 100%;
  }

  .home-page .hero--home h1 {
    max-width: 12ch;
    margin-inline: auto;
  }

  .contact-page .page-hero__content {
    padding: 1.5rem;
  }

  .booking-form-card__heading,
  .booking-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-step {
    align-self: flex-start;
  }

  .field-group-inline {
    grid-template-columns: 1fr;
  }

  .booking-submit .button {
    width: 100%;
  }
}

/* Responsive site header. */
.site-header .container { position: relative; }
.site-header__shell { min-height: 4.1rem; }

@media (max-width: 960px) {
  .site-header { padding-top: .55rem; }
  .site-header .container { width: min(calc(100% - 2rem), var(--container)); }
  .site-header__shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    min-height: 4rem;
    padding: .65rem .7rem .65rem .85rem;
    border-radius: 18px;
  }
  .brand { min-width: 0; }
  .brand img { flex: 0 0 auto; width: 2.45rem; height: 2.45rem; }
  .brand__name { display: block; max-width: 12rem; overflow: hidden; font-size: 1.05rem; text-overflow: ellipsis; white-space: nowrap; }
  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 2.65rem;
    height: 2.65rem;
    color: #fff;
    background: linear-gradient(135deg, #2879d6, #35cddd);
    box-shadow: 0 8px 20px rgba(39, 116, 207, .2);
  }
  .nav-toggle svg { transition: transform 220ms ease; }
  .nav-toggle[aria-expanded="true"] svg { transform: rotate(90deg); }
  .nav-links {
    position: absolute;
    top: calc(100% + .55rem);
    right: 0;
    left: 0;
    z-index: 20;
    display: grid;
    gap: .25rem;
    width: 100%;
    padding: .55rem;
    border: 1px solid rgba(41, 105, 194, .12);
    border-radius: 16px;
    background: rgba(245, 249, 255, .98);
    box-shadow: 0 18px 42px rgba(16, 56, 119, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transform-origin: top;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .nav-links a { width: 100%; padding: .75rem .9rem; border-radius: 11px; font-size: .83rem; }
  .nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; background: linear-gradient(90deg, #2879d6, #35cddd); }

  .hero--home, .page-hero { margin-top: -4.55rem; }
  .hero--home .hero__grid { padding-top: 5.7rem; }
  .page-hero__grid, .booking-grid { padding-top: 6rem; }
}

@media (max-width: 480px) {
  .brand__name { max-width: 10.5rem; font-size: .98rem; }
  .site-header__shell { min-height: 3.75rem; }
  .hero--home, .page-hero { margin-top: -4.3rem; }
  .hero--home .hero__grid { padding-top: 5.35rem; }
  .page-hero__grid, .booking-grid { padding-top: 5.7rem; }
}

/* Two-column home hero: copy + one cohesive visual card. */
.home-page .hero--home { min-height: 34rem; }
.home-page .hero--home .hero__grid {
  grid-template-columns: minmax(0, .86fr) minmax(27rem, 1.14fr);
  min-height: 34rem;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: 6.4rem;
  padding-bottom: 2.5rem;
}
.home-page .hero__right { grid-column: 1; grid-row: 1; max-width: 31rem; }
.home-page .hero--home h1 { max-width: 11ch; font-size: clamp(3rem, 4.4vw, 4.5rem); line-height: .98; }
.home-page .hero--home h1 span { display: block; color: #75e8ef; }
.home-page .hero--home .hero__right .lead { max-width: 23rem; margin-top: 1.2rem; font-size: 1rem; line-height: 1.65; }
.home-page .hero__actions { margin-top: 1.6rem; }
.home-page .hero__actions .button { min-height: 2.9rem; padding: .72rem 1.25rem; font-size: .8rem; }

.home-page .hero__visual {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 27rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(91, 178, 240, .4), rgba(29, 76, 168, .16));
  box-shadow: 0 26px 60px rgba(12, 49, 121, .25);
}
.home-page .hero__visual::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -3rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgba(91, 224, 235, .18);
}
.home-page .hero__visual .hero__portrait {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 21.5rem;
  margin: 0;
  overflow: hidden;
}
.home-page .hero__visual .hero__portrait img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.home-page .hero__visual .hero__left {
  position: relative;
  z-index: 3;
  grid-column: 1 !important;
  grid-row: 2 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: rgba(19, 61, 143, .38);
  backdrop-filter: blur(12px);
}
.home-page .hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin: 0; }
.home-page .hero-stats p { min-width: 0; }
.home-page .hero-stats strong { font-size: 1.15rem; }
.home-page .hero-stats span { font-size: .54rem; white-space: nowrap; }
.home-page .price-badge { flex: 0 0 auto; min-width: 7.8rem; width: auto; padding: .6rem .75rem; background: #fff; border: 0; }
.home-page .price-badge p { color: #2a68bf; font-size: .48rem; }
.home-page .price-badge strong { color: #173c7f; font-size: 1.35rem; }

@media (max-width: 1080px) {
  .home-page .hero--home .hero__grid { grid-template-columns: minmax(0, .82fr) minmax(24rem, 1.18fr); gap: 2rem; }
  .home-page .hero--home h1 { font-size: clamp(2.8rem, 5vw, 3.7rem); }
  .home-page .hero-stats { gap: .65rem; }
}

@media (max-width: 820px) {
  .home-page .hero--home { min-height: auto; }
  .home-page .hero--home .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; padding-top: 6rem; padding-bottom: 2rem; }
  .home-page .hero__right { grid-column: 1; grid-row: 1; max-width: 34rem; }
  .home-page .hero__visual { grid-column: 1; grid-row: 2; width: 100%; min-height: 0; }
  .home-page .hero__visual .hero__portrait { height: 22rem; }
}

@media (max-width: 560px) {
  .home-page .hero--home .hero__grid { gap: 1.4rem; padding-top: 5.5rem; }
  .home-page .hero--home h1 { max-width: 12ch; font-size: clamp(2.35rem, 11vw, 3.1rem); }
  .home-page .hero--home .hero__right .lead { font-size: .92rem; }
  .home-page .hero__visual { border-radius: 22px; }
  .home-page .hero__visual .hero__portrait { height: 18rem; }
  .home-page .hero__visual .hero__left { align-items: stretch; flex-direction: column; padding: .9rem; }
  .home-page .hero-stats { gap: .45rem; }
  .home-page .hero-stats span { white-space: normal; }
  .home-page .price-badge { width: 100%; }
}

/* Final page-specific typography and hero balance. */
.home-page .hero--home .hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(15rem, .76fr) minmax(9.5rem, .42fr);
  column-gap: 1.25rem;
}
.home-page .hero--home h1 { max-width: 11ch; font-size: clamp(2.7rem, 3.6vw, 3.5rem); line-height: 1.04; font-weight: 700; }
.home-page .hero__portrait { height: 22rem; }
.home-page .hero__left { padding-bottom: 2rem; }

.about-page .page-hero h1 { max-width: 16ch; font-size: clamp(2.15rem, 3.8vw, 3.55rem); line-height: 1.08; font-weight: 600; letter-spacing: -.035em; }
.about-page .page-hero__subheading { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; letter-spacing: -.025em; }
.about-page h2, .about-page h3 { font-weight: 700; }
.about-page .team-quote { font-size: clamp(1.2rem, 2vw, 1.75rem); line-height: 1.35; font-weight: 500; letter-spacing: -.025em; }
.about-page .principle-card h3 { font-size: 1.15rem; font-weight: 700; }

.booking-page .booking-copy h1 { color: #fff; max-width: 13ch; font-size: clamp(2.35rem, 4.3vw, 4rem); line-height: 1.06; font-weight: 700; }
.booking-page .booking-copy .eyebrow { color: #9cf4f5; }
.booking-page .booking-copy .lead { color: rgba(255, 255, 255, .9); }
.booking-page .stat-pill { color: #17468f; background: #fff; border-color: rgba(255, 255, 255, .7); }
.booking-page .booking-card h3 { color: #1e66d0; font-weight: 700; }
.booking-page .section-intro h2 { color: #163a78; font-weight: 700; }

@media (max-width: 960px) {
  .home-page .hero--home .hero__grid { grid-template-columns: 1fr 1fr; column-gap: 1rem; }
  .home-page .hero__left { padding-bottom: 0; }
}

@media (max-width: 640px) {
  .home-page .hero--home .hero__grid { grid-template-columns: 1fr; }
  .home-page .hero--home h1 { font-size: clamp(2.05rem, 10vw, 2.55rem); }
  .home-page .hero__portrait { height: 16rem; }
  .about-page .page-hero h1, .booking-page .booking-copy h1 { font-size: clamp(2rem, 9vw, 2.65rem); }
}

.hero--home::after { display: none; }
.hero--home::before { background: radial-gradient(circle at 16% 78%, rgba(52, 211, 232, .16), transparent 19%), linear-gradient(90deg, rgba(11, 54, 135, .12), transparent 72%); }
.hero__grid { grid-template-columns: minmax(0, 1fr) minmax(16rem, .8fr) minmax(10rem, .48fr); min-height: 31rem; padding: 7.2rem 0 1.7rem; gap: 0; align-items: end; }
.hero__right { grid-column: 1; grid-row: 1; align-self: center; max-width: 26rem; }
.hero__left { grid-column: 3; grid-row: 1; align-self: center; justify-self: end; }
.hero__portrait { position: relative; z-index: 1; grid-column: 2; grid-row: 1; align-self: end; height: 28rem; overflow: hidden; }
.hero__portrait::after { content: ""; position: absolute; z-index: -1; left: 5%; right: 5%; bottom: 0; height: 68%; border-radius: 50% 50% 0 0; background: linear-gradient(160deg, rgba(150, 232, 247, .56), rgba(121, 192, 242, .18)); }
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; mix-blend-mode: screen; filter: saturate(1.04) contrast(1.02); }
.hero-label { display: inline-flex; margin-bottom: .8rem; padding: .3rem .7rem; border-radius: 999px; color: #dffcff; background: rgba(255,255,255,.14); font-size: .68rem; font-weight: 700; }
.hero--home h1 { max-width: 10ch; font-size: clamp(2.25rem, 3.8vw, 3.8rem); letter-spacing: -.055em; }
.hero--home .hero__right .lead { max-width: 18rem; margin-top: .7rem; font-size: .86rem; }
.hero__actions { margin-top: 1.15rem; gap: .55rem; }
.hero__actions .button { min-height: 2.3rem; padding: .55rem 1rem; font-size: .72rem; }
.button--secondary { color: #164899; background: #42d6e2; box-shadow: none; }
.hero-stats { display: grid; gap: .9rem; margin-bottom: 1.45rem; }
.hero-stats p { display: grid; gap: .05rem; color: #fff; }
.hero-stats strong { font: 800 1.2rem/1 "Plus Jakarta Sans", sans-serif; color: #fff; }
.hero-stats span { color: rgba(255,255,255,.78); font-size: .57rem; }
.price-badge { width: 8.5rem; padding: .7rem .8rem; color: #fff; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.38); border-radius: 13px; backdrop-filter: blur(8px); }
.price-badge p { color: #e7faff; font-size: .53rem; letter-spacing: .08em; }
.price-badge strong { margin-top: .28rem; font-size: 1.75rem; }

.benefits-section { margin-top: 0; padding: 1.8rem 0 3.3rem; background: #fff; }
.benefits-grid { gap: .85rem; }
.benefit-card { min-height: 8.6rem; padding: 1.45rem; border-radius: 16px; box-shadow: 0 8px 22px rgba(38, 99, 183, .07); }
.benefit-card--featured { background: linear-gradient(145deg, #296ed0, #163d88); }
.benefit-icon { margin-bottom: .55rem; }
.benefit-card h3 { font-size: .92rem; }
.benefit-card p { font-size: .68rem; line-height: 1.5; }

.services-showcase { padding: 4.5rem 0; background: linear-gradient(155deg, #286dcc, #163e89); }
.services-showcase__intro { margin-bottom: 1.8rem; }
.services-showcase__intro h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.service-cards { gap: 1rem; }
.service-card { border-radius: 16px; }
.service-card img { height: 12.5rem; }
.service-card div { margin: -1.4rem .65rem .65rem; padding: .9rem; border-radius: 12px; }
.service-card h3 { font-size: .9rem; }
.service-card p { font-size: .68rem; }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: .8rem; padding-top: 8rem; }
  .hero__right { grid-column: 1; grid-row: 1; }
  .hero__portrait { grid-column: 2; grid-row: 1; height: 25rem; }
  .hero__left { grid-column: 1 / -1; grid-row: 2; display: flex; align-items: end; justify-content: space-between; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); margin: 0; }
}

@media (max-width: 640px) {
  .hero--home { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding: 9.4rem 0 1.5rem; }
  .hero__right { grid-column: 1; grid-row: 1; }
  .hero__portrait { grid-column: 1; grid-row: 2; height: 22rem; margin-top: -2rem; }
  .hero__left { grid-column: 1 !important; grid-row: 3 !important; display: grid; gap: 1rem; width: 100%; }
  .hero--home h1 { font-size: 2.3rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .price-badge { width: 100%; }
}

/* Final palette layer: keep the landing page airy and blue, without dark sections. */
:root {
  --bg: #f8fbff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-soft: #eaf5ff;
  --primary: #1e66d0;
  --primary-strong: #1852b6;
  --primary-deep: #163a78;
  --accent: #3ed5e8;
  --accent-warm: #8ce8ee;
  --text: #143465;
  --muted: #61718d;
  --line: rgba(27, 89, 179, 0.12);
  --shadow: 0 18px 48px rgba(42, 105, 192, 0.12);
}

body { font-family: "DM Sans", sans-serif; background: linear-gradient(180deg, #fff 0%, #f5faff 60%, #fff 100%); }
h1, h2, h3, h4, .brand__name, .price-badge strong { font-family: "Plus Jakarta Sans", sans-serif; }
.site-header__shell { max-width: none; margin: 0; border-radius: 999px; padding: 0.72rem 1.1rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; background: linear-gradient(90deg, #279bdc, #38d2df); }
.hero--home { background: radial-gradient(circle at 12% 28%, rgba(119, 212, 255, 0.32), transparent 20%), radial-gradient(circle at 78% 92%, rgba(132, 234, 239, 0.3), transparent 22%), linear-gradient(125deg, #2c72d3 0%, #1b58ba 52%, #4f92df 100%); }
.hero--home::before { background: radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.22), transparent 12%), linear-gradient(90deg, rgba(14, 68, 158, 0.16), transparent 60%); }
.hero__grid { grid-template-columns: minmax(0, 0.82fr) minmax(14rem, 0.5fr); min-height: 39rem; padding-bottom: 3.4rem; }
.hero__left { grid-column: 2; grid-row: 1; align-self: end; justify-self: end; }
.hero__right { grid-column: 1; grid-row: 1; z-index: 2; }
.hero--home h1 { max-width: 12ch; font-size: clamp(3rem, 5vw, 4.85rem); text-shadow: none; }
.price-badge { width: min(100%, 15rem); padding: 1.3rem; border-radius: 18px; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.42); color: #fff; }
.price-badge p { color: #fff; }
.trust-card { max-width: 21rem; border-radius: 18px; background: rgba(255, 255, 255, 0.91); }
.section { padding: 5.8rem 0; }
.section--white { background: #fff; }
.section--soft { background: #f1f9ff; }
.wide-media { width: 100%; margin-top: 0; border-radius: 22px; box-shadow: none; }
.split__content { padding: 0; background: transparent; border: 0; box-shadow: none; }
.split__media, .contact-shell__media { border-radius: 22px; box-shadow: none; }
.about-strip { background: #eaf7ff; padding: 5rem 0; }
.about-strip h3, .about-strip p, .about-strip .eyebrow { color: var(--text); }
.banner { background: linear-gradient(90deg, #3a87db, #38c9df); }
.footer { background: #eaf5ff; }

@media (max-width: 960px) {
  .hero__left, .hero__right { grid-column: auto; grid-row: auto; }
  .hero__left { justify-self: stretch; }
}

@media (max-width: 640px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__right { min-width: 0; max-width: 100%; }
  .hero__left { grid-column: 1 !important; grid-row: auto !important; width: 100%; }
  .hero--home h1 { width: 100%; max-width: 10ch; font-size: clamp(2.35rem, 10vw, 3rem); overflow-wrap: anywhere; }
  .price-badge { width: 100%; max-width: none; }
}

/* Home-only reference template overrides. Kept last so they win over legacy styles. */
.hero--home { min-height: 31rem; background: radial-gradient(circle at 10% 24%, transparent 0 4.5rem, rgba(255,255,255,.08) 4.6rem 4.72rem, transparent 4.82rem), radial-gradient(circle at 32% 30%, rgba(92,166,250,.24) 0 3.2rem, transparent 3.3rem), radial-gradient(circle at 73% 69%, rgba(96,232,239,.22) 0 6.2rem, transparent 6.3rem), linear-gradient(145deg, #286bce 0%, #204eae 54%, #2b74cd 100%); }
.hero--home::after { display: none; }
.hero--home::before { background: radial-gradient(circle at 16% 78%, rgba(52,211,232,.16), transparent 19%), linear-gradient(90deg, rgba(11,54,135,.12), transparent 72%); }
.hero__grid { grid-template-columns: minmax(0, 1fr) minmax(16rem, .8fr) minmax(10rem, .48fr); min-height: 31rem; padding: 7.2rem 0 1.7rem; gap: 0; align-items: end; }
.hero__right { grid-column: 1; grid-row: 1; align-self: center; z-index: 2; max-width: 26rem; }
.hero__left { grid-column: 3; grid-row: 1; align-self: center; justify-self: end; }
.hero__portrait { position: relative; z-index: 1; grid-column: 2; grid-row: 1; align-self: end; height: 28rem; overflow: hidden; }
.hero__portrait::after { content: ""; position: absolute; z-index: -1; left: 5%; right: 5%; bottom: 0; height: 68%; border-radius: 50% 50% 0 0; background: linear-gradient(160deg, rgba(150,232,247,.56), rgba(121,192,242,.18)); }
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; mix-blend-mode: screen; filter: saturate(1.04) contrast(1.02); }
.hero-label { display: inline-flex; margin-bottom: .8rem; padding: .3rem .7rem; border-radius: 999px; color: #dffcff; background: rgba(255,255,255,.14); font-size: .68rem; font-weight: 700; }
.hero--home h1 { max-width: 10ch; font-size: clamp(2.25rem, 3.8vw, 3.8rem); letter-spacing: -.055em; }
.hero--home .hero__right .lead { max-width: 18rem; margin-top: .7rem; font-size: .86rem; }
.hero__actions { margin-top: 1.15rem; gap: .55rem; }
.hero__actions .button { min-height: 2.3rem; padding: .55rem 1rem; font-size: .72rem; }
.button--secondary { color: #164899; background: #42d6e2; box-shadow: none; }
.hero-stats { display: grid; gap: .9rem; margin-bottom: 1.45rem; }
.hero-stats p { display: grid; gap: .05rem; color: #fff; }
.hero-stats strong { font: 800 1.2rem/1 "Plus Jakarta Sans", sans-serif; color: #fff; }
.hero-stats span { color: rgba(255,255,255,.78); font-size: .57rem; }
.price-badge { width: 8.5rem; padding: .7rem .8rem; color: #fff; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.38); border-radius: 13px; backdrop-filter: blur(8px); }
.price-badge p { color: #e7faff; font-size: .53rem; letter-spacing: .08em; }
.price-badge strong { margin-top: .28rem; font-size: 1.75rem; }

@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr 1fr; gap: .8rem; padding-top: 8rem; } .hero__right { grid-column: 1; grid-row: 1; } .hero__portrait { grid-column: 2; grid-row: 1; height: 25rem; } .hero__left { grid-column: 1 / -1; grid-row: 2; display: flex; align-items: end; justify-content: space-between; } .hero-stats { grid-template-columns: repeat(3, 1fr); margin: 0; } }
@media (max-width: 640px) { .hero--home { min-height: auto; } .hero__grid { grid-template-columns: 1fr; padding: 9.4rem 0 1.5rem; } .hero__right { grid-column: 1; grid-row: 1; } .hero__portrait { grid-column: 1; grid-row: 2; height: 22rem; margin-top: -2rem; } .hero__left { grid-column: 1 !important; grid-row: 3 !important; display: grid; gap: 1rem; width: 100%; } .hero--home h1 { font-size: 2.3rem; } .hero-stats { grid-template-columns: repeat(3, 1fr); } .price-badge { width: 100%; } }

/* Spacing and responsive corrections. */
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas: none;
  align-items: center;
  column-gap: clamp(2rem, 6vw, 5.5rem);
  row-gap: 1rem;
  min-height: 32rem;
}

.section-intro .eyebrow { grid-column: 1; grid-row: 1; align-self: end; margin: 0; }
.section-intro h2 { grid-column: 1; grid-row: 2; align-self: center; }
.section-intro > p { grid-column: 1; grid-row: 3; align-self: start; }
.section-intro .wide-media { grid-column: 2; grid-row: 1 / 4; grid-area: auto; align-self: center; width: 100%; }
.section-intro .wide-media img { min-height: 0; height: clamp(20rem, 32vw, 31rem); }

@media (max-width: 960px) {
  .section-intro { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; gap: 1rem; }
  .section-intro .eyebrow, .section-intro h2, .section-intro > p, .section-intro .wide-media { grid-column: 1; grid-row: auto; }
  .section-intro .wide-media { margin-top: 1rem; }
  .hero__portrait { min-width: 0; }
  .hero__portrait img { object-position: center top; }
}

@media (max-width: 640px) {
  .site-header { padding: .45rem 0 0; }
  .site-header__shell { padding: .7rem .9rem; }
  .nav-links { gap: .1rem; padding-top: .55rem; }
  .nav-links a { padding: .45rem .55rem; font-size: .72rem; }
  .hero__grid { padding-top: 8.7rem; }
  .hero__portrait { margin-top: -.7rem; height: 19rem; }
  .hero__left { margin-top: -.25rem; }
  .hero-stats { gap: .45rem; }
  .hero-stats strong { font-size: 1rem; }
  .section { padding: 3.8rem 0; }
  .benefits-section { padding: 1.25rem 0 2.8rem; }
  .service-cards { gap: .9rem; }
}

/* Grouped intro copy removes the large empty grid tracks on desktop. */
.section-intro {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-rows: auto;
  align-items: center;
  min-height: 0;
}

.section-intro__copy { display: grid; gap: 1rem; align-content: center; }
.section-intro__copy .eyebrow { margin: 0; }
.section-intro__copy h2, .section-intro__copy p { margin: 0; }
.section-intro .wide-media { grid-column: 2; grid-row: 1; }

@media (max-width: 960px) {
  .section-intro { grid-template-columns: 1fr; }
  .section-intro .wide-media { grid-column: 1; grid-row: auto; }
}

/* Compact hero and shared visual language for inner pages. */
.hero--home { margin-top: -5.1rem; padding-top: 0; min-height: 27rem; }
.hero--home .hero__grid { min-height: 27rem; padding-top: 5.15rem; padding-bottom: .75rem; }
.hero--home .hero__portrait { height: 23.5rem; }
.hero--home .hero__portrait img { object-fit: contain; object-position: center bottom; }

.page-hero { margin-top: -5.1rem; padding-top: 0; color: #fff; }
.page-hero--brand, .page-hero--contact, .page-hero--booking {
  background:
    radial-gradient(circle at 78% 28%, rgba(79, 219, 231, .28), transparent 19%),
    radial-gradient(circle at 14% 78%, rgba(84, 155, 245, .28), transparent 20%),
    linear-gradient(135deg, #286bce, #1d4fae 60%, #3478cd);
}
.page-hero__grid, .booking-grid { min-height: 28rem; padding-top: 5.6rem; padding-bottom: 3rem; }
.page-hero h1 { max-width: 13ch; font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(2.3rem, 4.5vw, 4.3rem); text-shadow: none; }
.page-hero__subheading { color: #dffbff; font-family: "Plus Jakarta Sans", sans-serif; }
.page-hero .eyebrow { color: #96f3f5; }
.page-hero .button--primary { color: #164899; background: #42d6e2; box-shadow: none; }
.page-hero .button--ghost { background: rgba(255, 255, 255, .12); }
.page-hero .collage img, .page-hero__media img { border-radius: 22px; box-shadow: 0 14px 32px rgba(11, 57, 135, .18); }

.principle-card, .team-card, .booking-card, .contact-info-card, .form-card { border-radius: 18px; border-color: #e4eefb; box-shadow: 0 10px 28px rgba(39, 100, 185, .08); }
.team-section { background: #f1f9ff; }
.booking-card { border-top: 3px solid #42d6e2; }
.button--primary { background: linear-gradient(90deg, #2777d3, #33c9df); box-shadow: none; }
.button--dark { background: #276dcc; }

@media (max-width: 960px) {
  .hero--home { margin-top: -7rem; }
  .hero--home .hero__grid { padding-top: 7.6rem; }
  .page-hero { margin-top: -7rem; }
  .page-hero__grid, .booking-grid { min-height: auto; padding-top: 8rem; }
}

@media (max-width: 640px) {
  .hero--home .hero__grid { padding-top: 7.6rem; }
  .hero--home .hero__portrait { height: 17rem; margin-top: 0; }
  .hero--home .hero__portrait img { object-position: center bottom; }
  .page-hero__grid, .booking-grid { padding-top: 8rem; padding-bottom: 2.7rem; }
  .page-hero h1 { max-width: 11ch; font-size: clamp(2.1rem, 10vw, 3rem); }
}

/* Prevent horizontal scroll and keep the cleaner visual free from overlapping decorations. */
html, body { overflow-x: hidden; }
.hero--home .hero__portrait::after { display: none; }
.hero--home .hero__portrait { background: transparent; }
.hero--home .hero__grid { max-width: 100%; }
.price-badge { min-width: 9.5rem; }
.price-badge strong { white-space: nowrap; font-size: 1.55rem; letter-spacing: -.05em; }
.hero--home {
  background:
    radial-gradient(circle at 10% 24%, transparent 0 4.5rem, rgba(255,255,255,.08) 4.6rem 4.72rem, transparent 4.82rem),
    radial-gradient(circle at 32% 30%, rgba(92,166,250,.24) 0 3.2rem, transparent 3.3rem),
    linear-gradient(145deg, #286bce 0%, #204eae 54%, #2b74cd 100%);
}

/* Keep the landing hero centered after the legacy responsive layers above. */
.home-page .hero--home .hero__grid {
  grid-template-columns: minmax(0, .88fr) minmax(25rem, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1180px;
  margin-inline: auto;
  padding-bottom: 2.25rem;
}

.home-page .hero__right {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  max-width: 34rem;
  text-align: center;
}

.home-page .hero--home h1,
.home-page .hero--home .hero__right .lead {
  max-width: none;
  margin-inline: auto;
}

.home-page .hero__actions { justify-content: center; }
.home-page .hero__visual { grid-column: 2; grid-row: 1; justify-self: center; width: 100%; }

@media (max-width: 960px) {
  .home-page .hero--home .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .home-page .hero__right { grid-column: 1; grid-row: 1; order: 0; }
  .home-page .hero__visual { grid-column: 1; grid-row: 2; order: 0; }
  .home-page .hero__visual { max-width: 42rem; }
}

@media (max-width: 640px) {
  .home-page .hero--home .hero__grid { gap: 1.4rem; padding-top: 7.9rem; }
  .home-page .hero__right { width: 100%; }
  .home-page .hero--home h1 { max-width: 12ch; margin-inline: auto; }
}

/* Use the supplied home-cleaning photo as a full-bleed hero card image. */
.home-page .hero__visual .hero__portrait img {
  object-fit: cover;
  object-position: center 24%;
  mix-blend-mode: normal;
  filter: none;
}

/* Booking is now handled exclusively by the on-page request form. */
.booking-page .booking-grid--form-only {
  grid-template-columns: minmax(0, 46rem);
  justify-content: center;
  min-height: 28rem;
  text-align: center;
}

.booking-page .booking-grid--form-only .booking-copy {
  display: grid;
  justify-items: center;
}

.booking-page .booking-grid--form-only .booking-copy h1,
.booking-page .booking-grid--form-only .booking-copy .lead {
  max-width: 22ch;
}

.booking-page .booking-grid--form-only .button-row {
  justify-content: center;
}

@media (max-width: 640px) {
  .booking-page .booking-grid--form-only .booking-copy h1 { max-width: 12ch; }
}

/* Keep strong contrast on every filled/coloured call-to-action button. */
.button--primary,
.button--secondary,
.button--dark,
.page-hero .button--primary {
  color: #fff;
}

/* Align the landing hero copy to a clear left edge. */
.home-page .hero__right {
  justify-self: start;
  text-align: left;
}

.home-page .hero--home h1,
.home-page .hero--home .hero__right .lead {
  margin-left: 0;
  margin-right: 0;
}

.home-page .hero__actions {
  justify-content: flex-start;
}

.button:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
}

/* Keep Google Places suggestions above the booking form. */
.pac-container {
  z-index: 10000;
  font-family: "DM Sans", sans-serif;
}

/* Responsive Google Maps address picker. */
body.map-picker-open {
  overflow: hidden;
}

.map-picker[hidden] {
  display: none;
}

.map-picker {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.map-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 31, 76, 0.62);
  backdrop-filter: blur(3px);
}

.map-picker__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 48rem);
  max-height: calc(100dvh - 2rem);
  padding: clamp(1rem, 3vw, 1.6rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(5, 33, 83, 0.36);
}

.map-picker__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.map-picker__header h2 {
  margin-top: 0.45rem;
  color: var(--primary-deep);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.map-picker__close {
  display: grid;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--primary-deep);
  background: #edf5ff;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.map-picker__search-label {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

.map-picker__search {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
}

.map-picker__search:focus {
  outline: none;
  border-color: rgba(30, 102, 208, 0.75);
  box-shadow: 0 0 0 4px rgba(30, 102, 208, 0.14);
}

.map-picker__search-row {
  display: flex;
  gap: 0.65rem;
}

.map-picker__search-button {
  flex: 0 0 auto;
  min-height: 3.2rem;
  padding-inline: 1.15rem;
}

.map-picker__results {
  display: grid;
  gap: 0.35rem;
  max-height: 9.5rem;
  margin-top: 0.7rem;
  overflow: auto;
}

.map-picker__result {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: #f7fbff;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  line-height: 1.35;
  text-align: left;
}

.map-picker__result:hover,
.map-picker__result:focus-visible {
  border-color: rgba(30, 102, 208, 0.55);
  background: #eaf5ff;
  outline: none;
}

.map-picker__map {
  width: 100%;
  height: clamp(18rem, 48vh, 30rem);
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 14px;
  background: #eaf5ff;
}

.map-picker__status {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-picker__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 1rem;
}

.map-picker__cancel {
  color: var(--primary-deep);
  background: #edf5ff;
}

@media (max-width: 820px) {
  .home-page .contact-shell__media {
    min-height: 18rem;
    max-height: 24rem;
  }
}

@media (max-width: 640px) {
  .home-page .hero--home h1 {
    margin-inline: 0;
  }

  .form-card {
    padding: 1.15rem;
  }

  .field input,
  .field textarea,
  .field select,
  .map-picker__search {
    font-size: 16px;
  }

  .map-picker {
    padding: 0;
  }

  .map-picker__dialog {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .map-picker__map {
    height: min(44dvh, 25rem);
  }

  .map-picker__search-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-picker__search-button {
    width: 100%;
  }

  .map-picker__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-picker__actions .button {
    width: 100%;
  }
}

/* Final small-screen layout safeguards for every page. */
@media (max-width: 820px) {
  .home-page .hero__right,
  .home-page .hero__visual,
  .contact-shell__content,
  .contact-shell__media {
    min-width: 0;
  }

  .home-page .hero__visual {
    width: min(100%, 42rem);
  }

  .contact-shell {
    gap: clamp(1.25rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .container,
  .site-header .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .home-page .hero__actions {
    width: 100%;
  }

  .home-page .hero__actions .button {
    width: 100%;
  }

  .home-page .contact-shell__media {
    min-height: 14rem;
    max-height: 18rem;
  }

  .form-card {
    padding: 1rem;
  }
}

/* Booking lives in the landing hero: copy on the left, form on the right. */
#booking-form {
  scroll-margin-top: 5.5rem;
}

.home-page .hero--home .hero__grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
  align-items: center;
}

.home-page .hero-booking {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 43rem;
  justify-self: end;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(7, 43, 109, 0.24);
}

.hero-booking__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #dceafa;
}

.hero-booking__eyebrow {
  display: block;
  color: #2777d3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-booking h2 {
  margin-top: 0.3rem;
  color: var(--primary-deep);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.2;
}

.hero-booking__time {
  flex: 0 0 auto;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: #2468c5;
  background: #eaf5ff;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-booking__form {
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.hero-booking .field {
  gap: 0.3rem;
}

.hero-booking .field label {
  color: var(--text);
  font-size: 0.78rem;
}

.hero-booking .field input {
  min-height: 2.75rem;
  padding: 0.62rem 0.75rem;
}

.hero-booking .field textarea {
  min-height: 5.1rem;
  padding: 0.7rem 0.75rem;
}

.hero-booking__submit {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.1rem;
}

.hero-booking__submit .button {
  width: 100%;
  min-height: 2.8rem;
}

.hero-booking__submit p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-page .hero__right .hero__actions {
  margin-top: 1.25rem;
}

@media (max-width: 960px) {
  .home-page .hero--home .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
    padding-bottom: 2.5rem;
  }

  .home-page .hero-booking {
    grid-column: 1;
    grid-row: 1;
    max-width: 42rem;
    justify-self: start;
  }

  .home-page .hero__right {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-page .hero--home .hero__grid {
    width: min(calc(100% - 2rem), var(--container));
    gap: 1.35rem;
    padding-top: 7.2rem;
    padding-bottom: 2.25rem;
  }

  .home-page .hero__right {
    max-width: none;
    padding-top: 0.5rem;
    padding-bottom: 1.25rem;
  }

  .home-page .hero--home h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 2.8rem);
  }

  .home-page .hero-booking {
    margin-top: 0.35rem;
    margin-bottom: 0.6rem;
    padding: 1.25rem;
    border-radius: 16px;
  }

  .hero-booking__heading {
    align-items: center;
    padding-bottom: 1rem;
  }

  .hero-booking__time {
    font-size: 0.64rem;
  }

  .hero-booking .form-grid--two {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 1rem;
  }

  .hero-booking .field input,
  .hero-booking .field textarea {
    font-size: 16px;
  }

  .hero-booking .field input {
    min-height: 3rem;
  }

  .hero-booking__submit {
    margin-top: 0.25rem;
    padding-top: 0.25rem;
  }

  .home-page .hero__right .hero__actions {
    margin-top: 1.5rem;
  }
}

/* Inline booking map and address suggestions. */
.hero-booking .address-picker {
  position: relative;
}

.address-picker__input-row {
  display: flex;
  gap: 0.55rem;
  align-items: stretch;
}

.address-picker__input-row > input {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}

.address-picker__map-button {
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding-inline: 0.95rem;
  white-space: nowrap;
}

.address-picker__help {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.address-picker__suggestions {
  display: grid;
  gap: 0.35rem;
  max-height: 11rem;
  margin-top: 0.45rem;
  overflow-y: auto;
  border: 1px solid #dceafa;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 43, 109, 0.12);
}

.address-picker__suggestion {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 0;
  border-bottom: 1px solid #edf3fb;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.address-picker__suggestion:last-child {
  border-bottom: 0;
}

.address-picker__suggestion:hover,
.address-picker__suggestion:focus-visible {
  color: var(--primary-deep);
  background: #eaf5ff;
  outline: none;
}

.address-picker__map {
  width: 100%;
  height: clamp(13rem, 22vw, 17rem);
  margin-top: 0.65rem;
  overflow: hidden;
  border: 1px solid #dceafa;
  border-radius: 14px;
  background: #edf5ff;
}

.address-picker__map--unavailable {
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--muted);
  text-align: center;
}

.map-picker__map--unavailable {
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--muted);
  text-align: center;
}

.address-picker__status {
  min-height: 1.3rem;
  margin: 0.55rem 0 0;
  color: #537099;
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .address-picker__input-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .address-picker__input-row > input {
    width: 100%;
  }

  .address-picker__map-button {
    width: 100%;
  }

  .address-picker__map {
    height: 14rem;
  }

  .address-picker__suggestion {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}
