:root {
  --ink: #090909;
  --panel: #111111;
  --panel-2: #171717;
  --paper: #f4f3ef;
  --muted: #aaa9a4;
  --muted-dark: #676762;
  --line: rgba(255,255,255,.15);
  --line-dark: rgba(9,9,9,.14);
  --acid: #fff000;
  --white: #fff;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shell: min(1220px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body, button, a { font-size: 16px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, blockquote { margin: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; color: var(--ink); background: var(--acid); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(8,8,8,.92); border-color: var(--line); backdrop-filter: blur(16px); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 165px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { position: relative; color: #d9d9d5; font-size: .86rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--acid); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-call { display: inline-flex; align-items: center; gap: 10px; min-height: 45px; padding: 0 18px; color: var(--ink); background: var(--acid); font-weight: 800; font-size: .9rem; }
.header-call svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

.hero { position: relative; min-height: 860px; height: min(920px, 100svh); overflow: hidden; display: flex; flex-direction: column; justify-content: center; background: #090909; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.08); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,4,4,.95) 0%, rgba(4,4,4,.78) 38%, rgba(4,4,4,.3) 70%, rgba(4,4,4,.56) 100%), linear-gradient(0deg, rgba(4,4,4,.86) 0%, transparent 38%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 90px; align-items: center; padding-top: 70px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--acid); font-family: var(--display); font-size: .9rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #595953; }
.hero h1, h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: -.035em; line-height: .86; }
.hero h1 { margin-top: 27px; font-size: clamp(5rem, 9.6vw, 9.4rem); max-width: 820px; }
h1 em, h2 em { color: var(--acid); font-style: italic; font-weight: 800; }
.hero-lead { max-width: 610px; margin-top: 32px; color: #d6d6d1; font-size: 1.08rem; line-height: 1.75; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 1px solid transparent; font-size: .92rem; font-weight: 800; letter-spacing: .025em; text-transform: uppercase; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--acid); }
.button-primary:hover { background: var(--white); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(0,0,0,.12); }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.rating-card { align-self: end; margin-bottom: 52px; padding: 24px; border-top: 4px solid var(--acid); background: rgba(9,9,9,.78); backdrop-filter: blur(12px); }
.rating-top { display: flex; align-items: baseline; }
.rating-number { font-family: var(--display); font-size: 5.4rem; font-weight: 800; letter-spacing: -.055em; line-height: .82; }
.rating-out-of { margin-left: 8px; color: #9a9a95; font-size: .82rem; }
.stars { margin-top: 18px; color: var(--acid); letter-spacing: .14em; font-size: 1rem; }
.rating-card p { margin-top: 7px; color: #ddd; font-weight: 600; }
.rating-rule { height: 1px; margin: 22px 0 16px; background: var(--line); }
.rating-card > span { color: #aaa; font-size: .76rem; line-height: 1.5; text-transform: uppercase; letter-spacing: .09em; }
.hero-foot { position: absolute; z-index: 2; inset: auto 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.hero-foot > div { min-height: 104px; padding: 22px 28px; display: flex; gap: 18px; align-items: center; border-right: 1px solid var(--line); }
.hero-foot > div:last-child { border-right: 0; }
.hero-foot strong { color: var(--acid); font-family: var(--display); font-size: 1.2rem; }
.hero-foot span { color: #c4c4bf; font-size: .82rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .055em; }

.section { padding: 126px 0; }
.services, .reviews { color: var(--ink); background: var(--paper); }
.section-heading, .reviews-head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); gap: 70px; align-items: end; }
.section-heading h2, .reviews-head h2 { margin-top: 24px; font-size: clamp(3.4rem, 6vw, 6.4rem); }
.section-heading h2 em, .reviews-head h2 em { color: var(--ink); }
.section-heading > p { max-width: 460px; color: var(--muted-dark); line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 70px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.service-card { position: relative; min-height: 350px; padding: 34px; background: var(--paper); overflow: hidden; transition: color .25s ease, background .25s ease; }
.service-card::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: var(--acid); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.service-card:hover { color: var(--white); background: var(--ink); }
.service-card:hover::after { transform: scaleX(1); }
.service-index { position: absolute; top: 28px; right: 30px; color: #94948e; font-family: var(--display); font-size: .84rem; font-weight: 700; letter-spacing: .08em; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--ink); background: var(--acid); }
.service-icon svg { width: 33px; height: 33px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-top: 52px; font-family: var(--display); font-size: 1.7rem; font-weight: 700; text-transform: uppercase; }
.service-card p { margin-top: 14px; max-width: 310px; color: var(--muted-dark); font-size: .91rem; line-height: 1.65; transition: color .25s ease; }
.service-card:hover p { color: #aaa; }
.service-price { position: absolute; left: 34px; bottom: 31px; color: #444; font-family: var(--display); font-size: 1rem; font-weight: 700; text-transform: uppercase; transition: color .25s ease; }
.service-card:hover .service-price { color: var(--acid); }
.price-note { margin-top: 18px; color: #7a7a75; font-size: .76rem; }

.about { position: relative; background: var(--ink); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(58px, 8vw, 120px); align-items: center; }
.about-visual { position: relative; min-height: 660px; overflow: visible; }
.about-visual::before { content: ""; position: absolute; inset: 35px -28px -28px 35px; border: 1px solid rgba(255,240,0,.34); }
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.08); }
.about-badge { position: absolute; right: -32px; bottom: 36px; width: 148px; height: 148px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink); background: var(--acid); }
.about-badge strong { font-family: var(--display); font-size: 3.3rem; line-height: 1; }
.about-badge span { margin-top: 5px; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.about-copy h2 { margin-top: 24px; font-size: clamp(3.8rem, 6.5vw, 6.8rem); }
.about-lead { margin-top: 31px; color: #aaa9a4; font-size: 1rem; line-height: 1.8; }
.check-list { list-style: none; margin: 38px 0 0; padding: 0; border-top: 1px solid var(--line); }
.check-list li { display: grid; grid-template-columns: 34px 1fr; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.check-list li > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink); background: var(--acid); font-size: .83rem; font-weight: 900; }
.check-list strong { font-family: var(--display); font-size: 1.08rem; letter-spacing: .04em; text-transform: uppercase; }
.check-list p { margin-top: 5px; color: #8e8e8a; font-size: .84rem; line-height: 1.5; }
.text-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 32px; padding-bottom: 8px; border-bottom: 1px solid var(--acid); color: var(--acid); font-size: .84rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.reviews { padding-top: 138px; }
.review-score { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.review-score > strong { font-family: var(--display); font-size: 5.2rem; line-height: .8; letter-spacing: -.04em; }
.review-score div span { color: #c8b900; letter-spacing: .08em; }
.review-score div p { margin-top: 5px; color: #777; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 68px; }
.review-card { position: relative; min-height: 310px; padding: 37px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line-dark); background: #ebeae5; }
.review-card.featured { background: var(--acid); border-color: var(--acid); transform: translateY(-18px); }
.quote-mark { height: 42px; color: #9c9b95; font-family: Georgia, serif; font-size: 4.8rem; line-height: 1; }
.featured .quote-mark { color: rgba(9,9,9,.35); }
.review-card > p { max-width: 320px; font-family: var(--display); font-size: 1.65rem; font-weight: 600; line-height: 1.22; }
.review-card footer { padding-top: 25px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(9,9,9,.15); }
.review-card footer strong { font-family: var(--display); font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; }
.review-card footer span { color: #777; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.featured footer span { color: rgba(9,9,9,.6); }

.contact { padding: 128px 0; background: #111; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr); gap: clamp(70px, 10vw, 150px); align-items: center; }
.contact-copy h2 { margin-top: 24px; font-size: clamp(4rem, 7.5vw, 7.4rem); }
.contact-copy > p:last-of-type { max-width: 600px; margin-top: 29px; color: #aaa; line-height: 1.75; }
.contact-panel { border-top: 4px solid var(--acid); background: #1a1a1a; }
.contact-row { display: grid; grid-template-columns: 140px 1fr; gap: 25px; padding: 27px 30px; border-bottom: 1px solid var(--line); }
.contact-row > span { color: #858580; font-family: var(--display); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-row p { color: #e4e4df; font-size: .92rem; line-height: 1.6; }
.contact-row a:hover { color: var(--acid); }
.directions-link { padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; color: var(--acid); font-size: .81rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.site-footer { padding: 31px 0; border-top: 1px solid var(--line); background: #080808; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px; }
.footer-inner img { width: 132px; height: auto; }
.footer-inner p { color: #757570; font-size: .73rem; }
.social-links { display: flex; justify-content: flex-end; gap: 23px; }
.social-links a { color: #989893; font-size: .71rem; }
.social-links a:hover { color: var(--acid); }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.service-grid .reveal:nth-child(2), .review-grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .review-grid .reveal:nth-child(3) { transition-delay: .16s; }
.service-grid .reveal:nth-child(5) { transition-delay: .08s; }
.service-grid .reveal:nth-child(6) { transition-delay: .16s; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero { min-height: 820px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 230px; gap: 45px; }
  .rating-number { font-size: 4.6rem; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { gap: 72px; }
  .about-visual { min-height: 570px; }
  .contact-grid { gap: 65px; }
  .footer-inner { grid-template-columns: auto 1fr; }
  .footer-inner p { text-align: right; }
  .social-links { grid-column: 1 / -1; justify-content: center; padding-top: 22px; border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 620px); }
  .header-inner { height: 72px; }
  .brand img { width: 132px; }
  .header-call { min-height: 40px; padding: 0 13px; }
  .header-call span { display: none; }
  .hero { min-height: 760px; height: 100svh; max-height: 880px; justify-content: flex-start; }
  .hero-image { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,4,4,.94), rgba(4,4,4,.46)), linear-gradient(0deg, rgba(4,4,4,.92) 0%, rgba(4,4,4,.08) 55%); }
  .hero-grid { display: block; padding-top: 146px; }
  .hero h1 { margin-top: 22px; font-size: clamp(4.7rem, 22vw, 7.1rem); }
  .hero-lead { margin-top: 25px; font-size: .97rem; line-height: 1.65; }
  .hero-actions { margin-top: 27px; }
  .button { min-height: 50px; padding: 0 18px; font-size: .79rem; }
  .rating-card { width: 190px; margin: 34px 0 0 auto; padding: 16px 19px; }
  .rating-number { font-size: 3.6rem; }
  .rating-rule, .rating-card > span { display: none; }
  .stars { margin-top: 10px; font-size: .79rem; }
  .rating-card p { font-size: .75rem; }
  .hero-foot { display: none; }
  .section { padding: 88px 0; }
  .section-heading, .reviews-head { display: block; }
  .section-heading h2, .reviews-head h2 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .section-heading > p { margin-top: 30px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .service-card { min-height: 310px; padding: 27px; }
  .service-card h3 { margin-top: 39px; }
  .service-price { left: 27px; bottom: 25px; }
  .about-grid { display: flex; flex-direction: column; gap: 70px; }
  .about-visual { width: calc(100% - 18px); min-height: 470px; align-self: flex-start; }
  .about-visual::before { inset: 25px -18px -18px 25px; }
  .about-badge { right: -18px; bottom: 24px; width: 112px; height: 112px; }
  .about-badge strong { font-size: 2.6rem; }
  .about-copy h2 { font-size: clamp(4rem, 19vw, 5.9rem); }
  .reviews-head .review-score { margin-top: 36px; justify-content: flex-start; }
  .review-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .review-card { min-height: 275px; padding: 29px; }
  .review-card.featured { transform: none; }
  .contact { padding: 88px 0 112px; }
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .contact-copy h2 { font-size: clamp(4rem, 19vw, 6rem); }
  .contact-row { grid-template-columns: 105px 1fr; padding: 23px 20px; gap: 18px; }
  .directions-link { padding: 22px 20px; }
  .footer-inner { display: flex; flex-direction: column; text-align: center; }
  .footer-inner p { text-align: center; }
  .social-links { width: 100%; flex-wrap: wrap; gap: 15px 22px; }
  .mobile-call { position: fixed; z-index: 45; right: 16px; bottom: 16px; min-height: 48px; padding: 0 18px; display: inline-flex; align-items: center; gap: 9px; color: var(--ink); background: var(--acid); box-shadow: 0 12px 35px rgba(0,0,0,.38); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
  .mobile-call svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
}

@media (max-width: 420px) {
  .hero-actions .button { width: 100%; }
  .rating-card { margin-left: 0; }
  .contact-actions .button { width: 100%; }
  .review-score > strong { font-size: 4.4rem; }
}

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

:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }
