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

:root {
  --warm-dark: #2A1F17;
  --slate: #6B7F8A;
  --stone-dark: #8B6355;
  --brick: #8F4840;
  --brick-light: #9F5850;
  --white: #ffffff;
  --cream: #FDF6EE;
  --gray: #6b7280;
  --dark: #111827;
  --sand: #F0E0CC;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── HEADER ── */
header {
  background: var(--slate);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { font-size: 1.2rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.logo span { color: var(--sand); }
.header-right { display: flex; align-items: center; gap: 24px; }
nav { display: flex; gap: 20px; }
nav a { color: rgba(255,255,255,0.85); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--sand); }
.header-phone a {
  background: var(--brick);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-phone a:hover { background: var(--brick-light); }

.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }
.mobile-nav { display: none; background: var(--slate); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.85); padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; font-weight: 500; }
.mobile-nav a:hover { color: var(--sand); }
.mobile-phone-bar { display: none; background: var(--brick); text-align: center; padding: 14px; }
.mobile-phone-bar a { color: var(--white); font-weight: 700; font-size: 1.05rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #4A6470 0%, #3A5460 100%);
  padding: 52px 20px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero h1 em { font-style: normal; color: var(--sand); }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brick);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s;
}
.cta-phone:hover { background: var(--brick-light); }

/* ── SECTIONS ── */
.section { padding: 60px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: #F5EDE0; }
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brick); margin-bottom: 10px; }

/* ── CONTENT + SIDEBAR LAYOUT ── */
.content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.content-body h2 { font-size: 1.8rem; font-weight: 800; color: var(--slate); margin-bottom: 16px; line-height: 1.25; }
.content-body p { color: var(--gray); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.7; }
.content-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--slate); margin: 28px 0 10px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray); font-size: 0.95rem; }
.check-list li::before { content: '✓'; color: var(--brick); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── SIDEBAR FORM ── */
.sidebar-card { background: var(--slate); color: var(--white); border-radius: 12px; padding: 28px; position: sticky; top: 88px; }
.sidebar-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--sand); }
.form-group select { color: rgba(255,255,255,0.85); }
.form-group select option { color: var(--dark); background: var(--white); }
.form-group textarea { resize: vertical; height: 80px; }
.form-submit { width: 100%; background: var(--brick); color: var(--white); font-size: 1rem; font-weight: 700; padding: 13px; border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--brick-light); }
.sidebar-phone { text-align: center; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.15); }
.sidebar-phone p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.sidebar-phone a { color: var(--sand); font-weight: 700; font-size: 1.1rem; display: block; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--sand); padding: 20px 0; }
.faq-item:first-child { border-top: 1.5px solid var(--sand); }
.faq-q { font-size: 1rem; font-weight: 700; color: var(--slate); cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; list-style: none; }
.faq-q::after { content: '+'; color: var(--brick); font-size: 1.4rem; flex-shrink: 0; }
details[open] .faq-q::after { content: '−'; }
.faq-a { color: var(--gray); margin-top: 12px; font-size: 0.95rem; line-height: 1.65; }

/* ── RELATED CARDS ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { border: 1.5px solid var(--sand); border-radius: 10px; padding: 22px 20px; transition: border-color 0.2s; background: var(--white); }
.related-card:hover { border-color: var(--brick); }
.related-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: 8px; }
.related-card p { color: var(--gray); font-size: 0.88rem; margin-bottom: 12px; }
.related-card a { font-size: 0.88rem; font-weight: 700; color: var(--brick); }

/* ── MID CTA ── */
.mid-cta { background: var(--slate); padding: 56px 20px; text-align: center; }
.mid-cta h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.mid-cta p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 64px 20px; }
.contact-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--slate); margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 24px; font-size: 0.97rem; line-height: 1.7; }
.info-block { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { width: 40px; height: 40px; background: rgba(143,72,64,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.info-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--slate); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 0.9rem; color: var(--gray); }
.info-item a:hover { color: var(--brick); }
.cta-phone-big { display: inline-flex; align-items: center; gap: 10px; background: var(--brick); color: var(--white); font-size: 1.2rem; font-weight: 800; padding: 14px 28px; border-radius: 8px; margin-bottom: 12px; transition: background 0.2s; }
.cta-phone-big:hover { background: var(--brick-light); }
.form-card { background: #F5EDE0; border-radius: 12px; padding: 32px; }
.form-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--slate); margin-bottom: 20px; }
.form-card .form-group input,
.form-card .form-group textarea,
.form-card .form-group select {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--sand);
}
.form-card .form-group input:focus,
.form-card .form-group textarea:focus,
.form-card .form-group select:focus { border-color: var(--slate); }
.form-card .form-group label { color: var(--dark); }
.form-card .form-submit { background: var(--slate); }
.form-card .form-submit:hover { background: var(--brick); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 10px; }
.service-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.service-link-btn { display: block; border: 1.5px solid var(--sand); border-radius: 8px; padding: 12px 16px; font-size: 0.88rem; font-weight: 600; color: var(--slate); text-align: center; background: var(--white); transition: border-color 0.2s, background 0.2s; }
.service-link-btn:hover { border-color: var(--brick); background: rgba(143,72,64,0.05); }

/* ── FOOTER ── */
footer { background: #1E2A30; color: rgba(255,255,255,0.65); padding: 48px 20px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--sand); }
.footer-desc { font-size: 0.88rem; line-height: 1.65; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sand); }
.footer-contact { font-size: 0.88rem; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--sand); }
.footer-hours { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .mobile-phone-bar { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .service-links { grid-template-columns: 1fr; }
}
