/* Arundel Roofing Pros — Earthy Red & Cream */
:root {
  --primary: #b83228;
  --primary-dark: #8f2218;
  --primary-light: #fdecea;
  --dark: #2c1810;
  --dark-mid: #3d2418;
  --cream: #faf7f2;
  --cream-alt: #f2e8de;
  --white: #ffffff;
  --text: #3d2718;
  --text-soft: #7a5c4a;
  --border: #e0cbb8;
  --shadow: 0 2px 12px rgba(44,24,16,.10);
  --shadow-lg: 0 8px 32px rgba(44,24,16,.16);
}

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* UTILITY */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block; padding: 14px 28px;
  font-size: 15px; font-weight: 700; border-radius: 3px;
  cursor: pointer; border: none; transition: background .18s, transform .12s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: rgba(44,24,16,.08); }
.section-label {
  font-size: 11px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.section-title { font-size: 30px; font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-soft); max-width: 560px; }
.section { padding: 72px 0; background: var(--cream); }
.section-alt { background: var(--cream-alt); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* HEADER */
.site-header {
  background: var(--dark);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(44,24,16,.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1100px; margin: 0 auto; gap: 16px;
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-name { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1; }
.logo-name span { color: var(--primary); color: #e8876e; }
.logo-tag { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.header-phone {
  display: flex; align-items: center; gap: 10px;
}
.header-phone a {
  font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.01em;
}
.header-phone .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); }
.header-cta { display: none; }
nav { display: none; }

@media (min-width: 700px) {
  nav { display: flex; gap: 28px; }
  nav a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.75); transition: color .15s; }
  nav a:hover { color: #fff; }
  .header-cta { display: block; }
}

/* TOP BAR */
.top-bar {
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 700; text-align: center; padding: 8px 20px;
}

/* HERO */
.hero {
  background: var(--dark);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero-new.png') center 45%/cover no-repeat;
  filter: brightness(0.78) contrast(1.05) saturate(1.0);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(18,7,3,0.72) 0%, rgba(18,7,3,0.0) 52%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,50,40,.18); border: 1px solid rgba(232,135,110,.4);
  color: #f0b8a8; font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 14px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 50px); font-weight: 900; color: var(--cream);
  line-height: 1.1; letter-spacing: -.03em; max-width: 700px;
  margin-bottom: 18px; text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.hero h1 span { color: #e8876e; }
.hero-sub {
  font-size: 17px; color: rgba(250,247,242,.72); max-width: 520px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(250,247,242,.65);
}
.trust-dot { width: 8px; height: 8px; background: #e8876e; border-radius: 50%; flex-shrink: 0; }

/* TRUST BAR */
.trust-bar { background: var(--dark-mid); padding: 22px 0; }
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: rgba(250,247,242,.88);
}
.trust-bar-icon { font-size: 20px; }

/* SERVICES */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  margin-top: 44px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-card-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.service-card-body { padding: 22px 24px 20px; }
.service-icon { font-size: 28px; margin-bottom: 10px; }
.service-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.service-desc { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.service-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--primary); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 44px; }
.why-card { padding: 0; }
.why-num { font-size: 48px; font-weight: 900; color: var(--primary); opacity: .22; line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.why-title { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* AREAS */
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px;
  margin-top: 36px;
}
.area-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 16px 18px; display: flex; align-items: center; gap: 10px;
  transition: border-color .15s, background .15s;
}
.area-card:hover { border-color: var(--primary); background: var(--primary-light); }
.area-card a { font-size: 14px; font-weight: 700; color: var(--dark); flex: 1; }
.area-arrow { color: var(--primary); font-size: 14px; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 44px; }
.testimonial {
  background: var(--white); padding: 28px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}
.stars { color: #c9862a; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testimonial-author { font-size: 13px; font-weight: 800; color: var(--dark); }
.testimonial-location { font-size: 12px; color: var(--text-soft); }

/* FORM */
.form-section { background: var(--dark); padding: 80px 0; }
.form-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 700px) { .form-inner { grid-template-columns: 1fr; gap: 40px; } }
.form-left h2 { font-size: 30px; font-weight: 900; color: var(--cream); margin-bottom: 14px; }
.form-left p { font-size: 15px; color: rgba(250,247,242,.65); line-height: 1.7; margin-bottom: 24px; }
.form-point {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(250,247,242,.78); margin-bottom: 14px; font-weight: 600;
}
.form-point-dot { width: 8px; height: 8px; background: #e8876e; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.quote-form { background: var(--cream); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--border);
  font-size: 15px; font-family: inherit; color: var(--text); background: var(--white);
  outline: none; transition: border-color .15s; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 16px; background: var(--primary); color: #fff; border: none; font-size: 16px; font-weight: 800; cursor: pointer; transition: background .18s; letter-spacing: .02em; }
.form-submit:hover { background: var(--primary-dark); }
.form-note { font-size: 12px; color: var(--text-soft); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success h3 { font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-soft); }

/* FOOTER */
.site-footer { background: var(--dark); padding: 48px 0 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand .logo-name { font-size: 18px; }
.footer-brand p { font-size: 13px; color: rgba(250,247,242,.45); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(250,247,242,.35); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(250,247,242,.6); margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 36px auto 0; padding: 20px 20px 0;
  border-top: 1px solid rgba(250,247,242,.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 12px; color: rgba(250,247,242,.3);
}

/* INNER PAGE HERO */
.page-hero {
  background: var(--dark);
  padding: 48px 0 44px;
}
.page-hero h1 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; color: var(--cream); margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: rgba(250,247,242,.65); max-width: 560px; }
.breadcrumb { font-size: 12px; color: rgba(250,247,242,.38); margin-bottom: 14px; }
.breadcrumb a { color: rgba(250,247,242,.52); }
.breadcrumb span { color: #e8876e; }

/* CITY PAGE */
.city-content { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 800px) { .city-content { grid-template-columns: 1fr; } }
.city-body h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin: 28px 0 10px; }
.city-body p { font-size: 15px; color: var(--text-soft); line-height: 1.8; margin-bottom: 16px; }
.city-body ul { padding-left: 20px; }
.city-body li { font-size: 15px; color: var(--text-soft); line-height: 1.8; margin-bottom: 6px; }
.sidebar-card { background: var(--cream-alt); border: 1px solid var(--border); padding: 28px; position: sticky; top: 90px; }
.sidebar-card h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.sidebar-card p { font-size: 13px; color: var(--text-soft); margin-bottom: 20px; }
.sidebar-phone { font-size: 22px; font-weight: 900; color: var(--primary); display: block; margin-bottom: 14px; }
.sidebar-form input,
.sidebar-form select {
  width: 100%; padding: 11px 13px; margin-bottom: 10px;
  border: 2px solid var(--border); font-size: 14px; font-family: inherit;
  background: var(--white); outline: none; border-radius: 0;
}
.sidebar-form input:focus, .sidebar-form select:focus { border-color: var(--primary); }
.sidebar-form button { width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; font-size: 15px; font-weight: 800; cursor: pointer; }
.sidebar-form button:hover { background: var(--primary-dark); }

/* HERO SPLIT */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
.hero-phone-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.01em;
}
.hero-form-card {
  background: var(--cream);
  padding: 30px 28px 24px;
}
.hero-form-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}
.hero-form-sub {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 11px 13px;
  margin-bottom: 10px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  border-radius: 0;
}
.hero-form input:focus,
.hero-form select:focus { border-color: var(--primary); }
.hero-form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s;
  border-radius: 0;
}
.hero-form button:hover { background: var(--primary-dark); }
.hero-form-note {
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  margin-top: 10px;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--cream);
}
.process-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}
@media (max-width: 700px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
}

/* WHY US — NEW SPLIT LAYOUT */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 800px) { .why-split { grid-template-columns: 1fr; gap: 36px; } }
.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.why-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-title { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.why-desc { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* RATING SUMMARY */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.rating-stars { color: #c9862a; font-size: 22px; letter-spacing: 2px; }
.rating-score { font-size: 20px; font-weight: 900; color: var(--dark); }
.rating-count { font-size: 14px; color: var(--text-soft); }

/* FAQ */
.faq-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 800px) { .faq-inner { grid-template-columns: 1fr; gap: 32px; } }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
}
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
.faq-answer {
  display: none;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  padding-bottom: 18px;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--primary); }

/* MOBILE STICKY CTA */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  grid-template-columns: 1fr 1fr;
}
.mobile-sticky-call {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  font-weight: 800;
  display: block;
}
.mobile-sticky-form {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  font-weight: 800;
  display: block;
}
@media (max-width: 700px) {
  .mobile-sticky { display: grid; }
  body { padding-bottom: 56px; }
}

/* MOBILE */
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .hero { padding: 52px 0 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 18px; }
}
