/* =========================================================
   VANGUARD MOVING CO. — site stylesheet
   Aesthetic: industrial-editorial. Ink + amber + warm paper.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Cinzel:wght@500;700;900&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- tokens ---------- */
:root {
  --ink:        #0c1620;
  --ink-soft:   #14222f;
  --ink-line:   #243441;
  --steel:      #61727f;
  --steel-lt:   #8a99a4;
  --paper:      #f4f1ea;
  --paper-warm: #ece7da;
  --white:      #ffffff;
  --accent:     #f2a32c;
  --accent-deep:#d6851a;
  --accent-ink: #2a1a04;

  --shadow-sm: 0 2px 8px rgba(12, 22, 32, .08);
  --shadow-md: 0 18px 40px -18px rgba(12, 22, 32, .35);
  --shadow-lg: 0 40px 80px -30px rgba(12, 22, 32, .55);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;

  --display: 'Archivo', system-ui, sans-serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;
  --brand:   'Cinzel', 'Trajan Pro', Georgia, serif;

  --wrap: 1200px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 78px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--accent); display: block;
}
.eyebrow--center::after {
  content: ""; width: 28px; height: 2px; background: var(--accent); display: block;
}
.eyebrow--light { color: var(--accent); }

.h-section {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -.02em;
}
.lead {
  font-size: 1.12rem;
  color: var(--steel);
  max-width: 56ch;
}

.section-head { margin-bottom: 56px; }
.section-head .lead { margin-top: 18px; }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

.accent { color: var(--accent-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 24px -10px rgba(242, 163, 44, .8);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(242, 163, 44, .9); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(12, 22, 32, .2);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); transform: translateY(-3px); }
.btn--on-dark { color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,.22); }
.btn--on-dark:hover { box-shadow: inset 0 0 0 2px var(--white); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 19px 34px; font-size: 1rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 18, 26, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  color: var(--white);
}
.site-header.scrolled {
  background: rgba(10, 18, 26, .96);
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow: 0 2px 22px rgba(0, 0, 0, .35);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 300px; height: 84px; flex: none;
  background: url('../logo.png') no-repeat left center / contain;
  display: block;
}
.brand-mark svg { display: none; }
.brand > span:not(.brand-mark) { display: none; }
.footer-brand .brand-mark { width: 340px; height: 120px; background-position: left center; }
@media (max-width: 860px) {
  .nav { height: 88px; }
  .brand-mark { width: 230px; height: 68px; }
  .nav-links.open { top: 88px; }
}
@media (max-width: 520px) {
  .nav { height: 78px; }
  .brand-mark { width: 190px; height: 58px; }
  .nav-links.open { top: 78px; }
}
.brand-name {
  font-family: var(--brand);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-brand .brand-name { color: #e8c46e; }
.footer-brand .brand-tag  { color: rgba(255,255,255,.5); }
.brand-tag {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
  color: rgba(255, 255, 255, .82);
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--accent); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute;
  width: 20px; height: 2px; background: var(--white);
  left: 13px; transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span { top: 22px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  padding: 132px 0 84px;
  overflow: hidden;
  background: #0a0e12 url('../hero.jpg') center 26% / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,12,16,.95) 0%, rgba(8,12,16,.62) 26%, rgba(8,12,16,.34) 46%, rgba(8,12,16,.74) 68%, rgba(8,12,16,.97) 100%),
    linear-gradient(180deg, rgba(8,12,16,.55) 0%, rgba(8,12,16,0) 26%, rgba(8,12,16,0) 70%, rgba(8,12,16,.4) 100%);
}
.hero-ghost {
  position: absolute;
  right: -3%; bottom: -6%;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22vw;
  line-height: .8;
  color: rgba(255,255,255,.028);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(360px, .82fr);
  gap: 48px;
  align-items: center;
  min-height: 560px;
}

/* hero left: lead + trust */
.hero-lead {
  margin: 22px 0 22px;
  font-size: 1.12rem;
  color: rgba(255,255,255,.82);
  max-width: 40ch;
  text-shadow: 0 1px 18px rgba(0,0,0,.5);
}
.hero-trust {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px;
  padding: 9px 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .02em;
}
.hero-trust i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); flex: none; display: block;
}
.hero-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(12,22,32,.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .02em;
  padding: 9px 14px;
  border-radius: 100px;
}
.hero-photo-tag i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); flex: none; display: block;
}

/* review submission form */
.review-wrap {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(12,22,32,.1);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.review-wrap .form-success { margin-top: 0; }

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}
.hero h1 em {
  font-style: normal;
  display: inline-block;
  color: var(--ink);
  background: var(--accent);
  padding: 0 .16em;
  transform: rotate(-2deg);
  border-radius: 4px;
}
.hero p.hero-sub {
  margin: 28px 0 34px;
  font-size: 1.16rem;
  color: rgba(255,255,255,.74);
  max-width: 46ch;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { flex: 1; }
.hero-stat b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.9rem;
  display: block;
  line-height: 1;
}
.hero-stat b .accent { color: var(--accent); }
.hero-stat span {
  font-size: .82rem;
  color: var(--steel-lt);
  margin-top: 6px;
  display: block;
}

/* hero card / quote */
.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: "FREE QUOTE";
  position: absolute;
  top: -14px; left: 28px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .16em;
  padding: 7px 14px;
  border-radius: 100px;
}
.hero-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.hero-card .muted { color: var(--steel); font-size: .92rem; margin-bottom: 20px; }

/* ---------- forms ---------- */
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: .98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(12,22,32,.12);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(242,163,44,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-note { font-size: .8rem; color: var(--steel); margin-top: 12px; text-align: center; }

.form-success {
  display: none;
  background: #11331f;
  color: #b6f0c6;
  border-radius: var(--r-md);
  padding: 22px;
  text-align: center;
  font-weight: 500;
}
.form-success.show { display: block; }
.form-success b { font-family: var(--display); font-weight: 800; display: block; font-size: 1.1rem; margin-bottom: 4px; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 48px;
  color: rgba(255,255,255,.62);
}
.marquee-item::after {
  content: "";
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid rgba(12,22,32,.08);
  border-radius: var(--r-md);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: .8rem;
  color: var(--steel-lt);
  letter-spacing: .1em;
}
.svc-icon {
  width: 56px; height: 56px;
  background: var(--ink);
  border-radius: 12px;
  display: grid; place-items: center;
  margin: 16px 0 20px;
  transition: background .25s ease;
}
.svc-icon svg { width: 28px; height: 28px; color: var(--accent); }
.svc-card:hover .svc-icon { background: var(--accent); }
.svc-card:hover .svc-icon svg { color: var(--ink); }
.svc-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.svc-card p { color: var(--steel); font-size: .96rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .86rem;
  color: var(--accent-deep);
  margin-top: 18px;
}
.svc-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- why us / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--media-right .split-media { order: 2; }

.split-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-soft);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.media-tag {
  position: absolute;
  left: 22px; bottom: 22px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.media-tag .mt-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent-deep);
  line-height: 1;
}
.media-tag .mt-label { font-size: .82rem; color: var(--steel); line-height: 1.3; }

.feature-list { margin-top: 30px; display: grid; gap: 22px; }
.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.feature-mark {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--paper-warm);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800;
  color: var(--accent-deep);
}
.feature h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 3px;
}
.feature p { font-size: .94rem; color: var(--steel); }

/* ---------- process ---------- */
.process { background: var(--paper-warm); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 30px 26px;
  position: relative;
  border-left: 1px solid rgba(12,22,32,.12);
}
.step:first-child { border-left: none; }
.step-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(12,22,32,.1);
  margin-bottom: 14px;
}
.step.is-on .step-num { color: var(--accent); }
.step h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.step p { font-size: .92rem; color: var(--steel); }

/* ---------- stats band ---------- */
.statband { background: var(--ink); color: var(--white); }
.statband-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.statband-item b {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  display: block;
  line-height: 1;
  color: var(--accent);
}
.statband-item span {
  display: block;
  margin-top: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.66);
  letter-spacing: .03em;
}

/* ---------- testimonials ---------- */
.tmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tmt {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 30px;
  border: 1px solid rgba(12,22,32,.08);
  display: flex; flex-direction: column;
}
.tmt-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; }
.tmt-quote {
  font-size: 1.02rem;
  line-height: 1.6;
  flex: 1;
}
.tmt-quote::before { content: "\201C"; }
.tmt-quote::after  { content: "\201D"; }
.tmt-by {
  display: flex; align-items: center; gap: 13px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(12,22,32,.08);
}
.tmt-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  flex: none;
}
.tmt-by b { font-family: var(--display); font-weight: 700; font-size: .96rem; display: block; }
.tmt-by span { font-size: .82rem; color: var(--steel); }

/* ---------- big CTA ---------- */
.cta {
  position: relative;
  background: var(--accent);
  color: var(--accent-ink);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 16px, transparent 16px 32px);
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.cta h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.cta p { margin-top: 16px; font-size: 1.08rem; max-width: 44ch; color: rgba(42,26,4,.78); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.cta-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.cta-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.3rem; margin-bottom: 18px; }
.cta-card .field input,
.cta-card .field select,
.cta-card .field textarea {
  background: var(--ink-soft);
  border-color: var(--ink-line);
  color: var(--white);
}
.cta-card .field label { color: var(--steel-lt); }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 10%, #000, transparent 70%);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -120px; bottom: -240px;
  background: radial-gradient(circle, rgba(242,163,44,.28), transparent 65%);
}
.page-hero-inner { position: relative; max-width: 760px; }
.crumbs {
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--steel-lt);
  margin-bottom: 18px;
  display: flex; gap: 8px; align-items: center;
}
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--accent); }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.page-hero p {
  margin-top: 18px;
  font-size: 1.12rem;
  color: rgba(255,255,255,.72);
  max-width: 54ch;
}

/* ---------- detailed service rows ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(12,22,32,.1);
}
.svc-row:last-child { border-bottom: none; }
.svc-row .svc-media {
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-soft);
}
.svc-row .svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-row--flip .svc-media { order: 2; }
.svc-row .svc-tag {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.4rem;
  color: rgba(12,22,32,.1);
  line-height: 1;
}
.svc-row h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 8px 0 12px;
}
.svc-row p { color: var(--steel); }
.svc-checks { margin-top: 18px; display: grid; gap: 10px; }
.svc-checks li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: .96rem;
}
.svc-checks svg { width: 18px; height: 18px; color: var(--accent-deep); flex: none; }

/* ---------- values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  border: 1px solid rgba(12,22,32,.1);
  border-radius: var(--r-md);
  padding: 30px;
  background: var(--white);
}
.value-mark {
  width: 50px; height: 50px;
  border-radius: 11px;
  background: var(--ink);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.value-mark svg { width: 24px; height: 24px; color: var(--accent); }
.value h4 { font-family: var(--display); font-weight: 800; font-size: 1.16rem; margin-bottom: 8px; }
.value p { font-size: .94rem; color: var(--steel); }

/* ---------- team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.member { text-align: left; }
.member-photo {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-soft);
  margin-bottom: 14px;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member b { font-family: var(--display); font-weight: 800; font-size: 1.05rem; display: block; }
.member span { font-size: .86rem; color: var(--accent-deep); font-weight: 600; }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: grid; gap: 16px; }
.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(12,22,32,.1);
  border-radius: var(--r-md);
  padding: 20px;
}
.contact-item .ci-icon {
  width: 52px; height: 52px;
  border-radius: 11px;
  background: var(--ink);
  display: grid; place-items: center;
}
.contact-item .ci-icon svg { width: 24px; height: 24px; color: var(--accent); }
.contact-item b {
  font-family: var(--display); font-weight: 700;
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel); display: block; margin-bottom: 3px;
}
.contact-item p { font-size: 1.04rem; font-weight: 500; }
.contact-item a:hover { color: var(--accent-deep); }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(12,22,32,.1);
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-family: var(--display); font-weight: 800; font-size: 1.5rem; margin-bottom: 6px; }
.contact-form > p { color: var(--steel); margin-bottom: 24px; }

.map-strip {
  margin-top: 26px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(12,22,32,.1);
  height: 220px;
  background:
    repeating-linear-gradient(0deg, rgba(12,22,32,.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(12,22,32,.05) 0 1px, transparent 1px 40px),
    var(--paper-warm);
  display: grid; place-items: center;
  color: var(--steel);
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
}

/* ---------- faq ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(12,22,32,.12);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
}
.faq-q .faq-icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--paper-warm);
  display: grid; place-items: center;
  position: relative;
  transition: background .2s ease;
}
.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  content: ""; position: absolute;
  background: var(--accent-deep);
  border-radius: 2px;
}
.faq-q .faq-icon::before { width: 14px; height: 2px; }
.faq-q .faq-icon::after  { width: 2px; height: 14px; transition: transform .25s ease; }
.faq-item.open .faq-q .faq-icon { background: var(--accent); }
.faq-item.open .faq-q .faq-icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding: 0 4px 24px; color: var(--steel); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.66);
  padding: 76px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-brand .brand-name { color: var(--white); }
.footer-about {
  margin-top: 18px;
  font-size: .94rem;
  max-width: 32ch;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--ink-soft);
  display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a svg { width: 18px; height: 18px; color: rgba(255,255,255,.7); }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-social a:hover svg { color: var(--ink); }

.footer-col h5 {
  font-family: var(--display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .94rem; transition: color .18s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-contact li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .94rem;
  margin-bottom: 13px;
}
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-size: .85rem;
}
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in { opacity: 1; transform: none; }

/* page-load stagger for hero */
.hero [data-load] {
  opacity: 0;
  transform: translateY(20px);
  animation: load-in .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero [data-load="1"] { animation-delay: .05s; }
.hero [data-load="2"] { animation-delay: .15s; }
.hero [data-load="3"] { animation-delay: .25s; }
.hero [data-load="4"] { animation-delay: .35s; }
.hero [data-load="5"] { animation-delay: .45s; }
.hero [data-load="6"] { animation-delay: .55s; }
@keyframes load-in {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split--media-right .split-media { order: 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 34px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 88px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 30px rgba(0,0,0,.4);
    padding: 10px 28px 22px;
  }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .section { padding: 74px 0; }
  .services-grid, .tmt-grid, .values-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-left: none; border-top: 1px solid rgba(12,22,32,.12); }
  .step:nth-child(-n+2) { border-top: none; }
  .statband-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .svc-row, .svc-row--flip { grid-template-columns: 1fr; gap: 28px; }
  .svc-row .svc-media, .svc-row--flip .svc-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 22px 14px; }
  .hero-stat { flex: 1 1 40%; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav-links.open { top: 78px; }
  .footer-top { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-card, .cta-card, .contact-form { padding: 26px 22px; }
  .brand-tag { display: none; }
}
