:root {
  --navy-950: #051521;
  --navy-900: #092235;
  --navy-800: #0c3149;
  --blue: #168ff0;
  --cyan: #23d4d0;
  --ink: #112b3a;
  --muted: #617482;
  --line: #d8e3e8;
  --mist: #f2f7f8;
  --white: #ffffff;
  --max-width: 1220px;
  --font-geist-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 227, 232, 0.82);
  display: flex;
  height: 92px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(28px, calc((100vw - var(--max-width)) / 2));
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
}

.brand-mark {
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 143, 240, 0.12);
  display: block;
  flex: 0 0 54px;
  height: 54px;
  overflow: hidden;
  width: 54px;
}

.site-header .brand-mark {
  flex-basis: 64px;
  height: 64px;
  width: 64px;
}

.brand-logo {
  border-radius: 50%;
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.brand-name {
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.brand-name strong {
  color: var(--blue);
  font-weight: 700;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.desktop-nav > a:not(.nav-cta) {
  color: #405764;
  font-size: 14px;
  font-weight: 560;
  position: relative;
}

.desktop-nav > a:not(.nav-cta)::after {
  background: var(--blue);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--navy-950);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 670;
  padding: 13px 20px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
  position: relative;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(242, 247, 248, 0) 0%, rgba(242, 247, 248, 0.68) 100%),
    linear-gradient(rgba(9, 34, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 34, 53, 0.035) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  display: grid;
  gap: clamp(48px, 6vw, 92px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  padding: 90px max(36px, calc((100vw - var(--max-width)) / 2)) 86px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 12px;
  font-weight: 760;
  gap: 10px;
  letter-spacing: 0.15em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(35, 212, 208, 0.12);
  display: inline-block;
  height: 6px;
  width: 6px;
}

.hero h1 {
  color: var(--navy-950);
  font-size: clamp(56px, 5.4vw, 82px);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.hero h1 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lede {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 30px 0 0;
  max-width: 610px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  padding: 16px 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--navy-950);
  box-shadow: 0 14px 30px rgba(5, 21, 33, 0.16);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(22, 143, 240, 0.24);
}

.text-link {
  align-items: center;
  color: var(--navy-900);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
}

.text-link span {
  color: var(--blue);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-proof {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 52px 0 0;
  padding: 0;
}

.hero-proof li {
  color: #758893;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 3px;
  min-width: 120px;
  padding-right: 28px;
}

.hero-proof li + li {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.hero-proof strong {
  color: var(--navy-950);
  font-size: 15px;
}

.signal-stage {
  aspect-ratio: 1 / 1.06;
  background:
    radial-gradient(circle at center, rgba(15, 73, 105, 0.96), rgba(5, 21, 33, 0.98) 66%),
    var(--navy-950);
  border: 1px solid rgba(35, 212, 208, 0.2);
  border-radius: 48% 52% 44% 56% / 52% 43% 57% 48%;
  box-shadow:
    0 30px 70px rgba(5, 21, 33, 0.26),
    inset 0 0 70px rgba(22, 143, 240, 0.13);
  max-width: 540px;
  overflow: hidden;
  position: relative;
  transform: rotate(2deg);
  width: 100%;
}

.signal-stage::before {
  background:
    linear-gradient(rgba(35, 212, 208, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 212, 208, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle, #000 0%, transparent 72%);
  position: absolute;
}

.signal-stage::after {
  border: 1px solid rgba(35, 212, 208, 0.22);
  border-radius: 50%;
  content: "";
  inset: 10%;
  position: absolute;
  transform: rotate(-8deg);
}

.signal-glow {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.68;
  position: absolute;
}

.signal-glow-one {
  background: var(--blue);
  height: 100px;
  right: -30px;
  top: 18%;
  width: 100px;
}

.signal-glow-two {
  background: var(--cyan);
  bottom: 7%;
  height: 72px;
  left: 8%;
  width: 72px;
}

.signal-orbit {
  border: 1px solid rgba(22, 143, 240, 0.42);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  inset: 21%;
  transform: rotate(28deg);
}

.orbit-two {
  inset: 33% 17%;
  transform: rotate(-48deg);
}

.signal-dot {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(35, 212, 208, 0.1),
    0 0 20px rgba(35, 212, 208, 0.9);
  height: 8px;
  position: absolute;
  width: 8px;
}

.dot-one {
  left: 11%;
  top: 18%;
}

.dot-two {
  bottom: 2%;
  right: 22%;
}

.signal-route {
  border-top: 1px solid rgba(35, 212, 208, 0.7);
  position: absolute;
  width: 24%;
}

.signal-route span {
  background: var(--cyan);
  border-radius: 50%;
  height: 5px;
  position: absolute;
  right: 0;
  top: -3px;
  width: 5px;
}

.route-one {
  left: 3%;
  top: 37%;
  transform: rotate(14deg);
}

.route-two {
  right: 5%;
  top: 31%;
  transform: rotate(-18deg);
}

.route-three {
  bottom: 22%;
  right: 9%;
  transform: rotate(28deg);
}

.signal-core {
  align-items: center;
  background: rgba(5, 21, 33, 0.74);
  border: 1px solid rgba(35, 212, 208, 0.56);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(22, 143, 240, 0.07),
    0 0 44px rgba(22, 143, 240, 0.24);
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 210px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 210px;
  z-index: 3;
}

.signal-kicker {
  color: #94b9cc;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signal-core strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  margin-top: 5px;
}

.signal-divider {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  height: 1px;
  margin: 12px 0;
  width: 90px;
}

.signal-core small {
  color: #8fb3c5;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-caption {
  bottom: 8%;
  color: var(--white);
  font-size: 11px;
  font-weight: 720;
  left: 50%;
  letter-spacing: 0.12em;
  margin: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-2deg);
  width: 78%;
  z-index: 4;
}

.signal-caption span {
  color: #77a0b5;
  display: block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 7px;
  text-transform: none;
}

.intro-strip {
  align-items: center;
  background: var(--navy-950);
  color: #b9d0dc;
  display: flex;
  gap: 28px;
  justify-content: center;
  min-height: 78px;
  padding: 18px 28px;
}

.intro-strip p {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.intro-strip > span {
  background: var(--cyan);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 120px 0;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.why-copy h2,
.quote-intro h2 {
  color: var(--navy-950);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 670;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.project-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.project-card:hover {
  box-shadow: 0 22px 50px rgba(9, 34, 53, 0.12);
  transform: translateY(-6px);
}

.project-visual {
  min-height: 320px;
  overflow: hidden;
  padding: 48px 24px 0;
  position: relative;
}

.project-orange {
  background: linear-gradient(145deg, #f7bd64, #d95132);
}

.project-sage {
  background: linear-gradient(145deg, #d8e3d4, #8ea795);
}

.project-clay {
  background: linear-gradient(145deg, #efe4ce, #b85e3f);
}

.project-blue {
  background: linear-gradient(145deg, #a9cad8, #244d68);
}

.project-browser {
  background: #fbfcfd;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 40px rgba(5, 21, 33, 0.24);
  min-height: 285px;
  padding: 12px;
  transform: rotate(-2deg);
}

.project-browser-real {
  border: 1px solid rgba(17, 21, 23, 0.16);
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform: rotate(-1.25deg);
}

.project-browser-real:hover .project-real-screen img {
  transform: scale(1.035);
}

.project-browser-bar.project-browser-bar-real {
  background: #f2efe8;
  margin: 0;
  padding: 12px;
}

.project-real-screen {
  height: 258px;
  overflow: hidden;
  position: relative;
}

.project-real-screen img {
  object-fit: cover;
  object-position: 62% center;
  transition: transform 500ms ease;
}

.project-real-shade {
  background:
    linear-gradient(90deg, rgba(17, 21, 23, 0.96) 0%, rgba(17, 21, 23, 0.72) 48%, rgba(17, 21, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(17, 21, 23, 0.38), transparent 48%);
  inset: 0;
  position: absolute;
}

.project-real-nav {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: space-between;
  left: 16px;
  position: absolute;
  right: 16px;
  top: 15px;
}

.project-real-nav b {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-real-nav span {
  background: #f06a24;
  border-radius: 999px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 8px;
  text-transform: uppercase;
}

.project-real-copy {
  bottom: 30px;
  display: flex;
  flex-direction: column;
  left: 18px;
  position: absolute;
  width: 64%;
}

.project-real-copy small {
  color: #f6a16e;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-real-copy strong {
  color: #fff;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 27px;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin-top: 10px;
}

.project-real-copy strong em {
  color: #f06a24;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.project-real-copy > span {
  align-self: flex-start;
  background: #f06a24;
  border-radius: 999px;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  margin-top: 17px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.project-sage .project-browser {
  transform: rotate(2deg);
}

.project-clay .project-browser {
  transform: rotate(1.25deg);
}

.project-clay .project-real-nav span,
.project-clay .project-real-copy > span {
  background: #b84f31;
}

.project-clay .project-real-copy small,
.project-clay .project-real-copy strong em {
  color: #e3c783;
}

.project-clay .project-real-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.project-browser-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.project-browser-bar span {
  background: #cbd4d8;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.project-site-nav {
  align-items: center;
  border-bottom: 1px solid #e3e9eb;
  display: flex;
  gap: 9px;
  padding: 0 2px 10px;
}

.project-site-nav b {
  color: #183444;
  font-size: 7px;
  margin-right: auto;
  text-transform: uppercase;
}

.project-site-nav i {
  background: #b7c5cb;
  height: 3px;
  width: 18px;
}

.project-site-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 45px 16px;
}

.project-site-copy small {
  color: #65808e;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.project-site-copy strong {
  color: #122f3e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  max-width: 220px;
}

.project-site-copy span {
  background: currentColor;
  color: #38738c;
  height: 7px;
  margin-top: 8px;
  width: 58px;
}

.concept-badge {
  background: rgba(5, 21, 33, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  bottom: 14px;
  color: var(--white);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  padding: 8px 10px;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
}

.project-info {
  padding: 26px;
}

.project-info > p {
  color: var(--blue);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.13em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.project-info h3 {
  color: var(--navy-950);
  font-size: 21px;
  letter-spacing: -0.03em;
  margin: 0;
}

.project-description {
  align-items: start;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 14px;
}

.project-description p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.project-description > span {
  color: var(--blue);
}

.project-info ul {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
}

.project-info li {
  background: var(--mist);
  border-radius: 999px;
  color: #516b79;
  font-size: 9px;
  font-weight: 650;
  padding: 7px 9px;
}

.services-section {
  background: var(--navy-950);
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(28px, calc((100vw - var(--max-width)) / 2));
}

.light-heading h2 {
  color: var(--white);
}

.light-heading > p {
  color: #91adbc;
}

.service-grid {
  border-bottom: 1px solid rgba(149, 184, 200, 0.18);
  border-top: 1px solid rgba(149, 184, 200, 0.18);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 260px;
  padding: 34px 28px;
}

.service-card + .service-card {
  border-left: 1px solid rgba(149, 184, 200, 0.18);
}

.service-card > span {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.service-card h3 {
  color: var(--white);
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 70px 0 12px;
}

.service-card p {
  color: #8eabba;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.why-section {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.85fr 1.15fr;
}

.why-copy {
  align-self: center;
}

.why-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 26px 0;
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 50px 1fr;
  padding: 32px 0;
}

.principles article > span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  padding-top: 5px;
}

.principles h3 {
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.principles p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article {
  padding: 8px 46px 0 0;
  position: relative;
}

.process-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 46px;
}

.process-grid span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.process-grid h3 {
  color: var(--navy-950);
  font-size: 27px;
  letter-spacing: -0.04em;
  margin: 42px 0 12px;
}

.process-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.quote-section {
  align-items: start;
  background:
    linear-gradient(105deg, rgba(9, 34, 53, 0.96), rgba(5, 21, 33, 0.99)),
    var(--navy-950);
  color: var(--white);
  display: grid;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  margin: 0 auto;
  max-width: 1440px;
  overflow: hidden;
  padding: 110px max(38px, calc((100vw - var(--max-width)) / 2));
  position: relative;
}

.quote-section::before {
  background:
    linear-gradient(rgba(35, 212, 208, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 212, 208, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0 50% 0 0;
  mask-image: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
  position: absolute;
}

.quote-intro {
  position: sticky;
  top: 142px;
  z-index: 1;
}

.quote-intro h2 {
  color: var(--white);
  max-width: 560px;
}

.quote-intro > p:not(.eyebrow) {
  color: rgba(225, 239, 245, 0.75);
  font-size: 16px;
  line-height: 1.8;
  margin: 26px 0 0;
  max-width: 520px;
}

.quote-intro .eyebrow {
  margin: 30px 0 18px;
}

.contact-signal {
  height: 90px;
  position: relative;
  width: 90px;
}

.contact-signal span {
  border: 1px solid rgba(35, 212, 208, 0.32);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.contact-signal span:nth-child(2) {
  inset: 18px;
}

.contact-signal span:nth-child(3) {
  background: var(--cyan);
  border: 0;
  box-shadow: 0 0 30px var(--cyan);
  inset: 39px;
}

.quote-expectations {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
}

.quote-expectations li {
  align-items: center;
  border-top: 1px solid rgba(149, 184, 200, 0.18);
  color: #dbe8ee;
  display: flex;
  font-size: 14px;
  gap: 16px;
  padding: 17px 0;
}

.quote-expectations li:last-child {
  border-bottom: 1px solid rgba(149, 184, 200, 0.18);
}

.quote-expectations span {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.quote-form,
.quote-success {
  background: var(--white);
  border: 1px solid rgba(216, 227, 232, 0.82);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 2;
}

.form-heading h3,
.quote-success h3 {
  color: var(--navy-950);
  font-size: clamp(29px, 3vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
}

.form-heading > p:last-child,
.quote-success > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.form-heading .eyebrow,
.quote-success .eyebrow {
  margin-bottom: 15px;
}

.form-grid {
  display: grid;
  gap: 22px 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
}

.form-grid label {
  color: var(--navy-900);
  display: grid;
  font-size: 12px;
  font-weight: 720;
  gap: 9px;
  letter-spacing: 0.01em;
}

.form-grid label > span {
  color: #d65353;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  appearance: none;
  background: #f8fbfc;
  border: 1px solid #ccdbe2;
  border-radius: 12px;
  color: var(--navy-950);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  padding: 14px 15px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
  width: 100%;
}

.form-grid select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy-800) 50%),
    linear-gradient(135deg, var(--navy-800) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.form-grid textarea {
  line-height: 1.6;
  min-height: 150px;
  resize: vertical;
}

.form-grid textarea::placeholder {
  color: #8799a3;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 143, 240, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.honeypot {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-submit-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 26px;
}

.form-submit-row .button {
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.form-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-submit-row > p {
  color: #7b8e99;
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
  max-width: 230px;
  text-align: right;
}

.form-submit-row > p a {
  color: var(--navy-800);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  background: var(--mist);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 18px 0 0;
  padding: 12px 14px;
}

.form-error {
  background: #fff4f2;
  color: #8a3731;
}

.form-error a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quote-success {
  align-content: center;
  min-height: 540px;
}

.quote-success-mark {
  align-items: center;
  background: rgba(35, 212, 208, 0.14);
  border: 1px solid rgba(35, 212, 208, 0.42);
  border-radius: 50%;
  color: #087e7b;
  display: flex;
  font-size: 26px;
  height: 62px;
  justify-content: center;
  margin-bottom: 38px;
  width: 62px;
}

.quote-reference {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  display: inline-flex;
  font-size: 12px;
  gap: 9px;
  margin-top: 26px;
  padding: 12px 14px;
}

.quote-reference strong {
  color: var(--navy-950);
  font-family: var(--font-geist-mono), monospace;
}

.quote-reset {
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  margin-top: 28px;
  padding: 0;
}

footer {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 56px 0 28px;
}

.footer-brand {
  grid-row: span 2;
}

footer > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  max-width: 390px;
}

footer > div {
  display: flex;
  gap: 24px;
}

footer > div a {
  color: #405764;
  font-size: 12px;
  font-weight: 650;
}

footer small {
  border-top: 1px solid var(--line);
  color: #8a9aa3;
  font-size: 10px;
  grid-column: 2 / -1;
  padding-top: 18px;
}

.privacy-home-link {
  color: var(--navy-900);
  display: none;
  font-size: 13px;
  font-weight: 700;
}

.privacy-content {
  margin: 0 auto;
  max-width: 820px;
  padding: 108px 32px 120px;
}

.privacy-content h1 {
  color: var(--navy-950);
  font-size: clamp(48px, 7vw, 76px);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0;
}

.privacy-lede {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
  margin: 30px 0 72px;
}

.privacy-content section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  padding: 32px 0;
}

.privacy-content section h2 {
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.025em;
  margin: 0;
}

.privacy-content section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.privacy-content section a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-updated {
  color: #8a9aa3;
  font-size: 12px;
  margin: 34px 0 0;
}

@media (max-width: 1260px) {
  .section,
  footer {
    margin-left: 32px;
    margin-right: 32px;
  }

  .services-section {
    margin-left: 0;
    margin-right: 0;
  }
}

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

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 8px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    background: var(--navy-950);
    height: 2px;
    width: 25px;
  }

  .mobile-nav nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(5, 21, 33, 0.16);
    display: flex;
    flex-direction: column;
    min-width: 210px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50px;
  }

  .mobile-nav nav a {
    border-radius: 9px;
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 650;
    padding: 13px 12px;
  }

  .mobile-nav nav a:hover {
    background: var(--mist);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .signal-stage {
    justify-self: center;
    max-width: 620px;
  }

  .section-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card:last-child {
    grid-column: span 2;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(149, 184, 200, 0.18);
  }

  .service-card:nth-child(4) {
    border-top: 1px solid rgba(149, 184, 200, 0.18);
  }

  .why-section {
    gap: 56px;
    grid-template-columns: 1fr;
  }

  .quote-section {
    gap: 54px;
    grid-template-columns: 1fr;
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .quote-intro {
    position: relative;
    top: auto;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-row: auto;
  }

  footer small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .brand-name {
    font-size: 14px;
  }

  .site-header .brand-mark {
    flex-basis: 50px;
    height: 50px;
    width: 50px;
  }

  .privacy-page .desktop-nav,
  .privacy-page .mobile-nav {
    display: none;
  }

  .privacy-home-link {
    display: inline-flex;
  }

  .hero {
    gap: 54px;
    min-height: 0;
    padding: 64px 20px 70px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof li,
  .hero-proof li + li {
    border-left: 0;
    min-width: 0;
    padding: 0;
  }

  .signal-stage {
    border-radius: 32% 68% 55% 45% / 45% 37% 63% 55%;
  }

  .signal-core {
    height: 150px;
    width: 150px;
  }

  .signal-core strong {
    font-size: 29px;
  }

  .signal-caption {
    bottom: 5%;
  }

  .intro-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 26px 20px;
  }

  .intro-strip > span {
    display: none;
  }

  .section,
  footer {
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 82px;
    padding-top: 82px;
  }

  .services-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card:last-child {
    grid-column: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-left: 0 !important;
    border-top: 1px solid rgba(149, 184, 200, 0.18);
    min-height: 220px;
  }

  .service-card:first-child {
    border-top: 0;
  }

  .service-card h3 {
    margin-top: 48px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0;
  }

  .process-grid h3 {
    margin-top: 26px;
  }

  .quote-section {
    gap: 38px;
    padding: 68px 20px;
  }

  .contact-signal {
    height: 64px;
    width: 64px;
  }

  .contact-signal span:nth-child(2) {
    inset: 13px;
  }

  .contact-signal span:nth-child(3) {
    inset: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .form-submit-row > p {
    max-width: none;
    text-align: left;
  }

  .privacy-content {
    padding: 76px 20px 86px;
  }

  .privacy-content h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .privacy-lede {
    font-size: 17px;
    margin-bottom: 52px;
  }

  .privacy-content section {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > div {
    flex-wrap: wrap;
  }

  footer small {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .signal-stage {
    animation: signal-float 7s ease-in-out infinite;
  }

  .dot-one {
    animation: signal-pulse 2.4s ease-in-out infinite;
  }

  .dot-two {
    animation: signal-pulse 2.4s 1.2s ease-in-out infinite;
  }
}

@keyframes signal-float {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-10px);
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

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

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

/* Northline Heating & Air portfolio concept */

.project-card-live {
  border-color: rgba(217, 81, 50, 0.44);
  box-shadow: 0 15px 35px rgba(116, 56, 30, 0.08);
}

.project-card-live .project-visual::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  height: 160%;
  left: -80%;
  position: absolute;
  top: -30%;
  transform: rotate(15deg);
  transition: left 600ms ease;
  width: 42%;
}

.project-card-live:hover .project-visual::after {
  left: 145%;
}

.project-open {
  align-items: center;
  background: var(--navy-950);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  transition:
    background 180ms ease,
    transform 180ms ease;
  width: 38px;
}

.project-open:hover {
  background: #d95132;
  transform: rotate(8deg);
}

.project-view-link {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--navy-950);
  display: flex;
  font-size: 12px;
  font-weight: 760;
  justify-content: space-between;
  letter-spacing: 0.02em;
  margin-top: 20px;
  padding-top: 16px;
}

.project-view-link span {
  color: #d95132;
  font-size: 16px;
  transition: transform 180ms ease;
}

.project-view-link:hover span {
  transform: translateX(4px);
}

.northline-site {
  --nl-black: #111517;
  --nl-charcoal: #1a2023;
  --nl-orange: #f06a24;
  --nl-orange-dark: #c94c12;
  --nl-cream: #f3efe6;
  --nl-sand: #d6cabb;
  --nl-cloud: #f7f6f2;
  --nl-line: #d8d8d2;
  --nl-white: #ffffff;
  background: var(--nl-cloud);
  color: var(--nl-black);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.northline-site h1,
.northline-site h2,
.northline-site h3,
.northline-site p {
  margin-top: 0;
}

.nl-concept-bar {
  align-items: center;
  background: var(--nl-black);
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  font-size: 11px;
  font-weight: 650;
  justify-content: space-between;
  letter-spacing: 0.075em;
  min-height: 38px;
  padding: 9px max(24px, calc((100vw - 1240px) / 2));
  text-transform: uppercase;
}

.nl-concept-bar p {
  margin: 0;
}

.nl-concept-bar a {
  color: var(--nl-white);
  transition: color 180ms ease;
}

.nl-concept-bar a:hover {
  color: var(--nl-orange);
}

.nl-concept-bar > a {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.nl-header {
  align-items: center;
  background: rgba(247, 246, 242, 0.94);
  border-bottom: 1px solid rgba(17, 21, 23, 0.12);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 88px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  position: relative;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.nl-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: start;
  text-transform: uppercase;
}

.nl-brand-mark {
  background: var(--nl-black);
  display: inline-block;
  height: 46px;
  overflow: hidden;
  position: relative;
  transform: skew(-7deg);
  width: 46px;
}

.nl-brand-mark::before,
.nl-brand-mark::after,
.nl-brand-mark i {
  background: var(--nl-orange);
  content: "";
  display: block;
  height: 6px;
  left: 8px;
  position: absolute;
  transform: skew(7deg) rotate(-43deg);
  width: 31px;
}

.nl-brand-mark::before {
  top: 11px;
}

.nl-brand-mark i {
  top: 20px;
}

.nl-brand-mark::after {
  top: 29px;
}

.nl-brand > span:last-child {
  color: #51575a;
  display: flex;
  flex-direction: column;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.21em;
  line-height: 1.3;
}

.nl-brand strong {
  color: var(--nl-black);
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

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

.nl-nav a {
  color: #4c5255;
  font-size: 12px;
  font-weight: 680;
  position: relative;
}

.nl-nav a::after {
  background: var(--nl-orange);
  bottom: -11px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nl-nav a:hover::after {
  transform: scaleX(1);
}

.nl-header-cta {
  align-items: center;
  background: var(--nl-orange);
  color: var(--nl-white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 790;
  gap: 20px;
  justify-self: end;
  letter-spacing: 0.02em;
  padding: 14px 17px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nl-header-cta:hover {
  background: var(--nl-black);
  transform: translateY(-2px);
}

.nl-hero {
  min-height: min(780px, calc(100vh - 126px));
  overflow: hidden;
  position: relative;
}

.nl-hero > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.nl-hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 13, 14, 0.92) 0%, rgba(10, 13, 14, 0.72) 35%, rgba(10, 13, 14, 0.08) 69%, rgba(10, 13, 14, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 13, 14, 0.6) 0%, transparent 38%);
  inset: 0;
  position: absolute;
}

.nl-hero-content {
  color: var(--nl-white);
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(88px, 10vw, 140px) 0 72px;
  position: relative;
  z-index: 2;
}

.nl-kicker {
  align-items: center;
  color: var(--nl-orange);
  display: flex;
  font-size: 10px;
  font-weight: 820;
  gap: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.nl-kicker::before {
  background: currentColor;
  content: "";
  height: 2px;
  width: 28px;
}

.nl-hero h1 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
  font-size: clamp(64px, 7.6vw, 112px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.82;
  margin-bottom: 34px;
  max-width: 780px;
  text-transform: uppercase;
}

.nl-hero h1 em {
  color: var(--nl-orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-transform: none;
}

.nl-hero-content > p:not(.nl-kicker) {
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
  max-width: 560px;
}

.nl-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.nl-button {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 820;
  gap: 22px;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 54px;
  padding: 0 22px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

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

.nl-button-primary:hover {
  background: var(--nl-white);
  color: var(--nl-black);
}

.nl-button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--nl-white);
}

.nl-button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.nl-call-dot {
  background: #48d597;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(72, 213, 151, 0.12);
  display: inline-block;
  height: 7px;
  width: 7px;
}

.nl-hero-trust {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 54px 0 0;
  padding: 0;
}

.nl-hero-trust li {
  color: rgba(255, 255, 255, 0.56);
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 4px;
  letter-spacing: 0.06em;
  min-width: 150px;
  padding-right: 28px;
  text-transform: uppercase;
}

.nl-hero-trust li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 28px;
}

.nl-hero-trust strong {
  color: var(--nl-white);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.nl-hero-card {
  background: rgba(17, 21, 23, 0.91);
  bottom: 0;
  color: var(--nl-white);
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 28px 34px;
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  width: 320px;
  z-index: 3;
  backdrop-filter: blur(14px);
}

.nl-hero-card > span {
  color: var(--nl-orange);
  font-size: 9px;
  font-weight: 800;
  grid-column: 1 / -1;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.nl-hero-card strong {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 46px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.nl-hero-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.5;
  margin: 3px 0 0 17px;
  text-transform: uppercase;
}

.nl-hero-card a {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--nl-white);
  font-size: 10px;
  font-weight: 740;
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 15px;
}

.nl-trust-strip {
  align-items: center;
  background: var(--nl-orange);
  color: var(--nl-black);
  display: grid;
  gap: 40px;
  grid-template-columns: 0.7fr 1.3fr;
  padding: 25px max(24px, calc((100vw - 1240px) / 2));
}

.nl-trust-strip > p {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
}

.nl-trust-strip ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nl-trust-strip li {
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.045em;
  position: relative;
  text-transform: uppercase;
}

.nl-trust-strip li::before {
  content: "✓";
  font-size: 11px;
  font-weight: 900;
  margin-right: 8px;
}

.nl-section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 120px 0;
}

.nl-section-heading {
  align-items: end;
  display: grid;
  gap: 72px;
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 54px;
}

.nl-section-heading h2,
.nl-story-copy h2,
.nl-estimate-copy h2 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

.nl-section-heading > p {
  color: #62686a;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  max-width: 530px;
}

.nl-service-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nl-service-grid article {
  background: var(--nl-white);
  border: 1px solid #deddd7;
  min-height: 350px;
  padding: 28px;
  position: relative;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.nl-service-grid article:hover {
  background: var(--nl-cream);
  border-color: var(--nl-orange);
  transform: translateY(-6px);
}

.nl-service-grid article > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.nl-service-grid article > div > span {
  color: var(--nl-orange);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.nl-service-grid article small {
  color: #7b8082;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nl-service-grid h3 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
  font-size: 30px;
  font-weight: 810;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 78px 0 18px;
  text-transform: uppercase;
}

.nl-service-grid article > p {
  color: #686e70;
  font-size: 13px;
  line-height: 1.7;
}

.nl-service-grid article > a {
  align-items: center;
  bottom: 26px;
  color: var(--nl-black);
  display: flex;
  font-size: 10px;
  font-weight: 760;
  justify-content: space-between;
  left: 28px;
  letter-spacing: 0.04em;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
}

.nl-service-grid article > a span {
  color: var(--nl-orange);
  font-size: 16px;
}

.nl-story-section {
  background: var(--nl-black);
  color: var(--nl-white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 820px;
}

.nl-story-image {
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.nl-story-image > img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.nl-story-image::after {
  background: linear-gradient(0deg, rgba(17, 21, 23, 0.66), transparent 46%);
  content: "";
  inset: 0;
  position: absolute;
}

.nl-image-note {
  border-left: 3px solid var(--nl-orange);
  bottom: 54px;
  left: max(32px, calc((100vw - 1240px) / 2));
  max-width: 330px;
  padding-left: 22px;
  position: absolute;
  z-index: 2;
}

.nl-image-note span {
  color: var(--nl-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nl-image-note strong {
  display: block;
  font-size: 24px;
  margin: 7px 0 4px;
}

.nl-image-note p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.nl-story-copy {
  align-self: center;
  max-width: 680px;
  padding: 92px clamp(48px, 7vw, 110px);
}

.nl-story-copy h2 {
  color: var(--nl-white);
  margin-bottom: 30px;
}

.nl-story-lede {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 42px;
}

.nl-principle-list article {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 22px;
  grid-template-columns: 38px 1fr;
  padding: 22px 0;
}

.nl-principle-list article > span {
  color: var(--nl-orange);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.nl-principle-list h3 {
  font-size: 14px;
  margin-bottom: 7px;
}

.nl-principle-list p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
}

.nl-proof-section {
  background: var(--nl-cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nl-proof-quote {
  align-self: center;
  justify-self: end;
  max-width: 620px;
  padding: 100px clamp(48px, 6vw, 96px) 100px 24px;
}

.nl-proof-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.4vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0 0 28px;
}

.nl-proof-quote > p:last-child {
  color: #66645f;
  font-size: 14px;
  line-height: 1.7;
  max-width: 440px;
}

.nl-proof-photo {
  min-height: 570px;
  overflow: hidden;
  position: relative;
}

.nl-proof-photo img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.nl-proof-photo span {
  background: var(--nl-orange);
  bottom: 0;
  color: var(--nl-black);
  font-size: 10px;
  font-weight: 820;
  left: 0;
  letter-spacing: 0.14em;
  padding: 16px 22px;
  position: absolute;
  text-transform: uppercase;
}

.nl-process {
  background:
    linear-gradient(rgba(17, 21, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 23, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1240px) / 2));
  padding-right: max(24px, calc((100vw - 1240px) / 2));
}

.nl-process .nl-section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
}

.nl-process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}

.nl-process-grid article {
  border-top: 3px solid var(--nl-black);
  padding: 32px 40px 0 0;
  position: relative;
}

.nl-process-grid article + article {
  border-left: 1px solid var(--nl-line);
  padding-left: 40px;
}

.nl-process-grid article::before {
  background: var(--nl-orange);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: -3px;
  width: 68px;
}

.nl-process-grid article > span {
  color: var(--nl-orange);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.nl-process-grid h3 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
  margin: 44px 0 13px;
  text-transform: uppercase;
}

.nl-process-grid p {
  color: #676d6f;
  font-size: 13px;
  line-height: 1.72;
}

.nl-estimate-section {
  background: var(--nl-charcoal);
  color: var(--nl-white);
  display: grid;
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: 0.78fr 1.22fr;
  padding: 120px max(24px, calc((100vw - 1240px) / 2));
}

.nl-estimate-copy {
  align-self: start;
  padding-top: 14px;
  position: sticky;
  top: 30px;
}

.nl-estimate-copy h2 {
  color: var(--nl-white);
  margin-bottom: 26px;
}

.nl-estimate-copy > p:not(.nl-kicker) {
  color: rgba(255, 255, 255, 0.61);
  font-size: 15px;
  line-height: 1.75;
}

.nl-estimate-copy > ul {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.nl-estimate-copy > ul li {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  font-size: 12px;
  gap: 18px;
  grid-template-columns: 30px 1fr;
  padding: 17px 0;
}

.nl-estimate-copy > ul span {
  color: var(--nl-orange);
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
}

.nl-emergency-card {
  align-items: center;
  background: var(--nl-black);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  margin-top: 34px;
  padding: 20px;
}

.nl-emergency-card small {
  color: rgba(255, 255, 255, 0.45);
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.nl-emergency-card a {
  color: var(--nl-white);
  font-size: 15px;
  font-weight: 760;
}

.nl-emergency-card > span:last-child {
  color: var(--nl-orange);
}

.nl-estimate-form,
.nl-estimate-success {
  background: var(--nl-cloud);
  color: var(--nl-black);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(30px, 5vw, 58px);
}

.nl-form-heading {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.nl-form-heading .nl-kicker {
  margin-bottom: 12px;
}

.nl-form-heading h3 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
  font-size: 36px;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.nl-form-heading > p:last-child {
  color: #666d6f;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 0;
}

.nl-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nl-field-wide {
  grid-column: 1 / -1;
}

.nl-field label {
  color: #373d3f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nl-field input,
.nl-field select,
.nl-field textarea {
  appearance: none;
  background: var(--nl-white);
  border: 1px solid #d9d9d4;
  border-radius: 0;
  color: var(--nl-black);
  font: inherit;
  font-size: 13px;
  outline: none;
  padding: 15px 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
  width: 100%;
}

.nl-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7072 50%),
    linear-gradient(135deg, #6b7072 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.nl-field textarea {
  min-height: 105px;
  resize: vertical;
}

.nl-field input:focus,
.nl-field select:focus,
.nl-field textarea:focus {
  border-color: var(--nl-orange);
  box-shadow: 0 0 0 3px rgba(240, 106, 36, 0.13);
}

.nl-form-submit {
  align-items: center;
  background: var(--nl-orange);
  border: 0;
  color: var(--nl-white);
  cursor: pointer;
  display: flex;
  font-size: 11px;
  font-weight: 820;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.07em;
  min-height: 58px;
  padding: 0 20px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nl-form-submit:hover {
  background: var(--nl-black);
  transform: translateY(-2px);
}

.nl-form-note {
  color: #777c7e;
  font-size: 9px;
  grid-column: 1 / -1;
  line-height: 1.6;
}

.nl-estimate-success {
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}

.nl-success-mark {
  align-items: center;
  background: var(--nl-orange);
  color: var(--nl-white);
  display: flex;
  font-size: 24px;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  width: 58px;
}

.nl-estimate-success .nl-kicker {
  margin-bottom: 0;
}

.nl-estimate-success h3 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
  font-size: 44px;
  letter-spacing: -0.05em;
  margin: 4px 0 12px;
  text-transform: uppercase;
}

.nl-estimate-success > p:not(.nl-kicker) {
  color: #616769;
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
}

.nl-estimate-success button {
  align-self: flex-start;
  background: var(--nl-black);
  border: 0;
  color: var(--nl-white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: 16px;
  padding: 16px 18px;
  text-transform: uppercase;
}

.nl-estimate-success small {
  color: #7a7f80;
  font-size: 9px;
  margin-top: 20px;
}

.northline-site .nl-footer {
  align-items: start;
  background: var(--nl-black);
  color: var(--nl-white);
  display: grid;
  gap: 52px;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1.25fr;
  margin: 0;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1240px) / 2)) 32px;
}

.northline-site .nl-footer > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.nl-footer .nl-brand {
  align-self: flex-start;
}

.nl-footer .nl-brand-mark {
  background: var(--nl-white);
}

.nl-footer .nl-brand > span:last-child,
.nl-footer .nl-brand strong {
  color: var(--nl-white);
}

.nl-footer-brand > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 320px;
}

.northline-site .nl-footer > div > p {
  color: var(--nl-orange);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.northline-site .nl-footer > div > a,
.northline-site .nl-footer > div > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.6;
}

.northline-site .nl-footer > div > a:hover {
  color: var(--nl-white);
}

.northline-site .nl-footer .nl-footer-concept {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 30px;
}

.northline-site .nl-footer .nl-footer-concept > a {
  color: var(--nl-white);
  font-weight: 760;
  margin-top: 6px;
}

.northline-site .nl-footer > small {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  grid-column: 1 / -1;
  padding-top: 24px;
}

.nl-mobile-call {
  display: none;
}

/* Oak & Acre lawn + landscape concept */

.oak-site {
  --oa-juniper: #173f35;
  --oa-juniper-dark: #0d2f27;
  --oa-clay: #b84f31;
  --oa-clay-dark: #943c24;
  --oa-gold: #c2a45d;
  --oa-cream: #f3ebdd;
  --oa-paper: #faf7f0;
  --oa-ink: #22241f;
  --oa-sage: #879984;
  --oa-line: #d8cdb9;
  background: var(--oa-paper);
  color: var(--oa-ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.oak-site [hidden] {
  display: none !important;
}

.oak-site h1,
.oak-site h2,
.oak-site h3,
.oak-site p {
  margin-top: 0;
}

.oa-concept-bar {
  align-items: center;
  background: var(--oa-juniper-dark);
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  font-size: 10px;
  font-weight: 650;
  justify-content: space-between;
  letter-spacing: 0.14em;
  min-height: 38px;
  padding: 9px max(24px, calc((100vw - 1320px) / 2));
  text-transform: uppercase;
}

.oa-concept-bar p {
  margin: 0;
}

.oa-concept-bar a {
  color: var(--oa-cream);
  transition: color 180ms ease;
}

.oa-concept-bar a:hover {
  color: var(--oa-gold);
}

.oa-concept-bar > a {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}

.oa-header {
  align-items: center;
  background: rgba(250, 247, 240, 0.95);
  border-bottom: 1px solid rgba(194, 164, 93, 0.4);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 108px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  position: relative;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.oa-brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  justify-self: start;
}

.oa-brand-mark {
  align-items: center;
  border: 1px solid var(--oa-gold);
  border-radius: 50%;
  color: var(--oa-juniper);
  display: inline-flex;
  flex: 0 0 54px;
  height: 54px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 54px;
}

.oa-brand-mark::before,
.oa-brand-mark::after {
  border: 1px solid rgba(23, 63, 53, 0.3);
  border-radius: 50%;
  content: "";
  height: 44px;
  left: -13px;
  position: absolute;
  width: 66px;
}

.oa-brand-mark::before {
  bottom: -27px;
}

.oa-brand-mark::after {
  bottom: -21px;
}

.oa-brand-mark i {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  position: relative;
  top: -3px;
  z-index: 1;
}

.oa-brand > span:last-child {
  color: var(--oa-juniper);
  display: flex;
  flex-direction: column;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.28em;
  line-height: 1.55;
  text-transform: uppercase;
}

.oa-brand strong {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
}

.oa-nav {
  align-items: center;
  display: flex;
  gap: 48px;
}

.oa-nav a {
  color: var(--oa-juniper-dark);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  position: relative;
  text-transform: uppercase;
}

.oa-nav a::after {
  background: var(--oa-clay);
  bottom: -12px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.oa-nav a:hover::after {
  transform: scaleX(1);
}

.oa-header-cta {
  background: var(--oa-clay);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  justify-self: end;
  letter-spacing: 0.12em;
  padding: 17px 21px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.oa-header-cta:hover {
  background: var(--oa-juniper);
  transform: translateY(-2px);
}

.oa-hero {
  background:
    radial-gradient(circle at 16% 70%, rgba(194, 164, 93, 0.13), transparent 22%),
    repeating-radial-gradient(ellipse at -8% 104%, transparent 0 34px, rgba(23, 63, 53, 0.045) 35px 36px),
    var(--oa-cream);
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
  min-height: min(770px, calc(100vh - 146px));
  padding: 16px max(18px, calc((100vw - 1420px) / 2)) 18px;
}

.oa-hero-copy {
  align-self: center;
  max-width: 650px;
  padding: 66px clamp(40px, 5.5vw, 86px) 58px 56px;
}

.oa-kicker {
  color: var(--oa-clay);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.22em;
  margin-bottom: 23px;
  text-transform: uppercase;
}

.oa-hero h1 {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 5.8vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin-bottom: 22px;
}

.oa-flourish {
  align-items: center;
  color: var(--oa-gold);
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 360px;
}

.oa-flourish span {
  background: currentColor;
  display: block;
  height: 1px;
  width: 100%;
}

.oa-flourish i {
  font-size: 7px;
  font-style: normal;
}

.oa-hero-lede {
  color: #555b53;
  font-size: 17px;
  line-height: 1.75;
  max-width: 560px;
}

.oa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.oa-button {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 820;
  gap: 24px;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 56px;
  padding: 0 21px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

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

.oa-button-primary:hover {
  background: var(--oa-juniper);
}

.oa-button-secondary {
  border: 1px solid var(--oa-clay);
  color: var(--oa-clay);
}

.oa-button-secondary:hover {
  background: var(--oa-clay);
  color: #fff;
}

.oa-hero-trust {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
}

.oa-hero-trust li {
  align-items: center;
  color: var(--oa-juniper);
  display: flex;
  font-size: 9px;
  font-weight: 720;
  gap: 8px;
  letter-spacing: 0.04em;
  padding-right: 18px;
  white-space: nowrap;
}

.oa-hero-trust li + li {
  border-left: 1px solid var(--oa-line);
  padding-left: 18px;
}

.oa-hero-trust span {
  align-items: center;
  border: 1px solid var(--oa-gold);
  border-radius: 50%;
  display: inline-flex;
  font-size: 9px;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.oa-hero-image {
  border: 1px solid rgba(194, 164, 93, 0.85);
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.oa-hero-image::before,
.oa-hero-image::after {
  background: var(--oa-cream);
  border: 1px solid var(--oa-gold);
  border-radius: 50%;
  content: "";
  height: 58px;
  position: absolute;
  width: 58px;
  z-index: 2;
}

.oa-hero-image::before {
  left: -31px;
  top: -31px;
}

.oa-hero-image::after {
  bottom: -31px;
  right: -31px;
}

.oa-hero-image > img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 700ms ease;
  width: 100%;
}

.oa-hero-image:hover > img {
  transform: scale(1.015);
}

.oa-image-label {
  background: rgba(13, 47, 39, 0.92);
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  left: 0;
  padding: 17px 22px;
  position: absolute;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.oa-image-label small {
  color: var(--oa-gold);
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oa-image-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
}

.oa-trust-ribbon {
  align-items: center;
  background: var(--oa-juniper);
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.7fr 1.3fr;
  padding: 26px max(24px, calc((100vw - 1320px) / 2));
}

.oa-trust-ribbon > p {
  color: var(--oa-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  margin: 0;
}

.oa-trust-ribbon ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oa-trust-ribbon li {
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oa-trust-ribbon li::before {
  color: var(--oa-gold);
  content: "◆";
  font-size: 5px;
  margin-right: 10px;
  vertical-align: middle;
}

.oa-section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 120px 0;
}

.oa-section-heading {
  align-items: end;
  display: grid;
  gap: 76px;
  grid-template-columns: 1.12fr 0.88fr;
  margin-bottom: 56px;
}

.oa-section-heading h2,
.oa-standard-copy h2,
.oa-estimate-copy h2 {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.9vw, 70px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0;
}

.oa-section-heading > p {
  color: #656b63;
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 0;
}

.oa-service-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oa-service-grid article {
  background: #fffdf8;
  border: 1px solid var(--oa-line);
  min-height: 365px;
  padding: 28px;
  position: relative;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.oa-service-grid article:hover {
  background: var(--oa-cream);
  border-color: var(--oa-gold);
  transform: translateY(-6px);
}

.oa-service-number {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.oa-service-number > span {
  color: var(--oa-clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.oa-service-number small {
  color: #7f806f;
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oa-service-grid h3 {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin: 76px 0 18px;
}

.oa-service-grid article > p {
  color: #696c64;
  font-size: 13px;
  line-height: 1.72;
}

.oa-service-grid article > a {
  align-items: center;
  bottom: 26px;
  color: var(--oa-juniper);
  display: flex;
  font-size: 9px;
  font-weight: 800;
  justify-content: space-between;
  left: 28px;
  letter-spacing: 0.08em;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
}

.oa-service-grid article > a span {
  color: var(--oa-clay);
  font-size: 15px;
}

.oa-standard {
  background: var(--oa-juniper-dark);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 820px;
}

.oa-standard-image {
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.oa-standard-image > img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.oa-standard-image::after {
  background: linear-gradient(0deg, rgba(13, 47, 39, 0.72), transparent 48%);
  content: "";
  inset: 0;
  position: absolute;
}

.oa-craft-note {
  border-left: 1px solid var(--oa-gold);
  bottom: 52px;
  left: max(32px, calc((100vw - 1240px) / 2));
  max-width: 330px;
  padding: 2px 0 2px 23px;
  position: absolute;
  z-index: 2;
}

.oa-craft-note span {
  color: var(--oa-gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oa-craft-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  margin: 8px 0 5px;
}

.oa-craft-note p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.oa-standard-copy {
  align-self: center;
  background:
    repeating-radial-gradient(ellipse at 116% 108%, transparent 0 38px, rgba(194, 164, 93, 0.07) 39px 40px);
  max-width: 720px;
  padding: 92px clamp(48px, 7vw, 112px);
}

.oa-standard-copy .oa-kicker {
  color: var(--oa-gold);
}

.oa-standard-copy h2 {
  color: #fff;
  margin-bottom: 28px;
}

.oa-standard-lede {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 42px;
}

.oa-principles article {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 22px;
  grid-template-columns: 38px 1fr;
  padding: 22px 0;
}

.oa-principles article > span {
  color: var(--oa-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.oa-principles h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 7px;
}

.oa-principles p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 0;
}

.oa-project-section {
  background: var(--oa-cream);
  padding: 120px max(24px, calc((100vw - 1320px) / 2));
}

.oa-project-heading {
  margin: 0 auto 54px;
  max-width: 900px;
  text-align: center;
}

.oa-project-heading .oa-kicker {
  justify-content: center;
}

.oa-project-heading h2 {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin-bottom: 24px;
}

.oa-project-heading > p:last-child {
  color: #666a62;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 680px;
}

.oa-project-image {
  border: 1px solid var(--oa-gold);
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.oa-project-image > img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.oa-project-image::after {
  background: linear-gradient(90deg, rgba(13, 47, 39, 0.12), transparent 46%);
  content: "";
  inset: 0;
  position: absolute;
}

.oa-project-card {
  background: rgba(250, 247, 240, 0.95);
  bottom: 30px;
  left: 30px;
  padding: 30px;
  position: absolute;
  width: min(390px, calc(100% - 60px));
  z-index: 2;
  backdrop-filter: blur(12px);
}

.oa-project-card small {
  color: var(--oa-clay);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oa-project-card h3 {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 10px 0 23px;
}

.oa-project-card ul {
  border-top: 1px solid var(--oa-line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.oa-project-card li {
  border-bottom: 1px solid var(--oa-line);
  color: #5e635b;
  font-size: 11px;
  padding: 11px 0;
}

.oa-project-card li span {
  color: var(--oa-clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  font-style: italic;
  margin-right: 12px;
}

.oa-project-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.oa-project-results article {
  background: var(--oa-paper);
  border: 1px solid var(--oa-line);
  border-top: 0;
  padding: 28px;
}

.oa-project-results article + article {
  border-left: 0;
}

.oa-project-results span {
  color: var(--oa-clay);
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.oa-project-results strong {
  color: var(--oa-juniper-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.oa-project-results p {
  color: #70736c;
  font-size: 12px;
  line-height: 1.65;
  margin: 9px 0 0;
}

.oa-quote-band {
  background:
    linear-gradient(rgba(184, 79, 49, 0.96), rgba(184, 79, 49, 0.96)),
    repeating-radial-gradient(circle at center, transparent 0 54px, rgba(255, 255, 255, 0.12) 55px 56px);
  color: #fff;
  padding: 108px 24px;
  text-align: center;
}

.oa-quote-band .oa-kicker {
  color: var(--oa-cream);
}

.oa-quote-band blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.07;
  margin: 0 auto 26px;
  max-width: 1050px;
}

.oa-quote-band > p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 520px;
}

.oa-process {
  background:
    repeating-radial-gradient(ellipse at 102% 110%, transparent 0 42px, rgba(23, 63, 53, 0.04) 43px 44px),
    var(--oa-paper);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1240px) / 2));
  padding-right: max(24px, calc((100vw - 1240px) / 2));
}

.oa-process .oa-section-heading,
.oa-process-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
}

.oa-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.oa-process-grid article {
  border-top: 1px solid var(--oa-gold);
  padding: 32px 40px 0 0;
  position: relative;
}

.oa-process-grid article + article {
  border-left: 1px solid var(--oa-line);
  padding-left: 40px;
}

.oa-process-grid article::before {
  background: var(--oa-clay);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: -2px;
  width: 64px;
}

.oa-process-grid article > span {
  color: var(--oa-clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.oa-process-grid h3 {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 42px 0 13px;
}

.oa-process-grid p {
  color: #686d65;
  font-size: 13px;
  line-height: 1.72;
}

.oa-estimate-section {
  background: var(--oa-juniper-dark);
  color: #fff;
  display: grid;
  gap: clamp(54px, 8vw, 118px);
  grid-template-columns: 0.78fr 1.22fr;
  padding: 120px max(24px, calc((100vw - 1240px) / 2));
}

.oa-estimate-copy {
  align-self: start;
  padding-top: 14px;
  position: sticky;
  top: 30px;
}

.oa-estimate-copy .oa-kicker {
  color: var(--oa-gold);
}

.oa-estimate-copy h2 {
  color: #fff;
  margin-bottom: 26px;
}

.oa-estimate-copy > p:not(.oa-kicker) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.78;
}

.oa-estimate-copy > ul {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.oa-estimate-copy > ul li {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  font-size: 12px;
  gap: 18px;
  grid-template-columns: 30px 1fr;
  padding: 17px 0;
}

.oa-estimate-copy > ul span {
  color: var(--oa-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-style: italic;
}

.oa-contact-card {
  border: 1px solid rgba(194, 164, 93, 0.55);
  display: flex;
  flex-direction: column;
  margin-top: 34px;
  padding: 20px;
}

.oa-contact-card small {
  color: var(--oa-gold);
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.oa-contact-card a {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.oa-contact-card span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  margin-top: 5px;
}

.oa-estimate-form,
.oa-estimate-success {
  background: var(--oa-paper);
  color: var(--oa-ink);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(30px, 5vw, 58px);
}

.oa-form-heading {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.oa-form-heading .oa-kicker {
  margin-bottom: 12px;
}

.oa-form-heading h3 {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.oa-form-heading > p:last-child {
  color: #696d65;
  font-size: 13px;
  line-height: 1.67;
  margin-bottom: 0;
}

.oa-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oa-field-wide {
  grid-column: 1 / -1;
}

.oa-field label {
  color: var(--oa-juniper);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.oa-field input,
.oa-field select,
.oa-field textarea {
  appearance: none;
  background: #fff;
  border: 1px solid var(--oa-line);
  border-radius: 0;
  color: var(--oa-ink);
  font: inherit;
  font-size: 13px;
  outline: none;
  padding: 15px 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
  width: 100%;
}

.oa-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, #687268 50%),
    linear-gradient(135deg, #687268 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.oa-field textarea {
  min-height: 112px;
  resize: vertical;
}

.oa-field input:focus,
.oa-field select:focus,
.oa-field textarea:focus {
  border-color: var(--oa-clay);
  box-shadow: 0 0 0 3px rgba(184, 79, 49, 0.13);
}

.oa-form-submit {
  align-items: center;
  background: var(--oa-clay);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 10px;
  font-weight: 820;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.1em;
  min-height: 58px;
  padding: 0 20px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.oa-form-submit:hover {
  background: var(--oa-juniper);
  transform: translateY(-2px);
}

.oa-form-note {
  color: #777b73;
  font-size: 9px;
  grid-column: 1 / -1;
  line-height: 1.6;
}

.oa-estimate-success {
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 670px;
}

.oa-success-mark {
  align-items: center;
  background: var(--oa-clay);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 24px;
  height: 58px;
  justify-content: center;
  margin-bottom: 20px;
  width: 58px;
}

.oa-estimate-success .oa-kicker {
  margin-bottom: 0;
}

.oa-estimate-success h3 {
  color: var(--oa-juniper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.045em;
  margin: 7px 0 14px;
}

.oa-estimate-success > p:not(.oa-kicker) {
  color: #636860;
  font-size: 14px;
  line-height: 1.72;
  max-width: 520px;
}

.oa-estimate-success button {
  align-self: flex-start;
  background: var(--oa-juniper);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 16px;
  padding: 16px 18px;
  text-transform: uppercase;
}

.oa-estimate-success small {
  color: #7a7e76;
  font-size: 9px;
  margin-top: 20px;
}

.oak-site .oa-footer {
  align-items: start;
  background: #092720;
  color: #fff;
  display: grid;
  gap: 52px;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1.25fr;
  margin: 0;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1240px) / 2)) 32px;
}

.oak-site .oa-footer > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.oa-footer .oa-brand {
  align-self: flex-start;
}

.oa-footer .oa-brand-mark {
  border-color: var(--oa-gold);
  color: var(--oa-gold);
}

.oa-footer .oa-brand-mark::before,
.oa-footer .oa-brand-mark::after {
  border-color: rgba(194, 164, 93, 0.36);
}

.oa-footer .oa-brand > span:last-child,
.oa-footer .oa-brand strong {
  color: #fff;
}

.oa-footer-brand > p {
  color: rgba(255, 255, 255, 0.49);
  font-size: 12px;
  line-height: 1.72;
  margin: 20px 0 0;
  max-width: 330px;
}

.oak-site .oa-footer > div > p {
  color: var(--oa-gold);
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.16em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.oak-site .oa-footer > div > a,
.oak-site .oa-footer > div > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.65;
}

.oak-site .oa-footer > div > a:hover {
  color: #fff;
}

.oak-site .oa-footer .oa-footer-concept {
  border-left: 1px solid rgba(194, 164, 93, 0.28);
  padding-left: 30px;
}

.oak-site .oa-footer .oa-footer-concept > a {
  color: #fff;
  font-weight: 760;
  margin-top: 6px;
}

.oak-site .oa-footer > small {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  grid-column: 1 / -1;
  padding-top: 24px;
}

.oa-mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .oa-header {
    grid-template-columns: 1fr auto;
  }

  .oa-nav {
    display: none;
  }

  .oa-hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .oa-hero-copy {
    padding-left: 32px;
    padding-right: 42px;
  }

  .oa-hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .oa-hero-trust li,
  .oa-hero-trust li + li {
    border: 0;
    padding: 0;
  }

  .oa-trust-ribbon {
    grid-template-columns: 1fr;
  }

  .oa-trust-ribbon ul {
    flex-wrap: wrap;
    gap: 12px 28px;
    justify-content: flex-start;
  }

  .oa-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .oa-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .oa-standard {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .oa-standard-copy {
    padding-left: 48px;
    padding-right: 48px;
  }

  .oa-estimate-section {
    gap: 60px;
    grid-template-columns: 0.9fr 1.1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .oak-site .oa-footer {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .oak-site .oa-footer .oa-footer-concept {
    border-left: 0;
    border-top: 1px solid rgba(194, 164, 93, 0.28);
    grid-column: 1 / -1;
    padding: 28px 0 0;
  }
}

@media (max-width: 760px) {
  .oa-concept-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 10px 20px;
  }

  .oa-header {
    min-height: 80px;
    padding: 0 20px;
  }

  .oa-header-cta {
    display: none;
  }

  .oa-brand-mark {
    flex-basis: 44px;
    height: 44px;
    width: 44px;
  }

  .oa-brand strong {
    font-size: 20px;
  }

  .oa-hero {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .oa-hero-copy {
    max-width: none;
    padding: 72px 20px 60px;
  }

  .oa-hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .oa-hero-lede {
    font-size: 15px;
  }

  .oa-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .oa-button {
    justify-content: space-between;
    width: 100%;
  }

  .oa-hero-trust {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .oa-hero-image {
    border-left: 0;
    border-right: 0;
    min-height: 470px;
  }

  .oa-hero-image > img {
    object-position: 68% center;
  }

  .oa-trust-ribbon {
    gap: 18px;
    padding: 24px 20px;
  }

  .oa-trust-ribbon ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .oa-section {
    padding: 82px 20px;
  }

  .oa-section-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 38px;
  }

  .oa-section-heading h2,
  .oa-standard-copy h2,
  .oa-estimate-copy h2 {
    font-size: clamp(40px, 12.6vw, 56px);
  }

  .oa-service-grid {
    grid-template-columns: 1fr;
  }

  .oa-service-grid article {
    min-height: 320px;
  }

  .oa-standard {
    grid-template-columns: 1fr;
  }

  .oa-standard-image {
    min-height: 530px;
  }

  .oa-standard-image > img {
    object-position: 58% center;
  }

  .oa-craft-note {
    bottom: 32px;
    left: 20px;
    right: 20px;
  }

  .oa-standard-copy {
    padding: 78px 20px;
  }

  .oa-project-section {
    padding: 82px 20px;
  }

  .oa-project-heading {
    text-align: left;
  }

  .oa-project-heading h2 {
    font-size: clamp(42px, 12.8vw, 58px);
  }

  .oa-project-image {
    min-height: 560px;
  }

  .oa-project-image > img {
    object-position: 60% center;
  }

  .oa-project-card {
    bottom: 16px;
    left: 16px;
    padding: 24px;
    width: calc(100% - 32px);
  }

  .oa-project-results {
    grid-template-columns: 1fr;
  }

  .oa-project-results article + article {
    border-left: 1px solid var(--oa-line);
  }

  .oa-quote-band {
    padding: 82px 20px;
    text-align: left;
  }

  .oa-process {
    padding-left: 20px;
    padding-right: 20px;
  }

  .oa-process-grid {
    grid-template-columns: 1fr;
  }

  .oa-process-grid article,
  .oa-process-grid article + article {
    border-left: 0;
    padding: 30px 0;
  }

  .oa-process-grid article + article {
    margin-top: 18px;
  }

  .oa-process-grid h3 {
    margin-top: 32px;
  }

  .oa-estimate-section {
    gap: 54px;
    grid-template-columns: 1fr;
    padding: 82px 20px 108px;
  }

  .oa-estimate-copy {
    position: static;
  }

  .oa-estimate-form,
  .oa-estimate-success {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .oa-field-wide,
  .oa-form-heading,
  .oa-form-submit,
  .oa-form-note {
    grid-column: auto;
  }

  .oa-estimate-success {
    min-height: 540px;
  }

  .oak-site .oa-footer {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
    padding: 64px 20px 100px;
  }

  .oa-footer-brand,
  .oak-site .oa-footer .oa-footer-concept {
    grid-column: 1 / -1;
  }

  .oa-mobile-cta {
    align-items: center;
    background: var(--oa-clay);
    bottom: 14px;
    box-shadow: 0 12px 30px rgba(13, 47, 39, 0.3);
    color: #fff;
    display: flex;
    font-size: 10px;
    font-weight: 820;
    justify-content: space-between;
    left: 14px;
    letter-spacing: 0.1em;
    padding: 17px 20px;
    position: fixed;
    right: 14px;
    text-transform: uppercase;
    z-index: 50;
  }
}

@media (max-width: 1100px) {
  .nl-header {
    grid-template-columns: 1fr auto;
  }

  .nl-nav {
    display: none;
  }

  .nl-hero-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nl-hero-card {
    right: 40px;
  }

  .nl-trust-strip {
    grid-template-columns: 1fr;
  }

  .nl-trust-strip ul {
    gap: 20px 30px;
    flex-wrap: wrap;
  }

  .nl-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nl-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nl-story-section {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .nl-story-copy {
    padding-left: 48px;
    padding-right: 48px;
  }

  .nl-estimate-section {
    gap: 60px;
    grid-template-columns: 0.9fr 1.1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .northline-site .nl-footer {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .northline-site .nl-footer .nl-footer-concept {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    grid-column: 1 / -1;
    padding: 28px 0 0;
  }
}

@media (max-width: 760px) {
  .nl-concept-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 10px 20px;
  }

  .nl-header {
    min-height: 74px;
    padding: 0 20px;
  }

  .nl-header-cta {
    display: none;
  }

  .nl-brand-mark {
    height: 40px;
    width: 40px;
  }

  .nl-brand-mark::before,
  .nl-brand-mark::after,
  .nl-brand-mark i {
    left: 7px;
    width: 27px;
  }

  .nl-brand-mark::before {
    top: 9px;
  }

  .nl-brand-mark i {
    top: 17px;
  }

  .nl-brand-mark::after {
    top: 25px;
  }

  .nl-brand strong {
    font-size: 19px;
  }

  .nl-hero {
    min-height: 760px;
  }

  .nl-hero > img {
    object-position: 62% center;
  }

  .nl-hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 13, 14, 0.9), rgba(10, 13, 14, 0.26)),
      linear-gradient(0deg, rgba(10, 13, 14, 0.88) 0%, rgba(10, 13, 14, 0.2) 60%);
  }

  .nl-hero-content {
    padding: 90px 20px 210px;
  }

  .nl-hero h1 {
    font-size: clamp(58px, 20vw, 82px);
    line-height: 0.86;
  }

  .nl-hero-content > p:not(.nl-kicker) {
    font-size: 15px;
    max-width: 360px;
  }

  .nl-hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 340px;
  }

  .nl-hero-trust {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
  }

  .nl-hero-trust li,
  .nl-hero-trust li + li {
    border-left: 0;
    min-width: 0;
    padding: 0;
  }

  .nl-hero-card {
    bottom: 0;
    left: 20px;
    right: 20px;
    width: auto;
  }

  .nl-trust-strip {
    gap: 18px;
    padding: 22px 20px;
  }

  .nl-trust-strip ul {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .nl-section {
    padding: 82px 20px;
  }

  .nl-section-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 38px;
  }

  .nl-section-heading h2,
  .nl-story-copy h2,
  .nl-estimate-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .nl-service-grid {
    grid-template-columns: 1fr;
  }

  .nl-service-grid article {
    min-height: 310px;
  }

  .nl-story-section {
    grid-template-columns: 1fr;
  }

  .nl-story-image {
    min-height: 540px;
  }

  .nl-story-image > img {
    object-position: 58% center;
  }

  .nl-image-note {
    bottom: 34px;
    left: 20px;
    right: 20px;
  }

  .nl-story-copy {
    padding: 78px 20px;
  }

  .nl-proof-section {
    grid-template-columns: 1fr;
  }

  .nl-proof-quote {
    padding: 80px 20px;
  }

  .nl-proof-photo {
    min-height: 430px;
  }

  .nl-process {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nl-process-grid {
    grid-template-columns: 1fr;
  }

  .nl-process-grid article,
  .nl-process-grid article + article {
    border-left: 0;
    padding: 30px 0;
  }

  .nl-process-grid article + article {
    margin-top: 18px;
  }

  .nl-process-grid h3 {
    margin-top: 32px;
  }

  .nl-estimate-section {
    gap: 54px;
    grid-template-columns: 1fr;
    padding: 82px 20px 100px;
  }

  .nl-estimate-copy {
    position: static;
  }

  .nl-estimate-form,
  .nl-estimate-success {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .nl-field-wide,
  .nl-form-heading,
  .nl-form-submit,
  .nl-form-note {
    grid-column: auto;
  }

  .nl-estimate-success {
    min-height: 520px;
  }

  .northline-site .nl-footer {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
    padding: 64px 20px 94px;
  }

  .nl-footer-brand,
  .northline-site .nl-footer .nl-footer-concept {
    grid-column: 1 / -1;
  }

  .nl-mobile-call {
    align-items: center;
    background: var(--nl-orange);
    bottom: 14px;
    box-shadow: 0 12px 30px rgba(17, 21, 23, 0.28);
    color: var(--nl-white);
    display: flex;
    font-size: 11px;
    font-weight: 820;
    justify-content: space-between;
    left: 14px;
    letter-spacing: 0.08em;
    padding: 17px 20px;
    position: fixed;
    right: 14px;
    text-transform: uppercase;
    z-index: 50;
  }
}
