:root {
  --ink: #171715;
  --ink-soft: #242421;
  --paper: #f5f3ee;
  --white: #fff;
  --muted: #6f6e69;
  --line: rgba(23, 23, 21, 0.16);
  --brass: #d0a85c;
  --brass-dark: #a87d36;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; }

button, input, textarea, select { font: inherit; }

.shell { width: var(--shell); margin-inline: auto; }

.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 {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--brass);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.brand-name small {
  margin-left: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  vertical-align: 2px;
}

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

.site-nav a {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.nav-call) { position: relative; }

.site-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-call):hover::after,
.site-nav > a:not(.nav-call):focus-visible::after { transform: scaleX(1); }

.nav-call {
  padding: 12px 18px;
  color: var(--ink) !important;
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.92) 0%, rgba(12, 12, 11, 0.7) 34%, rgba(12, 12, 11, 0.1) 72%),
    linear-gradient(0deg, rgba(12, 12, 11, 0.62) 0%, transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: center;
  padding-top: 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--brass-dark);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; color: #e7c98e; }

.eyebrow span {
  width: 42px;
  height: 1px;
  margin-right: 14px;
  background: var(--brass);
}

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

h1, h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 { max-width: 760px; font-size: clamp(3.9rem, 7.2vw, 7.3rem); }

h1 em { color: var(--brass); font-style: normal; }

.hero-copy {
  max-width: 580px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary { color: var(--ink); background: var(--brass); }
.button-primary:hover { background: #ddb96f; }

.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.4); background: rgba(0, 0, 0, 0.12); }
.button-ghost:hover { border-color: var(--white); }

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(690px, 56%);
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  color: var(--ink);
}

.hero-proof > div { padding: 24px 28px; border-right: 1px solid var(--line); }
.hero-proof > div:last-child { border-right: 0; }
.hero-proof strong { display: block; font-family: "Manrope", sans-serif; font-size: 21px; }
.hero-proof span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 88px;
  padding-block: 122px;
  align-items: end;
}

h2 { font-size: clamp(2.7rem, 5vw, 5.1rem); }

.intro > p,
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.services { padding: 118px 0; background: var(--ink); color: var(--white); }

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.services .section-heading > p { color: rgba(255, 255, 255, 0.6); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card {
  min-height: 252px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 180ms ease;
}

.service-card:hover { background: var(--ink-soft); }
.service-card > span { color: var(--brass); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; }
.service-card h3 { margin: 44px 0 12px; font-family: "Manrope", sans-serif; font-size: 23px; line-height: 1.2; }
.service-card p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 15px; }

.about {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 9vw;
  padding-block: 130px;
  align-items: center;
}

.about-visual { margin: 0; }
.about-visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-visual figcaption { margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.45; }

.about-copy h2 { max-width: 600px; }
.about-lead { margin: 38px 0 20px; font-size: 21px; font-weight: 600; line-height: 1.5; }
.about-copy > p:not(.section-kicker):not(.about-lead) { color: var(--muted); }

.quote-line { display: flex; gap: 18px; align-items: center; margin-top: 32px; }
.quote-line span { width: 48px; height: 2px; flex: 0 0 auto; background: var(--brass); }
.quote-line p { margin: 0; font-weight: 700; line-height: 1.45; }

.contact { padding: 120px 0; background: #20201e; color: var(--white); }

.contact-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 8vw; }
.section-kicker.light { color: #e7c98e; }
.contact-copy h2 { max-width: 580px; }
.contact-copy > p:not(.section-kicker) { max-width: 520px; margin: 28px 0 44px; color: rgba(255, 255, 255, 0.62); font-size: 17px; }

.contact-links { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.contact-links > * {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}
.contact-links span { display: block; color: var(--brass); font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.contact-links strong { display: block; margin-top: 3px; font-size: 16px; font-weight: 500; overflow-wrap: anywhere; }

.estimate-form { padding: clamp(24px, 4vw, 48px); color: var(--ink); background: var(--paper); }
.estimate-form label { display: block; margin-bottom: 20px; font-size: 13px; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.estimate-form input,
.estimate-form textarea,
.estimate-form select {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid rgba(23, 23, 21, 0.26);
  border-radius: 0;
  background: var(--white);
  outline: none;
}

.estimate-form textarea { resize: vertical; }
.estimate-form input:focus,
.estimate-form textarea:focus,
.estimate-form select:focus { border-color: var(--brass-dark); box-shadow: 0 0 0 2px rgba(208, 168, 92, 0.2); }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.site-footer { padding: 36px 0; color: var(--white); background: #10100f; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr auto; gap: 32px; align-items: center; }
.footer-inner p { margin: 0; color: rgba(255, 255, 255, 0.52); font-size: 13px; }
.footer-brand .brand-mark { width: 40px; height: 40px; font-size: 12px; }

.mobile-call { display: none; }

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

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }

  .site-header { height: 76px; padding-inline: 18px; }
  .brand-mark { width: 42px; height: 42px; }
  .menu-toggle { display: block; z-index: 22; color: var(--white); cursor: pointer; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 30px 40px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-size: 25px; }
  .site-nav .nav-call { margin-top: 16px; font-size: 16px; }

  .hero { min-height: 760px; }
  .hero-content { min-height: 670px; padding-top: 76px; padding-bottom: 100px; }
  .hero-shade { background: linear-gradient(90deg, rgba(12, 12, 11, 0.88), rgba(12, 12, 11, 0.3)), linear-gradient(0deg, rgba(12, 12, 11, 0.68), transparent 50%); }
  .hero-proof { width: 100%; }

  .intro,
  .section-heading,
  .about,
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .intro { padding-block: 92px; }
  .section-heading { margin-bottom: 48px; }
  .services { padding: 92px 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about { padding-block: 92px; }
  .about-visual img { aspect-ratio: 5 / 4; }
  .contact { padding: 92px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 56px; }
  .brand-name { font-size: 15px; }
  .hero { min-height: 720px; }
  .hero-image { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(12, 12, 11, 0.9), rgba(12, 12, 11, 0.42)), linear-gradient(0deg, rgba(12, 12, 11, 0.72), transparent 55%); }
  .hero-content { min-height: 620px; justify-content: center; padding-bottom: 70px; }
  h1 { font-size: clamp(3.3rem, 16vw, 5.1rem); }
  .hero-copy { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); }
  .hero-proof > div { padding: 16px 10px; text-align: center; }
  .hero-proof strong { font-size: 17px; }
  .hero-proof span { font-size: 10px; line-height: 1.35; }
  h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .intro { padding-block: 72px; }
  .services { padding: 72px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 24px; }
  .service-card h3 { margin-top: 26px; }
  .about { padding-block: 72px; }
  .about-visual img { aspect-ratio: 4 / 5; }
  .contact { padding: 72px 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .estimate-form { padding: 24px 18px; }

  .mobile-call {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 56px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--brass);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
