/* ============================================
   Belvedere Residential Services
   Tokens (retoned Aug 2026 to match landscape-photo palette:
   forest green + sky/steel blue, sampled from client reference)
   - Background:   #F7F9F8  (cool near-white, "clean" without cliché cream)
   - Ink:          #16232C
   - Navy (teal):  #204E60  (primary, sky/steel blue from reference photo)
   - Deep Navy:    #1B4A2C  (dark sections, forest-green from tree canopy)
   - Green:        #2E8A36  (CTA accent, vivid grass green from reference)
   - Green dark:   #1F6B29  (hover/text, darker forest green)
   - Sage tint:    #E3EEEA  (card/section fill, slight sky-blue lean)
   Type
   - Display: Fraunces (headlines, signature warmth)
   - Body/UI: IBM Plex Serif (legible, dependable)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300..700&family=Work+Sans:wght@400;500;600;700&family=Monsieur+La+Doulaise&family=Commissioner:wght@400;500;600&family=IBM+Plex+Serif:wght@400;500;600&display=swap');

:root {
  --bg: #F7F9F8;
  --ink: #16232C;
  --ink-soft: #48565F;
  --navy: #204E60;
  --navy-deep: #1B4A2C;
  --green: #2E8A36;
  --green-dark: #1F6B29;
  --sage: #E3EEEA;
  --border: #D9E2DD;
  --white: #FFFFFF;

  --display: 'Fraunces', Georgia, serif;
  --body: 'IBM Plex Serif', Georgia, serif;
  --script: 'Monsieur La Doulaise', cursive, serif;
  --tagline: 'Commissioner', sans-serif;

  --radius: 6px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--navy-deep);
  margin: 0;
  line-height: 1.1;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); }

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

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--script);
  font-weight: 400;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--navy-deep);
  letter-spacing: 0;
}
.brand-tag {
  font-family: var(--tagline);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: 4px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  margin: 5px 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 140px 0 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg,
    rgba(18, 47, 28, 0.94) 0%,
    rgba(18, 47, 28, 0.86) 32%,
    rgba(18, 47, 28, 0.5) 58%,
    rgba(18, 47, 28, 0.18) 82%);
}
.hero-content {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.hero-content a {
  pointer-events: auto;
}
.hero-copy { max-width: 620px; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--sage);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: #9BD17A;
}
.hero p.lead {
  margin-top: 22px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-actions .btn-primary { background: var(--green); }

.hero-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* Before/after slider (full-bleed hero background) */
.ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  touch-action: pan-y;
}
.ba-layer {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/shower-before-after.jpg');
  background-size: 200% 100%;
  background-repeat: no-repeat;
}
.ba-before { background-position: left center; }
.ba-after {
  background-position: right center;
  clip-path: inset(0 0 0 50%);
}
.ba-label {
  position: absolute;
  top: 16px;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(27, 74, 44, 0.78);
  color: var(--white);
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; background: rgba(46, 138, 54, 0.85); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -1px;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  pointer-events: none;
}
.ba-grip svg { width: 20px; height: 20px; color: var(--navy); }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.ba-caption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--navy-deep);
  color: var(--white);
  padding: 22px 0;
}
.trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust li { display: flex; align-items: center; gap: 10px; opacity: 0.92; }
.trust svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ---------- Section shared ---------- */
section { padding: 96px 0; }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Services (pillars) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pillar-icon svg { width: 28px; height: 28px; color: var(--green-dark); }
.pillar h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pillar .pillar-sub {
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: block;
}
.pillar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.pillar li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.pillar li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}
.pillar-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
}
.pillar-link:hover { text-decoration: underline; }

/* ---------- Deep clean vs recurring ---------- */
/* ---------- About ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about-copy .lead { margin-top: 18px; }
.about-copy p { color: var(--ink-soft); margin-top: 14px; }
.about-copy .btn { margin-top: 26px; }
.placeholder-inline {
  color: var(--green-dark);
  background: var(--sage);
  padding: 1px 8px;
  border-radius: 4px;
  font-style: normal;
}
.serving-card {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 12px;
  padding: 32px;
}
.serving-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.serving-list li {
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.price-list-wrap { margin-top: 40px; }
.price-list-wrap .price-table tbody th { font-weight: 500; }

.pricing { background: var(--sage); }
.clean-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.clean-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}
.clean-card-deep { border-color: var(--green); border-width: 2px; }
.clean-card h3 { font-size: 1.3rem; font-weight: 600; margin: 10px 0 16px; }
.clean-includes { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 14px; font-style: italic; }
.clean-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.clean-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.clean-card li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}
.clean-note {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.clean-note h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.clean-note p { color: var(--ink-soft); margin: 0 0 10px; }
.price-table-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.price-table caption {
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 14px;
  caption-side: top;
}
.price-table th, .price-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}
.price-table thead th { background: var(--navy-deep); color: var(--white); font-weight: 600; }
.price-table tbody th { text-align: left; color: var(--navy-deep); font-weight: 600; background: var(--white); }
.price-table td { color: var(--ink-soft); }
.price-table-note { margin-top: 16px; color: var(--ink-soft); font-size: 0.88rem; }

/* ---------- Extra Hands ---------- */
.extra-hands-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.extra-hands-copy .lead { margin-top: 18px; }
.extra-hands-copy p { color: var(--ink-soft); margin-top: 14px; }
.extra-hands-copy .btn { margin-top: 26px; }
.extra-hands-card {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 12px;
  padding: 32px;
}
.eh-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.eh-row:first-child { padding-top: 0; }
.eh-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.eh-value { text-align: right; font-weight: 600; }
.eh-note {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  border-bottom: none;
  padding: 0;
}

/* ---------- How it works ---------- */
.how { background: var(--sage); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green);
  opacity: 0.55;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0;
}
.gallery-shot {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.gallery-shot img { width: 100%; height: auto; display: block; }
.gallery-shot figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy-deep); color: var(--white); }
.testimonials .section-head h2 { color: var(--white); }
.testimonials .section-head p { color: rgba(255,255,255,0.7); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-grid-single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}
.t-grid-single .t-quote { font-size: 1.3rem; }
.t-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin: 0 auto;
}
.t-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 28px;
}
.t-quote {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 18px;
}
.t-name { font-weight: 600; font-size: 0.9rem; }
.t-role { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.t-flag {
  margin-top: 40px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Contact ---------- */
.contact .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); font-weight: 600; }
.contact-info p.lead { color: var(--ink-soft); margin-top: 16px; font-size: 1.05rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
}
.contact-detail svg {
  width: 20px; height: 20px;
  color: var(--green-dark);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-detail .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-detail .value { font-weight: 500; }
.contact-detail .value.placeholder { color: #A9863F; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-deep);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green);
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 14px;
  min-height: 1.2em;
}
.form-status-success { color: var(--green-dark); }
.form-status-error { color: #B3423A; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  width: 52px; height: 52px;
}
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name { font-family: var(--script); color: var(--white); font-size: 1.8rem; font-weight: 400; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.9rem; white-space: nowrap; }
  .nav .wrap { padding: 0 16px; gap: 10px; }
  .hero { padding: 120px 0 64px; min-height: 0; }
  .hero-scrim {
    background: linear-gradient(180deg,
      rgba(18, 47, 28, 0.88) 0%,
      rgba(18, 47, 28, 0.82) 55%,
      rgba(18, 47, 28, 0.9) 100%);
  }
  .pillars { grid-template-columns: 1fr; }
  .clean-compare { grid-template-columns: 1fr; }
  .extra-hands-wrap { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .eh-value { text-align: left; }
  .eh-row { flex-direction: column; gap: 4px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .contact .wrap { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .trust ul { gap: 20px 32px; justify-content: flex-start; }
}

@media (max-width: 460px) {
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 1.7rem; }
  .brand-tag { display: none; }
  .brand { gap: 8px; }
}

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