/* =========================================================
   SANCTUARY NATURAL CLEANING — brand stylesheet
   Palette: charcoal / cream / sage (natural) / brass (premium)
   ========================================================= */

:root {
  --charcoal: #14181a;
  --charcoal-2: #1d2224;
  --cream: #f6f2ea;
  --cream-dim: #e9e3d6;
  --sage: #7c9473;
  --sage-light: #a9c19f;
  --brass: #c9a45c;
  --ink: #1a1a1a;
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(20,24,26,0.12);

  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;

  --maxw: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0 0 1em; line-height: 1.65; }
ul { margin: 0; padding: 0; list-style: none; }

.section-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5.5rem 1.75rem;
}
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.center { text-align: center; }
.lede {
  font-size: 1.08rem;
  color: #4a4a44;
  max-width: 640px;
}
.section-wrap > h2.center,
.section-wrap > .lede.center { margin-left: auto; margin-right: auto; }
h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--sage); color: #101210; }
.btn-primary:hover { background: var(--sage-light); transform: translateY(-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.hero .btn-outline { border-color: var(--cream); color: var(--cream); }
.hero .btn-outline:hover { background: var(--cream); color: var(--charcoal); }
.btn-block { width: 100%; }
.btn-large { padding: 1.05rem 1.7rem; font-size: 1.02rem; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(20,24,26,0.55), rgba(20,24,26,0));
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
}
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--cream); }
.brand-mark { width: 28px; height: 28px; color: var(--sage-light); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; letter-spacing: 0.08em; font-size: 1.05rem; }
.brand-sub { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-light); }

.main-nav { display: flex; align-items: center; gap: 1.9rem; font-size: 0.92rem; font-weight: 600; }
.main-nav a { opacity: 0.92; transition: opacity 0.15s; }
.main-nav a:hover { opacity: 1; color: var(--sage-light); }
.nav-cta {
  padding: 0.55rem 1.15rem;
  border: 1.5px solid var(--cream);
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--cream); color: var(--charcoal) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); display: block; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-fallback-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(124,148,115,0.35), transparent 55%),
    linear-gradient(160deg, #10201a 0%, #14181a 55%, #0d0f10 100%);
  display: none;
}
.hero.no-video .hero-fallback-bg { display: block; }
.hero.no-video .hero-video { display: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,12,12,0.92) 0%, rgba(10,12,12,0.55) 45%, rgba(10,12,12,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.75rem 6.5rem;
  color: var(--cream);
  width: 100%;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-headline { margin-bottom: 1.4rem; }
.hero-headline .line-solid,
.hero-headline .line-accent {
  display: block;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-headline .line-solid { color: var(--cream); }
.hero-headline .line-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--sage-light);
}
.hero-sub {
  max-width: 560px;
  font-size: 1.12rem;
  color: rgba(246,242,234,0.86);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.7rem; }

.scroll-cue {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px; height: 36px;
  border: 1.5px solid rgba(246,242,234,0.55);
  border-radius: 20px;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  background: var(--sage-light);
  border-radius: 3px;
  margin: 6px auto 0;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { opacity: 0; }
}

/* ============ TRUST BAR ============ */
.trustbar { background: var(--ink); color: var(--cream); }
.trustbar-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.4rem;
  justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; color: var(--sage-light); flex-shrink: 0; }

/* ============ WHY NATURAL ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.why-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.why-list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.98rem;
}
.why-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.ingredient-card {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 45px -20px rgba(20,24,26,0.4);
}
.ingredient-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.ingredient-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.ingredient-row:last-child { border-bottom: none; }
.ingredient-row .tag {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-light);
  border: 1px solid rgba(169,193,159,0.4);
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}
.ingredient-row.highlight { color: var(--brass); font-weight: 700; }
.ingredient-row.highlight .tag { color: var(--brass); border-color: rgba(201,164,92,0.5); }

/* ============ SERVICES ============ */
.services { background: var(--cream-dim); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.tier-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -22px rgba(20,24,26,0.45);
}
.tier-badge {
  position: absolute;
  top: -13px; left: 1.9rem;
  background: var(--brass);
  color: #201a0c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 20px;
}
.tier-name { font-size: 1.25rem; font-weight: 800; margin: 0.2rem 0 0.3rem; }
.tier-tagline { font-size: 0.9rem; color: inherit; opacity: 0.7; margin-bottom: 1.2rem; }
.tier-price { margin-bottom: 1.5rem; }
.price-amt { font-size: 1.9rem; font-weight: 800; }
.price-unit { font-size: 0.85rem; opacity: 0.7; margin-left: 0.35rem; }
.tier-features { flex: 1; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.tier-features li {
  font-size: 0.92rem;
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.4;
}
.tier-features li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--sage);
  font-weight: 800;
}
.tier-featured .tier-features li::before { color: var(--sage-light); }
.tier-featured .btn-outline { border-color: var(--cream); color: var(--cream); }
.tier-featured .btn-outline:hover { background: var(--cream); color: var(--ink); }

.addon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.addon-card {
  background: #fff;
  border: 1px dashed var(--line-dark);
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
}
.addon-title { font-weight: 800; margin-bottom: 0.4rem; }
.addon-desc { font-size: 0.88rem; color: #55554e; margin-bottom: 0.8rem; }
.addon-price { font-weight: 800; color: var(--sage); font-size: 1rem; margin: 0; }

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.step-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.process-step p { color: #4a4a44; font-size: 0.95rem; }

/* ============ SERVICE AREA ============ */
.area { background: var(--ink); color: var(--cream); }
.area .kicker { color: var(--sage-light); }
.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.area-tags span {
  border: 1px solid rgba(246,242,234,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.area-card {
  background: var(--charcoal-2);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--line);
}
.area-card-title { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.5rem; }
.area-card p:not(.area-card-title) { font-size: 0.92rem; color: rgba(246,242,234,0.75); }

/* ============ QUOTE FORM ============ */
.quote-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}
.quote-form {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 2.2rem;
}
.form-section { margin-bottom: 2rem; }
.form-section:last-of-type { margin-bottom: 1.4rem; }
.form-section h3 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 800;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line-dark);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.3rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-wide { grid-column: 1 / -1; }
label { font-size: 0.85rem; font-weight: 700; color: #33332e; }
input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid #d8d3c6;
  border-radius: var(--radius);
  background: #fdfcf9;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
}
textarea { resize: vertical; }

.service-type-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.radio-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid #d8d3c6;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.radio-card:has(input:checked) {
  border-color: var(--sage);
  background: rgba(124,148,115,0.08);
}
.radio-card em { font-weight: 500; opacity: 0.65; font-style: normal; font-size: 0.82rem; }
.radio-card input { width: auto; padding: 0; }

.checkbox-row { display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; }
.checkbox-row label { display: flex; align-items: center; gap: 0.45rem; font-weight: 500; font-size: 0.9rem; color: var(--ink); }
.checkbox-row input { width: auto; padding: 0; }

.form-note { font-size: 0.8rem; color: #7a7a70; text-align: center; margin-top: 0.9rem; }

.estimate-panel {
  position: sticky;
  top: 6rem;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 12px;
  padding: 2rem 1.8rem;
}
.estimate-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-light); font-weight: 700; margin-bottom: 0.5rem; }
.estimate-amount { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.3rem; }
.estimate-sub { font-size: 0.85rem; color: rgba(246,242,234,0.65); margin-bottom: 1.3rem; }
.estimate-breakdown { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.estimate-breakdown li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.5rem;
}
.estimate-disclaimer { font-size: 0.78rem; color: rgba(246,242,234,0.55); margin-bottom: 1.4rem; }
.estimate-trust p { font-size: 0.83rem; color: var(--sage-light); margin: 0 0 0.4rem; font-weight: 600; }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--sage);
  margin-left: 1rem;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 0.9rem; color: #4a4a44; font-size: 0.94rem; }

/* ============ FOOTER ============ */
.site-footer { background: var(--charcoal); color: var(--cream); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.brand-footer { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; color: rgba(246,242,234,0.7); max-width: 320px; }
.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.footer-col p { font-size: 0.9rem; margin-bottom: 0.6rem; color: rgba(246,242,234,0.82); }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem 1.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(246,242,234,0.55);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-cta { margin-top: 0.5rem; }

  .why-grid, .area-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-featured { transform: none; }
  .addon-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .quote-layout { grid-template-columns: 1fr; }
  .estimate-panel { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .service-type-group { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section-wrap { padding: 3.5rem 1.25rem; }
  .hero-content { padding-bottom: 4rem; }
}

/* ============ SECURE BOOKING PAGE ============ */
.booking-header {
  position: static;
  background: var(--ink);
}
.booking-header .nav-wrap { padding: 1.1rem 1.75rem; }
.booking-main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dim);
  padding: 3rem 1.5rem;
}
.booking-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 24px 50px -30px rgba(20,24,26,0.35);
}
.booking-card h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.booking-card .lede { font-size: 0.95rem; max-width: none; margin-bottom: 1.6rem; }
.booking-summary {
  background: var(--cream-dim);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.6rem;
}
.booking-summary-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.booking-summary-value { font-weight: 700; margin: 0; }
#payment-element {
  padding: 0.85rem;
  border: 1.5px solid #d8d3c6;
  border-radius: var(--radius);
  background: #fdfcf9;
}
.booking-success { text-align: center; padding: 1rem 0; }
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.booking-success h2 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.booking-footer .footer-bottom { border-top: 1px solid var(--line); }
