@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url(assets/fonts/Oswald.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(assets/fonts/Inter.woff2) format('woff2');
}

:root {
  --red: #C8161D;
  --red-dark: #9E1117;
  --blue: #0A3D7A;
  --blue-dark: #062a55;
  --ink: #1a1a1a;
  --paper: #FAF6EE;
  --paper-2: #F2EBDB;
  --rule: #d9cdb3;
  --muted: #5a5248;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.container, .hero-content, .topbar-inner { max-width: 1100px; margin: 0 auto; }
.container, .hero-content { padding: 0 24px; }

h1, h2, h3 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--red);
}

.topbar {
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}
.topbar a { text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #ffd; }

header.site {
  background: #fff;
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 0 var(--blue);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo img { height: 56px; width: auto; }

nav.main { display: flex; gap: 28px; align-items: center; }
nav.main a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  font-size: 22px;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  transition: border-color .15s, color .15s;
}
nav.main a:hover { color: var(--red); }
nav.main a.active { color: var(--red); border-bottom-color: var(--red); }

.phone-cta {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--red);
  color: #fff !important;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.phone-cta:hover { background: var(--red-dark); }

.menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  width: 42px;
  height: 38px;
  padding: 0;
  position: relative;
  cursor: pointer;
}
.menu-btn .bar {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--ink);
  transition: top .2s ease, transform .2s ease, opacity .15s ease;
}
.menu-btn .bar:nth-child(1) { top: 11px; }
.menu-btn .bar:nth-child(2) { top: 17px; }
.menu-btn .bar:nth-child(3) { top: 23px; }
.menu-btn[aria-expanded="true"] .bar:nth-child(1) { top: 17px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .bar:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.hero {
  position: relative;
  background: #222;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.75);
}
.hero-overlay, .page-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-overlay, .page-banner-overlay { background: rgba(0,0,0,0.35); }
.hero-content { width: 100%; }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: #ffd84a; display: block; font-size: 0.6em; }
.hero p.lede {
  color: #f2f2f2;
  font-size: 19px;
  max-width: 560px;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 17px;
  transition: transform .1s, background .15s;
  border: 0;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 4px 4px 0 var(--blue);
}
.btn-primary:hover { background: var(--red-dark); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--blue); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 3px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; }


section.split {
  padding: 70px 0;
}
section.split.alt { background: var(--paper-2); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-grid.reverse > div:first-child { order: 2; }

section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--ink);
  margin-bottom: 18px;
}
section p { color: var(--muted); margin-bottom: 14px; font-size: 17px; }
.eyebrow + h2 { margin-top: 6px; }

.framed {
  position: relative;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.framed img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.cta-banner {
  background:
    linear-gradient(rgba(200,22,29,0.92), rgba(200,22,29,0.92)),
    url('assets/images/rolls-royce.webp') center/cover;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner p { color: #fff; font-size: 19px; margin-bottom: 28px; opacity: 0.95; }
.cta-banner .btn {
  background: #fff;
  color: var(--red);
  box-shadow: 4px 4px 0 var(--blue-dark);
  font-size: 22px;
  padding: 16px 36px;
}
.cta-banner .btn:hover { background: #fffbe6; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--blue-dark); }

.page-banner {
  position: relative;
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.page-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.75);
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
}
.page-banner p.lede { color: #ffd84a; font-size: 18px; margin-top: 10px; font-weight: 600; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }

.split-grid .btn, .services-layout .btn { margin-top: 14px; }
.services-section-heading { margin-top: 0; font-size: 24px; }
.footer-note { opacity: 0.7; font-size: 13px; }
.info-intro { font-size: 15px; margin-bottom: 18px; }
.serve-note { font-size: 14px; color: var(--blue); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.fax-note { font-size: 14px; color: var(--muted); }
.hours-note { font-size: 13px; color: var(--muted); margin-top: 6px; }


.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 28px;
  align-items: start;
}
.services-list { list-style: none; margin-top: 16px; }
.services-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 17px;
  color: var(--ink);
}
.services-list li:last-child { border-bottom: 0; }
.services-list .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}
.services-photo-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-self: stretch; }
.services-photo-col .framed { min-height: 0; }
.services-photo-col .framed img { height: 100%; }

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: stretch;
}
.info-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 5px solid var(--red);
  padding: 28px;
}
.info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--rule);
}
.info-row:last-child { border-bottom: 0; }
.info-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-row strong {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}
.info-row a { color: var(--red); text-decoration: none; font-weight: 600; overflow-wrap: break-word; }
.info-row a:hover { text-decoration: underline; }
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 4px solid var(--blue);
  display: block;
}

footer.site {
  background: var(--blue-dark);
  color: #d4ddee;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
footer h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  display: inline-block;
}
footer p { color: #d4ddee; margin: 4px 0; font-size: 15px; }
footer a { color: #ffb84a; text-decoration: none; overflow-wrap: break-word; }
footer a:hover { text-decoration: underline; }
.copyright {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #8b9ec0;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .menu-btn { display: block; }
  nav.main { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 0; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
  nav.main.open { display: flex; animation: navdrop .18s ease; }
  @keyframes navdrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  nav.main a { padding: 16px 24px; border-bottom: 1px solid #eee; border-left: 4px solid transparent; font-size: 16px; }
  nav.main a.active { border-left-color: var(--red); border-bottom-color: #eee; }
  .topbar-inner { font-size: 13px; padding: 6px 16px; letter-spacing: 0.02em; justify-content: center; }
  .topbar-inner span:first-child { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-grid.reverse > div:first-child { order: 0; }
  .services-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map iframe { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-img { height: 360px; }
  .page-banner-img { height: 240px; }
  .header-row { gap: 10px; }
  .logo { margin-right: auto; }
  .logo img { height: 42px; }
  header .phone-cta { height: 38px; padding: 0 16px; font-size: 16px; letter-spacing: 0.02em; white-space: nowrap; }
}

@media (max-width: 360px) {
  .logo img { height: 38px; }
  header .phone-cta { padding: 0 11px; font-size: 15px; }
}
