/* ============================================================
   WellKept Cleaning Co. — Stylesheet v2
   Redesigned to match Figma prototype
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Lora:ital,wght@1,400;1,500&display=swap');

/* --- Variables --- */
:root {
  --charcoal:   #2F3437;
  --sage:       #A8B79E;
  --warm-white: #FAF9F6;
  --stone:      #D8D6D1;
  --mist:       #EEF2ED;
  --text-muted: #5E6669;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-quote:   'Lora', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-width:    1280px;
  --ease:         0.28s ease;
  --ease-out:     0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* --- Base headings (apply site-wide so unclassed headings render on-brand) --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-body); color: var(--charcoal); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }

/* ============================================================
   NAVIGATION — Sage green background
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--sage);
}
.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo — displayed white on sage */
.nav-logo img {
  height: 32px;
  width: auto;
  transition: opacity var(--ease);
}
.nav-logo:hover img { opacity: 0.8; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--warm-white);
  position: relative;
  white-space: nowrap;
  transition: opacity var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--warm-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover { opacity: 0.75; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Schedule button */
.nav-cta {
  background: var(--charcoal) !important;
  color: var(--warm-white) !important;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  border-radius: 6px;
  transition: background var(--ease), color var(--ease) !important;
  opacity: 1 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--warm-white) !important; color: var(--charcoal) !important; opacity: 1 !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--warm-white); transition: all var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO — Two column: oval logo left / quote right
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}

/* Left: warm white, centered logo */
.hero-left {
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
  gap: 1.6rem;
}
.hero-logo-badge {
  background: var(--charcoal);
  border-radius: 50%;
  width: min(420px, 84%);
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease-out);
}
.hero-logo-badge:hover { transform: scale(1.02); }
.hero-logo-badge::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -95%;
  width: 70%;
  height: 130%;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 30%,
    rgba(255,255,255,0.24) 50%,
    rgba(255,255,255,0.06) 70%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-22deg);
  filter: blur(10px);
  pointer-events: none;
  z-index: 2;
}
.hero-logo-badge:hover::after { animation: gleam 1.7s ease; }
@keyframes gleam {
  0%   { left: -95%; }
  100% { left: 145%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-badge:hover::after { animation: none; }
}
.hero-oval-logo {
  width: 80%;
  height: auto;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  text-transform: lowercase;
}

/* Right: mist background, centered quote */
.hero-right {
  background: var(--warm-white);
  display: flex;
  align-items: stretch;
  padding: 2.5rem 5% 2.5rem 1.5rem;
}
.hero-quote {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--charcoal);
  text-align: center;
}
.hero-card {
  flex: 1;
  background: var(--mist);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-img-box {
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  border: 1.5px dashed #aeb8a4;
  border-radius: 6px;
  overflow: hidden;
}
.hero-img-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.ph-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  pointer-events: none;
}
.space-card-img:has(img),
.hero-img-box:has(img) { border: none; background: none; }
.space-card-img:has(img) .ph-label,
.hero-img-box:has(img) .ph-label { display: none; }

/* ============================================================
   SPACES WE CARE FOR
   ============================================================ */
.spaces-section {
  background: var(--warm-white);
  padding: 80px 5%;
}
.spaces-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.spaces-heading {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2.5rem;
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.space-card {
  background: var(--sage);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 0.65rem 0.4rem;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.space-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(47, 52, 55, 0.12);
}
.space-card-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  padding: 0.2rem 0.75rem 0.55rem;
}
.space-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  align-self: center;
  margin: 0.5rem 0 0.7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  border: 1.5px dashed #aeb8a4;
  border-radius: 50%;
  overflow: hidden;
}
.space-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.space-card-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.55;
  text-align: center;
  padding: 0.75rem 0.9rem 1.1rem;
}

/* ============================================================
   THE WELLKEPT STANDARD TEASER
   ============================================================ */
.standard-section {
  background: var(--warm-white);
  padding: 80px 5%;
}
.standard-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.standard-left h2 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.standard-right p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.8rem;
  transition: all var(--ease);
  border: 1.5px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  background: none;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--charcoal);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}
.btn-outline-light {
  background: transparent;
  color: var(--warm-white);
  border-color: var(--warm-white);
}
.btn-outline-light:hover {
  background: var(--warm-white);
  color: var(--charcoal);
}
.btn-light {
  background: var(--warm-white);
  color: var(--charcoal);
  border-color: var(--warm-white);
}
.btn-light:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--charcoal);
}
.btn-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-note { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 40px 5% 22px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(216,214,209,0.15);
}
.footer-logo img {
  height: 40px;
  margin-bottom: 0.7rem;
  opacity: 0.9;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(250,249,246,0.5);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--sage); }
.footer-bottom {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: rgba(250,249,246,0.28); }
.footer-sage-dot {
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

/* ============================================================
   INNER PAGE SHARED STYLES
   ============================================================ */
.page-hero {
  background: var(--mist);
  padding: 72px 5% 60px;
  border-bottom: 1px solid var(--stone);
}
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.page-hero .eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}
.page-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}
.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
}

.section { padding: 80px 5%; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.container { max-width: var(--max-width); margin: 0 auto; }
.section--mist { background: var(--mist); }
.section--stone { background: var(--stone); }
.section--charcoal { background: var(--charcoal); color: var(--warm-white); }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}
.sage-rule { width: 36px; height: 2px; background: var(--sage); margin-bottom: 1.4rem; }

h2.section-heading {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
.lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Two-col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* Process steps */
.process-list { display: flex; flex-direction: column; }
.process-item { display: flex; gap: 2rem; padding: 1.8rem 0; border-bottom: 1px solid var(--stone); }
.process-item:first-child { border-top: 1px solid var(--stone); }
.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  min-width: 48px;
}
.process-body h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.process-body p { font-size: 0.9rem; color: var(--text-muted); }

/* Value cards */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--stone); }
.value-card { background: var(--warm-white); padding: 2.2rem; transition: background var(--ease); }
.value-card:hover { background: var(--mist); }
.value-icon { width: 32px; height: 32px; color: var(--sage); margin-bottom: 1.2rem; }
.value-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--stone); }
.service-card { background: var(--warm-white); padding: 2.2rem; transition: background var(--ease); }
.service-card:hover { background: var(--mist); }
.service-card h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.service-tag { display: inline-block; margin-top: 1rem; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); }

/* Serve grid */
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.serve-card { text-align: center; padding: 1.8rem 1rem; border: 1px solid var(--stone); border-radius: 4px; transition: border-color var(--ease), background var(--ease), transform var(--ease-out); }
.serve-card:hover { border-color: var(--sage); background: var(--mist); transform: translateY(-4px); }
.serve-emoji { font-size: 1.5rem; margin-bottom: 0.7rem; }
.serve-card h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; }

/* Checklist */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; background: var(--stone); }
.checklist-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.2rem; background: var(--warm-white); border-bottom: 1px solid var(--mist); transition: background var(--ease); }
.checklist-item:hover { background: var(--mist); }
.check-icon { width: 15px; height: 15px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.checklist-item p { font-size: 0.86rem; line-height: 1.5; }

/* Pillar cards */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--stone); }
.pillar-card { background: var(--mist); padding: 2rem; transition: background var(--ease); }
.pillar-card:hover { background: var(--warm-white); }
.pillar-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--stone); line-height: 1; margin-bottom: 0.9rem; }
.pillar-card h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.86rem; color: var(--text-muted); }

/* CTA band */
.cta-band { background: var(--charcoal); color: var(--warm-white); padding: 80px 5%; text-align: center; }
.cta-band h2 { font-family: var(--font-body); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 0.9rem; }
.cta-band p { font-size: 1rem; color: var(--stone); margin-bottom: 2rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Form styles */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--warm-white);
  border: 1.5px solid var(--stone);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.78rem 1rem;
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 6px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Walkthrough layout */
.walkthrough-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.walkthrough-sidebar { background: var(--mist); padding: 2.2rem; border-radius: 8px; }
.walkthrough-sidebar h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 1.4rem; }
.sidebar-list { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.sidebar-dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.sidebar-item p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

/* Contact layout */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-dark { background: var(--charcoal); color: var(--warm-white); padding: 2.2rem; border-radius: 8px; }
.contact-dark h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; color: var(--warm-white); margin-bottom: 1.8rem; }
.contact-detail { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-detail:last-child { margin-bottom: 0; }
.c-icon { width: 17px; height: 17px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.contact-detail h5 { font-family: var(--font-body); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.2rem; }
.contact-detail p, .contact-detail a { font-size: 0.9rem; color: rgba(250,249,246,0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .spaces-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--sage);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 5%;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { padding: 3rem 5%; min-height: 280px; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .standard-inner, .two-col, .walkthrough-layout, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid, .services-grid, .pillar-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .checklist { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo-badge { width: min(300px, 82%); }
}

/* ============================================================
   RESPONSIVE POLISH — tablet & phone cohesion
   ============================================================ */
@media (max-width: 768px) {
  .nav-inner { padding: 0 1.5rem; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-inner { padding: 0 1.25rem; }
  .hero-card { padding: 2rem 1.5rem; gap: 1.5rem; }
  .hero-img-box { min-height: 200px; }
  .spaces-section, .standard-section, .cta-band, .section { padding-top: 56px; padding-bottom: 56px; }
  .page-hero { padding-top: 56px; padding-bottom: 44px; }
}
@media (max-width: 480px) {
  .spaces-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .nav-cta { padding: 0.5rem 1rem !important; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero {
  background: var(--mist);
  padding: 112px 5% 90px;
  border-bottom: 1px solid var(--stone);
  text-align: center;
}
.services-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 1.1rem;
}
.services-hero p {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.services-hero .catchphrase { color: var(--charcoal); font-weight: 500; }
.sparkles { display: inline-flex; align-items: center; gap: 2px; margin-left: 7px; vertical-align: -2px; }
.spark { display: block; transform-origin: center; animation: twinkle 2.4s ease-in-out infinite; }
.spark path { fill: var(--sage); }
.spark-1 { width: 17px; height: 17px; }
.spark-2 { width: 12px; height: 12px; animation-delay: .5s; }
.spark-3 { width: 9px;  height: 9px;  animation-delay: 1s; }
@keyframes twinkle { 0%, 100% { opacity: .45; transform: scale(.8); } 50% { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .spark { animation: none; } }

/* Large image placeholders */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.media-box {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  border: 1.5px dashed #aeb8a4;
  border-radius: 8px;
  overflow: hidden;
}
.media-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.media-box:has(img) { border: none; background: none; }
.media-box:has(img) .ph-label { display: none; }

/* Intro statement */
.intro-statement {
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--charcoal);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

/* 3-up service cards (sage, matches homepage) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.space-card-list {
  text-align: left;
  padding: 0.4rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.space-card-list li {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.45;
  padding-left: 1rem;
  position: relative;
}
.space-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--charcoal);
  border-radius: 50%;
}

/* Final CTA — huge white section */
.cta-final {
  background: var(--warm-white);
  border-top: 1px solid var(--stone);
  padding: 124px 5%;
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-final p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.2rem;
}

@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .media-row { grid-template-columns: 1fr; }
  .services-hero { padding: 80px 5% 62px; }
  .cta-final { padding: 84px 5%; }
}

/* ============================================================
   WELLKEPT STANDARD PAGE
   ============================================================ */
.tm { font-size: 0.4em; vertical-align: super; font-weight: 400; }

.fullbleed-media {
  width: 100%;
  height: 80vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  border-top: 1.5px dashed #aeb8a4;
  border-bottom: 1.5px dashed #aeb8a4;
  overflow: hidden;
}
.fullbleed-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fullbleed-media:has(img) { border: none; background: none; }
.fullbleed-media:has(img) .ph-label { display: none; }

@media (max-width: 600px) {
  .fullbleed-media { height: 60vh; min-height: 340px; }
}

/* ============================================================
   OUR STANDARDS — numbered cards (3 on top, 2 centered below)
   ============================================================ */
.standards-heading {
  text-align: center;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 2.6rem;
}
.standards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.standard-card {
  flex: 0 1 calc(33.333% - 0.84rem);
  background: var(--warm-white);
  border: 1px solid var(--stone);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.standard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(47, 52, 55, 0.10);
}
.standard-num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.9rem;
}
.standard-num::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--sage);
  margin-top: 0.6rem;
}
.standard-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.standard-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 900px) { .standard-card { flex-basis: calc(50% - 0.63rem); } }
@media (max-width: 600px) { .standard-card { flex-basis: 100%; } }

/* ============================================================
   STANDARD FEATURE BAND — faded background photo + overlaid text
   ============================================================ */
.standard-feature {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 5%;
  background: var(--mist);
  border-top: 1.5px dashed #aeb8a4;
  border-bottom: 1.5px dashed #aeb8a4;
}
.standard-feature .feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}
/* Soft white veil over the photo so dark text stays readable (raise alpha if still hard to read) */
.standard-feature:has(.feature-bg)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
  pointer-events: none;
}
.standard-feature .feature-text {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
}
.standard-feature .ph-label {
  position: absolute;
  bottom: 1.4rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 0;
}
.standard-feature:has(.feature-bg) {
  border-top: none;
  border-bottom: none;
  background: none;
}
.standard-feature:has(.feature-bg) .ph-label { display: none; }

@media (max-width: 600px) {
  .standard-feature { min-height: 58vh; padding: 64px 5%; }
}

/* Services cards: larger title with an accent line that fits each title */
.svc-grid .space-card-title {
  font-size: 1.2rem;
  display: inline-block;
  align-self: center;
  padding: 0.2rem 0.6rem 0.5rem;
  border-bottom: 2px solid var(--charcoal);
}

/* Gleam sweep on card photos (matches the homepage logo hover) */
.space-card-img::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -95%;
  width: 70%;
  height: 130%;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 30%,
    rgba(255,255,255,0.24) 50%,
    rgba(255,255,255,0.06) 70%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-22deg);
  filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}
.space-card:hover .space-card-img::after { animation: gleam 1.7s ease; }
@media (prefers-reduced-motion: reduce) {
  .space-card:hover .space-card-img::after { animation: none; }
}