:root {
  --matte-black: #101010;
  --charcoal: #3a3a3a;
  --light-gray: #dcdcdc;
  --page-gray: #f5f5f5;
  --white: #ffffff;
  --bronze: #7a5c3e;
  --gold: #c9a46a;
  --shadow: 0 18px 50px rgba(16, 16, 16, 0.12);
  --container: min(1120px, calc(100% - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--page-gray);
  color: var(--matte-black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--white);
  color: var(--matte-black);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--matte-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--light-gray);
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--charcoal);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(122, 92, 62, 0.1);
  color: var(--bronze);
}

.header-call {
  background: var(--matte-black);
  color: var(--white);
}

.header-call:hover {
  background: var(--bronze);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 132px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--matte-black);
}

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

.hero-image {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.84) 0%, rgba(16, 16, 16, 0.66) 44%, rgba(16, 16, 16, 0.3) 100%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.08) 0%, rgba(16, 16, 16, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 0;
  color: var(--white);
}

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

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--bronze);
  color: var(--white);
}

.button.primary:hover {
  background: var(--gold);
  color: var(--matte-black);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.button.secondary:hover {
  background: var(--white);
  color: var(--matte-black);
}

.hero-proof {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.hero-proof span {
  position: relative;
  padding-left: 18px;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-gray);
}

.trust-grid p {
  margin: 0;
  padding: 22px 20px;
  background: var(--white);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--matte-black);
  font-size: 1rem;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--charcoal);
  font-size: 0.92rem;
}

.section {
  padding: 88px 0;
}

.section:nth-of-type(odd) {
  background: var(--white);
}

.section h2 {
  margin: 0;
  color: var(--matte-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  color: var(--matte-black);
  font-size: 1.08rem;
  line-height: 1.25;
}

.section p {
  color: var(--charcoal);
  font-size: 1.04rem;
}

.section .section-kicker {
  color: var(--bronze);
}

.why-section .section-kicker,
.contact-section .section-kicker {
  color: var(--gold);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
}

.service-summary,
.estimate-form {
  background: var(--matte-black);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-summary h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.service-summary ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-summary li {
  padding: 12px 0 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

.service-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35em;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
}

.service-card p {
  margin: 12px 0 0;
  font-size: 0.96rem;
}

.section.why-section {
  background: var(--matte-black);
  color: var(--white);
}

.why-section h2,
.why-section h3 {
  color: var(--white);
}

.why-section p {
  color: rgba(255, 255, 255, 0.82);
}

.why-photo-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.why-photo-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.proof-list p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-list strong {
  color: var(--gold);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--light-gray);
  list-style: none;
}

.process-list li {
  min-height: 245px;
  padding: 26px;
  background: var(--white);
}

.process-list span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--bronze);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.process-list p {
  margin: 12px 0 0;
  font-size: 0.96rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-grid figure {
  grid-column: span 2;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
}

.gallery-grid figure:first-child,
.gallery-grid figure:nth-child(2) {
  grid-column: span 3;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figure:first-child img,
.gallery-grid figure:nth-child(2) img {
  height: 320px;
}

.gallery-grid figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-left: 4px solid var(--bronze);
  border-radius: 6px;
  color: var(--matte-black);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
}

.faq-list summary {
  min-height: 58px;
  padding: 18px 22px;
  color: var(--matte-black);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.section.contact-section {
  background: var(--matte-black);
  color: var(--white);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
}

.contact-details strong {
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-details span,
.contact-details a {
  color: var(--white);
}

.contact-details a {
  font-weight: 900;
}

.estimate-form {
  background: var(--white);
  color: var(--matte-black);
}

.estimate-form label {
  display: block;
  margin: 16px 0 6px;
  color: var(--matte-black);
  font-size: 0.92rem;
  font-weight: 900;
}

.estimate-form label:first-child {
  margin-top: 0;
}

.estimate-form input,
.estimate-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfbfb;
  color: var(--matte-black);
}

.estimate-form input:focus,
.estimate-form textarea:focus {
  outline: 3px solid rgba(201, 164, 106, 0.35);
  border-color: var(--bronze);
}

.estimate-form button {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--charcoal) !important;
  font-size: 0.9rem !important;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--charcoal);
  font-size: 0.94rem;
}

.footer-inner a {
  color: var(--bronze);
  font-weight: 900;
}

.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 11;
  min-height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--bronze);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 16, 16, 0.28);
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 12px 0;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .hero {
    min-height: min(680px, calc(100svh - 156px));
  }

  .trust-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid figure,
  .gallery-grid figure:first-child,
  .gallery-grid figure:nth-child(2) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  html {
    scroll-padding-top: 132px;
  }

  body {
    padding-bottom: 68px;
  }

  .brand span {
    max-width: 280px;
    white-space: normal;
    line-height: 1.05;
    font-size: 1rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-call {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr;
    padding: 8px 0;
    gap: 8px;
  }

  .site-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 4px;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 8px;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 48px 0 42px;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.5rem, 11vw, 3.55rem);
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-proof {
    gap: 8px;
    font-size: 0.98rem;
  }

  .hero-proof {
    display: grid;
  }

  .trust-grid,
  .split-layout,
  .split-layout.reverse,
  .process-list,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .service-summary,
  .estimate-form {
    padding: 24px;
  }

  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid figure:first-child img,
  .gallery-grid figure:nth-child(2) img {
    height: 275px;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .footer-inner {
    min-height: 110px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-call {
    display: flex;
    left: 14px;
    right: 14px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}