/* ==========================================================================
   Beacon Ridge Builders - demonstration build by NH Media Web
   Fictional business. Self-hosted fonts and images, zero external requests.
   ========================================================================== */

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-var-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-var-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --navy:      #0D1B2A;
  --navy-2:    #0A1628;
  --navy-3:    #081120;
  --navy-4:    #060D18;
  --orange:    #F4821F;
  --orange-dk: #C9670F;
  --cream:     #F5F3EF;
  --cream-2:   #ECE7DE;
  --ink:       #14212F;
  --ink-mute:  #45536A;
  --line-dark: rgba(255, 255, 255, .13);
  --line-lite: rgba(20, 33, 47, .14);

  --display: 'Archivo', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --r: 3px;
  --shell: 1240px;
  --header-h: 84px;
  --ease: cubic-bezier(.22, .68, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--navy);
  color: #fff;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 800; line-height: 1.02; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 200;
  background: var(--orange); color: var(--navy);
  padding: 12px 18px; font-weight: 700; text-decoration: none;
  border-radius: var(--r); transition: top .2s;
}
.skip-link:focus { top: 14px; }

.shell { width: min(var(--shell), 100% - 56px); margin-inline: auto; }

/* ---------- shared type ---------- */
.label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--body);
  font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 22px;
}
.label::before {
  content: ''; width: 28px; height: 2px;
  background: var(--orange); flex: none;
}
.label-light { color: rgba(255, 255, 255, .82); }

.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-stretch: 86%;
  letter-spacing: -.005em;
  max-width: 20ch;
}
.section-head { margin-bottom: 60px; max-width: 820px; }
.section-head-split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; max-width: none;
}
.section-head-center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-head-center .label { justify-content: center; }
.section-head-center .section-title { max-width: none; }

section { position: relative; }

.dots::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .075) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .75;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 28px;
  font-family: var(--display); font-weight: 800; font-stretch: 88%;
  font-size: 16px; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent; border-radius: 2px;
  cursor: pointer; transition: transform .2s var(--ease), background-color .2s, border-color .2s, color .2s;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: #FF9433; transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255, 255, 255, .34); color: #fff; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn:disabled,
.btn:disabled:hover {
  cursor: not-allowed; transform: none;
  background: rgba(244, 130, 31, .18);
  border: 2px dashed rgba(244, 130, 31, .55);
  color: rgba(255, 255, 255, .78);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .3s, height .3s, box-shadow .3s;
}
.site-header::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 13, 24, .72), rgba(6, 13, 24, 0));
  transition: opacity .3s;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(8, 17, 32, .94);
  box-shadow: 0 1px 0 var(--line-dark), 0 18px 40px -30px rgba(0, 0, 0, .9);
  backdrop-filter: blur(10px);
}
.site-header.scrolled::after { opacity: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; color: #fff; }
.brand-mark { display: block; width: 38px; height: 38px; color: #fff; flex: none; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display); font-weight: 800; font-stretch: 80%;
  font-size: 21px; letter-spacing: .045em; text-transform: uppercase;
}
.brand-sub {
  font-size: 10.5px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase;
  color: rgba(255, 255, 255, .62); margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative; text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255, 255, 255, .84); padding: 6px 0;
  transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; padding: 11px 18px;
  border: 2px solid var(--orange); border-radius: 2px;
  color: var(--orange);
  font-family: var(--display); font-weight: 800; font-stretch: 88%;
  font-size: 15px; letter-spacing: .05em;
  transition: background-color .2s, color .2s;
}
.header-phone svg { width: 17px; height: 17px; }
.header-phone:hover { background: var(--orange); color: var(--navy); }

.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 0;
  background: none; border: 1px solid var(--line-dark); border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 4px auto; background: #fff;
  transition: transform .28s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 70px) 0 80px;
  overflow: hidden;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--navy-3); }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 56% 46%;
  filter: brightness(1.12) contrast(1.04) saturate(1.06);
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.11) translate3d(-1.6%, -1.4%, 0); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 13, 24, .58) 0%, rgba(6, 13, 24, 0) 24%, rgba(6, 13, 24, .28) 84%, var(--navy) 100%),
    linear-gradient(105deg, rgba(13, 27, 42, .95) 0%, rgba(13, 27, 42, .88) 32%, rgba(13, 27, 42, .48) 58%, rgba(13, 27, 42, .16) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .82fr; gap: 72px; align-items: center;
}

.hero-title {
  font-size: clamp(3rem, 6.6vw, 4.5rem);
  font-stretch: 78%;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .93;
  margin: 0 0 26px;
}
.hero-title .w {
  display: inline-block;
  animation: wordUp .85s var(--ease) backwards;
  animation-delay: calc(.12s + var(--i) * .11s);
}
.hero-title .accent { color: var(--orange); }
.hero-title .br { display: block; height: 0; }
@keyframes wordUp {
  from { opacity: 0; transform: translateY(28px) rotate(1.2deg); }
  to   { opacity: 1; transform: none; }
}

.hero-lead {
  font-size: 18.5px; line-height: 1.72;
  color: rgba(255, 255, 255, .84);
  max-width: 54ch;
  animation: fadeUp .8s var(--ease) .62s backwards;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px;
  animation: fadeUp .8s var(--ease) .76s backwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.quote-card {
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 3px solid var(--orange);
  border-radius: var(--r);
  padding: 34px 34px 30px;
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, .95);
  animation: fadeUp .9s var(--ease) .5s backwards;
}
.quote-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.quote-title { font-size: 27px; font-stretch: 86%; margin-bottom: 10px; }
.quote-sub { font-size: 15px; color: rgba(255, 255, 255, .74); line-height: 1.6; margin-bottom: 22px; }

.field { margin-bottom: 15px; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255, 255, 255, .74);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: rgba(6, 13, 24, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 2px; color: #fff; font-size: 15.5px;
  transition: border-color .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 108px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, .58); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange); background: rgba(6, 13, 24, .78);
}
.field select { appearance: none; cursor: pointer; padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 49%, rgba(255,255,255,.7) 50%), linear-gradient(-45deg, transparent 49%, rgba(255,255,255,.7) 50%);
  background-size: 7px 7px, 7px 7px;
  background-position: calc(100% - 22px) 22px, calc(100% - 15px) 22px;
  background-repeat: no-repeat;
}
.field select option { background: var(--navy-3); color: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.quote-form .btn { margin-top: 6px; }
.form-note {
  margin-top: 11px; text-align: center;
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--orange); color: var(--navy);
  overflow: hidden; padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, .12);
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}
.marquee-track {
  display: flex; width: max-content;
  animation: slide 46s linear infinite;
}
.marquee-set { display: flex; align-items: center; }
.marquee b {
  font-family: var(--display); font-weight: 800; font-stretch: 82%;
  font-size: 20px; letter-spacing: .07em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee i {
  display: inline-block; width: 8px; height: 8px;
  background: var(--navy); transform: rotate(45deg);
  margin: 0 26px; flex: none;
}
@keyframes slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   TOKEN BAR
   ========================================================================== */
.tokens { background: var(--cream); color: var(--ink); padding: 68px 0 62px; }
.token-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.token-item {
  display: flex; flex-direction: column; gap: 12px;
  padding-left: 22px; border-left: 2px solid rgba(20, 33, 47, .13);
}
.token-chip {
  display: inline-block; align-self: flex-start;
  font-family: var(--display); font-weight: 800; font-stretch: 82%;
  font-size: 28px; letter-spacing: .04em;
  padding: 6px 14px;
  color: var(--ink);
  background: rgba(244, 130, 31, .17);
  border: 2px dashed var(--orange-dk);
  border-radius: 2px;
}
.token-chip-sm { font-size: 15px; padding: 3px 10px; letter-spacing: .08em; }
.token-label {
  font-size: 14.5px; font-weight: 600; line-height: 1.5;
  color: var(--ink-mute); max-width: 22ch;
}
.tokens-note {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--line-lite);
  font-size: 14.5px; color: var(--ink-mute);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--navy-2); padding: 108px 0 116px; }
.services::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.services > .shell { position: relative; z-index: 2; }

.svc-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px;
  align-items: stretch;
}
.svc {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 32px 30px 34px;
  transition: transform .35s var(--ease), border-color .35s, background-color .35s;
}
.svc:hover { transform: translateY(-5px); border-color: rgba(244, 130, 31, .55); background: rgba(255, 255, 255, .075); }
.svc h3 { font-size: 22px; font-stretch: 88%; margin: 20px 0 12px; }
.svc p { font-size: 16px; line-height: 1.68; color: rgba(255, 255, 255, .76); }
.svc-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  display: grid; place-items: center;
  background: rgba(244, 130, 31, .14);
  border: 1px solid rgba(244, 130, 31, .32);
  color: var(--orange);
}
.svc-icon svg { width: 27px; height: 27px; }

.svc-feature {
  grid-row: span 2;
  display: flex; flex-direction: column;
  background:
    linear-gradient(180deg, rgba(244, 130, 31, .10), rgba(244, 130, 31, 0) 46%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 34px),
    rgba(255, 255, 255, .045);
  border-color: rgba(244, 130, 31, .34);
  padding: 40px 36px 38px;
}
.svc-feature h3 { font-size: 34px; margin-top: 26px; }
.svc-feature p { font-size: 17px; }
.svc-shot {
  margin: 26px 0 0; border-radius: 2px; overflow: hidden;
  border: 1px solid var(--line-dark);
}
.svc-shot img {
  width: 100%; height: 200px; object-fit: cover; object-position: 50% 58%;
  transition: transform .7s var(--ease);
}
.svc-feature:hover .svc-shot img { transform: scale(1.05); }
.svc-list {
  margin-top: auto; padding-top: 24px; display: grid; gap: 11px;
  border-top: 1px solid var(--line-dark);
}
.svc-shot + .svc-list { margin-top: 24px; }
.svc-list li {
  position: relative; padding-left: 26px;
  font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, .82);
}
.svc-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; background: var(--orange); transform: rotate(45deg);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { background: var(--cream); color: var(--ink); padding: 108px 0 116px; }
.process .section-title { color: var(--ink); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 34px;
  border-top: 2px dashed rgba(20, 33, 47, .22);
  z-index: 0;
}
.step { position: relative; z-index: 1; padding-right: 12px; }
.step-num {
  display: grid; place-items: center;
  width: 70px; height: 70px; margin-bottom: 24px;
  background: var(--navy); color: var(--orange);
  border-radius: var(--r);
  font-family: var(--display); font-weight: 800; font-stretch: 84%;
  font-size: 30px; letter-spacing: .02em;
}
.step h3 { font-size: 25px; font-stretch: 88%; margin-bottom: 12px; color: var(--ink); }
.step p { font-size: 16.5px; line-height: 1.7; color: var(--ink-mute); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.work { background: var(--navy-3); padding: 108px 0 116px; }
.work::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.work > .shell { position: relative; z-index: 2; }
.work-note {
  font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .62);
  max-width: 28ch; padding-left: 20px; border-left: 2px solid var(--orange);
  flex: none;
}

.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 232px; gap: 18px;
}
.tile {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--r); background: var(--navy-4);
}
.tile-lg { grid-column: span 2; grid-row: span 2; }
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.tile:hover img { transform: scale(1.06); }
.tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 7px;
  background: linear-gradient(180deg, rgba(6, 13, 24, 0), rgba(6, 13, 24, .88) 62%);
}
.tile-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy); background: var(--orange);
  padding: 4px 9px; border-radius: 2px;
}
.tile-cap {
  font-family: var(--display); font-weight: 800; font-stretch: 88%;
  font-size: 19px; letter-spacing: .01em; color: #fff;
}
.tile-lg .tile-cap { font-size: 25px; }

/* ==========================================================================
   WHY US
   ========================================================================== */
.why { background: var(--cream); color: var(--ink); padding: 108px 0 116px; }
.why-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 72px; align-items: center; }
.why .section-title { color: var(--ink); margin-bottom: 34px; }
.why-media { position: relative; }
.why-media img {
  width: 100%; height: 100%; max-height: 560px; object-fit: cover;
  border-radius: var(--r);
}
.why-badge {
  position: absolute; right: -18px; bottom: -20px;
  background: var(--orange); color: var(--navy);
  padding: 20px 26px; border-radius: var(--r);
  display: flex; flex-direction: column; line-height: 1;
  box-shadow: 0 24px 50px -28px rgba(13, 27, 42, .8);
}
.why-badge-top, .why-badge-bot {
  font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
}
.why-badge-main {
  font-family: var(--display); font-weight: 800; font-stretch: 78%;
  font-size: 44px; letter-spacing: .01em; text-transform: uppercase;
  margin: 7px 0 6px;
}

.checklist { display: grid; gap: 18px; }
.checklist li { display: flex; gap: 16px; align-items: flex-start; }
.checklist div { font-size: 16.5px; line-height: 1.6; color: var(--ink-mute); }
.checklist strong { color: var(--ink); font-weight: 800; }
.check {
  flex: none; width: 30px; height: 30px; margin-top: 2px;
  border-radius: 50%; background: var(--navy);
  position: relative;
}
.check::after {
  content: ''; position: absolute; left: 10px; top: 8px;
  width: 7px; height: 13px;
  border: solid var(--orange); border-width: 0 2.4px 2.4px 0;
  transform: rotate(43deg);
}

/* ==========================================================================
   WHAT TO EXPECT
   ========================================================================== */
.expect { background: var(--navy-4); padding: 108px 0 116px; }
.expect::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.expect > .shell { position: relative; z-index: 2; }
.expect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.expect-card {
  padding: 34px 28px 32px;
  border: 1px solid var(--line-dark);
  border-top: 3px solid rgba(244, 130, 31, .55);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .035);
  transition: border-color .3s, background-color .3s, transform .3s var(--ease);
}
.expect-card:hover { transform: translateY(-4px); border-top-color: var(--orange); background: rgba(255, 255, 255, .06); }
.expect-num {
  display: block;
  font-family: var(--display); font-weight: 800; font-stretch: 78%;
  font-size: 38px; color: rgba(244, 130, 31, .55); line-height: 1;
  margin-bottom: 18px;
}
.expect-card h3 { font-size: 21px; font-stretch: 88%; margin-bottom: 12px; }
.expect-card p { font-size: 15.5px; line-height: 1.68; color: rgba(255, 255, 255, .74); }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  background: var(--cream-2); color: var(--ink);
  padding: 104px 0 108px; overflow: hidden; text-align: center;
}
.ghost-word {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 800; font-stretch: 76%;
  font-size: clamp(9rem, 26vw, 19rem); line-height: 1;
  letter-spacing: .02em;
  color: rgba(13, 27, 42, .055);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.cta-inner { position: relative; z-index: 2; max-width: 780px; }
.cta .label { justify-content: center; }
.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-stretch: 84%;
  color: var(--ink); margin-bottom: 16px;
}
.cta-sub { font-size: 18px; color: var(--ink-mute); max-width: 46ch; margin: 0 auto 34px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--navy);
  font-family: var(--display); font-weight: 800; font-stretch: 80%;
  font-size: clamp(2rem, 5vw, 2.75rem); letter-spacing: .01em;
  padding: 16px 34px; border: 3px solid var(--navy); border-radius: 2px;
  transition: background-color .25s, color .25s, transform .25s var(--ease);
}
.cta-phone svg { width: 30px; height: 30px; }
.cta-phone:hover { background: var(--navy); color: var(--orange); transform: translateY(-3px); }
.cta-alt { margin-top: 24px; font-size: 16px; color: var(--ink-mute); }
.cta-alt a { color: var(--ink); text-underline-offset: 4px; font-weight: 700; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--navy-2); padding: 108px 0 116px; }
.contact::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.contact > .shell { position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-lead { font-size: 17.5px; color: rgba(255, 255, 255, .78); max-width: 46ch; margin: 24px 0 34px; }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px; }
.contact-list dt {
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255, 255, 255, .58); margin-bottom: 9px;
}
.contact-list dd {
  font-family: var(--display); font-weight: 800; font-stretch: 88%;
  font-size: 21px; letter-spacing: .01em;
}
.contact-list dd a { text-decoration: none; color: var(--orange); }
.contact-list dd a:hover { text-decoration: underline; text-underline-offset: 5px; }
.contact-note { margin-top: 30px; font-size: 14px; color: rgba(255, 255, 255, .58); }
.next-steps {
  margin-top: 38px; padding: 28px 28px 26px;
  border: 1px solid var(--line-dark); border-left: 3px solid var(--orange);
  border-radius: var(--r); background: rgba(255, 255, 255, .035);
}
.next-steps h3 {
  font-family: var(--body); font-size: 12.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.next-steps ol { display: grid; gap: 14px; }
.next-steps li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15.5px; line-height: 1.55; color: rgba(255, 255, 255, .8);
}
.next-steps span {
  flex: none; width: 26px; height: 26px; border-radius: 2px;
  display: grid; place-items: center;
  background: rgba(244, 130, 31, .16); border: 1px solid rgba(244, 130, 31, .42);
  color: var(--orange);
  font-family: var(--display); font-weight: 800; font-stretch: 86%; font-size: 14px;
}
.contact .token-chip {
  color: var(--orange);
  background: rgba(244, 130, 31, .12);
  border-color: rgba(244, 130, 31, .6);
}
.contact-form-wrap {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--orange);
  border-radius: var(--r);
  padding: 36px 34px 32px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-4);
  border-top: 3px solid var(--orange);
  padding: 74px 0 34px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 46px;
}
.footer-brand .brand-mark { width: 42px; height: 42px; margin-bottom: 18px; color: #fff; }
.footer-name {
  font-family: var(--display); font-weight: 800; font-stretch: 80%;
  font-size: 23px; letter-spacing: .045em; text-transform: uppercase; margin-bottom: 10px;
}
.footer-blurb { font-size: 15.5px; color: rgba(255, 255, 255, .66); max-width: 34ch; }
.footer-col h2 {
  font-size: 13px; font-family: var(--body); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col li { font-size: 15.5px; color: rgba(255, 255, 255, .72); }
.footer-col a { text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.site-footer .token-chip {
  color: var(--orange);
  background: rgba(244, 130, 31, .12);
  border-color: rgba(244, 130, 31, .55);
}

.demo-notice {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 20px 24px;
  background: rgba(244, 130, 31, .09);
  border: 1px solid rgba(244, 130, 31, .34);
  border-left: 4px solid var(--orange);
  border-radius: var(--r);
  font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .88);
}
.demo-notice-tag {
  font-family: var(--display); font-weight: 800; font-stretch: 84%;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy); background: var(--orange);
  padding: 4px 11px; border-radius: 2px; flex: none;
}

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px; color: rgba(255, 255, 255, .55);
}

/* ==========================================================================
   FAB
   ========================================================================== */
.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: var(--navy);
  box-shadow: 0 14px 34px -10px rgba(244, 130, 31, .6);
  transition: transform .25s var(--ease);
}
.fab svg { width: 25px; height: 25px; }
.fab:hover { transform: scale(1.07); }
.fab::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--orange);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .75; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================================================
   REVEALS
   ========================================================================== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.svc-grid .reveal:nth-child(2), .expect-grid .reveal:nth-child(2),
.gallery .reveal:nth-child(2), .steps .reveal:nth-child(2),
.checklist .reveal:nth-child(2) { transition-delay: .08s; }
.svc-grid .reveal:nth-child(3), .expect-grid .reveal:nth-child(3),
.gallery .reveal:nth-child(3), .steps .reveal:nth-child(3),
.checklist .reveal:nth-child(3) { transition-delay: .16s; }
.svc-grid .reveal:nth-child(4), .expect-grid .reveal:nth-child(4),
.gallery .reveal:nth-child(4), .checklist .reveal:nth-child(4) { transition-delay: .24s; }
.svc-grid .reveal:nth-child(5), .gallery .reveal:nth-child(5),
.checklist .reveal:nth-child(5) { transition-delay: .32s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1120px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-feature { grid-row: span 1; grid-column: span 2; }
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 46px; }
}

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .shell { width: min(var(--shell), 100% - 40px); }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8, 17, 32, .985);
    border-bottom: 1px solid var(--line-dark);
    padding: 8px 24px 22px;
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: opacity .25s, transform .25s var(--ease), visibility .25s;
    backdrop-filter: blur(10px);
    max-height: calc(100svh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { opacity: 1; transform: none; visibility: visible; }
  .nav a { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .09); font-size: 15px; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-phone span { display: none; }
  .header-phone { padding: 11px 13px; }
  .header-phone svg { width: 19px; height: 19px; }

  .hero { padding: calc(var(--header-h) + 54px) 0 64px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media img { object-position: 58% 42%; }

  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-media img { max-height: 400px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .section-head-split { flex-direction: column; align-items: flex-start; gap: 24px; }
  .work-note { max-width: 46ch; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .tile-lg { grid-column: span 2; grid-row: span 1; }
  .token-grid { grid-template-columns: 1fr 1fr; gap: 30px 26px; }
}

@media (max-width: 620px) {
  body { font-size: 16.5px; }
  .shell { width: min(var(--shell), 100% - 32px); }

  .services, .process, .work, .why, .expect, .contact { padding: 72px 0 78px; }
  .cta { padding: 76px 0 80px; }
  .tokens { padding: 52px 0 48px; }
  .section-head { margin-bottom: 40px; }

  .hero-title { font-size: clamp(2.6rem, 12.4vw, 3.1rem); }
  .hero-lead { font-size: 16.5px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .quote-card { padding: 26px 22px 24px; }

  .section-title { font-size: clamp(1.85rem, 8.2vw, 2.2rem); max-width: none; }
  .svc-grid, .expect-grid { grid-template-columns: 1fr; }
  .svc-feature { grid-column: span 1; }
  .svc-feature h3 { font-size: 28px; }
  .svc { padding: 26px 22px 28px; }

  .token-grid { grid-template-columns: 1fr; gap: 24px; }
  .token-chip { font-size: 25px; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .tile-lg { grid-column: span 1; }
  .tile-lg .tile-cap { font-size: 20px; }

  .why-badge { right: 12px; bottom: -16px; padding: 15px 19px; }
  .why-badge-main { font-size: 33px; }

  .cta-phone { font-size: 26px; padding: 14px 22px; gap: 12px; width: 100%; justify-content: center; }
  .cta-phone svg { width: 24px; height: 24px; }

  .contact-list { grid-template-columns: 1fr; gap: 22px; }
  .contact-form-wrap { padding: 26px 22px 24px; }
  .field-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-media img { animation: none; transform: none; }
  .fab::before { display: none; }
}
