:root {
  --ink: #2b2622;
  --gray: #6b6258;
  --line: #e8e2d8;
  --bg: #faf8f5;
  --gold: #a8732a;
  --action: #b14a26;
  --action-dark: #963d1d;
  --accent: #2b2622;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
}

a { color: inherit; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--action);
  color: #fff;
  border-color: var(--action);
}
.btn-primary:hover { background: var(--action-dark); border-color: var(--action-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* Sticky mobile call/text bar */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.sticky-call,
.sticky-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 19px 16px;
  min-height: 56px;
  color: #fff;
}
.sticky-call { background: var(--action); }
.sticky-text { background: var(--ink); }
.sticky-call-icon { margin-right: 6px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 100px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--ink); }
.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  padding: 110px 0 90px;
  text-align: left;
  background: var(--bg);
}
.hero-inner {
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.hero h1 {
  font-size: 2.9rem;
  max-width: 680px;
  margin: 0 0 20px;
}
.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--gray);
  max-width: 560px;
}
.hero-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}
.btn-call {
  font-size: 1.1rem;
  padding: 18px 36px;
}

/* Sections */
section { padding: 64px 0; border-top: 1px solid var(--line); }
.hero { border-top: none; }
section h2 {
  font-size: 1.5rem;
  margin-bottom: 36px;
}

/* Installation / replacement spotlight */
.installation {
  background: var(--bg);
}
.installation-panel {
  max-width: 720px;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 32px 36px;
}
.installation-panel h2 { margin-bottom: 16px; }
.installation-panel p {
  color: var(--gray);
  font-size: 1.02rem;
  margin-bottom: 24px;
  max-width: 640px;
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.card p { color: var(--gray); font-size: 0.95rem; }

.card-featured {
  background: var(--bg);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.card-featured h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card-featured p { font-size: 1rem; max-width: 640px; }

.card-future {
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: 18px 20px;
}
.badge-soon {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}

.section-cta {
  margin-top: 40px;
  margin-bottom: 0;
}

/* Common problems */
.problem-cards .card h3 { font-size: 0.98rem; }
.problems-cta {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--gray);
}
.problems-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Why us */
.why-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
}
.why-text h2 { margin-bottom: 22px; }
.why-text ul { list-style: none; }
.why-text li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 0.95rem;
}
.why-text li:last-child { border-bottom: 1px solid var(--line); }
.why-text li strong { color: var(--ink); font-weight: 600; }

.why-actions {
  margin-top: 24px;
}

.owner-photo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.owner-photo img {
  width: 200px;
  height: auto;
  aspect-ratio: 420 / 574;
  border-radius: 10px;
  object-fit: cover;
  background: var(--bg);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.owner-photo figcaption {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: normal;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}
.stat-line {
  font-size: 0.95rem;
  color: var(--gray);
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  background: var(--bg);
}
.stat-line span {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 28px;
  max-width: 760px;
}
.faq-item h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.faq-item p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 640px;
}

/* Testimonials (kept for when the section is brought back — see comment in index.html) */
.testimonials .cards { gap: 28px; }
blockquote {
  padding: 0 0 0 18px;
  border-left: 2px solid var(--gold);
  font-style: normal;
  color: var(--ink);
  font-size: 0.95rem;
}
blockquote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 500;
  color: var(--gray);
  font-size: 0.85rem;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { color: var(--gray); margin-bottom: 20px; font-size: 0.95rem; }
.contact-call-btn { margin-bottom: 28px; }
.contact-details { list-style: none; }
.contact-details li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 0.93rem;
}
.contact-details li:last-child { border-bottom: 1px solid var(--line); }
.contact-details a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.contact-text-cta {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 28px;
  display: grid;
  gap: 18px;
  align-content: start;
}
.form-intro {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}
.btn-text-cta { justify-self: start; }

/* Footer nav */
.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.85rem;
}
.footer-nav-group strong {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 3px;
}
.footer-nav-group a {
  color: var(--gray);
  text-decoration: none;
}
.footer-nav-group a:hover { color: var(--ink); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--gray);
  padding: 28px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logo {
  height: 34px;
  width: auto;
  opacity: 0.85;
  flex-shrink: 0;
}
.footer-inner p { margin: 0; }
.footer-inner p + p { margin-top: 4px; }

/* Responsive */
/* Sticky call/text bar: shown on phones AND tablets, since this audience is calling
   from whatever device is in their hand when the door breaks, not just small phones. */
@media (max-width: 1024px) {
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 820px) {
  .why-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav.open { max-height: 360px; }
  .nav a {
    width: 100%;
    padding: 14px 24px;
    border-top: 1px solid var(--line);
    font-size: 1rem;
  }
}
