/* Homepage performance demo. Static CSS replacement for browser Tailwind runtime. */
:root {
  --earth: #5c4a3d;
  --earth-dark: #3d3129;
  --moss: #6b7c5a;
  --moss-light: #8fa878;
  --sand: #e8dfd5;
  --cream: #faf7f4;
  --warm-white: #fffdf9;
  --text: #3a3530;
  --text-soft: #7a7068;
  --white: #ffffff;
  --shadow: 0 18px 40px rgb(61 49 41 / 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--moss);
  color: var(--white);
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }
.demo-strip {
  position: relative;
  z-index: 60;
  background: #1f1a16;
  color: #fff;
  padding: .7rem 1rem;
  text-align: center;
  font-size: .9rem;
}
.demo-strip a { color: #d7e6ca; font-weight: 600; text-underline-offset: 3px; }
.container { width: min(72rem, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: clamp(4rem, 7vw, 6rem) 0; }
.section-muted { background: var(--cream); }
.section-sand { background: var(--sand); }
.kicker {
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .78rem;
  font-weight: 600;
}
.display {
  margin: 0;
  font-family: 'Libre Baskerville', Georgia, serif;
  line-height: 1.08;
  color: var(--earth-dark);
}
.lead { color: var(--text-soft); font-size: clamp(1.05rem, 2vw, 1.2rem); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 3.25rem;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--moss); color: #fff; }
.btn-primary:hover { background: var(--moss-light); }
.btn-ghost { color: #fff; border-color: rgb(255 255 255 / .35); background: rgb(255 255 255 / .1); }
.btn-ghost:hover { background: rgb(255 255 255 / .18); }
.icon { width: 1.15rem; height: 1.15rem; flex: 0 0 auto; }

.hero {
  position: relative;
  min-height: calc(90vh - 4rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.hero picture, .hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgb(61 49 41 / .82), rgb(61 49 41 / .7) 46%, rgb(61 49 41 / .92));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(68rem, calc(100% - 2rem));
  padding: 5rem 0 4rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 6.5vw, 4.8rem);
  max-width: 11ch;
  margin: .65rem auto 1rem;
}
.hero .lead { color: rgb(255 255 255 / .76); max-width: 42rem; margin: 0 auto 2rem; }
.hero-phone { display: inline-block; margin-top: 1.25rem; color: #fff; font-size: clamp(1.25rem, 2.6vw, 1.8rem); font-weight: 700; text-decoration: none; }
.hero-note { color: rgb(255 255 255 / .7); font-size: .95rem; margin: .75rem 0 0; }

.trust-bar { background: var(--earth); color: #fff; padding: 1.7rem 0; }
.trust-title { text-align: center; margin-bottom: 1rem; font-weight: 700; }
.trust-stars { color: #f6b73c; letter-spacing: .08em; margin-right: .35rem; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; text-align: center; }
.trust-item { color: rgb(255 255 255 / .86); font-size: .92rem; }
.trust-icon { width: 1.75rem; height: 1.75rem; margin: 0 auto .55rem; color: var(--moss-light); }
.trust-icon svg { width: 100%; height: 100%; stroke: currentColor; }
.trust-item strong { color: #fff; display: block; font-size: .96rem; }

.section-head { max-width: 42rem; margin-bottom: 2rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.65rem); margin-bottom: .75rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card {
  min-height: 14rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(61 49 41 / .1), rgb(61 49 41 / .86)); transition: background .2s ease; }
.service-card:hover::before { background: linear-gradient(180deg, rgb(61 49 41 / .18), rgb(61 49 41 / .95)); }
.service-card > * { position: relative; z-index: 1; }
.service-card h3 { color: #fff; font-size: 1.22rem; margin: 0 0 .35rem; }
.service-card p { color: rgb(255 255 255 / .78); margin: 0; font-size: .94rem; }
.qualifier { margin: 2rem auto 0; max-width: 44rem; text-align: center; color: var(--text-soft); border-top: 1px solid rgb(92 74 61 / .15); padding-top: 1.5rem; font-style: italic; }

.about-copy { max-width: 58rem; margin: 0 auto; text-align: center; color: var(--text-soft); font-size: 1.08rem; }
.cards { display: grid; gap: 1rem; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-card, .faq-card, .process-card, .response-card {
  background: #fff;
  padding: 1.4rem;
  box-shadow: 0 2px 14px rgb(61 49 41 / .06);
}
.stars { color: #d99a24; letter-spacing: .08em; margin-bottom: .7rem; }
.review-card blockquote { margin: 0 0 1rem; color: var(--text-soft); }
.review-card cite { font-style: normal; font-weight: 700; color: var(--earth-dark); }
.center-cta { text-align: center; margin-top: 2rem; }
.text-link { color: var(--moss); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.ba-section { background: var(--earth-dark); color: #fff; }
.ba-section .display, .ba-section h3 { color: #fff; }
.ba-section .lead { color: rgb(255 255 255 / .66); }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ba-card { position: relative; overflow: hidden; min-height: 20rem; background: #211b17; }
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; left: 1rem; bottom: 1rem; background: rgb(255 255 255 / .18); color: #fff; padding: .45rem .8rem; font-weight: 700; font-size: .8rem; letter-spacing: .12em; }
.badge.after { background: var(--moss); }
.ba-caption { color: rgb(255 255 255 / .58); text-align: center; margin-top: 1rem; }

.difference { display: grid; grid-template-columns: 1fr 1fr; background: var(--sand); }
.difference-media img { width: 100%; height: 100%; object-fit: cover; }
.difference-copy { padding: clamp(2rem, 6vw, 5rem); align-self: center; }
.feature-list { display: grid; gap: 1.1rem; margin-top: 2rem; }
.feature { display: grid; grid-template-columns: .25rem 1fr; gap: 1rem; }
.feature::before { content: ''; background: var(--moss); border-radius: 99px; }
.feature h3 { margin: 0 0 .2rem; font-family: 'Libre Baskerville', Georgia, serif; color: var(--earth-dark); font-size: 1.08rem; }
.feature p { margin: 0; color: var(--text-soft); }

.process-grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.step-number { width: 4.4rem; height: 4.4rem; border: 2px solid var(--moss); display: grid; place-items: center; margin: 0 auto 1rem; color: var(--moss); font-family: 'Libre Baskerville', Georgia, serif; font-size: 1.55rem; }
.process-card h3, .faq-card h3 { margin: 0 0 .5rem; color: var(--earth-dark); font-family: 'Libre Baskerville', Georgia, serif; font-size: 1.08rem; }
.process-card p, .faq-card p { margin: 0; color: var(--text-soft); }
.response-card { max-width: 42rem; margin: 2rem auto 0; text-align: center; }

.faq-list { max-width: 58rem; margin: 0 auto; display: grid; gap: 1rem; }
.quote-section { background: var(--earth-dark); color: #fff; }
.quote-section .display { color: #fff; }
.quote-card { background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .12); padding: clamp(1.25rem, 4vw, 2.8rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; color: rgb(255 255 255 / .82); margin-bottom: .4rem; font-size: .9rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / .24);
  background: rgb(255 255 255 / .1);
  color: #fff;
  padding: .9rem 1rem;
  font: inherit;
}
textarea { min-height: 7rem; resize: vertical; }
select option { background: var(--earth-dark); }
input::placeholder, textarea::placeholder { color: rgb(255 255 255 / .45); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; }
.form-actions p { color: rgb(255 255 255 / .62); margin: 0; }
.form-actions a { color: #fff; font-weight: 700; font-size: 1.15rem; }
.form-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.5rem; margin-top: 1.3rem; color: rgb(255 255 255 / .52); font-size: .9rem; }
.mobile-contact { display: none; }

@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .review-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .difference { grid-template-columns: 1fr; }
  .difference-media { min-height: 22rem; }
}
@media (max-width: 640px) {
  .demo-strip { font-size: .8rem; }
  .hero { min-height: 82vh; }
  .btn-row { align-items: stretch; }
  .btn { width: 100%; }
  .services-grid, .review-grid, .process-grid, .before-after, .form-grid { grid-template-columns: 1fr; }
  .ba-card { min-height: 15rem; }
  .form-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .mobile-contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--moss);
    box-shadow: 0 -8px 24px rgb(0 0 0 / .18);
  }
  .mobile-contact a { color: #fff; text-align: center; padding: .95rem .5rem; font-weight: 700; text-decoration: none; }
  .mobile-contact a:first-child { border-right: 1px solid rgb(255 255 255 / .22); }
  body { padding-bottom: 3.5rem !important; }
}
