/* Welcome Home Maids — Luxury Static Site (logo palette) */
:root {
  --ivory: #F7F8FA;
  --stone: #E4E8EE;
  --navy: #14325A;
  --navy-deep: #0A3250;
  --navy-soft: rgba(20, 50, 90, 0.72);
  --red: #BE141E;
  --sky: #32A0D2;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(20, 50, 90, 0.08);
  --radius: 4px;
  --max: 1120px;
  --header-h: 88px;
  --mobile-bar-h: 64px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--navy);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 1.15rem;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.65rem, 5.2vw, 4rem); }
h2 { font-size: clamp(2.15rem, 3.7vw, 2.95rem); }
h3 { font-size: clamp(1.45rem, 2.1vw, 1.8rem); }

.lead {
  font-size: 1.25rem;
  color: var(--navy-soft);
  max-width: 36em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--red);
  border: none;
  margin: 1.25rem 0 1.5rem;
}

.rule--center { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--accent {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--accent:hover {
  background: #9E1018;
  border-color: #9E1018;
}

.btn--light {
  background: var(--ivory);
  color: var(--navy);
  border-color: var(--ivory);
}
.btn--light:hover { background: var(--stone); border-color: var(--stone); }

.btn--block { width: 100%; }

/* Header */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-top: 0.15rem;
}

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

.nav a {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--navy-soft);
  transition: color 0.2s;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-phone {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--sky); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-phone { display: none; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--stone);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--stone);
    font-size: 1.1rem;
  }
  .nav-cta { display: none; }
}

/* Mobile sticky bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--navy);
  padding: 0.65rem 1rem;
  gap: 0.65rem;
  box-shadow: 0 -4px 24px rgba(20, 50, 90, 0.18);
}
.mobile-bar .btn {
  flex: 1;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
}
.mobile-bar .btn--call {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247, 248, 250, 0.45);
}
.mobile-bar .btn--book {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 700px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  /* full original photo visible, no side crop */
  object-fit: contain;
  object-position: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  /* Very light bottom vignette — photo stays AD-editorial */
  background: linear-gradient(
    to top,
    rgba(20, 50, 90, 0.18) 0%,
    rgba(20, 50, 90, 0.04) 35%,
    transparent 60%
  );
}

/* Absolute pin — flex tricks kept failing in Phil's browser */
.hero__inner {
  position: absolute;
  z-index: 2;
  left: auto;
  right: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: 3.5rem;
  top: auto;
  width: min(420px, calc(100% - 2.5rem));
  margin: 0;
  display: block;
}
.hero__content {
  color: var(--navy);
  padding: 1.15rem 1.35rem 1.35rem;
  width: 100%;
  max-width: none;
  margin: 0;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(228, 232, 238, 0.95);
  box-shadow: 0 14px 40px rgba(20, 50, 90, 0.12);
  border-radius: 6px;
  text-shadow: none;
}
.hero__content h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
}
.hero__content .lead {
  font-size: 1.05rem;
  max-width: none;
}
.hero__content .hero__actions {
  margin-top: 1.25rem;
  gap: 0.65rem;
}
.hero__content .btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.8rem;
}
.hero__content .lead { color: var(--navy-soft); }
.hero__content .btn--ghost {
  color: var(--navy);
  border-color: var(--navy);
}
.hero__content .btn--ghost:hover {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.hero__content .btn--light {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.hero__content .btn--light:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.hero__content .eyebrow { color: var(--red); }
.hero__content .rule { display: none; }
.hero__content .lead { color: var(--navy-soft); }

.hero__content .btn--ghost {
  color: var(--navy);
  border-color: var(--navy);
}
.hero__content .btn--ghost:hover {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.hero__content .btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.hero__content .btn--light {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.hero__content .btn--light:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section--stone { background: var(--stone); }
.section--navy {
  background: var(--navy);
  color: var(--ivory);
}
.section--navy .lead { color: rgba(247, 248, 250, 0.78); }
.section--navy .eyebrow { color: var(--red); }

.section-head {
  max-width: 36em;
  margin-bottom: 3rem;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
}

/* Cards / grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.card--stone { background: var(--ivory); }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--navy-soft); font-size: 0.98rem; }
.card .rule { margin: 1rem 0; }

.card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  color: var(--sky);
}
.card-icon svg { width: 100%; height: 100%; }

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* Area / image cards */
a.area-card { text-decoration: none; color: inherit; display: block; }
.area-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--navy-deep);
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.area-card:hover img { transform: scale(1.04); }
.area-card__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.25rem 1.1rem;
  background: linear-gradient(transparent, rgba(10, 50, 80, 0.85));
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--navy-soft);
}
.trust-strip span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-strip .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

/* Service detail */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--stone);
}
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

@media (max-width: 800px) {
  .service-block,
  .service-block:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.inclusion-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  color: var(--navy-soft);
  border-bottom: 1px solid var(--stone);
  font-size: 0.98rem;
}
.inclusion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 1px;
  background: var(--red);
}

/* Areas page */
.area-group {
  margin-bottom: 3rem;
}
.area-group h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--red);
  display: inline-block;
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
a.chip { text-decoration: none; color: inherit; display: inline-block; }
.chip {
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--sky);
  font-size: 0.95rem;
  color: var(--navy);
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--stone);
}
.page-hero .lead { margin-top: 0.5rem; }

/* Guarantee */
.guarantee {
  border: 1px solid var(--red);
  padding: 2rem 2.25rem;
  background: var(--ivory);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.guarantee h3 { margin-bottom: 0.5rem; }

/* Reviews */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}
.rating-stars {
  color: var(--red);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
}
.rating-score {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
}

/* Contact / book form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-details a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 500;
}
.contact-details a:hover { color: var(--sky); }

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--stone);
  color: var(--navy);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sky);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}
.cta-band .lead { margin-inline: auto; }
.cta-band .hero__actions {
  justify-content: center;
  margin-top: 1.75rem;
}
.cta-band .btn--ghost {
  color: var(--ivory);
  border-color: rgba(247, 248, 250, 0.55);
}
.cta-band .btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 248, 250, 0.8);
  padding: 3.5rem 0 2rem;
  font-size: 0.925rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text,
.footer-brand .logo-text span { color: var(--ivory); }
.footer-brand .logo-text span { color: var(--sky); }
.footer-brand p { max-width: 28em; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(247, 248, 250, 0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(50, 160, 210, 0.28);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(247, 248, 250, 0.5);
}

/* Booking redirect */
.redirect-card {
  max-width: 480px;
  margin: 4rem auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-soft { color: var(--navy-soft); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* === iPhone / small-screen polish === */
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  overflow-x: clip;
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --mobile-bar-h: 72px;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  body {
    font-size: 1.05rem;
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 4.5rem);
  }

  .logo img {
    width: 56px;
    height: 56px;
  }
  .logo-text {
    font-size: 1.12rem;
  }
  .logo-text span {
    font-size: 0.62rem;
  }

  .hero {
    min-height: min(78vh, 640px);
    align-items: flex-end;
  }
  .hero__media img {
    object-fit: contain;
    object-position: center center;
  }
  .hero__inner {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 1rem);
  }
  .hero__content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.95rem 1rem 1rem;
    box-sizing: border-box;
  }
  /* On phone, sticky bar already has Call — drop duplicate ghost CTA in hero */
  .hero__content .btn--ghost[href^="tel:"] {
    display: none;
  }
  .hero__content h1 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
    line-height: 1.15;
  }
  .hero__content .lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }
  .hero__content .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1rem;
  }
  .hero__content .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1rem 0;
  }

  .chip-list {
    justify-content: flex-start;
  }

  .section {
    padding: 2.75rem 0;
  }

  .page-hero {
    padding: 2.25rem 0 1.5rem;
  }
  .page-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .card {
    padding: 1.5rem 1.25rem;
  }

  .mobile-bar {
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    z-index: 9998;
  }
} /* end max-width 768px iPhone polish */

@media (max-width: 420px) {
  .logo-text span { display: none; }
  .hero {
    min-height: 70vh;
  }
}

/* Page / service photography */
.page-media { margin: 0 0 2rem; overflow: hidden; border-radius: 4px; }
.page-media img { width: 100%; height: auto; display: block; object-fit: cover; }
.page-media--tall img { aspect-ratio: 4/3; object-fit: cover; width: 100%; height: 100%; }
.service-media { overflow: hidden; border-radius: 4px; }
.service-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Mobile: Crisp must clear sticky bar + iOS safe area */
@media (max-width: 768px) {
  .crisp-client .cc-1m2mf,
  .crisp-client .cc-13wro,
  .crisp-client .cc-1xry0,
  .crisp-client .cc-1yy0g,
  .crisp-client a[aria-label][role="button"],
  #crisp-chatbox > div > a,
  #crisp-chatbox [data-id="chat_opened"],
  .crisp-client [data-id="chat_opened"] {
    bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 20px) !important;
    right: 14px !important;
    z-index: 9990 !important;
  }
  .mobile-bar {
    z-index: 10000;
  }
}

.booking-embed {
  margin-top: 1.5rem;
  width: 100%;
  overflow: visible;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(20, 50, 90, 0.08);
}
.booking-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 1400px;
  max-height: none !important;
}
.section--tight {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
/* Booking page: room for sticky mobile bar + tall Koala form */
body.page-booking {
  padding-bottom: calc(var(--mobile-bar-h, 64px) + env(safe-area-inset-bottom, 0px) + 3rem);
}
body.page-booking .section--tight {
  padding-bottom: 4rem;
}
body.page-booking .mobile-bar .btn--book {
  opacity: 0.55;
  pointer-events: none;
}

/* Desire / polish pass */
.section--airy {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
.area-card {
  box-shadow: 0 10px 28px rgba(20, 50, 90, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20, 50, 90, 0.14);
}
.area-card img {
  filter: contrast(1.05) saturate(1.05);
}
.card--stone {
  box-shadow: 0 6px 20px rgba(20, 50, 90, 0.06);
}
.quote-block {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}
.quote-block__stars {
  color: var(--red);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.quote-block__text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  color: var(--navy);
  font-weight: 500;
  margin: 0 0 1rem;
}
.quote-block__attr {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-soft);
  font-weight: 500;
}
.service-media img {
  filter: contrast(1.04) saturate(1.04);
  box-shadow: 0 12px 32px rgba(20, 50, 90, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(20, 50, 90, 0.12);
  padding: 0.85rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--navy);
  list-style: none;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 600;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0.65rem 0 0.25rem;
  color: var(--navy-soft);
  line-height: 1.55;
}

/* —— Services: stacked package cards + room checklists —— */
.page-hero--services .lead { max-width: 36rem; }

.scope-board {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: var(--ivory);
}
.scope-board__inner {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.pkg-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(20, 50, 90, 0.08);
  box-shadow: 0 14px 40px rgba(20, 50, 90, 0.07);
  overflow: hidden;
}
.pkg-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.4rem 1.5rem 1.25rem;
  color: var(--ivory);
}
.pkg-card--sky .pkg-card__head {
  background: linear-gradient(145deg, #1a3a66 0%, #2a5a8a 55%, #5a9bc4 120%);
}
.pkg-card--navy .pkg-card__head {
  background: linear-gradient(145deg, #0f2240 0%, #14325A 70%, #1e4578 120%);
}
.pkg-card--red .pkg-card__head {
  background: linear-gradient(145deg, #14325A 0%, #5a1e2a 55%, #9a2a3a 120%);
}
.pkg-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 0.3rem;
}
.pkg-card__head h2 {
  margin: 0 0 0.25rem;
  color: var(--ivory);
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
}
.pkg-card__sub {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.9;
  color: var(--ivory);
  max-width: 36rem;
}
.pkg-card__head .btn,
.pkg-card__head .btn.btn--primary {
  background: #fff !important;
  color: var(--navy) !important;
  border: 1px solid #fff !important;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.pkg-card__head .btn:hover,
.pkg-card__head .btn.btn--primary:hover {
  background: var(--stone) !important;
  color: var(--navy-deep) !important;
  border-color: var(--stone) !important;
}
.pkg-plus-tag {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pkg-rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0.25rem 0 0.5rem;
}
.pkg-room {
  padding: 1.25rem 1.4rem 1.5rem;
  border-right: 1px solid rgba(20, 50, 90, 0.07);
}
.pkg-room:last-child { border-right: none; }
.pkg-room--full {
  grid-column: 1 / -1;
  border-right: none;
  border-top: 1px solid rgba(20, 50, 90, 0.07);
  padding-top: 1.35rem;
}
.pkg-room h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--navy);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(20, 50, 90, 0.12);
}
.pkg-card--sky .pkg-room h3 { border-bottom-color: rgba(90, 155, 196, 0.5); }
.pkg-card--navy .pkg-room h3 { border-bottom-color: rgba(20, 50, 90, 0.28); }
.pkg-card--red .pkg-room h3 { border-bottom-color: rgba(154, 42, 58, 0.4); }

.pkg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
.pkg-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--ink, #1a2433);
}
.pkg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sky, #5a9bc4);
}
.pkg-card--navy .pkg-list li::before { background: var(--navy); }
.pkg-card--red .pkg-list li::before { background: var(--red); }
.pkg-list__plus {
  font-weight: 560;
  color: var(--navy);
}
.pkg-list__plus::before {
  background: var(--red) !important;
  border-radius: 2px !important;
  width: 0.5rem !important;
  height: 0.5rem !important;
}
.pkg-list__plus::after {
  content: " +";
  color: var(--red);
  font-weight: 700;
}
.pkg-list--inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.42rem 1.25rem;
}

.scope-board__fine {
  text-align: center;
  margin: 0.25rem 0 0;
}
.scope-board .addons { margin-top: 0.5rem; }

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip-cloud--center { justify-content: center; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1.25;
  background: var(--stone);
  color: var(--navy);
  border: 1px solid transparent;
  font-weight: 450;
}

@media (max-width: 900px) {
  .pkg-rooms { grid-template-columns: 1fr; }
  .pkg-room {
    border-right: none;
    border-bottom: 1px solid rgba(20, 50, 90, 0.07);
  }
  .pkg-room:last-child { border-bottom: none; }
  .pkg-list--inline { grid-template-columns: 1fr 1fr; }
  .pkg-card__head { padding: 1.25rem 1.2rem; }
}

@media (max-width: 520px) {
  .pkg-list--inline { grid-template-columns: 1fr; }
}

/* —— Conversion: guarantee, fit filter, value stack —— */
.guarantee-card {
  margin-top: 1.25rem;
  max-width: 28rem;
  padding: 1rem 1.15rem 1.1rem;
  background: rgba(247, 248, 250, 0.94);
  border: 1px solid rgba(20, 50, 90, 0.12);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}
.guarantee-card__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.4rem;
}
.guarantee-card__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--navy);
}
.hero .guarantee-card {
  background: rgba(247, 248, 250, 0.96);
}
.section--navy .guarantee-card,
.cta-band .guarantee-card {
  margin-inline: auto;
  margin-bottom: 1.5rem;
  background: rgba(247, 248, 250, 0.98);
  border-color: rgba(247, 248, 250, 0.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.cta-band .guarantee-card {
  max-width: 32rem;
}
.cta-band--with-guarantee .hero__actions {
  margin-top: 0.25rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .fit-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.fit-card {
  background: var(--white);
  border: 1px solid rgba(20, 50, 90, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}
.fit-card h3 {
  margin-bottom: 0.85rem;
  color: var(--navy);
}
.fit-card--not {
  background: var(--stone);
  box-shadow: none;
  border-color: rgba(20, 50, 90, 0.1);
}
.fit-card--not h3 { color: var(--navy-soft); }
.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.fit-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--navy-soft);
}
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sky);
}
.fit-card--not .fit-list li::before {
  background: transparent;
  border: 1.5px solid var(--navy-soft);
  border-radius: 2px;
  width: 0.45rem;
  height: 0.45rem;
  top: 0.5em;
}

.value-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 2.5rem;
}
@media (min-width: 640px) {
  .value-stack { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .value-stack { grid-template-columns: repeat(3, 1fr); }
}
.value-stack__item {
  background: var(--white);
  border: 1px solid rgba(20, 50, 90, 0.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 6px 20px rgba(20, 50, 90, 0.05);
}
.value-stack__item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.value-stack__item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--navy-soft);
}
.value-stack-wrap {
  padding: 2rem 0 0.5rem;
}
.value-stack-wrap .section-head { margin-bottom: 1.25rem; }


/* Reviews page: small photo, reviews lead */
.page-media--accent {
  max-width: 220px;
  margin: 0 auto 2rem;
  border-radius: 4px;
  overflow: hidden;
}
.page-media--accent img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.reviews-grid .quote-block {
  margin: 0;
  height: 100%;
  text-align: left;
  padding: 1.5rem 1.35rem;
}
.reviews-grid .quote-block__text {
  font-size: 1.15rem;
}

.hero__packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1.35rem;
  row-gap: 0.7rem;
  margin: 1.15rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__packages a {
  color: var(--navy);
  border-bottom: none;
  text-decoration: none;
  padding: 0.15rem 0.1rem;
  white-space: nowrap;
}
.hero__packages a:hover { color: var(--navy); }
