:root {
  --ink: #101112;
  --muted: #64686c;
  --paper: #f6f5f1;
  --white: #fff;
  --yellow: #ffd100;
  --line: #d9dad7;
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.65 Arial,
    sans-serif;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: #fff;
  padding: 0.7rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 max(4vw, 24px);
  background: #fff;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #eee;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand span {
  font:
    800 1.7rem/1 Arial,
    sans-serif;
  background: var(--yellow);
  padding: 0.36rem 0.5rem;
  letter-spacing: -0.08em;
}
.brand small {
  font:
    600 0.72rem/1.2 Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 72px;
}
.site-header nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.site-header nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.site-header nav a.active,
.site-header nav a:hover {
  border-bottom: 2px solid var(--yellow);
}
.header-call {
  font-weight: 700;
  text-decoration: none;
  border-left: 1px solid #ddd;
  padding-left: 2rem;
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 720px;
  height: calc(100vh - 84px);
  max-height: 860px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 6, 7, 0.86) 0%,
    rgba(5, 6, 7, 0.55) 43%,
    rgba(5, 6, 7, 0.02) 75%
  );
}
.hero-content {
  position: relative;
  width: min(var(--max), 92%);
  margin: auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 1.3rem;
}
.eyebrow.dark {
  color: #776200;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(3.3rem, 6.6vw, 6.8rem);
  max-width: 920px;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-content > p:not(.eyebrow) {
  max-width: 610px;
  color: #e6e6e6;
  font-size: 1.12rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.btn.primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}
.btn.secondary {
  color: #fff;
}
.dark-btn {
  border-color: #111 !important;
}
.rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  font-size: 0.88rem;
}
.rating strong {
  font:
    700 1.25rem Arial,
    sans-serif;
}
.stars {
  color: var(--yellow);
  letter-spacing: 0.08em;
}
.trust-strip {
  background: var(--yellow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(4vw, 24px);
}
.trust-strip div {
  padding: 1.7rem 5%;
  border-right: 1px solid rgba(0, 0, 0, 0.18);
}
.trust-strip div:last-child {
  border: 0;
}
.trust-strip strong,
.trust-strip span {
  display: block;
}
.trust-strip strong {
  font-family: Arial, sans-serif;
  font-size: 1rem;
}
.trust-strip span {
  font-size: 0.82rem;
}
.section {
  width: min(var(--max), 92%);
  margin: auto;
  padding: 110px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.section h2 {
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  margin-bottom: 2rem;
}
.intro p,
.local-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}
.text-link {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid;
}
.services-section {
  width: 100%;
  background: #111;
  color: #fff;
  padding-left: max(4vw, calc((100% - var(--max)) / 2));
  padding-right: max(4vw, calc((100% - var(--max)) / 2));
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-head h2 {
  margin-bottom: 0;
  max-width: 800px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #393939;
}
.service-grid article {
  padding: 2.2rem 1.8rem 1rem 0;
  border-right: 1px solid #393939;
  min-height: 310px;
}
.service-grid article + article {
  padding-left: 1.8rem;
}
.service-grid article:last-child {
  border: 0;
}
.service-grid span,
.detail-grid b {
  color: var(--yellow);
  font:
    600 0.8rem Arial,
    sans-serif;
}
.service-grid h3 {
  font-size: 1.45rem;
  margin-top: 4.5rem;
}
.service-grid p {
  color: #acb0b2;
  font-size: 0.9rem;
}
.service-grid a {
  font-size: 0.86rem;
  font-weight: 700;
}
.big-rating {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.big-rating strong {
  font:
    800 4.2rem/1 Arial,
    sans-serif;
}
.big-rating span {
  max-width: 100px;
  color: var(--muted);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.review-grid blockquote {
  margin: 0;
  background: #fff;
  padding: 2rem;
}
.review-grid blockquote p {
  font-size: 1.05rem;
}
.review-grid footer,
.review-note {
  font-size: 0.8rem;
  color: var(--muted);
}
.review-note {
  text-align: center;
  margin-top: 1.5rem;
}
.faq {
  max-width: 900px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  font:
    600 1.1rem Arial,
    sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.faq summary:after {
  content: "+";
  font-size: 1.5rem;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  max-width: 760px;
  color: var(--muted);
  margin: 0.8rem 0 0;
}
.cta {
  background: var(--yellow);
  padding: 70px max(4vw, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}
.cta .eyebrow {
  color: #554700;
}
.cta h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 0.5rem;
}
.cta p {
  max-width: 650px;
}
.cta .btn.primary {
  background: #111;
  color: #fff;
  border-color: #111;
}
.cta .btn.secondary {
  color: #111;
  border-color: #111;
}
.site-footer {
  background: #111;
  color: #fff;
  padding: 70px max(4vw, 24px) 25px;
}
.footer-grid {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
}
.footer-grid p,
.footer-grid address {
  color: #a8aaac;
  font-style: normal;
}
.footer-grid h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  color: #ccc;
  margin: 0.3rem 0;
}
.brand.light span {
  color: #111;
}
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 50px auto 0;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #888;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.page-hero {
  background: #121314;
  color: #fff;
  padding: 120px max(4vw, calc((100% - var(--max)) / 2));
  min-height: 510px;
}
.page-hero.compact {
  min-height: 420px;
}
.page-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  margin-bottom: 1.5rem;
}
.page-hero > p:last-child {
  font-size: 1.1rem;
  color: #bbb;
  max-width: 660px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.detail-grid article {
  background: #fff;
  padding: 2.5rem;
}
.detail-grid h3 {
  font-size: 1.5rem;
  margin-top: 2.6rem;
}
.detail-grid p {
  color: var(--muted);
}
.local-copy {
  border-top: 1px solid var(--line);
}
.prices article {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-top: 1px solid var(--line);
  padding: 3rem 0;
  scroll-margin-top: 2rem;
}
.prices article > div:first-child > span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #756100;
}
.prices article h2 {
  font-size: 2rem;
  margin: 0.6rem 0;
}
.price-list p {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr auto;
  gap: 1rem;
  padding: 1.1rem 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.price-list p:first-child {
  padding-top: 0;
}
.price-list span {
  color: var(--muted);
  font-size: 0.9rem;
}
.price-list b {
  text-align: right;
  white-space: nowrap;
}
.legal-price {
  max-width: 800px;
  color: var(--muted);
  font-size: 0.82rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.contact-panel,
.hours-panel {
  background: #fff;
  padding: 4rem;
}
.contact-item {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}
.contact-item > span {
  display: block;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.contact-item address {
  font-style: normal;
}
.contact-item a {
  font:
    700 1.4rem Arial,
    sans-serif;
}
.hours-panel dl div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}
.hours-panel dd {
  font-weight: 600;
}
.hours-note {
  color: var(--muted);
  font-size: 0.8rem;
}
.access {
  max-width: 900px;
}
.access > p:not(.eyebrow) {
  font-size: 1.08rem;
  color: var(--muted);
}
@media (max-width: 850px) {
  .site-header {
    height: 72px;
  }
  .header-call {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
    order: 3;
    background: none;
    border: 1px solid #aaa;
    padding: 0.5rem;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    padding: 1.5rem;
    flex-direction: column;
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    height: auto;
    min-height: 700px;
  }
  .hero-shade {
    background: rgba(5, 6, 7, 0.65);
  }
  .hero-content {
    padding: 80px 0;
  }
  .trust-strip,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }
  .section {
    padding: 75px 0;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .section-head,
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prices article {
    grid-template-columns: 1fr;
  }
  .price-list {
    margin-top: 1.5rem;
  }
  .page-hero {
    padding-top: 90px;
    padding-bottom: 90px;
    min-height: 0;
  }
}
@media (max-width: 560px) {
  .site-header {
    gap: 1rem;
    padding: 0 16px;
  }
  .brand small,
  .header-call {
    display: none;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article,
  .service-grid article + article {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid #393939;
    min-height: auto;
  }
  .service-grid h3 {
    margin-top: 2rem;
  }
  .section-head {
    align-items: flex-start;
  }
  .big-rating {
    margin-top: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid article,
  .contact-panel,
  .hours-panel {
    padding: 2rem;
  }
  .price-list p {
    grid-template-columns: 1fr;
  }
  .price-list b {
    text-align: left;
  }
  .page-hero h1 {
    font-size: 2.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
