:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Courier, monospace;
  --navy: #0b2a3b;
  --navy-deep: #071f2d;
  --navy-soft: #153747;
  --cream: #f7f3eb;
  --paper: #fcfaf6;
  --warm: #eee9df;
  --sage: #9ba687;
  --sage-light: #dfe3d0;
  --sage-pale: #e9eadc;
  --slate: #7891a0;
  --ink: #0c2939;
  --muted: #53646b;
  --line: #c9cec5;
  --white: #fffdf8;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-page {
  min-height: 100vh;
  padding: 72px 0;
  background: var(--cream);
}

.legal-page article {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.legal-page h1 {
  color: var(--navy);
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-page h2 {
  margin-top: 38px;
  font-size: 1.5rem;
}

.legal-page .brand-lockup {
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

main {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--sage);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.launch-offer {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 24px;
  width: min(460px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  padding: 34px 34px 28px;
  overflow: auto;
  border: 1px solid rgba(184, 196, 155, .72);
  background:
    linear-gradient(135deg, rgba(120, 145, 160, .08) 1px, transparent 1px) 0 0 / 34px 34px,
    var(--navy);
  box-shadow: 0 24px 80px rgba(3, 18, 27, .42);
  color: var(--cream);
  animation: launch-offer-in 760ms cubic-bezier(.16, .78, .24, 1) both;
}

.launch-offer::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(247, 243, 235, .08);
  content: "";
  pointer-events: none;
}

.launch-offer > * {
  position: relative;
  z-index: 1;
}

.launch-offer__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(247, 243, 235, .25);
  background: rgba(7, 31, 45, .78);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.launch-offer__close:hover,
.launch-offer__close:focus-visible {
  border-color: var(--sage);
  background: var(--navy-soft);
  transform: rotate(4deg);
}

.launch-offer__beam {
  position: relative;
  width: 64px;
  height: 44px;
  margin-bottom: 20px;
  border-top: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
}

.launch-offer__beam::before,
.launch-offer__beam::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--slate);
  content: "";
}

.launch-offer__beam::before { top: 14px; }
.launch-offer__beam::after { bottom: 13px; }

.launch-offer__beam span {
  position: absolute;
  z-index: 1;
  bottom: 2px;
  left: 20px;
  width: 24px;
  height: 36px;
  background: var(--sage);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.launch-offer__kicker {
  margin-bottom: 10px;
  color: #bdc99f;
  font-family: var(--font-geist-mono), monospace;
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.launch-offer h2 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  line-height: .98;
}

.launch-offer__intro {
  margin-bottom: 20px;
  color: #cbd4d3;
  font-size: .88rem;
  line-height: 1.55;
}

.launch-offer__prices {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(247, 243, 235, .16);
}

.launch-offer__prices div {
  display: grid;
  min-height: 46px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(247, 243, 235, .16);
  font-size: .75rem;
}

.launch-offer__prices span {
  overflow: hidden;
  color: #dce2de;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.launch-offer__prices s { color: #81979c; }

.launch-offer__prices strong {
  min-width: 58px;
  color: #c4d0a7;
  font-size: .88rem;
  text-align: right;
}

.launch-offer__cta {
  width: 100%;
  margin-bottom: 14px;
}

.launch-offer > small {
  display: block;
  color: #91a4a7;
  font-size: .62rem;
  line-height: 1.5;
}

@keyframes launch-offer-in {
  from { opacity: 0; transform: translate3d(26px, 44px, 0) scale(.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.page-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: 94px 0;
}

.section--warm {
  background: var(--paper);
}

.section--sage {
  background: linear-gradient(135deg, #dde2cc 0%, #eef0e1 56%, #d3dac0 100%);
}

.navy-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(120, 145, 160, 0.05) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(45deg, rgba(120, 145, 160, 0.04) 1px, transparent 1px) 0 0 / 70px 70px,
    var(--navy);
  color: var(--cream);
}

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

h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6.2vw, 6.5rem);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h2 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.3vw, 4.4rem);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.navy-section p {
  color: #c9d2d3;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--slate);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--sage {
  color: #b8c49b !important;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 12px 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 31, 45, 0.96);
  color: var(--cream);
  backdrop-filter: blur(16px);
  transition: min-height 240ms ease, padding 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header[data-compact] {
  min-height: 68px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(7, 31, 45, 0.985);
  box-shadow: 0 8px 30px rgba(3, 18, 27, 0.18);
}

.header-logo {
  justify-self: start;
}

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

.desktop-nav a {
  position: relative;
  color: #dde3df;
  font-size: 0.84rem;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--sage);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--navy);
}

.brand-lockup--light {
  color: var(--cream);
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand-words {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-words strong {
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.brand-words small {
  font-size: 0.54rem;
  letter-spacing: 0.42em;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 650;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button--sage {
  background: var(--sage);
  color: var(--navy-deep);
}

.button--cream {
  background: var(--cream);
  color: var(--navy-deep);
}

.button--navy {
  background: var(--navy);
  color: var(--cream);
}

.button--outline-light {
  border-color: rgba(247, 243, 235, 0.6);
  color: var(--cream);
}

.button--outline-dark {
  border-color: var(--navy);
  color: var(--navy);
}

.hero {
  min-height: 760px;
}

.hero::before,
.hero::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--slate);
  border-left: 1px solid var(--slate);
  content: "";
  opacity: 0.6;
}

.hero::before {
  top: 32px;
  left: 3vw;
}

.hero::after {
  right: 3vw;
  bottom: 112px;
  transform: rotate(180deg);
}

.hero-grid {
  display: grid;
  min-height: 676px;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 40px;
  padding: 76px 0 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 13px;
  color: #d6dedc !important;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.55;
}

.owner-note {
  margin-bottom: 30px;
  color: #9eaeae !important;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.78rem !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.referral-nudge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #d6dedc;
  font-size: 0.84rem;
}

.referral-nudge span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(216, 226, 219, 0.35);
  border-radius: 50%;
  color: #b8c49b;
}

.hero-art {
  position: relative;
  display: flex;
  min-height: 530px;
  align-items: center;
  justify-content: center;
}

.hero-art::after {
  position: absolute;
  inset: 8% 2%;
  border: 1px solid rgba(120, 145, 160, 0.15);
  content: "";
  clip-path: polygon(0 0, 20px 0, 20px 1px, 1px 1px, 1px 20px, 0 20px, 0 0, 100% 0, 100% 20px, calc(100% - 1px) 20px, calc(100% - 1px) 1px, calc(100% - 20px) 1px, calc(100% - 20px) 0, 100% 0, 100% 100%, calc(100% - 20px) 100%, calc(100% - 20px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) calc(100% - 20px), 100% calc(100% - 20px), 100% 100%, 0 100%, 0 calc(100% - 20px), 1px calc(100% - 20px), 1px calc(100% - 1px), 20px calc(100% - 1px), 20px 100%, 0 100%);
}

.hero-survey {
  width: min(100%, 700px);
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.2));
  transform: translate3d(0, calc(var(--hero-parallax, 0px) + var(--parallax-y, 0px)), 0);
  transition: transform 120ms linear;
  will-change: transform;
}

.trust-strip {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 28px;
  border-top: 1px solid rgba(155, 166, 135, 0.55);
  background: rgba(4, 22, 32, 0.44);
  color: #d7dfdc;
  font-size: 0.84rem;
}

.trust-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--sage);
}

.foundation {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 90px;
}

.foundation-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.foundation-copy p:last-child {
  max-width: 510px;
}

.foundation-diagram {
  position: relative;
  padding: 42px 44px 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(120, 145, 160, 0.08) 1px, transparent 1px) 0 0 / 38px 38px,
    var(--paper);
}

.foundation-diagram::before,
.foundation-diagram::after,
.service-card::before,
.service-card::after {
  position: absolute;
  width: 16px;
  height: 16px;
  content: "";
}

.foundation-diagram::before,
.service-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.foundation-diagram::after,
.service-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.foundation-diagram > p {
  color: var(--sage);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.foundation-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 38px;
}

.foundation-line::before {
  position: absolute;
  top: 50px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: var(--slate);
  content: "";
}

.foundation-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.foundation-step > span {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 20px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.55rem;
  font-weight: 700;
}

.foundation-step strong {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.foundation-step small {
  max-width: 145px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 0;
}

.section-heading--compact {
  grid-template-columns: 1fr;
}

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

.section-heading--light > p {
  color: #bfcacc;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.fit-strip {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.fit-strip .eyebrow { margin: 0; }

.fit-strip > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fit-strip span {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 620;
}

.fit-strip b {
  color: var(--sage);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
}

.service-card:nth-child(2) {
  background: linear-gradient(145deg, #e3eaf0 0%, var(--cream) 72%);
}

.service-card:nth-child(3) {
  background: linear-gradient(145deg, #edeadc 0%, var(--cream) 72%);
}

.service-number {
  margin-bottom: 64px;
  color: var(--sage);
  font-family: var(--font-geist-mono), monospace;
  font-size: 1rem;
}

.service-card h3 {
  max-width: 260px;
  font-size: 1.75rem;
}

.service-card p {
  min-height: 108px;
  font-size: 0.93rem;
}

.service-card ul,
.package-card ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 34px;
  padding: 0;
  list-style: none;
}

.service-card li,
.package-card li {
  position: relative;
  padding-left: 20px;
  color: #354d58;
  font-size: 0.82rem;
  line-height: 1.5;
}

.service-card li::before,
.package-card li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--sage);
  content: "✓";
  font-weight: 800;
}

.service-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 650;
}

.fit {
  padding-top: 92px;
  padding-bottom: 92px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-grid article {
  padding: 42px 38px;
  border-right: 1px solid var(--line);
}

.fit-grid article:last-child {
  border-right: 0;
}

.fit-grid span {
  color: var(--slate);
  font-family: var(--font-geist-mono), monospace;
  font-size: 1.8rem;
}

.fit-grid h3 {
  margin-top: 46px;
  font-size: 1.35rem;
}

.fit-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.work {
  padding-bottom: 118px;
}

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

.case-study {
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid rgba(216, 224, 217, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.case-study:nth-child(even) {
  grid-template-columns: none;
}

.case-study:nth-child(even) .case-visual {
  order: 0;
}

.case-visual {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}

.case-study--northstar .case-visual {
  background: radial-gradient(circle at 50% 40%, #d88f78 0%, #b54f36 68%, #833423 100%);
}

.case-study--heritage .case-visual {
  background: radial-gradient(circle at 50% 40%, #385048 0%, #1c302d 62%, #122321 100%);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 42px;
}

.case-copy h3 {
  max-width: 430px;
  color: var(--cream);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.case-copy p:not(.eyebrow) {
  max-width: 450px;
}

.case-copy > span {
  margin-top: 22px;
  color: #9eb0b4;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.case-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.case-link::after {
  width: 32px;
  height: 1px;
  background: var(--sage);
  content: "";
  transition: width 250ms ease;
}

.case-link:hover::after,
.case-link:focus-visible::after {
  width: 52px;
}

.case-link b {
  color: var(--sage);
  font-weight: 500;
}

.mini-browser {
  display: block;
  position: relative;
  width: min(100%, 560px);
  border: 7px solid #202b31;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  text-decoration: none;
  transform: perspective(900px) rotateX(1deg) rotateY(-2deg);
}

.browser-bar {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: #f0ebe3;
}

.browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c2b9ad;
}

.browser-bar span {
  margin-left: 8px;
  color: #6c625b;
  font-size: 0.45rem;
}

.browser-bar b {
  margin-left: auto;
  color: #6c625b;
  font-size: 0.43rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  opacity: 0.72;
  text-transform: uppercase;
}

.browser-bar--dark {
  background: #0d1918;
}

.browser-bar--dark span {
  color: #a4aaa0;
}

.browser-bar--dark b {
  color: #d2c8aa;
}

.site-preview-window {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  contain: paint;
  isolation: isolate;
  overflow: hidden;
  background: #f6f2ed;
}

.site-preview-window::after {
  position: absolute;
  inset: auto 0 0;
  height: 44px;
  background: linear-gradient(transparent, rgba(11, 28, 37, 0.16));
  content: "";
  pointer-events: none;
}

.site-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  will-change: object-position;
}

.preview-cue {
  display: inline-flex;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(7, 24, 33, 0.84);
  color: #f6f2e9;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  pointer-events: none;
  text-transform: uppercase;
}

.preview-cue i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(158, 169, 133, 0.16);
}

@keyframes site-preview-tour {
  0%, 12% { object-position: 50% 0%; }
  46%, 58% { object-position: 50% 100%; }
  92%, 100% { object-position: 50% 0%; }
}

.motion-ready [data-site-preview].preview-active .site-preview-image {
  animation: site-preview-tour 16s cubic-bezier(.66, 0, .34, 1) 700ms infinite;
}

.motion-ready .case-study--heritage.preview-active .site-preview-image {
  animation-delay: 1.4s;
  animation-duration: 18s;
}

.mini-browser:hover .site-preview-image,
.mini-browser:focus-visible .site-preview-image {
  animation-play-state: paused !important;
}

.mini-browser:hover .preview-cue,
.mini-browser:focus-visible .preview-cue {
  background: rgba(132, 142, 104, 0.96);
}

.heritage-screen button {
  background: #d5c293;
  color: #152522;
}

.heritage-band {
  background: #e9e2d1;
  color: #233936;
}

.referrals {
  background:
    linear-gradient(rgba(120, 145, 160, 0.06) 1px, transparent 1px) 0 0 / 45px 45px,
    var(--cream);
}

.referral-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  gap: 80px;
}

.referral-main {
  align-self: center;
}

.referral-main > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.08rem;
}

.referral-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.referral-values span {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.referral-values span:last-child {
  border-right: 0;
}

.referral-values b {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.referral-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: var(--navy);
  color: var(--cream);
}

.referral-offer::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  content: "";
}

.referral-offer .tag {
  align-self: flex-start;
  margin-bottom: 36px;
  padding: 8px 12px;
  background: var(--sage);
  color: var(--navy);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.referral-offer h3 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.referral-offer p {
  color: #c6d0d0;
}

.referral-offer small {
  margin-bottom: 30px;
  color: #94a7a9;
}

.referral-offer .button {
  align-self: flex-start;
  margin-top: auto;
  background: var(--cream);
  color: var(--navy);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid::before {
  position: absolute;
  top: 24px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid article {
  position: relative;
  z-index: 1;
  padding: 0 34px 10px;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  background: var(--paper);
  color: var(--sage);
  font-family: var(--font-geist-mono), monospace;
}

.process-grid p {
  font-size: 0.86rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.package-card {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.package-card--featured {
  position: relative;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
  --resting-y: -18px;
  transform: translateY(var(--resting-y));
}

.package-badge {
  align-self: flex-start;
  margin: -38px -38px 34px;
  padding: 12px 20px;
  background: var(--sage);
  color: var(--navy);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-price {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
}

.package-price strong {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
}

.package-price span {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.package-card--featured .package-price span,
.package-card--featured > p,
.package-card--featured li {
  color: #bac7c7;
}

.package-card > p:not(.eyebrow) {
  min-height: 92px;
}

.package-card ul {
  margin-top: 16px;
}

.package-card .button {
  margin-top: auto;
}

.pricing-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  text-align: center;
}

.standalone-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standalone-note > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
}

.standalone-note strong {
  color: var(--navy);
  font-size: 0.88rem;
}

.standalone-note span {
  color: var(--muted);
  font-size: 0.76rem;
}

.standalone-note a {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.about {
  padding: 0;
}

.about-grid {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 0.85fr 1.15fr;
}

.about-map {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px;
  overflow: hidden;
  background: #071f2d;
}

.about-map::before,
.about-map::after,
.contour {
  position: absolute;
  border: 2px solid rgba(120, 145, 160, 0.28);
  border-radius: 45% 55% 48% 52%;
  content: "";
  transform: rotate(-12deg);
}

.about-map::before {
  inset: -15% 12% 35% -30%;
}

.about-map::after {
  inset: 10% -25% -5% 8%;
}

.contour--1 {
  inset: 0 -15% 15% -10%;
}

.contour--2 {
  inset: 15% -5% 30% 0;
}

.contour--3 {
  inset: 30% 8% 42% 10%;
}

.map-pin {
  position: absolute;
  top: 46%;
  left: 48%;
  z-index: 1;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(247, 243, 235, 0.3);
  border-radius: 50%;
  background: rgba(11, 42, 59, 0.8);
}

.map-pin .brand-mark {
  width: 58px;
  height: 58px;
}

.about-map > span,
.about-map > small {
  position: relative;
  z-index: 2;
}

.about-map > span {
  color: var(--cream);
  font-family: var(--font-geist-mono), monospace;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.about-map > small {
  margin-top: 8px;
  color: #9fb0b1;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px min(9vw, 140px);
}

.about-copy h2 {
  max-width: 660px;
  color: var(--cream);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  font-size: 1.02rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-points span {
  padding: 10px 13px;
  border: 1px solid rgba(247, 243, 235, 0.2);
  color: #d8e0dd;
  font-size: 0.74rem;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--slate);
  font-size: 1.4rem;
  font-weight: 350;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 40px 28px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 90px;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
}

.contact-detail {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 42, 59, 0.22);
}

.contact-detail span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}

.contact-detail a,
.contact-detail p {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
}

.inquiry-form {
  display: grid;
  gap: 22px;
  padding: 44px;
  border: 1px solid rgba(11, 42, 59, 0.28);
  background: rgba(247, 243, 235, 0.82);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form label,
.inquiry-form legend {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 650;
}

.inquiry-form input:not([type="checkbox"]),
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #aeb7ad;
  border-radius: 0;
  outline: 0;
  background: var(--paper);
  color: var(--navy);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(11, 42, 59, 0.12);
}

.inquiry-form fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid #aeb7ad;
}

.inquiry-form legend {
  padding: 0 8px;
}

.inquiry-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 450;
}

.inquiry-form input[type="checkbox"] {
  accent-color: var(--navy);
}

.inquiry-form .button {
  justify-self: start;
}

.inquiry-form > small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.site-footer {
  padding: 58px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-main > div:nth-child(2) strong {
  font-size: 1.2rem;
}

.footer-main a {
  color: #bbc8a6;
  font-size: 0.82rem;
}

.footer-main span {
  color: #a9b8b9;
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 243, 235, 0.14);
  color: #81979c;
  font-size: 0.68rem;
}

/* Scroll motion is progressively enhanced only after JavaScript is ready. */
.motion-ready [data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 52px;
  --reveal-scale: .975;
  --resting-y: 0px;
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--resting-y)), 0) scale(var(--reveal-scale));
  transition: opacity 760ms cubic-bezier(.16, .78, .24, 1), transform 980ms cubic-bezier(.16, .78, .24, 1), filter 760ms ease;
  will-change: opacity, transform, filter;
}

.motion-ready [data-reveal="left"] { --reveal-x: -72px; --reveal-y: 0px; }
.motion-ready [data-reveal="right"] { --reveal-x: 72px; --reveal-y: 0px; }

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, var(--resting-y), 0) scale(1);
}

.motion-ready .service-card:nth-child(2),
.motion-ready .process-grid article:nth-child(2),
.motion-ready .package-card:nth-child(2) { transition-delay: 140ms; }

.motion-ready .service-card:nth-child(3),
.motion-ready .process-grid article:nth-child(3),
.motion-ready .package-card:nth-child(3) { transition-delay: 280ms; }

.motion-ready .process-grid article:nth-child(4) { transition-delay: 420ms; }
.motion-ready .package-card--featured { --resting-y: -18px; }

.motion-ready .foundation-step {
  opacity: 0;
  transform: translateY(22px) scale(.82);
  transition: opacity 480ms ease, transform 620ms cubic-bezier(.16, .78, .24, 1);
}

.motion-ready .foundation-diagram.is-visible .foundation-step { opacity: 1; transform: translateY(0) scale(1); }
.motion-ready .foundation-diagram.is-visible .foundation-step:nth-child(2) { transition-delay: 150ms; }
.motion-ready .foundation-diagram.is-visible .foundation-step:nth-child(3) { transition-delay: 300ms; }
.motion-ready .foundation-diagram.is-visible .foundation-step:nth-child(4) { transition-delay: 450ms; }

.motion-ready .foundation-line::before,
.motion-ready .process-grid::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1100ms cubic-bezier(.16, .78, .24, 1) 220ms;
}

.motion-ready .foundation-diagram.is-visible .foundation-line::before,
.motion-ready .process-grid:has(article.is-visible)::before { transform: scaleX(1); }

.motion-ready .section-heading > div::after {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 22px;
  background: var(--sage);
  content: "";
  transition: width 850ms cubic-bezier(.16, .78, .24, 1) 280ms;
}

.motion-ready .section-heading.is-visible > div::after { width: 92px; }

.motion-ready .hero-survey > g:first-child path,
.motion-ready .hero-survey > path:nth-of-type(2) {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: survey-draw 1850ms cubic-bezier(.16, .78, .24, 1) forwards;
}

.motion-ready .hero-survey > path:nth-of-type(1) { animation: survey-beacon 3200ms ease-in-out infinite; }

.motion-ready .case-study .mini-browser {
  transition: transform 900ms cubic-bezier(.2, .75, .25, 1), box-shadow 900ms ease;
}

.motion-ready .case-study:not(.is-visible) .mini-browser {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transform: perspective(900px) rotateX(5deg) rotateY(-7deg) translateY(34px) scale(.96);
}

.motion-ready .case-study--heritage:not(.is-visible) .mini-browser {
  transform: perspective(900px) rotateX(5deg) rotateY(7deg) translateY(34px) scale(.96);
}

.motion-ready .case-study.is-visible .mini-browser {
  transform: perspective(900px) rotateX(1deg) rotateY(-2deg) translateY(var(--parallax-y, 0px));
}

.motion-ready .case-study--heritage.is-visible .mini-browser {
  transform: perspective(900px) rotateX(1deg) rotateY(2deg) translateY(var(--parallax-y, 0px));
}

.motion-ready .foundation-diagram { background-position: 0 var(--parallax-y, 0px), 0 0; }

.motion-ready .referral-offer::after {
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 120ms linear;
}

.motion-ready .referral-main .referral-values span {
  transition: background 220ms ease, color 220ms ease, transform 560ms cubic-bezier(.16, .78, .24, 1), opacity 480ms ease;
}

.motion-ready .referral-main:not(.is-visible) .referral-values span { opacity: 0; transform: translateY(20px); }
.motion-ready .referral-main.is-visible .referral-values span:nth-child(2) { transition-delay: 150ms; }
.motion-ready .referral-main.is-visible .referral-values span:nth-child(3) { transition-delay: 300ms; }

.motion-ready .package-card.is-visible:hover {
  z-index: 2;
  box-shadow: 0 26px 55px rgba(7, 31, 45, .14);
  transform: translate3d(0, calc(var(--resting-y) - 9px), 0) scale(1.012);
}

.motion-ready .faq-list details:nth-child(2) { transition-delay: 70ms; }
.motion-ready .faq-list details:nth-child(3) { transition-delay: 140ms; }
.motion-ready .faq-list details:nth-child(4) { transition-delay: 210ms; }
.motion-ready .faq-list details:nth-child(5) { transition-delay: 280ms; }
.motion-ready .faq-list details:nth-child(6) { transition-delay: 350ms; }

@keyframes survey-draw { to { stroke-dashoffset: 0; } }

@keyframes survey-beacon {
  0%, 100% { opacity: .78; }
  50% { opacity: 1; filter: drop-shadow(0 0 10px rgba(184, 196, 155, .35)); }
}

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

  .desktop-nav {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .hero-art {
    min-height: 440px;
  }

  .foundation,
  .faq,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .foundation-copy p:last-child {
    max-width: 680px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card p,
  .package-card > p:not(.eyebrow) {
    min-height: 0;
  }

  .package-card {
    min-height: auto;
  }

  .package-card--featured {
    --resting-y: 0px;
    transform: none;
  }

  .motion-ready .package-card--featured { --resting-y: 0px; }

  .case-study,
  .case-study:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .case-study:nth-child(even) .case-visual {
    order: 0;
  }

  .referral-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .about-map {
    min-height: 460px;
  }

  .faq-heading,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .launch-offer {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 26px 22px 22px;
  }

  .launch-offer__beam {
    height: 36px;
    margin-bottom: 14px;
  }

  .launch-offer__beam span { height: 30px; }

  .launch-offer h2 {
    padding-right: 24px;
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .launch-offer__intro { margin-bottom: 16px; }
  .launch-offer__prices { margin-bottom: 18px; }

  .launch-offer__prices div {
    gap: 8px;
    font-size: .69rem;
  }

  .page-shell {
    width: min(100% - 36px, 1240px);
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    min-height: 70px;
    padding: 9px 18px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

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

  .brand-words strong {
    font-size: 0.86rem;
  }

  .brand-words small {
    font-size: 0.45rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-grid {
    padding-top: 70px;
  }

  .hero-art {
    min-height: 330px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .trust-strip i {
    display: none;
  }

  .foundation {
    width: min(100% - 36px, 1240px);
  }

  .foundation-diagram {
    padding: 30px 16px 24px;
  }

  .foundation-line {
    grid-template-columns: 1fr 1fr;
    gap: 34px 12px;
  }

  .foundation-line::before {
    display: none;
  }

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

  .service-card {
    padding: 30px;
  }

  .service-number {
    margin-bottom: 42px;
  }

  .fit-grid,
  .process-grid,
  .referral-values {
    grid-template-columns: 1fr;
  }

  .fit-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fit-strip > div { grid-template-columns: 1fr; }

  .fit-strip span {
    min-height: 46px;
    padding: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .standalone-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .fit-grid article,
  .process-grid article,
  .referral-values span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fit-grid article:last-child,
  .process-grid article:last-child,
  .referral-values span:last-child {
    border-bottom: 0;
  }

  .process-grid::before {
    display: none;
  }

  .case-visual {
    min-height: 350px;
    padding: 24px;
  }

  .case-copy {
    padding: 38px 28px;
  }

  .referral-offer,
  .package-card {
    padding: 30px;
  }

  .package-badge {
    margin: -30px -30px 30px;
  }

  .about-map {
    min-height: 360px;
    padding: 32px;
  }

  .about-copy {
    padding: 70px 24px;
  }

  .form-row,
  .inquiry-form fieldset {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 26px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-survey { transform: none !important; }

  .scroll-progress { display: none; }
}
