:root {
  --orange: #ff8200;
  --orange-deep: #d95f00;
  --orange-soft: #fff0df;
  --ink: #171717;
  --ink-soft: #292929;
  --paper: #f5f3ee;
  --white: #fff;
  --muted: #6d6b66;
  --line: rgba(23, 23, 23, .13);
  --sans: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.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: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 22px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(23, 23, 23, .92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .16);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 auto; }
.brand-name { font-size: 11px; line-height: 1.1; letter-spacing: .03em; text-transform: uppercase; }
.brand-name strong { font-size: 14px; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); font-size: 13px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; color: #cfcfcf; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a[aria-current="page"] { color: var(--white); }
.site-nav > a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
}
.nav-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 20px;
  padding: 0 19px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--ink);
}
.nav-cta span, .button span, .arrow-link span { transition: transform 180ms ease; }
.nav-cta:hover span, .button:hover span, .arrow-link:hover span { transform: translate(3px, -3px); }
.menu-toggle { display: none; border: 0; background: transparent; }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: var(--orange); content: ""; }
.eyebrow-light::before { background: var(--white); }
.eyebrow-light { color: #ddd; }
.display {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(58px, 8.5vw, 126px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .88;
}
.display .accent { color: var(--orange); }
.section-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .94;
}
.section-lede { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.section-head > div { max-width: 750px; }
.section-head .section-lede { max-width: 420px; }
.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-orange { background: var(--orange); color: var(--ink); }
.button-orange:hover { background: #ed7800; }
.button-dark { background: var(--ink); color: var(--white); }
.button-outline { border: 1px solid rgba(255,255,255,.36); color: var(--white); }
.button-outline:hover { background: rgba(255,255,255,.08); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.arrow-link { display: inline-flex; align-items: center; gap: 20px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; line-height: 2.2; }

.home-hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  padding: 190px 0 96px;
  background: var(--ink);
  color: var(--white);
}
.home-hero::before {
  position: absolute;
  top: -18%;
  right: -16%;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 130, 0, .2), transparent 64%);
  opacity: .9;
  content: "";
}
.home-hero::after {
  position: absolute;
  right: -4%;
  bottom: -17%;
  width: 56%;
  height: 58%;
  background: #303030;
  clip-path: polygon(0 72%, 19% 35%, 33% 56%, 52% 10%, 72% 52%, 84% 30%, 100% 58%, 100% 100%, 0 100%);
  content: "";
}
.hero-logo-mark {
  position: absolute;
  z-index: 1;
  top: 120px;
  right: clamp(16px, 7vw, 120px);
  width: clamp(230px, 31vw, 470px);
  height: auto;
  opacity: .94;
  filter: drop-shadow(0 32px 80px rgba(0, 0, 0, .38));
  transform: rotate(-7deg);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 7vw; align-items: end; }
.hero-copy { padding-top: 60px; }
.hero-copy .section-lede { max-width: 660px; margin-top: 34px; color: #c4c4c4; font-size: clamp(17px, 1.6vw, 21px); }
.hero-panel {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 430px;
  align-content: space-between;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(15px);
}
.panel-top { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.status-dot { display: inline-flex; align-items: center; gap: 8px; }
.status-dot::before { width: 8px; height: 8px; border-radius: 50%; background: #71e182; box-shadow: 0 0 0 5px rgba(113,225,130,.14); content: ""; }
.metric-stack { display: grid; gap: 12px; }
.metric {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 15px;
  background: rgba(23,23,23,.75);
}
.metric-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 10px; background: var(--orange); color: var(--ink); font-family: var(--mono); font-weight: 800; }
.metric strong, .metric small { display: block; }
.metric strong { font-size: 13px; }
.metric small { margin-top: 4px; color: #aaa; font-size: 10px; }
.metric > span:last-child { color: var(--orange); font-family: var(--mono); font-size: 11px; }
.hero-trust { display: flex; gap: 30px; margin-top: 60px; color: #aaa; font-family: var(--mono); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust span::before { color: var(--orange); content: "✦"; }

.ticker { overflow: hidden; padding: 17px 0; border-bottom: 1px solid var(--line); background: var(--orange); }
.ticker-track { display: flex; width: max-content; gap: 24px; align-items: center; animation: ticker 25s linear infinite; }
.ticker span { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ticker i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.promo-strip {
  padding: 34px 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 255, 255, .2), transparent 22%),
    linear-gradient(135deg, #ffb347 0%, #ff8200 48%, #2f7d6f 100%);
}
.promo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(217, 95, 0, .22);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 130, 0, .1), transparent 42%),
    linear-gradient(135deg, #fff 0%, #fff8ed 56%, #eef8f4 100%);
  box-shadow: 0 22px 60px rgba(217, 95, 0, .16);
  color: var(--ink);
}
.promo-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, #ff8200 0 50%, #2f7d6f 50% 100%);
  content: "";
}
.promo-card::after {
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(255, 130, 0, .12);
  border-radius: 50%;
  content: "";
}
.promo-card > * { position: relative; z-index: 1; }
.promo-card-inset { margin-bottom: 58px; }
.promo-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.promo-card h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  letter-spacing: -.065em;
  line-height: .94;
}
.promo-card p:not(.promo-kicker) {
  max-width: 780px;
  margin: 18px 0 0;
  color: #5e5144;
  font-size: 15px;
  line-height: 1.7;
}
.promo-card .button {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}
.promo-card .button:hover { background: #2b2b2b; }
.summer-sun {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #ffd15c;
  box-shadow: 0 0 0 5px rgba(255, 209, 92, .24), 0 6px 16px rgba(217, 95, 0, .2);
}
.summer-sun::before {
  position: absolute;
  inset: -5px;
  z-index: -1;
  background: conic-gradient(from 10deg, transparent 0 7deg, #ffb347 7deg 15deg, transparent 15deg 30deg);
  border-radius: 50%;
  content: "";
}
.summer-sun::after {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #ff8200;
  content: "";
}
.promo-note {
  display: inline-flex;
  max-width: 560px;
  margin: 20px 0 0;
  padding: 11px 13px;
  border-radius: 12px;
  background: #eef4ff;
  color: #002868;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.promo-note-dark { background: rgba(255, 255, 255, .1); color: var(--white); }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.bento-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.bento-card h3 { max-width: 420px; margin: 0 0 14px; font-size: clamp(27px, 3vw, 40px); letter-spacing: -.045em; line-height: 1; }
.bento-card p { max-width: 460px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.bento-card ul { display: grid; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; font-family: var(--mono); font-size: 10px; }
.bento-card li::before { margin-right: 9px; color: var(--orange-deep); content: "↗"; }
.bento-large { grid-column: span 7; }
.bento-small { grid-column: span 5; }
.bento-half { grid-column: span 6; }
.bento-dark { background: var(--ink); color: var(--white); }
.bento-dark p { color: #aaa; }
.bento-orange { background: var(--orange); }
.bento-orange p { color: #3f2c18; }
.card-number { position: absolute; top: 30px; right: 30px; font-family: var(--mono); font-size: 10px; }
.card-symbol { display: grid; width: 56px; height: 56px; margin-bottom: 68px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--mono); font-size: 17px; }
.lead-loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.lead-step { min-height: 220px; padding: 28px; background: var(--paper); }
.lead-step span { font-family: var(--mono); font-size: 10px; }
.lead-step h3 { margin: 50px 0 12px; font-size: 22px; letter-spacing: -.035em; }
.lead-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.service-area-section { background: var(--white); }
.service-area-grid, .keyword-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  align-items: start;
}
.service-area-copy p, .keyword-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.service-area-copy p + p, .keyword-copy > p + p { margin-top: 18px; }
.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.area-cloud span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.featured-work { background: var(--ink); color: var(--white); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 20px; }
.project-link { display: block; }
.project-media { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius); }
.project-media::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 62%); content: ""; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.project-link:hover .project-media img { transform: scale(1.035); }
.project-chip { position: absolute; z-index: 2; top: 22px; left: 22px; padding: 9px 12px; border-radius: 999px; background: var(--white); color: var(--ink); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.project-caption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; }
.project-caption h3 { margin: 0 0 5px; font-size: 23px; }
.project-caption p { margin: 0; color: #999; font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.circle-arrow { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; border: 1px solid #555; border-radius: 50%; transition: background 180ms ease, color 180ms ease; }
.project-link:hover .circle-arrow { background: var(--orange); color: var(--ink); }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); }
.proof { min-height: 230px; padding: 34px; border-right: 1px solid var(--line); }
.proof:last-child { border-right: 0; }
.proof strong { display: block; color: var(--orange-deep); font-size: clamp(45px, 6vw, 76px); letter-spacing: -.07em; }
.proof span { display: block; max-width: 230px; margin-top: 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.google-reviews-section { background: var(--white); }
.google-reviews-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  align-items: center;
}
.google-review-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(23, 23, 23, .08);
}
.google-review-panel::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .14;
  content: "";
}
.google-review-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(23, 23, 23, .1);
}
.google-review-mark svg { width: 36px; height: 36px; }
.review-stars {
  margin-top: 34px;
  color: var(--orange-deep);
  font-family: var(--mono);
  font-size: 19px;
  letter-spacing: .12em;
}
.google-review-panel h3 {
  max-width: 620px;
  margin: 18px 0 16px;
  font-size: clamp(34px, 4.5vw, 62px);
  letter-spacing: -.06em;
  line-height: .96;
}
.google-review-panel > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.review-card-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.review-card {
  padding: 22px;
  border: 1px solid rgba(23, 23, 23, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}
.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}
.review-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 16px;
}
.review-card strong {
  font-size: 13px;
}
.review-card span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.google-review-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  margin-top: 34px;
}

.page-hero { padding: 190px 0 100px; background: var(--ink); color: var(--white); }
.page-hero .display { max-width: 1120px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr minmax(280px, 410px); gap: 70px; align-items: end; }
.page-hero .section-lede { color: #bbb; }
.page-number { color: var(--orange); font-family: var(--mono); font-size: 11px; }

.services-hero { position: relative; overflow: hidden; }
.services-hero::after {
  position: absolute;
  top: -280px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 120px solid rgba(255, 130, 0, .12);
  border-radius: 50%;
  content: "";
}
.services-hero .shell { position: relative; z-index: 1; }

.package-section { background: #ece9e2; }
.package-stack { display: grid; gap: 22px; }
.package-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 38px;
  align-items: start;
  min-height: 510px;
  padding: 38px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(23, 23, 23, .08);
}
.package-light { background: var(--white); color: var(--ink); }
.package-orange { background: var(--orange); color: var(--ink); }
.package-dark { background: var(--ink); color: var(--white); }
.package-index { display: flex; min-height: 100%; flex-direction: column; justify-content: space-between; }
.package-index span { font-size: clamp(52px, 6vw, 82px); font-weight: 800; letter-spacing: -.08em; line-height: .9; }
.package-index small { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; writing-mode: vertical-rl; transform: rotate(180deg); }
.package-kicker { margin: 0 0 60px; font-family: var(--mono); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.package-kicker strong { display: block; margin-top: 8px; font-family: var(--sans); font-size: clamp(28px, 3vw, 46px); letter-spacing: -.055em; text-transform: none; }
.package-main h2 { max-width: 550px; margin: 0 0 20px; font-size: clamp(45px, 5.5vw, 75px); letter-spacing: -.07em; line-height: .9; }
.package-main > p { max-width: 590px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.package-dark .package-main > p { color: #aaa; }
.package-orange .package-main > p { color: #4c3116; }
.package-fit { max-width: 600px; margin-top: 48px; padding-top: 20px; border-top: 1px solid currentColor; font-size: 13px; line-height: 1.65; }
.package-fit strong, .package-fit span { display: block; }
.package-fit strong { margin-bottom: 7px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.package-includes { align-self: stretch; padding: 28px; border-radius: 20px; background: rgba(245, 243, 238, .8); color: var(--ink); }
.package-orange .package-includes { background: rgba(255, 255, 255, .72); }
.package-dark .package-includes { background: #292929; color: var(--white); }
.package-includes h3 { margin: 0 0 22px; font-size: 20px; letter-spacing: -.035em; }
.package-includes ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; font-size: 13px; }
.package-includes li { display: flex; gap: 9px; line-height: 1.45; }
.package-includes li::before { color: var(--orange-deep); content: "✦"; }
.package-dark .package-includes li::before { color: var(--orange); }
.package-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(23, 23, 23, .18); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.package-dark .package-link { border-color: #4a4a4a; }
.package-link:hover span { transform: translate(3px, -3px); }
.package-link span { transition: transform 180ms ease; }

.strategy-section { background: var(--ink); color: var(--white); }
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.strategy-copy > p { max-width: 620px; margin: 0; color: #aaa; font-size: 17px; line-height: 1.8; }
.strategy-points { display: grid; margin-top: 55px; border-top: 1px solid #3f3f3f; }
.strategy-points > div { display: grid; grid-template-columns: 45px 120px 1fr; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid #3f3f3f; }
.strategy-points span { color: var(--orange); font-family: var(--mono); font-size: 10px; }
.strategy-points strong { font-size: 17px; }
.strategy-points small { color: #999; line-height: 1.5; }

.quick-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quick-service { display: flex; min-height: 350px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform 180ms ease, border-color 180ms ease; }
.quick-service:hover { border-color: var(--orange); transform: translateY(-5px); }
.quick-service > span { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.quick-service h3 { margin: 85px 0 15px; font-size: 30px; letter-spacing: -.05em; }
.quick-service p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.quick-service a { margin-top: auto; padding-top: 30px; font-size: 12px; font-weight: 800; }
.social-lede { margin-top: 28px; color: #3f2c18; }

.keyword-section { background: var(--white); }
.keyword-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}
.keyword-card-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}
.keyword-card-grid span {
  color: var(--orange-deep);
  font-family: var(--mono);
  font-size: 10px;
}
.keyword-card-grid h3 {
  margin: 54px 0 12px;
  font-size: 24px;
  letter-spacing: -.04em;
}
.keyword-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.audit-section { background: var(--ink); color: var(--white); }
.audit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 130, 0, .32), transparent 34%),
    #202020;
}
.audit-card .section-title { max-width: 760px; }
.audit-card .section-lede { margin-top: 24px; color: #b9b9b9; }

.service-links-section { background: var(--paper); }
.service-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-link-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}
.service-link-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.service-link-card span { color: var(--orange-deep); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
.service-link-card h3 { margin: auto 0 12px; font-size: 27px; letter-spacing: -.045em; line-height: 1; }
.service-link-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}
.faq-item h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.035em; }
.faq-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.service-detail-list { border-top: 1px solid var(--line); }
.service-detail {
  display: grid;
  grid-template-columns: 70px .8fr 1.2fr;
  gap: 35px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--orange); font-family: var(--mono); font-size: 10px; }
.service-detail h2 { margin: 4px 0 0; font-size: clamp(29px, 4vw, 48px); letter-spacing: -.055em; line-height: 1; }
.service-detail-copy p { max-width: 680px; margin: 0 0 24px; color: var(--muted); line-height: 1.75; }
.service-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 0; padding: 0; list-style: none; font-family: var(--mono); font-size: 10px; }
.service-points li::before { margin-right: 8px; color: var(--orange-deep); content: "↗"; }
.social-section { background: var(--orange); }
.social-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; align-items: center; }
.social-stack { display: grid; gap: 13px; }
.social-card { display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; padding: 18px; border-radius: 15px; background: var(--ink); color: var(--white); transform: rotate(var(--tilt, 0deg)); }
/* .social-card:nth-child(1) { --tilt: -2deg; }
.social-card:nth-child(2) { --tilt: 1deg; }
.social-card:nth-child(3) { --tilt: -1deg; } */
.social-card > span:first-child { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 12px; background: var(--orange); color: var(--ink); font-family: var(--mono); }
.social-card strong, .social-card small { display: block; }
.social-card small { margin-top: 4px; color: #aaa; }
.social-card > span:last-child { color: var(--orange); font-family: var(--mono); font-size: 10px; }

.process-timeline { display: grid; gap: 16px; }
.timeline-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 35px; align-items: center; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.timeline-row > span { color: var(--orange-deep); font-family: var(--mono); font-size: 12px; }
.timeline-row h2 { margin: 0 0 7px; font-size: 27px; letter-spacing: -.04em; }
.timeline-row p { max-width: 680px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.timeline-row > small { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.expect-card { min-height: 280px; padding: 30px; border-radius: var(--radius); background: var(--white); }
.expect-card span { font-family: var(--mono); font-size: 10px; }
.expect-card h3 { margin: 80px 0 12px; font-size: 25px; letter-spacing: -.04em; }
.expect-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.about-hero { position: relative; overflow: hidden; }
.about-hero::after {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .16;
  content: "";
}
.about-story-grid, .owner-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
  align-items: start;
}
.about-rich-copy p, .owner-bio p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.about-rich-copy p + p, .owner-bio p + p { margin-top: 20px; }
.owner-section { background: var(--white); }
.owner-photo-wrap {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(23, 23, 23, .14);
}
.owner-photo-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: center;
}
.owner-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.owner-facts span, .about-service-grid span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.what-we-do-section { background: #ece9e2; }
.about-service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-service-grid span { background: var(--white); }
.why-section { background: var(--ink); color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #3d3d3d;
  border-radius: var(--radius);
  background: #3d3d3d;
}
.why-grid article {
  min-height: 310px;
  padding: 28px;
  background: var(--ink-soft);
}
.why-grid span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
}
.why-grid h3 {
  margin: 86px 0 14px;
  font-size: 25px;
  letter-spacing: -.04em;
}
.why-grid p {
  margin: 0;
  color: #aaa;
  font-size: 13px;
  line-height: 1.65;
}
.mission-section { background: var(--orange); }
.mission-card h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  letter-spacing: -.07em;
  line-height: .95;
}
.mission-card .button { margin-top: 36px; }

.contact-page { background: var(--ink); color: var(--white); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; align-items: start; }
.contact-intro { position: sticky; top: 120px; }
.contact-intro .section-lede { margin: 30px 0; color: #bbb; }
.contact-special {
  display: grid;
  gap: 7px;
  margin: 0 0 32px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(0, 40, 104, .46), rgba(191, 10, 48, .24)),
    rgba(255, 255, 255, .06);
}
.contact-special strong { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: var(--white); font-size: 14px; }
.contact-special span { color: #d8d8d8; font-size: 13px; line-height: 1.55; }
.contact-email { display: inline-flex; gap: 18px; border-bottom: 1px solid var(--orange); padding-bottom: 7px; font-size: 14px; font-weight: 800; }
.contact-points { display: grid; gap: 13px; margin-top: 44px; }
.contact-point { display: flex; gap: 12px; color: #aaa; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.contact-point::before { color: var(--orange); content: "✦"; }
.contact-form-shell { padding: 38px; border-radius: var(--radius); background: var(--white); color: var(--ink); }
.contact-form { margin: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 8px; font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid #d9d7d1;
  border-radius: 11px;
  outline: none;
  background: #faf9f6;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.contact-form input, .contact-form select { height: 54px; padding: 0 14px; }
.contact-form textarea { min-height: 145px; padding: 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange-deep); box-shadow: 0 0 0 3px rgba(255,130,0,.17); }
.contact-form input:invalid:not(:focus):not(:placeholder-shown), .contact-form textarea:invalid:not(:focus):not(:placeholder-shown) { border-color: #bd2c2c; }
.button-submit { width: 100%; background: var(--orange); color: var(--ink); }
.button-submit:disabled { cursor: wait; opacity: .62; transform: none; }
.form-note { margin: 0 0 22px; color: #6b6b6b; font-size: 12px; }
.form-status { display: none; margin: 0 0 22px; padding: 15px 17px; border-radius: 8px; font-size: 13px; font-weight: 600; line-height: 1.5; }
.form-status.success { display: block; border: 1px solid #75aa82; background: #e7f3e8; color: #235b31; }
.form-status.error { display: block; border: 1px solid #c77b82; background: #f9e8e9; color: #7b1723; }
.privacy-note { margin: 16px 0 0; color: #777; font-size: 10px; text-align: center; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

.cta-band { background: var(--orange); }
.cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 850px; margin: 0; font-size: clamp(48px, 7vw, 96px); letter-spacing: -.07em; line-height: .9; }
.cta-inner .button { flex: 0 0 auto; }

.site-footer { padding: 70px 0 25px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; align-items: start; }
.footer-tagline { max-width: 330px; margin: 24px 0 0; color: #999; font-size: 14px; line-height: 1.7; }
.footer-column h3 { margin: 0 0 20px; color: #777; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column { display: grid; gap: 12px; font-size: 13px; }
.footer-column a:hover { color: var(--orange); }
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  display: grid;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #3d3d3d;
  border-radius: 50%;
  color: #dcdcdc;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.footer-social-link svg { width: 21px; height: 21px; }
.footer-social-link:hover { border-color: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 23px; border-top: 1px solid #3d3d3d; color: #777; font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }

@media (max-width: 980px) {
  .hero-grid, .page-hero-grid, .social-grid, .contact-layout, .service-area-grid, .keyword-grid, .google-reviews-grid, .about-story-grid, .owner-grid, .faq-grid, .audit-card, .promo-card { grid-template-columns: 1fr; }
  .home-hero::before { width: 80vw; height: 80vw; opacity: .4; }
  .hero-logo-mark { top: 105px; right: 30px; width: clamp(210px, 42vw, 360px); opacity: .5; }
  .hero-panel { max-width: 680px; min-height: 380px; }
  .section-head { align-items: start; flex-direction: column; gap: 20px; }
  .bento-large, .bento-small, .bento-half { grid-column: span 12; }
  .lead-loop { grid-template-columns: 1fr 1fr; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof:last-child { border-bottom: 0; }
  .service-detail { grid-template-columns: 55px 1fr; }
  .service-detail-copy { grid-column: 2; }
  .contact-intro { position: static; }
  .package-card { grid-template-columns: 90px 1fr; }
  .package-includes { grid-column: 2; }
  .strategy-grid { grid-template-columns: 1fr; }
  .quick-service-grid, .keyword-card-grid, .service-link-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .owner-photo-wrap { position: static; max-width: 680px; }
}

@media (max-width: 720px) {
  .site-header { top: 12px; width: calc(100% - 24px); min-height: 64px; padding: 8px 9px 8px 14px; }
  .brand-mark { width: 40px; height: 40px; }
  .menu-toggle { position: relative; z-index: 22; display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; border: 0; border-radius: 12px; background: var(--orange); }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    overflow-y: auto;
    padding: 112px 78px 32px 18px;
    background:
      radial-gradient(circle at top right, rgba(255, 130, 0, .22), transparent 34%),
      linear-gradient(180deg, #171717 0%, #202020 100%);
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav > * { max-width: 360px; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav::before {
    display: block;
    margin: 0 0 4px;
    color: var(--orange);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    content: "Site menu";
  }
  .site-nav::after {
    display: block;
    margin-top: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    color: #b8b8b8;
    font-size: 12px;
    line-height: 1.6;
    content: "Serving Knoxville, Maryville, Alcoa, Lenoir City, and East Tennessee.";
  }
  .site-nav > a:not(.nav-cta) {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    color: var(--white);
  }
  .site-nav > a:not(.nav-cta)::before {
    color: var(--orange);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .08em;
    content: "↗";
  }
  .site-nav > a[aria-current="page"] { border-color: rgba(255, 130, 0, .7); background: rgba(255, 130, 0, .14); }
  .site-nav > a[aria-current="page"]::after { display: none; }
  .nav-cta {
    min-height: 62px;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 15px;
  }
  .shell { width: min(100% - 36px, 1180px); }
  .section { padding: 84px 0; }
  .section-tight { padding: 65px 0; }
  .home-hero { min-height: auto; padding: 140px 0 80px; }
  .home-hero::before { top: 3%; right: -34%; width: 110vw; height: 110vw; }
  .home-hero::after { width: 95%; height: 32%; }
  .hero-logo-mark { top: 82px; right: -36px; width: 235px; opacity: .22; transform: rotate(-8deg); }
  .hero-copy { padding-top: 20px; }
  .display { font-size: clamp(52px, 15vw, 72px); }
  .hero-panel { min-height: 350px; padding: 20px; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .section-title { font-size: clamp(42px, 13vw, 62px); }
  .page-hero { padding: 145px 0 75px; }
  .bento-card { min-height: auto; padding: 25px; }
  .card-symbol { margin-bottom: 55px; }
  .lead-loop, .work-grid, .expect-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .project-media { min-height: 410px; }
  .service-detail { grid-template-columns: 42px 1fr; gap: 18px; padding: 35px 0; }
  .service-detail-copy { grid-column: 1 / -1; }
  .service-points { grid-template-columns: 1fr; }
  .package-card { grid-template-columns: 1fr; min-height: auto; gap: 25px; padding: 25px; }
  .package-index { min-height: auto; flex-direction: row; align-items: center; }
  .package-index span { font-size: 52px; }
  .package-index small { writing-mode: initial; transform: none; }
  .package-kicker { margin-bottom: 35px; }
  .package-main h2 { font-size: 48px; }
  .package-fit { margin-top: 34px; }
  .package-includes { grid-column: auto; padding: 23px; }
  .promo-card .button { width: 100%; white-space: normal; }
  .promo-card-inset { margin-bottom: 38px; }
  .service-link-grid { grid-template-columns: 1fr; }
  .service-link-card { min-height: 240px; }
  .strategy-points > div { grid-template-columns: 36px 1fr; }
  .strategy-points small { grid-column: 2; }
  .timeline-row { grid-template-columns: 1fr; gap: 15px; padding: 24px; }
  .timeline-row > small { margin-top: 8px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-shell { padding: 24px; }
  .cta-inner { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-wrap { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 12px; }
}

@media (max-width: 430px) {
  .display { font-size: 49px; }
  .site-nav { padding-right: 70px; }
  .site-nav > * { max-width: 310px; }
  .hero-panel { min-height: 330px; }
  .metric { grid-template-columns: auto 1fr; }
  .metric > span:last-child { display: none; }
  .project-media { min-height: 350px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-wrap { grid-column: auto; }
}

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