:root {
  --ink: #121416;
  --muted: #5c6670;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --line: #d9d4c8;
  --steel: #27313a;
  --steel-2: #172029;
  --red: #b3262d;
  --red-dark: #871c22;
  --amber: #d69c2f;
  --shadow: 0 18px 45px rgba(18, 20, 22, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 50;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--amber);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 20, 22, 0.92);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: clamp(118px, 14vw, 178px);
  height: auto;
  flex: 0 0 auto;
}

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

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.7rem 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .nav-phone {
  margin-left: 0.45rem;
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: transparent;
  padding: 0.55rem;
}

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

.hero {
  position: relative;
  min-height: clamp(640px, 78vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 16, 20, 0.88), rgba(12, 16, 20, 0.58) 45%, rgba(12, 16, 20, 0.12)),
    linear-gradient(0deg, rgba(12, 16, 20, 0.88), rgba(12, 16, 20, 0.05) 48%);
}

.hero-content {
  position: relative;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 7.5rem 0 4rem;
}

.hero-logo {
  width: clamp(210px, 30vw, 430px);
  height: auto;
  margin: 0 0 1.35rem;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.38));
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow,
.hiring .eyebrow {
  color: var(--amber);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.75rem, 8vw, 6.35rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions,
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.08rem;
  border: 2px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
}

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

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

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

.button.secondary:hover,
.button.secondary:focus-visible {
  background: #fff;
  color: var(--ink);
}

.trust-strip {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 3.5rem 0 0;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-strip div {
  padding: 1rem;
  background: rgba(18, 20, 22, 0.55);
}

.trust-strip dt {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 950;
  line-height: 1;
}

.trust-strip dd {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.notice-band {
  background: var(--red);
  color: #fff;
}

.notice-band > div {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 0.9rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  text-align: center;
}

.notice-band a {
  color: #fff;
  font-weight: 900;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading p,
.about-panel p,
.hiring p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-grid article,
.hours-card,
.about-panel,
.hiring,
.faq-list details,
blockquote {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(18, 20, 22, 0.05);
}

.service-grid article {
  min-height: 185px;
  padding: 1.3rem;
}

.service-grid article p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--red);
  border-radius: 2px;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  min-height: 220px;
  border: 0;
  padding: 0;
  background: var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-column: 1 / -1;
  min-height: 360px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: contrast(1.05);
}

.reviews {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
  align-items: start;
}

.rating-block {
  display: flex;
  align-items: end;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.rating-block strong {
  font-size: 4rem;
  line-height: 0.9;
}

.rating-block span {
  color: var(--muted);
  font-weight: 900;
}

.review-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--steel);
  text-decoration: none;
  font-weight: 900;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: 1.25rem;
}

blockquote p {
  margin: 0;
  color: var(--steel);
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.2rem;
  align-items: stretch;
}

.about-panel,
.hours-card,
.hiring {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.hours-card {
  background: var(--steel);
  color: #fff;
  border-color: transparent;
}

.hours-card dl {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hours-card dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 800;
}

.hours-card dd {
  margin: 0.15rem 0 0;
  font-weight: 950;
}

.hours-card p {
  color: rgba(255, 255, 255, 0.74);
}

.hiring {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--steel-2);
  color: #fff;
}

.hiring p,
.hiring li {
  color: rgba(255, 255, 255, 0.76);
}

.hiring ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hiring .button {
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 950;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--paper);
  border-radius: 5px;
  color: var(--red);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.contact {
  background: var(--steel-2);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) max(1rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact h2 {
  max-width: 680px;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

address {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  font-style: normal;
}

address a {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

address a:hover,
address a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row.two-up {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #c9c3b8;
  border-radius: 6px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(214, 156, 47, 0.35);
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 900;
}

.form-status[data-state="success"] {
  color: #176b3a;
}

.form-status[data-state="error"] {
  color: var(--red-dark);
}

.contact-form .button {
  justify-self: start;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1100px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 0.8rem;
  color: #fff;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem 1rem 1rem;
    background: rgba(18, 20, 22, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav .nav-phone {
    margin: 0.9rem 0 0;
    text-align: center;
    border-bottom: 0;
  }

  .service-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .reviews,
  .about,
  .hiring,
  .contact {
    grid-template-columns: 1fr;
  }

  .hiring .button {
    justify-self: start;
  }
}

@media (max-width: 660px) {
  .header-inner {
    width: min(100% - 1rem, var(--max));
  }

  .brand-logo {
    width: 116px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 1.3rem, var(--max));
    padding-bottom: 2rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .quote-grid,
  .work-gallery,
  .form-row.two-up,
  address {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 0.85rem;
  }

  .section {
    width: min(100% - 1.3rem, var(--max));
  }

  .service-grid article {
    min-height: auto;
  }

  .gallery-item,
  .gallery-item.large {
    min-height: 240px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
