:root {
  --navy: #0b2545;
  --navy-deep: #071b33;
  --red: #a83232;
  --red-dark: #842323;
  --cream: #f4eddd;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #ddd5c6;
  --muted: #626c79;
  --green: #24724c;
  --gold: #e3b552;
  --shadow: 0 24px 70px rgba(7, 27, 51, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid rgba(11, 37, 69, .12);
  backdrop-filter: blur(16px);
}

.header-brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
}

.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy b { font-size: 14px; }
.brand-copy small { color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .18em; }

.header-brand img, .footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.site-header nav { display: flex; gap: 28px; }
.site-header nav a {
  color: #35465a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.site-header nav a:hover { color: var(--red); }

.header-call {
  justify-self: end;
  padding: 12px 16px;
  background: var(--navy);
  color: white;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.header-call:hover { background: var(--red); }

.hero {
  min-height: 690px;
  padding: 88px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 74px;
  background:
    radial-gradient(circle at 82% 18%, rgba(227, 181, 82, .18), transparent 27%),
    linear-gradient(135deg, #fffdf8 0%, #f5efdf 100%);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
}
.eyebrow.light { color: var(--gold); }

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.055em;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(54px, 6.2vw, 88px);
  line-height: .94;
}
.hero h1 em { color: var(--red); font-weight: 400; }

.hero-description {
  max-width: 600px;
  margin: 28px 0;
  color: #4f5d6c;
  font-size: 19px;
  line-height: 1.65;
}

.quick-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: white; }
.button.primary:hover { background: var(--red); border-color: var(--red); }
.button.secondary { background: transparent; }
.button.secondary:hover { background: white; }
.button.gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.button.gold:hover { background: white; border-color: white; }

.hero-visual { position: relative; }
.logo-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.45;
  padding: 36px 30px 50px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid rgba(11, 37, 69, .14);
  border-radius: 3px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(168, 50, 50, .22);
}
.logo-card img {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: auto;
  mix-blend-mode: multiply;
}
.specialty-strip {
  width: calc(100% - 42px);
  min-height: 64px;
  margin: -32px auto 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 36px rgba(7, 27, 51, .24);
}
.specialty-strip span {
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
}
.specialty-strip span:last-child { border-right: 0; color: var(--gold); }

.hours-widget { position: relative; z-index: 10; width: min(550px, 100%); }
.status {
  width: 100%;
  min-height: 72px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  border-left: 4px solid currentColor;
  border-radius: 3px;
  color: var(--red);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.status.open { color: var(--green); }
.status-dot { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: currentColor; }
.status-copy { flex: 1; }
.status-copy strong, .status-copy span { display: block; }
.status-copy strong { margin-bottom: 4px; color: var(--navy); font-size: 15px; }
.status-copy span { color: var(--muted); font-size: 12px; }
.view-hours { color: currentColor; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.hours-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(390px, calc(100vw - 48px));
  padding: 28px;
  background: var(--navy);
  color: white;
  border: 1px solid #294a72;
  border-radius: 6px;
  box-shadow: 0 24px 55px rgba(7, 27, 51, .32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.hours-widget.expanded .hours-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.hours-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: transparent;
  color: #aebdd0;
  border: 0;
  border-radius: 3px;
  font-size: 25px;
  cursor: pointer;
}
.hours-close:hover, .hours-close:focus-visible { background: rgba(255,255,255,.1); color: white; outline: none; }
.popover-title { margin: 0 0 18px; color: var(--gold); font: 700 25px Georgia, serif; }
.popover-row { padding: 15px 0; display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.16); }
.popover-row span { color: #b7c4d4; }
.popover-row strong { text-align: right; }
.closed-row strong, .closed-text { color: #ff756e; }
.holiday-list { padding: 20px 0; }
.holiday-list p { margin: 0 0 9px; color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.holiday-list span { color: #9eafc3; font-size: 12px; line-height: 1.7; }
.popover-status { padding: 13px 15px; display: flex; align-items: center; gap: 10px; background: var(--navy-deep); border-radius: 4px; color: #ff756e; }
.popover-status.open { color: #65d39a; }
.popover-status p { margin: 0; color: #d5deea; font-size: 12px; line-height: 1.45; }
.popover-status strong { color: currentColor; }

.trust-bar {
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy);
  color: #afbdd0;
}
.trust-bar span { padding: 25px 28px; font-size: 13px; text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.trust-bar span:last-child { border-right: 0; }
.trust-bar b { color: white; }

.services-section {
  padding: 100px max(24px, calc((100% - 1180px) / 2));
}
.section-intro {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  align-items: end;
  gap: 54px;
}
.section-intro .eyebrow { align-self: start; padding-top: 12px; }
.section-intro h2, .warning-heading h2, .contact h2, .adas-copy h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
}
.section-intro > p:last-child, .warning-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.services-workspace {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  border: 1px solid var(--navy);
}
.service-selector { background: white; }
.service-card {
  width: 100%;
  min-height: 106px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  background: white;
  color: var(--navy);
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.service-card:last-child { border-bottom: 0; }
.service-card:hover { background: #f7f2e7; }
.service-card.active { background: var(--navy); color: white; }
.service-number { color: var(--red); font: 700 14px Georgia, serif; }
.service-card.active .service-number { color: var(--gold); }
.service-card strong { display: block; margin-bottom: 6px; font-size: 17px; text-transform: uppercase; }
.service-card small { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; }
.service-card.active small { color: #b6c4d5; }
.service-card > b { font-size: 25px; font-weight: 400; }

.service-detail {
  padding: clamp(38px, 5vw, 68px);
  background: var(--cream);
}
.detail-number { margin: 0 0 52px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.service-detail h3 { margin: 0 0 20px; font: 700 clamp(36px, 4vw, 54px)/1 Georgia, serif; letter-spacing: -.04em; }
.detail-description { margin: 0 0 35px; color: #445464; font-size: 17px; line-height: 1.75; }
.detail-includes { padding: 24px 0; display: grid; grid-template-columns: 140px 1fr; gap: 25px; border-top: 1px solid #cfc5b4; border-bottom: 1px solid #cfc5b4; }
.detail-includes > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.detail-includes ul { margin: 0; padding: 0; list-style: none; }
.detail-includes li { position: relative; margin-bottom: 10px; padding-left: 17px; font-size: 14px; }
.detail-includes li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.service-note { margin: 28px 0; padding: 18px; background: rgba(255,255,255,.55); color: #475665; border-left: 3px solid var(--gold); font-size: 13px; line-height: 1.6; }
.text-link { color: var(--red); font-size: 13px; font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: .07em; }
.text-link span { margin-left: 6px; transition: margin .18s ease; }
.text-link:hover span { margin-left: 12px; }

.more-services {
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--red);
  color: white;
}
.more-services > div { max-width: 750px; }
.more-services h3 { margin: 0 0 10px; font: 700 36px Georgia, serif; }
.more-services p:last-child { margin: 0; color: #f2dede; line-height: 1.6; }

.adas-section {
  padding: 100px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
  background: var(--navy-deep);
  color: white;
}
.adas-image { margin: 0; }
.adas-image img { display: block; width: 100%; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 25px 65px rgba(0,0,0,.28); }
.adas-image figcaption { margin-top: 12px; color: #8498b2; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.adas-image figcaption a { color: #aebed1; }
.adas-copy h2 { margin-bottom: 24px; }
.adas-copy > p:not(.eyebrow) { margin: 0 0 28px; color: #bac6d5; font-size: 17px; line-height: 1.7; }
.adas-copy > ul { margin: 0 0 30px; padding: 0; list-style: none; }
.adas-copy > ul li { padding: 12px 0 12px 24px; position: relative; color: #e1e7ef; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.adas-copy > ul li::before { content: ""; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; border: 2px solid var(--gold); border-radius: 50%; }
.adas-callout { margin-bottom: 30px; padding: 20px; background: rgba(255,255,255,.06); border-left: 3px solid var(--red); }
.adas-callout span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.adas-callout p { margin: 8px 0 0; color: #b7c4d4; font-size: 13px; line-height: 1.55; }

.warning-signs {
  padding: 100px max(24px, calc((100% - 1180px) / 2));
}
.warning-heading {
  max-width: 700px;
  margin-bottom: 50px;
}
.warning-heading h2 { margin-bottom: 18px; }
.warning-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.warning-grid article { min-height: 245px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.warning-grid article > span { color: var(--red); font: 700 12px Georgia, serif; }
.warning-grid h3 { margin: 62px 0 12px; font-size: 18px; text-transform: uppercase; }
.warning-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.contact {
  padding: 90px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  background: var(--navy);
  color: white;
}
.contact-heading > p:not(.eyebrow) { max-width: 520px; margin: 22px 0 28px; color: #b6c3d3; font-size: 16px; line-height: 1.65; }
.contact-details { border-top: 1px solid rgba(255,255,255,.22); }
.contact-details > a { padding: 22px 0; display: flex; justify-content: space-between; gap: 24px; color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-details > a:hover strong { color: var(--gold); }
.contact-details span, .bottom-hours > span { color: #94a7bd; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.contact-details strong { text-align: right; line-height: 1.5; }
.bottom-hours { padding: 24px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 30px; }
.bottom-hours p { margin: 0; padding-bottom: 13px; display: flex; justify-content: space-between; gap: 22px; }
.bottom-hours p strong { color: #dbe4ef; text-align: left; }
.bottom-hours p b { color: white; text-align: right; }
.bottom-hours small { display: block; padding-top: 13px; color: #94a7bd; border-top: 1px solid rgba(255,255,255,.14); line-height: 1.6; }

footer {
  padding: 28px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy-deep);
  color: #879bb3;
  font-size: 11px;
  letter-spacing: .05em;
}
.footer-brand { color: white; }
.footer-brand img { width: 34px; height: 34px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 65px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 720px; }
  .section-intro { grid-template-columns: 1fr 1.5fr; }
  .section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -20px; }
  .services-workspace { grid-template-columns: 1fr; }
  .service-selector { display: grid; grid-template-columns: 1fr 1fr; }
  .service-card { border-right: 1px solid var(--line); }
  .adas-section { grid-template-columns: 1fr; }
  .adas-copy { max-width: 720px; }
  .warning-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .site-header { min-height: 66px; padding-left: 18px; padding-right: 18px; }
  .header-brand img { width: 34px; height: 34px; }
  .brand-copy b { font-size: 12px; }
  .header-call { padding: 10px 12px; font-size: 11px; }
  .hero { min-height: 0; padding: 54px 20px 68px; gap: 44px; }
  .hero h1 { font-size: clamp(48px, 15vw, 67px); }
  .hero-description { font-size: 17px; }
  .quick-actions { flex-direction: column; }
  .button { width: 100%; }
  .logo-card { min-height: 0; aspect-ratio: 1.2; padding: 28px 18px 44px; }
  .logo-card img { width: 100%; }
  .specialty-strip { width: calc(100% - 22px); grid-template-columns: 1fr 1fr; }
  .specialty-strip span { border-bottom: 1px solid rgba(255,255,255,.14); }
  .view-hours { display: none; }
  .hours-popover { padding: 23px; }
  .trust-bar { grid-template-columns: 1fr; padding: 0; }
  .trust-bar span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .services-section, .warning-signs { padding: 72px 20px; }
  .section-intro { grid-template-columns: 1fr; gap: 22px; }
  .section-intro .eyebrow { grid-column: auto; margin-bottom: 0; }
  .service-selector { grid-template-columns: 1fr; }
  .service-detail { padding: 36px 24px; }
  .detail-number { margin-bottom: 34px; }
  .detail-includes { grid-template-columns: 1fr; gap: 15px; }
  .more-services { padding: 34px 24px; align-items: flex-start; flex-direction: column; gap: 26px; }
  .adas-section { padding: 72px 20px; gap: 42px; }
  .warning-grid { grid-template-columns: 1fr; }
  .warning-grid article { min-height: 210px; }
  .warning-grid h3 { margin-top: 44px; }
  .contact { padding: 72px 20px; grid-template-columns: 1fr; gap: 52px; }
  .bottom-hours { grid-template-columns: 1fr; gap: 16px; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
