:root {
  --ink: #101820;
  --ink-soft: #2f3a44;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --line: #ded8cf;
  --red: #b51f2a;
  --red-dark: #861721;
  --gold: #c99a2e;
  --steel: #5d737e;
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header[data-scrolled="true"],
.site-header.menu-open {
  background: rgba(16, 24, 32, 0.96);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  padding: 10px 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.site-nav .nav-call {
  background: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92) 0%, rgba(16, 24, 32, 0.76) 36%, rgba(16, 24, 32, 0.18) 72%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.52), rgba(16, 24, 32, 0.05) 40%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
}

.hero-actions,
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  padding: 12px 18px;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.review {
  margin-top: 10px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.review:hover,
.button.review:focus-visible {
  border-color: var(--gold);
  background: #f7f0e2;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button.wide {
  width: 100%;
}

.quick-facts {
  max-width: 760px;
  margin: 42px 0 0;
  padding: 0;
}

.quick-facts div {
  min-width: 150px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 850;
}

.intro,
.services-section,
.about-section,
.contact-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--surface);
}

.intro h2,
.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
}

.intro > p,
.section-heading p,
.about-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.section-toggle {
  display: none;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  padding: 12px 14px;
  text-align: left;
}

.toggle-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  flex: 0 0 auto;
}

.service-card {
  min-height: 244px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #f1e5cf;
  color: var(--red);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.service-card h3 {
  margin: 22px 0 8px;
  font-size: 1.18rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 88px);
  background: #182026;
  color: #fff;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
}

.hours-panel {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hours-panel h3 {
  margin: 0 0 20px;
  font-size: 1.5rem;
}

.hours-header h3 {
  margin-bottom: 20px;
}

.hours-panel dl,
.hours-panel p {
  margin: 0;
}

.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 14px 0;
}

.hours-panel dt {
  color: rgba(255, 255, 255, 0.68);
}

.hours-panel dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

.hours-panel p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.contact-section {
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
}

.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.08);
}

.contact-card {
  padding: 28px;
}

.phone-link {
  display: block;
  color: var(--red);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 950;
  line-height: 1;
}

.muted {
  margin: 10px 0 24px;
  color: var(--steel);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-details p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-details strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-details a {
  color: var(--red);
  font-weight: 850;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p {
  margin: 0;
}

.footer-established {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .about-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(16, 24, 32, 0.98);
    padding: 10px;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
    padding: 13px 14px;
  }

  .hero {
    min-height: 780px;
    align-items: end;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16, 24, 32, 0.95) 0%, rgba(16, 24, 32, 0.78) 54%, rgba(16, 24, 32, 0.18) 100%),
      linear-gradient(90deg, rgba(16, 24, 32, 0.55), rgba(16, 24, 32, 0.15));
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 130px 18px 42px;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .quick-facts {
    margin-top: 30px;
  }

  .quick-facts div {
    flex: 1 1 170px;
  }

  .services-section.is-expanded .services-toggle,
  .hours-panel.is-expanded .hours-toggle {
    margin-bottom: 14px;
  }

  .section-toggle {
    display: flex;
  }

  .services-grid,
  .hours-panel dl,
  .hours-panel p {
    display: none;
  }

  .services-section.is-expanded .services-grid {
    display: grid;
  }

  .hours-panel.is-expanded dl,
  .hours-panel.is-expanded p {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-card {
    min-height: auto;
    padding: 14px;
  }

  .service-icon {
    width: 38px;
    height: 38px;
  }

  .service-icon svg {
    width: 21px;
    height: 21px;
  }

  .service-card h3 {
    margin-top: 14px;
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .hours-header h3 {
    margin-bottom: 12px;
  }

  .hours-panel div {
    display: block;
  }

  .hours-panel dd {
    margin-top: 4px;
    text-align: left;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 10px;
  }
}
