@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --ink: #0b0d0f;
  --paper: #f4f2ed;
  --lime: #c7ff2e;
  --muted: #a5a8a3;
  --line: rgba(11, 13, 15, 0.16);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--lime); padding: .8rem 1rem; color: var(--ink); font-weight: 700; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 88px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .25s, height .25s;
}
.site-header.scrolled { height: 72px; background: rgba(11,13,15,.94); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: .7rem; width: max-content; text-decoration: none; font-family: "Oswald", sans-serif; font-size: 1.45rem; font-weight: 700; letter-spacing: .06em; }
.brand > span:last-child > span { color: var(--lime); }
.brand-mark { width: 38px; height: 28px; position: relative; display: inline-block; }
.brand-mark i { position: absolute; bottom: 0; width: 17px; height: 17px; border: 3px solid currentColor; border-radius: 50%; }
.brand-mark i:first-child { left: 0; }
.brand-mark i:last-child { right: 0; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: currentColor; height: 3px; transform-origin: left; }
.brand-mark::before { width: 21px; left: 8px; top: 3px; transform: rotate(42deg); }
.brand-mark::after { width: 18px; left: 18px; top: 2px; transform: rotate(120deg); }
nav { display: flex; gap: clamp(1.25rem, 3vw, 3rem); }
nav a { text-decoration: none; font-size: .92rem; font-weight: 600; }
nav a:hover, nav a:focus-visible { color: var(--lime); }
.header-phone { justify-self: end; display: flex; flex-direction: column; text-decoration: none; font-family: "Oswald", sans-serif; font-size: 1.1rem; line-height: 1.1; text-align: right; }
.header-phone span { color: var(--lime); font-family: "DM Sans", sans-serif; font-size: .66rem; text-transform: uppercase; letter-spacing: .09em; }
.menu-button { display: none; background: none; border: 0; padding: .6rem; }
.menu-button span { display: block; width: 26px; height: 2px; background: white; margin: 5px; }

.hero { position: relative; min-height: 860px; height: min(94vh, 980px); display: flex; align-items: center; overflow: hidden; color: white; background: var(--ink); }
.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(5,7,8,.92) 0%, rgba(5,7,8,.65) 38%, rgba(5,7,8,.12) 72%, rgba(5,7,8,.18) 100%), linear-gradient(0deg, rgba(5,7,8,.65) 0%, transparent 38%); }
.hero-content { position: relative; z-index: 2; width: min(760px, 88vw); margin-left: max(calc((100vw - var(--max))/2), 5vw); padding-top: 4rem; }
.eyebrow, .section-kicker { margin: 0 0 1.5rem; color: var(--lime); font-size: .78rem; font-weight: 700; line-height: 1.5; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { margin-bottom: 2rem; }
h1, h2, h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; line-height: 1.04; margin: 0; }
h1 { font-size: clamp(5.5rem, 11vw, 10.5rem); line-height: 1; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 590px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,.82); margin: 2rem 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; min-width: 210px; padding: 1rem 1.15rem; text-decoration: none; text-transform: uppercase; font-weight: 700; letter-spacing: .04em; font-size: .84rem; border: 1px solid transparent; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--lime); color: var(--ink); }
.button-ghost { color: white; border-color: rgba(255,255,255,.5); }
.button-ghost:hover { background: white; color: var(--ink); }
.hero-proof { position: absolute; z-index: 2; inset: auto max(calc((100vw - var(--max))/2), 5vw) 2.2rem; display: flex; justify-content: flex-end; gap: 2.5rem; color: rgba(255,255,255,.75); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-proof span::before { content: "+"; color: var(--lime); padding-right: .5rem; }

.section { width: min(var(--max), 90vw); margin-inline: auto; }
.intro { padding: clamp(5rem, 10vw, 9rem) 0; display: grid; grid-template-columns: .55fr 1.25fr 1fr; gap: 4rem; align-items: start; }
.section-kicker { color: #647008; }
.intro h2, .section-heading h2, .why h2, .contact h2 { font-size: clamp(3.4rem, 6.5vw, 7rem); line-height: 1.16; letter-spacing: -.025em; }
.intro-copy { max-width: 420px; font-size: 1.18rem; }
.intro-copy p { margin: 0 0 2rem; }
.text-link, .service-card a { font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: .2rem; }

.services { padding-bottom: clamp(5rem, 10vw, 9rem); }
.section-heading { display: grid; grid-template-columns: .55fr 2.25fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.section-heading h2 { max-width: 880px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 430px; padding: 1.5rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, color .25s, transform .25s; }
.service-card:hover { transform: translateY(-7px); background: var(--ink); color: white; }
.service-card-featured { background: var(--lime); }
.service-number { font-size: .75rem; font-weight: 700; opacity: .55; }
.service-icon { margin: 3rem 0 2rem; font-family: "Oswald", sans-serif; font-size: 3rem; color: #687600; }
.service-card h3 { font-size: 2rem; line-height: 1.12; }
.service-card p { color: #5f625f; margin: 1rem 0 auto; }
.service-card:hover p { color: #c5c8c3; }
.service-card a { width: max-content; font-size: .86rem; }

.why { border-top: 1px solid var(--line); padding: clamp(5rem, 9vw, 8rem) 0; display: grid; grid-template-columns: 1.35fr .8fr; gap: 8rem; }
.why h2 em { color: #7f8f00; }
.why-list { padding-top: 2rem; }
.why-list > div { display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.why-list strong { color: #7f8f00; font-size: .78rem; }
.why-list p { margin: 0; font-size: 1.05rem; }

.contact { width: 100%; background: var(--lime); display: grid; grid-template-columns: 1.25fr .75fr; }
.contact-main { padding: clamp(4rem, 8vw, 8rem) max(calc((100vw - var(--max))/2), 5vw); padding-right: 6vw; }
.contact-main .section-kicker { color: #4b5500; }
.contact h2 em { color: var(--ink); }
.contact-main p:not(.section-kicker) { max-width: 620px; font-size: 1.18rem; }
.button-dark { background: var(--ink); color: white; margin-top: 1.5rem; }
.contact-details { background: var(--ink); color: white; padding: clamp(3rem, 6vw, 6rem); display: grid; align-content: center; }
.contact-details > * { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.16); text-decoration: none; display: flex; flex-direction: column; }
.contact-details small { color: var(--lime); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.contact-details strong { font-family: "Oswald", sans-serif; font-size: 1.5rem; text-transform: uppercase; margin-top: .35rem; }

footer { background: var(--ink); color: white; padding: 2rem max(calc((100vw - var(--max))/2), 5vw); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; font-size: .75rem; color: #9da09c; }
.brand-footer { color: white; }
footer p:last-child { text-align: right; }
.mobile-call { display: none; }

@media (max-width: 950px) {
  .site-header { grid-template-columns: 1fr auto; height: 74px; }
  .site-header nav, .header-phone { display: none; }
  .site-header.menu-open nav { display: flex; position: fixed; inset: 74px 0 auto; background: var(--ink); flex-direction: column; padding: 2rem; font-size: 1.3rem; }
  .menu-button { display: block; }
  .hero { min-height: 760px; }
  .hero-content { margin-left: 5vw; }
  .hero-proof { justify-content: flex-start; gap: 1rem; flex-wrap: wrap; }
  .intro, .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .intro > .section-kicker { margin-bottom: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 3rem; }
  .contact { grid-template-columns: 1fr; }
  .contact-main { padding-inline: 5vw; }
  footer { grid-template-columns: 1fr; }
  footer p { margin: 0; }
  footer p:last-child { text-align: left; }
}

@media (max-width: 600px) {
  body { padding-bottom: 64px; }
  .hero { min-height: 720px; height: 100svh; align-items: flex-end; padding-bottom: 8rem; }
  .hero-image { object-position: 61% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,7,8,.96) 5%, rgba(5,7,8,.62) 62%, rgba(5,7,8,.28)); }
  .hero-content { width: 90vw; padding: 0; }
  .hero .eyebrow { display: none; }
  h1 { font-size: clamp(4.6rem, 24vw, 7.2rem); line-height: 1.02; }
  .hero-lead { font-size: 1.04rem; margin: 1.25rem 0; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: none; }
  .section { width: 90vw; }
  .intro h2, .section-heading h2, .why h2, .contact h2 { font-size: 3.3rem; line-height: 1.15; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .contact { width: 100%; }
  .contact-details { padding: 3rem 5vw; }
  .mobile-call { position: fixed; z-index: 30; display: flex; justify-content: space-between; align-items: center; inset: auto 0 0; height: 64px; padding: 0 1.25rem; background: var(--lime); color: var(--ink); font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .03em; }
}

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