/* Hexham Bodyshop Split Hero */
:root {
  --navy: #1D3557;
  --red: #E63946;
  --light: #F6F8FC;
  --text: #0E1624;
  --muted: #5A6B87;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
.container { width: min(1120px, 92vw); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; background: #fff; border-bottom: 1px solid #E6EAF2; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.main-nav a { margin: 0 12px; color: var(--navy); text-decoration: none; font-weight: 600; }
.main-nav a:hover { color: var(--red); }

/* Buttons */
.btn { display: inline-block; padding: 12px 18px; border-radius: 10px; font-weight: 700; text-decoration: none; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-accent { background: var(--red); color: var(--white); }

/* Split Hero */
.split-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.hero-left { background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 40px; color: var(--white); }
.hero-left h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(36px, 6vw, 72px); margin: 0 0 16px; line-height: 1.05; }
.hero-left p { font-size: clamp(16px, 2vw, 20px); margin: 0 0 24px; }
.hero-right { display: flex; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; }

/* Services */
.services { background: var(--light); padding: 56px 0; }
.services h2 { text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--navy); margin-bottom: 28px; }
.services .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: var(--white); border: 1px solid #E6EAF2; border-radius: 16px; padding: 22px; text-align: left; }
.card img { width: 44px; height: 44px; }
.card h3 { font-family: 'Montserrat', sans-serif; margin: 14px 0 6px; font-size: 18px; color: var(--navy); }
.card p { color: var(--muted); margin: 0; font-size: 15px;}

/* Before/After */
.before-after { padding: 56px 0; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 28px; }
.ba-card { border-radius: 16px; overflow: hidden; border: 1px solid #E6EAF2; }
.ba-card img { width: 100%; height: auto; display: block; }
.ba-card figcaption { background: var(--navy); color: var(--white); padding: 8px 12px; font-weight: 700; }

.cta-panel { background: var(--navy); color: var(--white); padding: 24px; border-radius: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.cta-panel h3 { margin: 0; font-family: 'Montserrat', sans-serif; }
.cta-panel .btn { white-space: nowrap; }

/* Quote */
.quote { background: var(--light); padding: 56px 0; }
.quote h2 { text-align: center; font-family: 'Montserrat', sans-serif; color: var(--navy); }
.quote-form { background: var(--white); border: 1px solid #E6EAF2; border-radius: 16px; padding: 22px; width: min(820px, 100%); margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px; }
label { font-weight: 600; color: var(--navy); display: grid; gap: 6px; }
input, textarea { padding: 12px 14px; border: 1px solid #D9E0ED; border-radius: 10px; font: inherit; width: 100%; }
input:focus, textarea:focus { outline: 2px solid rgba(230,57,70,.3); border-color: var(--red); }

/* Footer */
.site-footer { background: #0E1624; color: #BFD0EE; padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.site-footer a { color: #E6EEFF; text-decoration: none; }
.site-footer a:hover { color: var(--red); }

/* Responsive */
@media (max-width: 820px) {
  .split-hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
@media (max-width: 680px) {
  .main-nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
}
