/* David McGovern Accident Repair Centre — stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --orange: #f2701c;
  --orange-dark: #d85e0f;
  --dark: #171717;
  --dark2: #262626;
  --gray: #5c5c5c;
  --gray-light: #8a8a8a;
  --light: #f6f5f3;
  --white: #ffffff;
  --border: #e8e6e2;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 84px 0; }
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
}
.section-head p { color: var(--gray); margin-top: 14px; font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(242,112,28,.35); }
.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(23,23,23,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; padding-bottom: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: #e9e9e9;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
}
.header-phone svg { flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(115deg, rgba(10,10,10,.92) 15%, rgba(10,10,10,.62) 48%, rgba(10,10,10,.35) 75%),
              url('assets/hero-bg.jpg') center 30% / cover no-repeat;
}
.hero-content { max-width: 700px; padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,112,28,.15);
  border: 1px solid rgba(242,112,28,.5);
  color: #ffab6e;
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 30px; margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  font-style: italic;
}
.hero h1 span { display: block; color: var(--orange); }
.hero .sub-line {
  font-family: 'Oswald', sans-serif;
  color: #d8d8d8;
  font-size: clamp(15px, 1.8vw, 19px);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 400;
}
.hero p.lede {
  color: #d9d9d9;
  font-size: 18px;
  margin: 26px 0 36px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Trust strip */
.trust-strip { background: var(--dark2); padding: 0; }
.trust-strip ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-strip li {
  display: flex; align-items: center; gap: 12px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  color: #eee;
  font-family: 'Oswald', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .02em;
}
.trust-strip li:last-child { border-right: none; }
.trust-strip li svg { color: var(--orange); flex-shrink: 0; }

/* About */
.about { background: var(--light); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-copy p { color: var(--gray); font-size: 16.5px; margin: 0 0 18px; }
.about-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: .02em; }
.about-list li svg { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.about-photo { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.about-photo-tag {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  color: var(--white); padding: 24px;
  font-family: 'Oswald', sans-serif; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: 14px;
}

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon {
  width: 54px; height: 54px; border-radius: 8px;
  background: rgba(242,112,28,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 20px;
}
.service-card h3 { font-size: 19px; font-weight: 600; font-style: italic; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 15px; margin: 0; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  padding: 56px 0;
}
.cta-banner .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px,3.2vw,32px); font-style: italic; font-weight: 700; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 8px 0 0; font-family: 'Oswald', sans-serif; letter-spacing: .04em; }

/* Contact */
.contact { background: var(--dark); color: var(--white); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact .section-head h2 { color: var(--white); }
.contact .section-head p { color: #b8b8b8; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(242,112,28,.15); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list h4 { font-size: 15px; letter-spacing: .06em; color: #cfcfcf; font-weight: 500; margin-bottom: 4px; }
.contact-list p, .contact-list a { color: var(--white); font-size: 17px; font-weight: 600; margin: 0; }
.contact-list a:hover { color: var(--orange); }
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.1); min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* Footer */
.site-footer { background: #111; color: #999; padding: 36px 0; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 34px; opacity: .9; }
.footer-brand span { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: .04em; color: #ccc; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 14px; color: #999; transition: color .15s ease; }
.footer-links a:hover { color: var(--orange); }
.footer-fine { font-size: 13px; color: #666; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .trust-strip ul { grid-template-columns: repeat(2, 1fr); }
  .trust-strip li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .about .container { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact .container { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-strip ul { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
  .header-phone span.phone-label { display: none; }
}
