/* Mt Juliet Driveway Repair — shared site/landing stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --accent-light: #fed7aa;
  --green: #16a34a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.14);
  --radius: 0;
  --max-width: 1200px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

/* Header */
.header-stack { position: sticky; top: 0; z-index: 100; }
header {
  background: var(--slate-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; padding-bottom: 16px; }
.logo { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.logo:hover { color: var(--white); }
.logo-mark { width: 36px; height: 36px; border-radius: 0; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.logo-text { line-height: 1.1; }
.logo-text .accent { color: var(--accent); }
.logo-text small { display: block; font-size: 11px; color: var(--slate-300); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.header-cta { background: var(--accent); color: var(--white); padding: 10px 20px; border-radius: 0; font-weight: 600; font-size: 15px; transition: background 0.15s; }
.header-cta:hover { background: var(--accent-dark); color: #fff; }
.header-phone { color: var(--white); font-weight: 700; font-size: 15px; white-space: nowrap; }
.header-phone:hover { color: var(--accent-light); }
/* Mobile subheader (phone + CTA), sits below the main header */
.subheader { display: none; background: var(--accent); }
.subheader .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; padding-bottom: 8px; }
.subheader-phone { color: var(--white); font-weight: 700; font-size: 14px; white-space: nowrap; }
.subheader-phone:hover { color: var(--white); text-decoration: underline; }
.subheader-cta { background: var(--accent-dark); color: var(--white); padding: 6px 12px; border-radius: 0; font-weight: 700; font-size: 13px; white-space: nowrap; }
.subheader-cta:hover { background: #a8370a; color: var(--white); }
nav.primary { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
nav.primary a:not(.header-cta):not(.header-phone) { color: var(--slate-100); font-weight: 600; font-size: 15px; }
nav.primary a:not(.header-cta):not(.header-phone):hover { color: var(--accent-light); }
.nav-toggle-cb { display: none; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.2s, opacity 0.2s; }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle-cb:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='c' width='40' height='40' patternUnits='userSpaceOnUse'><path d='M0 20 Q 10 10 20 20 T 40 20' stroke='%23ffffff' stroke-width='0.5' fill='none' opacity='0.15'/></pattern></defs><rect width='100' height='100' fill='url(%23c)'/></svg>");
  color: var(--white);
  padding: 60px 0 80px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.hero-content h1 { font-size: 44px; font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-content h1 .accent { color: var(--accent-light); }
.hero-content .sub { font-size: 19px; color: var(--slate-300); margin-bottom: 28px; line-height: 1.5; }
.hero-bullets { list-style: none; padding: 0; margin-bottom: 32px; display: grid; gap: 12px; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 12px; color: var(--slate-100); font-size: 16px; }
.hero-bullets .check { flex-shrink: 0; width: 22px; height: 22px; background: var(--accent); color: #fff; border-radius: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-top: 2px; }

/* Form card */
.form-card { background: var(--white); border-radius: 0; padding: 32px 28px; box-shadow: var(--shadow-lg); color: var(--slate-800); }
.form-card h2 { font-size: 22px; font-weight: 800; color: var(--slate-900); margin-bottom: 6px; letter-spacing: -0.01em; }
.form-card .form-sub { font-size: 14px; color: var(--slate-500); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.form-group label .req { color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--slate-100); border-radius: 0;
  font-size: 15px; font-family: inherit; background: var(--slate-50); color: var(--slate-900); transition: all 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-submit {
  width: 100%; background: var(--accent); color: var(--white); border: none; padding: 15px 24px;
  font-size: 16px; font-weight: 700; border-radius: 0; cursor: pointer; margin-top: 6px; transition: all 0.15s; font-family: inherit;
}
.form-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }
.form-disclaimer { font-size: 12px; color: var(--slate-500); text-align: center; margin-top: 12px; line-height: 1.4; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.thanks-state { text-align: center; padding: 40px 20px; }
.thanks-state .icon { width: 64px; height: 64px; background: var(--green); border-radius: 0; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #fff; font-size: 32px; font-weight: 700; }
.thanks-state h3 { font-size: 24px; font-weight: 800; color: var(--slate-900); margin-bottom: 12px; }
.thanks-state p { color: var(--slate-700); font-size: 16px; line-height: 1.5; }

/* Sections */
section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
h2 { font-size: 34px; font-weight: 800; color: var(--slate-900); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--slate-700); line-height: 1.6; }
.prose { max-width: 820px; margin: 0 auto; }
.prose p { color: var(--slate-700); font-size: 17px; margin-bottom: 18px; }
.prose h3 { font-size: 21px; color: var(--slate-900); margin: 28px 0 10px; }
.prose ul { margin: 0 0 18px 22px; color: var(--slate-700); font-size: 17px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--slate-900); }

/* Services list (no icons) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: var(--white); padding: 28px 24px; border-radius: 0; border: 1px solid var(--slate-100); transition: all 0.2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-light); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.service-card p { color: var(--slate-700); font-size: 15px; line-height: 1.55; }

/* Local "why" cards */
.why-section { background: var(--slate-50); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.why-card { background: var(--white); padding: 28px 24px; border-radius: 0; border-left: 4px solid var(--accent); }
.why-card h3 { font-size: 19px; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.why-card p { color: var(--slate-700); font-size: 15px; }

/* Areas */
.areas-section { background: var(--slate-900); color: var(--white); }
.areas-section h2 { color: var(--white); }
.areas-section .section-header p { color: var(--slate-300); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 36px; }
.area-pill { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 14px 18px; border-radius: 0; text-align: center; color: var(--slate-100); font-weight: 600; font-size: 15px; display: block; }
.area-pill:hover { background: rgba(234, 88, 12, 0.18); color: var(--white); border-color: var(--accent); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--slate-100); border-radius: 0; margin-bottom: 14px; overflow: hidden; }
.faq-question { padding: 20px 24px; font-size: 17px; font-weight: 700; color: var(--slate-900); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question .plus { width: 24px; height: 24px; flex-shrink: 0; background: var(--slate-100); color: var(--slate-700); border-radius: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; transition: transform 0.2s; }
details[open] .plus { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer { padding: 0 24px 20px; color: var(--slate-700); font-size: 15.5px; line-height: 1.65; }

/* Final CTA */
.final-cta { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: #fff; padding: 64px 0; text-align: center; }
.final-cta h2 { color: #fff; font-size: 32px; margin-bottom: 14px; }
.final-cta p { font-size: 18px; max-width: 620px; margin: 0 auto 28px; opacity: 0.92; }
.final-cta-btn { display: inline-block; background: var(--white); color: var(--accent-dark); padding: 16px 32px; font-size: 17px; font-weight: 700; border-radius: 0; transition: transform 0.15s; }
.final-cta-btn:hover { transform: translateY(-2px); color: var(--accent-dark); }

/* Footer */
footer { background: var(--slate-900); color: var(--slate-300); padding: 50px 0 24px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
footer h4 { color: var(--white); font-weight: 700; margin-bottom: 14px; font-size: 15px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer a { color: var(--slate-300); }
footer a:hover { color: var(--accent-light); }
.footer-brand p { margin-top: 10px; max-width: 360px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 24px; text-align: center; color: var(--slate-500); font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 40px 0 50px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 34px; }
  .hero-content .sub { font-size: 17px; }
  h2 { font-size: 28px; }
  section { padding: 52px 0; }
  .form-card { padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 1024px) {
  .logo { font-size: 19px; }
  .logo-mark { width: 32px; height: 32px; }
  nav.primary { gap: 16px; }
  nav.primary a:not(.header-cta):not(.header-phone) { font-size: 14px; }
  .header-phone { font-size: 14px; }
  .header-cta { padding: 9px 16px; font-size: 14px; }
}
@media (max-width: 820px) {
  header .container { flex-wrap: wrap; row-gap: 12px; }
  .logo { font-size: 16px; gap: 8px; }
  .logo-mark { width: 30px; height: 30px; }
  .logo-text small { font-size: 10px; }
  .subheader { display: block; }
  .nav-toggle { display: flex; }
  nav.primary { display: none; order: 3; width: 100%; flex-direction: column; align-items: stretch; gap: 4px; padding: 10px 0 4px; border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 0; }
  .nav-toggle-cb:checked ~ nav.primary { display: flex; }
  nav.primary a:not(.header-cta):not(.header-phone) { padding: 10px 0; }
  .header-phone { padding: 10px 0; }
  .header-cta { text-align: center; padding: 13px 20px; margin-top: 6px; }
}
@media (max-width: 560px) {
  .hero-content h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
