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

/* ── SVG ICON SYSTEM ── */
.icon {
  display: inline-block;
  width: 1em; height: 1em;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

:root {
  --cream:   #FBF7EC;
  --warm:    #F2EEDC;
  --sage:    #B09748;
  --sage-lt: #C7B468;
  --sage-dk: #6E5C30;
  --gold:    #D4BD78;
  --gold-lt: #E5D5A0;
  --charcoal:#1C1A12;
  --mid:     #6B6860;
  --light:   #A09D96;
  --white:   #FFFFFF;
  --radius:  16px;
  --shadow:  0 4px 40px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(251,247,236,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,189,120,0.18);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.08); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 500;
  color: var(--sage-dk); letter-spacing: .03em;
  text-decoration: none; display: flex; align-items: center; gap: 9px;
}
.nav-logo span { color: var(--gold); }
.logo-leaf { font-size: 1.1rem; }
/* Brand logo mark — renders Pictures/brand/logo.png. If the file is absent the
   <img> deletes itself via onerror, so there is never a broken-image icon or an
   empty gap; the wordmark just shows on its own until the logo is added. */
.nav-logo-mark { width: 32px; height: 32px; object-fit: contain; flex: 0 0 auto; display: inline-block; }
.footer-brand .nav-logo-mark { width: 30px; height: 30px; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 400; letter-spacing: .03em;
  color: var(--mid); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--sage); }

.nav-cta {
  background: var(--sage); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 500 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--sage-dk) !important; transform: translateY(-1px); }

/* ── NAV DROPDOWNS ── */
.nav-dropdown { position: relative; list-style: none; }
.nav-dropdown-toggle {
  font-size: .875rem; font-weight: 400; letter-spacing: .03em;
  color: var(--mid); background: none; border: none;
  cursor: pointer; padding: 0; font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s; text-decoration: none;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open > .nav-dropdown-toggle { color: var(--sage); }
.nav-arrow {
  font-size: .65rem; display: inline-block;
  transition: transform .12s; color: var(--gold);
}
.nav-dropdown.open > .nav-dropdown-toggle .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border-radius: 14px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 8px; min-width: 215px; list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .12s ease, visibility .12s ease, transform .12s ease;
  z-index: 200;
}
.nav-dropdown.open > .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { display: block; margin: 0; }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: .87rem; font-weight: 400; color: var(--charcoal);
  text-decoration: none; transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: rgba(176,151,72,0.08); color: var(--sage-dk); }

/* ── HERO (main page) ── */
#hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; align-items: center;
  padding: 100px 5% 60px; gap: 60px;
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; top: -120px; right: -180px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,151,72,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-shape2 {
  position: absolute; bottom: -80px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,189,120,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(176,151,72,0.1); border: 1px solid rgba(176,151,72,0.2);
  border-radius: 50px; padding: 6px 16px;
  font-size: .78rem; font-weight: 500; letter-spacing: .06em;
  color: var(--sage); text-transform: uppercase; margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.15); }
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem); font-weight: 400;
  line-height: 1.07; color: var(--charcoal);
  margin-bottom: 24px; animation: fadeUp .7s .1s ease both;
}
.hero-title em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.75; color: var(--mid);
  max-width: 440px; margin-bottom: 44px; font-weight: 300;
  animation: fadeUp .7s .2s ease both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }

.btn-primary {
  background: var(--sage); color: var(--white);
  padding: 15px 36px; border-radius: 50px; text-decoration: none;
  font-weight: 500; font-size: .95rem; letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-block; box-shadow: 0 6px 24px rgba(176,151,72,0.25);
}
.btn-primary:hover { background: var(--sage-dk); transform: translateY(-1px); box-shadow: 0 7px 20px rgba(176,151,72,0.26); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--charcoal); text-decoration: none;
  font-size: .95rem; font-weight: 400; padding: 15px 0; transition: color .2s;
}
.btn-ghost:hover { color: var(--sage); }
.play-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(28,28,26,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; transition: border-color .2s, background .2s;
}
.btn-ghost:hover .play-icon { background: var(--sage); border-color: var(--sage); color: white; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(160,157,150,0.25);
  animation: fadeUp .7s .45s ease both;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { color: var(--gold); font-size: 1.1rem; }
.trust-text { font-size: .83rem; color: var(--mid); }
.trust-text strong { color: var(--charcoal); font-weight: 500; }

/* ── HERO VISUAL ── */
.hero-visual { position: relative; z-index: 2; animation: fadeUp .7s .15s ease both; }
.hero-card-main {
  background: var(--white); border-radius: 28px; overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.12); position: relative;
}
.hero-img-area {
  height: 340px;
  background: linear-gradient(145deg, #ECE7D7 0%, #DDD3B5 50%, #CABE9A 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.hero-img-area::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(255,255,255,0.3));
}
.cleaning-scene {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; padding: 20px; font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.scene-icon { text-align: center; }
.hero-card-info { padding: 24px 28px; }
.rating-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.rating-num { font-size: .85rem; color: var(--mid); }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 4px; }
.card-sub { font-size: .82rem; color: var(--mid); }

.float-badge {
  position: absolute; background: var(--white); border-radius: 16px;
  padding: 14px 18px; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex; align-items: center; gap: 12px; min-width: 180px;
}
.fb1 { top: -20px; right: -20px; animation: floatBadge1 6s ease-in-out infinite; }
.fb2 { bottom: 80px; left: -30px; animation: floatBadge2 6s 1.5s ease-in-out infinite; }
@keyframes floatBadge1 { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-3px) rotate(-1deg); } }
@keyframes floatBadge2 { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-3px) rotate(1deg); } }
.fb-icon { font-size: 1.5rem; }
.fb-label { font-size: .72rem; color: var(--mid); text-transform: uppercase; letter-spacing: .05em; }
.fb-val { font-size: 1rem; font-weight: 500; color: var(--charcoal); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--sage-dk); padding: 40px 5%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 8px;
}
.stat-num span { color: var(--gold-lt); }
.stat-label { font-size: .82rem; color: rgba(255,255,255,0.6); letter-spacing: .05em; text-transform: uppercase; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.1); margin: 0 auto; }

/* ── SECTION COMMON ── */
section { padding: 76px 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 20px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400;
  line-height: 1.15; color: var(--charcoal); margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-body { font-size: 1rem; line-height: 1.8; color: var(--mid); font-weight: 300; max-width: 520px; }

/* ── SERVICES ──
   Note: .service-card / .service-icon / .service-name / .service-desc /
   .service-price / .service-tag styles live INLINE in index.html (the only
   page that renders these cards). They were duplicated here previously and
   conflicted with the inline overlay design — removed to keep one source. */
#services { background: var(--warm); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── WHY US / TRUST ── */
#trust { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 76px 5%; }
.trust-visual-block { position: relative; }
.trust-img-wrapper {
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #DDD3B5 0%, #BFB389 100%);
  height: 480px; display: flex; align-items: center; justify-content: center; position: relative;
}
.trust-illustration { font-size: 8rem; opacity: .9; animation: float 5s ease-in-out infinite; }
.trust-card-overlay {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--white); border-radius: 20px; padding: 24px 28px;
  box-shadow: 0 5px 22px rgba(0,0,0,0.08); min-width: 220px;
}
.tco-label { font-size: .72rem; color: var(--mid); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.tco-items { display: flex; flex-direction: column; gap: 8px; }
.tco-row { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--charcoal); }
.tco-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(176,151,72,0.1); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; flex-shrink: 0;
}
.trust-award {
  position: absolute; top: 24px; left: -24px;
  background: var(--sage-dk); color: var(--white);
  border-radius: 16px; padding: 16px 20px; text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}
.award-icon { font-size: 1.6rem; margin-bottom: 4px; }
.award-text { font-size: .7rem; line-height: 1.4; opacity: .8; }
.award-year { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--gold-lt); }
.trust-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.tf-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px;
  border-radius: 14px; background: transparent; transition: background .25s; cursor: default;
}
.tf-item:hover { background: var(--warm); }
.tf-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1; min-width: 36px; }
.tf-title { font-size: 1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.tf-desc { font-size: .875rem; line-height: 1.65; color: var(--mid); font-weight: 300; }

/* ── PROCESS ── */
#process { background: var(--warm); text-align: center; }
.process-header { margin-bottom: 48px; }
.process-header .section-label { justify-content: center; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 44px; left: calc(12.5% + 4px); right: calc(12.5% + 4px);
  height: 1px; background: linear-gradient(90deg, var(--sage), var(--gold), var(--sage)); z-index: 0;
}
.process-step { position: relative; z-index: 1; padding: 0 20px; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 1.5px solid rgba(176,151,72,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.4rem; position: relative;
}
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-size: .7rem; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 10px; color: var(--charcoal); }
.step-desc { font-size: .82rem; line-height: 1.65; color: var(--mid); font-weight: 300; }

/* ── TESTIMONIALS ── */
.testi-header { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 36px; }
.testi-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
.testi-card {
  background: var(--white); border-radius: 12px; padding: 26px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
}
.testi-card:hover { border-color: rgba(176,151,72,0.2); }
.testi-card.featured { background: var(--sage-dk); color: var(--white); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; line-height: .8; color: var(--gold); opacity: .5; margin-bottom: 16px; }
.testi-card.featured .quote-mark { color: var(--gold-lt); opacity: .7; }
.testi-text { font-size: .95rem; line-height: 1.75; color: var(--mid); font-weight: 300; flex: 1; margin-bottom: 18px; }
.testi-card.featured .testi-text { color: rgba(255,255,255,0.75); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.testi-card.featured .author-avatar { background: rgba(255,255,255,0.2); }
.author-name { font-size: .9rem; font-weight: 500; color: var(--charcoal); }
.testi-card.featured .author-name { color: var(--white); }
.author-role { font-size: .78rem; color: var(--light); }
.testi-card.featured .author-role { color: rgba(255,255,255,0.5); }
.testi-stars { color: var(--gold); font-size: .8rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card.featured .testi-stars { color: var(--gold-lt); }
.review-count-box { background: var(--warm); border-radius: 16px; padding: 24px; text-align: center; }
.rcb-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--charcoal); }
.rcb-label { font-size: .8rem; color: var(--mid); margin-bottom: 8px; }
.rcb-platforms { font-size: .72rem; color: var(--light); margin-top: 4px; }

/* ── PRICING (服务卡片版) ── */
#pricing { background: var(--warm); }
.pricing-header { text-align: center; margin-bottom: 40px; }
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-body { margin: 0 auto; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-price-card {
  background: var(--white); border-radius: 14px; padding: 18px 18px;
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.svc-price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}
.spc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.spc-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(176,151,72,0.08); color: var(--sage);
  font-size: .68rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
}
.spc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.spc-from { font-size: .82rem; color: var(--mid); margin-bottom: 14px; }
.spc-from strong { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--sage); }
.spc-bullets { list-style: none; margin-bottom: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.spc-bullets li { display: flex; align-items: center; gap: 7px; font-size: .825rem; color: var(--mid); }
.spc-bullets li::before {
  content: '✓'; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(176,151,72,0.1); color: var(--sage);
  font-size: .58rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.spc-btn {
  width: 100%; padding: 10px; border-radius: 50px;
  border: 1.5px solid var(--sage); background: transparent; color: var(--sage);
  font-size: .88rem; font-weight: 500; cursor: pointer;
  transition: background .2s, color .2s; font-family: 'DM Sans', sans-serif;
  text-align: center; text-decoration: none; display: block;
}
.spc-btn:hover { background: var(--sage); color: var(--white); }

/* ── BOOKING FORM ── */
#book {
  background: var(--charcoal); padding: 76px 5%; position: relative; overflow: hidden;
}
#book::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,151,72,0.25) 0%, transparent 70%); pointer-events: none;
}
#book::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,189,120,0.12) 0%, transparent 70%); pointer-events: none;
}
.book-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}
.book-info .section-label { color: var(--gold-lt); }
.book-info .section-title { color: var(--white); }
.book-info .section-body { color: rgba(255,255,255,0.5); max-width: 400px; margin-bottom: 40px; }
.book-promises { display: flex; flex-direction: column; gap: 16px; }
.book-promise { display: flex; align-items: center; gap: 14px; font-size: .9rem; color: rgba(255,255,255,0.7); }
.bp-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(212,189,120,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.book-form {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px; padding: 34px 32px; backdrop-filter: blur(10px);
}
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.form-subtitle { font-size: .85rem; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
label { display: block; font-size: .78rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 300; outline: none;
  transition: border-color .2s, background .2s; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
input:focus, select:focus, textarea:focus { border-color: rgba(212,189,120,0.5); background: rgba(255,255,255,0.1); }
select option { background: #1C1A12; color: white; }
textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 16px; border-radius: 50px; border: none;
  background: linear-gradient(135deg, var(--sage), var(--sage-dk));
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500; letter-spacing: .02em; cursor: pointer; margin-top: 8px;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(176,151,72,0.4);
}
.form-submit:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 10px 32px rgba(176,151,72,0.5); }
.form-note { text-align: center; margin-top: 16px; font-size: .78rem; color: rgba(255,255,255,0.3); }
.form-note a { color: rgba(255,255,255,0.5); }

/* ── GUARANTEE STRIP ── */
.guarantee-strip {
  background: var(--gold); padding: 32px 5%;
  display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.gs-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 500; color: var(--white); }
.gs-icon { font-size: 1.3rem; }
.gs-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal); padding: 60px 5% 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; display: block; }
.footer-brand .nav-logo span { color: var(--gold); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); text-decoration: none;
  cursor: pointer; padding: 0;
  transition: border-color .2s, color .2s, background .2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,189,120,0.06); }
.social-link .social-icon { width: 18px; height: 18px; display: block; }

/* ── Social popup (footer.js) ────────────────────────────────────── */
.social-modal {
  position: fixed; inset: 0;
  background: rgba(8,8,5,0.72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 999;
  padding: 20px;
}
.social-modal.open { display: flex; animation: socialFade .18s ease both; }
@keyframes socialFade { from { opacity: 0; } to { opacity: 1; } }
.social-modal-card {
  position: relative;
  width: 100%; max-width: 340px;
  background: var(--white);
  border-radius: 22px;
  padding: 28px 24px 26px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: socialPop .25s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes socialPop {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.social-modal-close {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  border: none; border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: var(--charcoal);
  font-size: 1.3rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.social-modal-close:hover { background: rgba(0,0,0,0.10); }
.social-modal-pic {
  width: 78px; height: 78px;
  border-radius: 50%;
  object-fit: cover;
  display: block; margin: 4px auto 14px;
  border: 3px solid rgba(212,189,120,0.55);
  box-shadow: 0 6px 18px rgba(176,151,72,0.18);
}
.social-modal-platform {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.social-modal-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.social-modal-handle {
  font-size: .92rem; font-weight: 500;
  color: var(--sage-dk);
  margin-bottom: 12px;
  word-break: break-all;
}
.social-modal-extra {
  font-size: .82rem; line-height: 1.55;
  color: var(--mid);
  margin-bottom: 20px;
}
.social-modal-action {
  display: inline-block;
  background: var(--sage);
  color: var(--white) !important;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .9rem; font-weight: 500;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.social-modal-action:hover { background: var(--sage-dk); transform: translateY(-1px); }
.social-modal-toast {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--sage-dk);
  opacity: 0;
  transition: opacity .2s;
  min-height: 18px;
}
.social-modal-toast.show { opacity: 1; }

@media (max-width: 480px) {
  .social-modal { padding: 16px; }
  .social-modal-card { padding: 24px 20px 22px; max-width: 100%; }
  .social-modal-pic { width: 68px; height: 68px; }
  .social-modal-brand { font-size: 1.4rem; }
}
.footer-col h4 { font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: .8rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 12px;
}
.footer-certifications { display: flex; gap: 12px; align-items: center; }
.cert-badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 6px 12px; font-size: .7rem; color: rgba(255,255,255,0.35); letter-spacing: .04em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SUCCESS MESSAGE ── */
.success-msg { display: none; text-align: center; padding: 24px; }
.success-msg.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 12px; }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.success-sub { font-size: .9rem; color: rgba(255,255,255,0.5); }

/* ════════════════════════════════
   IMAGE PLACEHOLDER — shown automatically (by services.js) on any
   image slot whose real photo is missing. Honest "photo goes here"
   marker instead of a misleading stand-in image.
   ════════════════════════════════ */
.img-ph {
  background-image:
    repeating-linear-gradient(135deg,
      rgba(176,151,72,0.07) 0 16px,
      rgba(176,151,72,0.13) 16px 32px) !important;
  background-color: #ECE6D5 !important;
  background-size: auto !important;
}
.img-ph-tag {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 500; letter-spacing: .02em;
  line-height: 1.5; color: var(--sage-dk);
}
.img-ph-tag::before {
  content: '';
  width: 22px; height: 22px; margin-right: 9px;
  flex-shrink: 0;
  background: var(--sage-dk);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><circle cx='12' cy='12' r='3'/><path d='M8 5l1.5-2h5L16 5'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><circle cx='12' cy='12' r='3'/><path d='M8 5l1.5-2h5L16 5'/></svg>") center/contain no-repeat;
  opacity: .85;
}
/* Service cards: text lives at the bottom, so pin the placeholder note to
   the top area and lighten it so the card's own title stays readable. */
.service-card.img-ph .img-ph-tag {
  inset: 0 0 auto 0; height: auto; padding: 16px 16px 0;
  justify-content: flex-start; color: rgba(255,255,255,0.92);
  font-size: .74rem; text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.service-card.img-ph .img-ph-tag::before { background: rgba(255,255,255,0.92); }
.service-card.img-ph {
  background-image: linear-gradient(150deg, #6E5C30 0%, #4f421f 100%) !important;
  background-color: #5a4b27 !important;
}

/* ════════════════════════════════
   SUB-PAGE SPECIFIC STYLES
   ════════════════════════════════ */

/* Sub-page hero */
.sp-hero {
  padding: 140px 5% 80px;
  background:
    linear-gradient(to bottom,
      rgba(18,16,9,0.72) 0%,
      rgba(18,16,9,0.58) 60%,
      rgba(18,16,9,0.72) 100%),
    url('Pictures/Template Pictures/example_picture.jpg') center/cover no-repeat;
  text-align: center; position: relative; overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}
.sp-breadcrumb {
  font-size: .8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px;
  position: relative; z-index: 1;
}
.sp-breadcrumb a { color: var(--gold-lt); text-decoration: none; }
.sp-breadcrumb a:hover { text-decoration: underline; }
.sp-hero-icon { font-size: 4rem; margin-bottom: 20px; display: block; position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.sp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400;
  color: var(--white); margin-bottom: 16px;
  position: relative; z-index: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.sp-hero-title em { font-style: italic; color: var(--gold-lt); }
.sp-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); font-weight: 300; max-width: 520px; margin: 0 auto 36px; line-height: 1.75; position: relative; z-index: 1; }
.sp-hero-price {
  display: inline-block;
  background: rgba(212,189,120,0.18);
  border: 1px solid rgba(212,189,120,0.4);
  border-radius: 50px; backdrop-filter: blur(8px);
  padding: 8px 24px; font-size: .9rem; font-weight: 500; color: var(--gold-lt); margin-bottom: 32px;
  position: relative; z-index: 1;
}
.sp-hero .btn-primary { position: relative; z-index: 1; }

/* Before/After comparison */
.comparison-section { padding: 80px 5%; background: var(--white); }
.comparison-header { text-align: center; margin-bottom: 48px; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.comparison-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08); position: relative;
}
.comparison-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.comparison-img.before::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(60, 30, 0, 0.42);
}
.comparison-img.after::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(238, 232, 210, 0.15);
}
.comparison-img > span,
.comparison-img > p { display: none; }
.comparison-label {
  position: absolute; top: 16px; left: 16px;
  background: rgba(0,0,0,0.55); color: white;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
  backdrop-filter: blur(4px);
}
.comparison-caption { padding: 18px 20px; background: var(--white); }
.comparison-caption p { font-size: .85rem; color: var(--mid); line-height: 1.6; }
.comparison-set-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500; color: var(--charcoal);
  text-align: center; max-width: 900px; margin: 48px auto 20px;
}
.comparison-set-title:first-of-type { margin-top: 0; }

/* ── FINISHED-RESULTS SHOWCASE ──
   Single-image result gallery (lighter on photos than before/after).
   Each .showcase-img uses the shared placeholder background today; to use a
   real photo later, add  style="background-image:url('../Pictures/your.jpg')"
   to that card's .showcase-img — everything else stays the same. */
.showcase-section { padding: 80px 5%; background: var(--cream); }
.showcase-header { text-align: center; margin-bottom: 48px; }
.showcase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1140px; margin: 0 auto;
}
.showcase-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.showcase-img {
  height: 200px;
  background-size: cover; background-position: center;
  position: relative;
}
.showcase-img::after { content: ''; position: absolute; inset: 0; background: rgba(238,232,210,0.12); }
.showcase-label {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: rgba(110,92,48,0.92); color: #fff;
  font-size: .66rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 50px; backdrop-filter: blur(4px);
}
.showcase-body { padding: 20px 22px 24px; }
.showcase-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; color: var(--charcoal); margin-bottom: 7px;
}
.showcase-tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 9px;
}
.showcase-desc { font-size: .85rem; color: var(--mid); line-height: 1.6; font-weight: 300; }
@media (max-width: 900px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .showcase-grid { grid-template-columns: 1fr; gap: 18px; } .showcase-section { padding: 56px 5%; } }

/* Service details */
.sp-details { padding: 80px 5%; }
.sp-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }

/* Stacked variant — used when the bullet list is too long to sit beside the
   pricing CTA (e.g. car-full-detail). Bullets sit above the CTA box, and
   the list itself becomes a 2-column grid so it doesn't run super tall. */
.sp-details-grid.sp-details-stacked {
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.sp-details-grid.sp-details-stacked .sp-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.sp-details-grid.sp-details-stacked .sp-cta-box {
  max-width: 540px;
  width: 100%;
  justify-self: center;
}
@media (max-width: 720px) {
  .sp-details-grid.sp-details-stacked .sp-bullets { grid-template-columns: 1fr; }
}
.sp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
}
.sp-bullets li {
  display: block;
  position: relative;
  padding: 18px 22px 18px 78px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}
.sp-bullets li strong {
  display: block;
  color: var(--charcoal);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .005em;
  margin-bottom: 4px;
}
.sp-bullet-icon {
  position: absolute;
  left: 22px;
  top: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,189,120,0.22), rgba(176,151,72,0.10));
  color: var(--sage-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 600;
  border: 1px solid rgba(176,151,72,0.18);
}
@media (max-width: 640px) {
  .sp-bullets li { padding: 16px 18px 16px 64px; }
  .sp-bullet-icon { left: 18px; top: 16px; width: 30px; height: 30px; font-size: .78rem; }
}
.sp-cta-box {
  background: var(--warm); border-radius: 24px; padding: 36px 32px;
  border: 1px solid rgba(176,151,72,0.1);
  position: relative; overflow: hidden;
}
.sp-cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--sage));
}
.sp-cta-box .section-label { margin-bottom: 12px; }
.sp-cta-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--charcoal); line-height: 1;
  margin-bottom: 4px;
}
.sp-cta-price sup { font-size: 1.2rem; vertical-align: super; }
.sp-cta-freq { font-size: .82rem; color: var(--light); margin-bottom: 24px; }
.sp-includes { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.sp-includes li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--mid); }
.sp-includes li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(176,151,72,0.1); color: var(--sage);
  font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── PRE-SELECTED SERVICE (auto-filled via ?service= URL param) ── */
@keyframes preSelectPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,189,120,0.55); border-color: rgba(212,189,120,0.75); }
  65%  { box-shadow: 0 0 0 12px rgba(212,189,120,0); border-color: rgba(212,189,120,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(212,189,120,0); }
}
select.preselected {
  border-color: rgba(212,189,120,0.65) !important;
  animation: preSelectPulse 1.8s ease 1;
}

/* ── DOC PAGES (about, contact, faqs, service-areas, privacy, terms) ── */
.doc-hero {
  background: var(--charcoal);
  padding: 0 24px;
  text-align: center;
  height: 340px;
  box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
@media (max-width: 600px) {
  .doc-hero { height: auto; padding: 80px 24px 52px; }
}
.doc-hero-label {
  font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.doc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400;
  color: var(--white); line-height: 1.15;
}
.doc-hero-title em { color: var(--gold); font-style: italic; }
.doc-hero-sub {
  margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
  font-size: .95rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.7;
}

.doc-body {
  max-width: 800px; margin: 0 auto; padding: 72px 24px 96px;
}
.doc-section { margin-bottom: 56px; }
.doc-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500; color: var(--charcoal);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--warm);
}
.doc-section p { font-size: .95rem; line-height: 1.8; color: var(--mid); margin-bottom: 14px; font-weight: 300; }
.doc-section ul, .doc-section ol {
  margin: 12px 0 14px 20px; display: flex; flex-direction: column; gap: 8px;
}
.doc-section li { font-size: .95rem; line-height: 1.7; color: var(--mid); font-weight: 300; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--warm); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 400; color: var(--charcoal);
}
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--sage); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-answer p { padding-bottom: 16px; font-size: .9rem; color: var(--mid); line-height: 1.7; font-weight: 300; }
.faq-item.open .faq-answer { max-height: 400px; }

/* Contact form (doc page) */
.doc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.doc-contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 20px; color: var(--charcoal); }
.doc-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--warm);
  border-radius: 10px;
  font-size: .88rem;
  line-height: 1.7;
}
.doc-contact-detail-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 80px;
}
.doc-contact-detail-value {
  color: var(--charcoal);
  font-weight: 400;
}
.doc-contact-detail-value a { color: var(--charcoal); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,.12); }
.doc-contact-detail-value a:hover { border-color: var(--sage); color: var(--sage); }
.doc-form .form-group { margin-bottom: 18px; }
.doc-form label { display: block; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; color: var(--mid); margin-bottom: 8px; }
.doc-form input, .doc-form textarea {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1); background: var(--warm);
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--charcoal);
  outline: none; transition: border-color .2s;
}
.doc-form input:focus, .doc-form textarea:focus { border-color: var(--sage); }
.doc-form textarea { resize: vertical; min-height: 120px; }
.doc-form .btn-submit {
  width: 100%; padding: 14px; border-radius: 50px; border: none;
  background: var(--sage); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 500;
  cursor: pointer; transition: opacity .2s;
}
.doc-form .btn-submit:hover { opacity: .88; }

/* Service areas grid */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.area-chip {
  background: var(--warm); border-radius: 8px; padding: 10px 16px;
  font-size: .88rem; color: var(--charcoal); font-weight: 300; text-align: center;
}

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card {
  background: var(--warm); border-radius: var(--radius); padding: 28px 24px;
}
.value-card-icon { font-size: 1.6rem; margin-bottom: 12px; color: var(--sage); }
.value-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 8px; color: var(--charcoal); }
.value-card p { font-size: .88rem; color: var(--mid); line-height: 1.7; font-weight: 300; }

@media (max-width: 680px) {
  .doc-contact-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE NAV HAMBURGER
═══════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
  border-radius: 10px;
  transition: background .25s ease, transform .35s cubic-bezier(.22,.61,.36,1);
}
.nav-hamburger:hover { background: rgba(176,151,72,0.10); }
.nav-hamburger:active { transform: scale(.92); }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform .42s cubic-bezier(.65,.05,.36,1),
    opacity .25s ease,
    width .35s cubic-bezier(.22,.61,.36,1),
    background .25s ease;
}
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger span:nth-child(3) { width: 22px; }
.nav-hamburger:hover span { background: var(--sage); }
.nav-hamburger:hover span:nth-child(2) { width: 24px; }
.nav-hamburger:hover span:nth-child(3) { width: 24px; }
.nav-hamburger.open span { background: var(--sage); width: 24px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(28,26,18,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,189,120,0.2);
  z-index: 98;
  padding: 12px 5% 28px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px) scale(.985);
  transform-origin: top center;
  transition:
    opacity .18s cubic-bezier(.22,.61,.36,1),
    visibility .18s ease,
    transform .22s cubic-bezier(.22,.61,.36,1);
}
.nav-mobile-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
/* Stagger reveal for each link as the panel opens */
.nav-mobile-panel .nav-mobile-links > li,
.nav-mobile-panel .nav-mobile-cta-wrap {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .25s cubic-bezier(.22,.61,.36,1);
}
.nav-mobile-panel.open .nav-mobile-links > li,
.nav-mobile-panel.open .nav-mobile-cta-wrap {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile-panel.open .nav-mobile-links > li:nth-child(1) { transition-delay: .03s; }
.nav-mobile-panel.open .nav-mobile-links > li:nth-child(2) { transition-delay: .05s; }
.nav-mobile-panel.open .nav-mobile-links > li:nth-child(3) { transition-delay: .07s; }
.nav-mobile-panel.open .nav-mobile-links > li:nth-child(4) { transition-delay: .09s; }
.nav-mobile-panel.open .nav-mobile-links > li:nth-child(5) { transition-delay: .11s; }
.nav-mobile-panel.open .nav-mobile-cta-wrap                 { transition-delay: .14s; }

.nav-mobile-links { list-style: none; }
.nav-mobile-links > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-mobile-links > li:last-child { border-bottom: none; }

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  font-size: .95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .01em;
}
.nav-mobile-toggle .mob-arrow {
  font-size: .65rem;
  color: var(--gold);
  transition: transform .15s;
}
.nav-mobile-toggle.open .mob-arrow { transform: rotate(180deg); }

.nav-mobile-submenu {
  list-style: none;
  padding: 0 0 0 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height .28s cubic-bezier(.22,.61,.36,1),
    opacity .18s ease,
    padding-bottom .22s ease,
    transform .28s cubic-bezier(.22,.61,.36,1);
}
/* max-height target is tuned just above the tallest submenu (Home Services,
   11 items × ~40px ≈ 440px) so the transition tracks the actual content
   height instead of finishing invisibly past the content. */
.nav-mobile-submenu.open {
  max-height: 480px;
  opacity: 1;
  padding-bottom: 12px;
  transform: translateY(0);
}
.nav-mobile-submenu > li {
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity .22s ease,
    transform .3s cubic-bezier(.22,.61,.36,1);
}
.nav-mobile-submenu.open > li {
  opacity: 1;
  transform: translateX(0);
}
.nav-mobile-submenu.open > li:nth-child(1)  { transition-delay: .04s; }
.nav-mobile-submenu.open > li:nth-child(2)  { transition-delay: .07s; }
.nav-mobile-submenu.open > li:nth-child(3)  { transition-delay: .10s; }
.nav-mobile-submenu.open > li:nth-child(4)  { transition-delay: .13s; }
.nav-mobile-submenu.open > li:nth-child(5)  { transition-delay: .16s; }
.nav-mobile-submenu.open > li:nth-child(6)  { transition-delay: .19s; }
.nav-mobile-submenu.open > li:nth-child(7)  { transition-delay: .22s; }
.nav-mobile-submenu.open > li:nth-child(8)  { transition-delay: .25s; }
.nav-mobile-submenu.open > li:nth-child(9)  { transition-delay: .28s; }
.nav-mobile-submenu.open > li:nth-child(10) { transition-delay: .31s; }
.nav-mobile-submenu.open > li:nth-child(11) { transition-delay: .34s; }
.nav-mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: .875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color .2s;
}
.nav-mobile-submenu a:hover { color: var(--gold-lt); }
.nav-mobile-submenu a .icon { width: .9em; height: .9em; opacity: .6; }

.nav-mobile-direct a {
  display: block;
  padding: 15px 0;
  font-size: .95rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 400;
  transition: color .2s;
}
.nav-mobile-direct a:hover { color: var(--gold-lt); }

.nav-mobile-cta-wrap { padding: 20px 0 4px; }
.nav-mobile-cta {
  display: block;
  background: var(--sage);
  color: var(--white) !important;
  padding: 14px 24px;
  border-radius: 50px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  font-size: .95rem;
  transition: background .2s;
}
.nav-mobile-cta:hover { background: var(--sage-dk); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 900px
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Sections */
  section { padding: 72px 5%; }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 5% 64px;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .trust-strip { justify-content: center; }
  .hero-visual { display: none; }

  /* Stats */
  .stats-band { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Trust */
  #trust { grid-template-columns: 1fr; gap: 48px; }
  .trust-visual-block { max-width: 480px; margin: 0 auto; }
  .trust-card-overlay { bottom: -12px; right: -8px; }
  .trust-award { top: 16px; left: -8px; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }

  /* Testimonials */
  .testi-header { grid-template-columns: 1fr; gap: 20px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  /* Booking */
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .book-info { text-align: center; }
  .book-info .section-body { margin: 0 auto 40px; }
  .book-promises { align-items: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Service detail */
  .sp-details-grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-cta-box { max-width: 540px; }

  /* Comparison */
  .comparison-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 600px
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  section { padding: 56px 5%; }

  #hero { padding: 88px 5% 48px; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); }

  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 36px 5%; }
  .stat-num { font-size: 2.4rem; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  .testi-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .book-form { padding: 28px 20px; }
  .book-form .form-title { font-size: 1.35rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-certifications { flex-wrap: wrap; justify-content: center; }

  .guarantee-strip { gap: 20px; padding: 24px 5%; flex-direction: column; align-items: flex-start; }
  .gs-divider { display: none; }

  .comparison-grid { grid-template-columns: 1fr; }

  .sp-hero { padding: 110px 5% 52px; }
  .sp-details { padding: 56px 5%; }
  .comparison-section { padding: 56px 5%; }
}

