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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Cinzel:wght@500;700;900&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:     #d4af37;
  --accent-deep:#a8861d;
  --accent-ink: #2a2104;

  --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: 'Poppins', system-ui, sans-serif;
  --body:    'Poppins', 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(212, 175, 55, .8);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(212, 175, 55, .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:
    linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.08) 26%, rgba(255,255,255,0) 52%),
    radial-gradient(130% 190% at 50% -70%, rgba(212,175,55,.16) 0%, rgba(212,175,55,0) 58%),
    linear-gradient(180deg, rgba(17,27,38,.88) 0%, rgba(8,14,21,.84) 100%);
  backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(212, 175, 55, .22);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  color: var(--white);
}
.site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.08) 26%, rgba(255,255,255,0) 52%),
    radial-gradient(130% 190% at 50% -70%, rgba(212,175,55,.16) 0%, rgba(212,175,55,0) 58%),
    linear-gradient(180deg, rgba(15,24,34,.97) 0%, rgba(7,12,19,.96) 100%);
  border-bottom-color: rgba(212, 175, 55, .14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(212, 175, 55, .28),
    0 2px 26px rgba(0, 0, 0, .4);
}
.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,.8); }
.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: 800;
  font-size: .98rem;
  letter-spacing: .015em;
  position: relative;
  padding: 6px 0;
  color: rgba(255, 255, 255, .96);
  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: 800;
  font-size: .98rem;
  color: #fff;
  white-space: nowrap;
  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: 56px 0 72px;
  overflow: hidden;
  background: #0a0e12 url('../hero-wide.jpg') 24% 12% / 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,.97);
  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; }

/* remove service-card numbering */
.svc-num { display: none; }

/* why-us: photo centered, benefits on both sides */
.why-grid {
  display: grid;
  grid-template-columns: 1fr .82fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}
.why-col { display: grid; gap: 30px; align-content: center; }
.why-col--left { text-align: right; }
.why-col--left .feature { grid-template-columns: 1fr 48px; }
.why-col--left .feature-mark { order: 2; }
.why-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--ink-soft);
}
.why-media img { width: 100%; height: 100%; object-fit: cover; }

/* benefit + cities moving ticker */
.benefit-marquee {
  margin: 44px 0 10px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.bm-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: bm-scroll 55s linear infinite;
}
.benefit-marquee:hover .bm-track { animation-play-state: paused; }
@keyframes bm-scroll { to { transform: translateX(-50%); } }
.bm-pill {
  flex: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(12,22,32,.1);
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.bm-pill::before {
  content: ""; width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent); transform: rotate(45deg); flex: none;
}
.bm-city { background: var(--ink); color: var(--white); border-color: var(--ink); }
.bm-city::before { background: var(--accent); border-radius: 50%; transform: none; }

/* header mini-truck animation — road rolls, wheels spin, cab bobs on its
   suspension, and every ~9s the truck drives off and re-enters the frame */
.mini-truck { display: inline-flex; align-items: center; color: var(--accent); margin-right: 2px; }
.mini-truck .mt-svg { width: 56px; height: 30px; overflow: hidden; }
.mt-road { animation: mt-road .5s linear infinite; }
@keyframes mt-road { to { stroke-dashoffset: 12; } }
.mt-wheel { transform-box: fill-box; transform-origin: center; animation: mt-spin .55s linear infinite; }
@keyframes mt-spin { to { transform: rotate(360deg); } }
.mt-truck { animation: mt-drive 9s cubic-bezier(.45,0,.4,1) infinite; }
@keyframes mt-drive {
  0%, 78%    { transform: translateX(0); }
  88%        { transform: translateX(74px); }
  88.01%     { transform: translateX(-74px); }
  100%       { transform: translateX(0); }
}
.mt-bob { animation: mt-bob .9s ease-in-out infinite; }
@keyframes mt-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-.8px); }
}
.mt-line { stroke: currentColor; opacity: 0; animation: mt-line 1.6s ease-out infinite; }
.mt-line--2 { animation-delay: .8s; }
@keyframes mt-line {
  0%   { opacity: 0; transform: translateX(0); }
  25%  { opacity: .7; }
  100% { opacity: 0; transform: translateX(-13px); }
}

/* floating reviews wall — 4 staggered rows, slow leftward drift */
.reviews-wall {
  margin-top: 40px;
  padding: 28px 0 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.rw-row {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 16px 0;
  will-change: transform;
}
.rw-row.rw-anim { animation: rw-scroll linear infinite; }
@keyframes rw-scroll { to { transform: translateX(-50%); } }
.reviews-wall:hover .rw-row { animation-play-state: paused; }
.rw-card {
  flex: none;
  width: 296px;
  background: var(--white);
  border: 1px solid rgba(12,22,32,.05);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: 0 20px 45px -18px rgba(12,22,32,.45), 0 3px 8px rgba(12,22,32,.07);
}
.rw-stars { color: var(--accent); letter-spacing: 1px; font-size: .9rem; margin-bottom: 9px; }
.rw-text { font-size: .94rem; line-height: 1.5; color: var(--ink); }
.rw-by { margin-top: 13px; font-family: var(--display); font-weight: 600; font-size: .84rem; color: var(--steel); }
.rw-by b { color: var(--ink); font-weight: 800; }
@media (max-width: 600px) { .rw-card { width: 250px; } }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; gap: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
  .why-col--left { text-align: left; }
  .why-col--left .feature { grid-template-columns: 48px 1fr; }
  .why-col--left .feature-mark { order: 0; }
  .why-media { order: -1; aspect-ratio: 16 / 11; }
}
@media (max-width: 860px) { .mini-truck { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .bm-track, .mt-road, .mt-wheel { animation: none; }
}

.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: #ffffff;
}
.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,.95);
  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 — compact enough to fit the first viewport */
.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 26px 28px 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card .field { margin-bottom: 10px; }
.hero-card .field-row { gap: 10px; }
.hero-card .field input,
.hero-card .field select { padding: 11px 13px; }
.hero-card .field textarea { min-height: 58px; padding: 10px 13px; }
.hero-card .field label { margin-bottom: 4px; }
.hero-card .btn--lg { padding: 15px 30px; }
.hero-card .form-note { margin-top: 9px; }
.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(212,175,55,.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,.9);
}
.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,.93);
  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,33,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: rgba(255,255,255,.9); }

/* ---------- 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(212,175,55,.28), transparent 65%);
}
.page-hero-inner { position: relative; max-width: 760px; }
.crumbs {
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  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,.95);
  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,.93);
  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,.95); }
.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 ----------
   Runs as a keyframe animation (not a transition) so it never fights the
   hover transitions that cards define for themselves. */
[data-reveal] { opacity: 0; }
/* fill-mode backwards (not forwards) so the finished animation releases the
   element and hover transforms on cards work again; .in holds the end state */
[data-reveal].in { animation: reveal-in .9s cubic-bezier(.16,.84,.28,1) backwards; opacity: 1; }
[data-reveal="left"]  { --rv-x: -42px; --rv-y: 0px; }
[data-reveal="right"] { --rv-x: 42px;  --rv-y: 0px; }
[data-reveal="zoom"]  { --rv-s: .93;   --rv-y: 16px; }
@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translate(var(--rv-x, 0px), var(--rv-y, 34px)) scale(var(--rv-s, 1));
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }
}

/* inner-page hero: content floats in on load */
.page-hero .crumbs,
.page-hero h1,
.page-hero p {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  animation: load-in-blur .9s cubic-bezier(.16,.84,.28,1) forwards;
}
.page-hero h1 { animation-delay: .12s; }
.page-hero p  { animation-delay: .26s; }
@keyframes load-in-blur {
  to { opacity: 1; transform: none; filter: blur(0); }
}

/* 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; filter: 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; }
}

/* ---------- pricing plans ---------- */
.pricing-strip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--accent-deep);
  font-family: var(--display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.pricing-strip i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex: none; display: block;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,.55); }
  50%      { box-shadow: 0 0 0 7px rgba(212,175,55,0); }
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid rgba(12,22,32,.1);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.plan--popular {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.plan--popular:hover { box-shadow: var(--shadow-lg); }
.plan-flag {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(212,175,55,.9);
}
.plan-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-for { font-size: .9rem; color: var(--steel); margin-top: 4px; }
.plan--popular .plan-for { color: rgba(255,255,255,.6); }
.plan-price {
  display: flex; align-items: baseline; gap: 10px;
  margin: 22px 0 4px;
}
.plan-price b {
  font-family: var(--display);
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.plan--popular .plan-price b { color: var(--accent); }
.plan-price .per { font-size: .95rem; color: var(--steel); font-weight: 600; }
.plan--popular .plan-price .per { color: rgba(255,255,255,.6); }
.plan-was {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--steel-lt);
  text-decoration: line-through;
  text-decoration-color: rgba(214,133,26,.75);
  text-decoration-thickness: 2px;
}
.plan-save {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(212,175,55,.14);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.plan--popular .plan-save { color: var(--accent); background: rgba(212,175,55,.16); }
.plan-feats {
  display: grid; gap: 12px;
  padding: 22px 0;
  margin-top: 6px;
  border-top: 1px solid rgba(12,22,32,.1);
  flex: 1;
}
.plan--popular .plan-feats { border-top-color: rgba(255,255,255,.14); }
.plan-feats li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .96rem; font-weight: 500;
}
.plan-feats svg {
  width: 19px; height: 19px; flex: none;
  color: var(--accent-deep);
  margin-top: 2px;
}
.plan--popular .plan-feats svg { color: var(--accent); }
/* features cascade in once the card reveals */
.plan .plan-feats li { opacity: 0; transform: translateX(-14px); transition: opacity .5s ease, transform .5s ease; }
.plan.in .plan-feats li { opacity: 1; transform: none; }
.plan.in .plan-feats li:nth-child(1) { transition-delay: .30s; }
.plan.in .plan-feats li:nth-child(2) { transition-delay: .38s; }
.plan.in .plan-feats li:nth-child(3) { transition-delay: .46s; }
.plan.in .plan-feats li:nth-child(4) { transition-delay: .54s; }
.plan.in .plan-feats li:nth-child(5) { transition-delay: .62s; }
.plan.in .plan-feats li:nth-child(6) { transition-delay: .70s; }
.plan.in .plan-feats li:nth-child(7) { transition-delay: .78s; }
.pricing-note {
  text-align: center;
  color: var(--steel);
  font-size: .95rem;
  margin-top: 34px;
}
.pricing-note b { color: var(--ink); }

/* ---------- about: story + photo slot ---------- */
.photo-slot {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 38%, rgba(212,175,55,.14), transparent 62%),
    var(--ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.photo-slot img { width: 52%; height: auto; opacity: .92; }
.photo-slot .ps-label {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(12,22,32,.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.97);
  font-family: var(--display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px;
}
.photo-slot .ps-label i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex: none; display: block;
}

/* ---------- about: why-choose seal cards ---------- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.choose {
  background: var(--white);
  border: 1px solid rgba(12,22,32,.1);
  border-radius: var(--r-md);
  padding: 34px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.choose:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.choose::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;
}
.choose:hover::after { transform: scaleX(1); }
.choose-seal {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 12px 26px -12px rgba(12,22,32,.6);
}
.choose-seal svg { width: 34px; height: 34px; color: var(--accent); }
.choose h4 { font-family: var(--display); font-weight: 800; font-size: 1.18rem; margin-bottom: 10px; }
.choose p { font-size: .95rem; color: var(--steel); }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; gap: 34px; }
  .choose-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}

/* short viewports: tighten the hero further so the quote card never clips */
@media (max-height: 830px) and (min-width: 1081px) {
  .hero { padding: 28px 0 48px; }
  .hero-inner { min-height: 0; }
  .hero-card { padding: 20px 24px 16px; }
  .hero-card h3 { font-size: 1.22rem; }
  .hero-card .muted { margin-bottom: 12px; }
  .hero-card .field { margin-bottom: 7px; }
  .hero-card .field input,
  .hero-card .field select { padding: 9px 12px; }
  .hero-card .field textarea { min-height: 42px; padding: 8px 12px; }
  .hero-card .btn--lg { padding: 13px 26px; }
  .hero-card .form-note { margin-top: 7px; }
}

/* mid-width headers: nav needs ~1050px with the phone visible, so shed
   pieces progressively instead of clipping the Free Quote button */
@media (max-width: 1250px) and (min-width: 861px) {
  .nav-phone { display: none; }
  .nav-links { gap: 24px; }
}
@media (max-width: 1080px) and (min-width: 861px) {
  .mini-truck { display: none; }
  .brand-mark { width: 230px; height: 68px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .92rem; }
}

/* tiny phones: keep the hamburger inside the viewport */
@media (max-width: 430px) {
  .brand-mark { width: 148px; height: 46px; }
  .nav-right { gap: 10px; }
  .nav-right .btn--primary { padding: 12px 14px; font-size: .82rem; }
}

/* ---------- header services dropdown ---------- */
.nav-item { position: relative; display: flex; align-items: center; }
.drop-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; margin-left: 1px;
  color: rgba(255,255,255,.65);
  transition: transform .25s ease, color .2s ease;
}
.drop-arrow svg { width: 13px; height: 13px; }
.nav-item:hover .drop-arrow, .nav-item.open .drop-arrow { transform: rotate(180deg); color: var(--accent); }
.drop-menu {
  position: absolute; top: calc(100% + 16px); left: -18px;
  min-width: 288px;
  background: rgba(10, 18, 26, .97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 10px;
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  box-shadow: 0 30px 60px -18px rgba(0,0,0,.65);
  z-index: 60;
}
/* invisible bridge so the menu doesn't close crossing the gap */
.drop-menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-item:hover .drop-menu,
.nav-item:focus-within .drop-menu,
.nav-item.open .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .drop-menu a {
  font-weight: 700; font-size: .9rem;
  color: rgba(255,255,255,.97);
  padding: 10px 14px; border-radius: 9px;
  display: flex; align-items: center; gap: 10px;
}
.nav-links .drop-menu a::after { display: none; }

.nav-links .drop-menu a:hover { background: rgba(212,175,55,.13); color: var(--accent); }

.nav-links .drop-menu .drop-all { border-top: 1px solid rgba(255,255,255,.09); margin-top: 6px; padding-top: 12px; color: var(--accent); }
@media (max-width: 860px) {
  .nav-links.open .nav-item { width: 100%; flex-wrap: wrap; }
  .nav-links.open .nav-item > a { flex: 1; }
  .drop-menu {
    position: static; min-width: 0; width: 100%;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 8px 16px;
    opacity: 1; visibility: visible; transform: none;
    display: none;
  }
  .nav-item.open .drop-menu { display: grid; }
  .nav-links.open .drop-menu a { border-bottom: none; padding: 10px 12px; }
  .drop-menu::before { display: none; }
}

/* ---------- service detail pages ---------- */
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
.inc-item {
  background: var(--white);
  border: 1px solid rgba(12,22,32,.09);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .22s ease, box-shadow .22s ease;
}
.inc-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.inc-check {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  margin-top: 2px;
}
.inc-check svg { width: 15px; height: 15px; color: var(--accent); }
.inc-item b { font-family: var(--display); font-weight: 800; font-size: 1.02rem; display: block; margin-bottom: 4px; }
.inc-item p { font-size: .92rem; color: var(--steel); }
@media (max-width: 860px) { .inc-grid { grid-template-columns: 1fr; } }

.proc-steps { display: grid; gap: 26px; }
.pstep { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; }
.pstep-num {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--display); font-weight: 900; font-size: 1.35rem;
  display: grid; place-items: center;
}
.pstep h4 { font-family: var(--display); font-weight: 800; font-size: 1.12rem; margin-bottom: 5px; }
.pstep p { font-size: .95rem; color: var(--steel); }

.cta--simple .cta-inner { grid-template-columns: 1fr; text-align: center; }
.cta--simple .cta-actions { justify-content: center; }
.cta--simple p { margin-left: auto; margin-right: auto; }

/* ---------- polished metallic gold ---------- */
.btn--primary {
  background: linear-gradient(115deg, #9a7a1a 0%, #d4af37 25%, #f7e27b 47%, #d4af37 62%, #a8861d 85%, #dcbe52 100%);
  background-size: 220% 100%;
  animation: gold-pan 7s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
@keyframes gold-pan { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.btn--primary::after {
  content: ""; position: absolute; top: -30%; bottom: -30%; left: -80%;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: gold-sheen 3.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gold-sheen { 0%, 55% { left: -80%; } 85%, 100% { left: 170%; } }
.hero h1 em {
  background: linear-gradient(115deg, #a8861d 0%, #d4af37 30%, #f7e27b 50%, #d4af37 70%, #a8861d 100%);
  background-size: 200% 100%;
  animation: gold-pan 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.hero h1 em::after {
  content: ""; position: absolute; top: -30%; bottom: -30%; left: -60%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  animation: gold-sheen 4.6s ease-in-out infinite;
}
.accent {
  background: linear-gradient(100deg, #96771a 0%, #c8a52f 38%, #eBd67c 52%, #b08d21 68%, #96771a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #b08d21;
}
.statband-item b,
.plan--popular .plan-price b {
  background: linear-gradient(100deg, #b08d21 0%, #f7e27b 42%, #d4af37 58%, #f0d879 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d4af37;
}
.plan-flag {
  background: linear-gradient(115deg, #b08d21, #d4af37 35%, #f7e27b 55%, #d4af37 75%, #b08d21);
  background-size: 200% 100%;
  animation: gold-pan 5s ease-in-out infinite;
}
.eyebrow::before, .eyebrow--center::after {
  background: linear-gradient(90deg, #d4af37, #f7e27b);
}

/* ---------- bold section sub-texts ---------- */
.lead, .svc-card p, .feature p, .value p, .choose p, .inc-item p,
.pstep p, .step p, .svc-row p, .cta p, .plan-for, .plan-feats li,
.hero-card .muted, .page-hero p { font-weight: 600; }

/* ---------- UGC video wall ---------- */
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ugc-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ugc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ugc-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ugc-sound {
  position: absolute; right: 12px; bottom: 12px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(12,22,32,.72);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  color: #fff;
  pointer-events: none;
  transition: background .2s ease, color .2s ease;
}
.ugc-sound svg { width: 18px; height: 18px; }
.ugc-card.sound-on .ugc-sound { background: var(--accent); color: var(--ink); }
@media (max-width: 980px) { .ugc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ugc-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }

/* ---------- header truck run: left corner -> tunnel -> out after Free Quote ---------- */
.truck-run {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 46px;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 21%, transparent 26%, transparent 88%, #000 93%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 21%, transparent 26%, transparent 88%, #000 93%, #000 100%);
}
.truck-run::before, .truck-run::after {
  content: ""; position: absolute; bottom: 0;
  width: 3px; height: 26px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.6));
  border-radius: 2px;
}
.truck-run::before { left: 20.6%; }
.truck-run::after  { left: 92.6%; }
.tr-truck {
  position: absolute; left: 0; bottom: 2px;
  width: 109px; height: 43px;
  animation: tr-drive 12s linear infinite;
  will-change: transform;
}
@keyframes tr-drive {
  from { transform: translateX(-118px); }
  to   { transform: translateX(calc(100vw + 12px)); }
}
.tr-truck .trw {
  transform-box: fill-box;
  transform-origin: center;
  animation: mt-spin .5s linear infinite;
}
@media (max-width: 860px) { .truck-run { display: none; } }
@media (prefers-reduced-motion: reduce) { .truck-run { display: none; } }

/* ---------- dropdown service icons (gold gradient strokes) ---------- */
.drop-ico {
  width: 17px; height: 17px; flex: none;
  filter: drop-shadow(0 1px 3px rgba(212,175,55,.35));
  transition: transform .18s ease;
}
.nav-links .drop-menu a:hover .drop-ico { transform: scale(1.15); }

/* ---------- about monogram: living gold sheen over the logo panel ---------- */
.photo-slot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,236,170,.3) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: slot-sheen 4.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes slot-sheen {
  0%, 55% { transform: translateX(-130%); }
  90%, 100% { transform: translateX(130%); }
}
.photo-slot img {
  filter: drop-shadow(0 0 26px rgba(212,175,55,.45));
  animation: slot-glow 3.6s ease-in-out infinite;
}
@keyframes slot-glow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(212,175,55,.35)); }
  50%      { filter: drop-shadow(0 0 34px rgba(212,175,55,.6)); }
}

/* ---------- polished chrome header (the strip the trailer drives on) ---------- */
.site-header {
  background: linear-gradient(180deg, rgba(44,54,66,.94) 0%, rgba(22,32,44,.92) 40%, rgba(9,15,23,.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 -1px 0 rgba(212,175,55,.28), 0 8px 30px -12px rgba(0,0,0,.55);
}
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(38,48,60,.97) 0%, rgba(18,27,38,.97) 40%, rgba(8,13,20,.98) 100%);
}
/* static top gloss — the "just waxed" light catch */
.site-header::before {
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.03) 34%, transparent 60%);
}
/* slow light band sweeping across the whole bar */
.site-header::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.09) 44%, rgba(255,255,255,.02) 50%, transparent 64%);
  background-size: 280% 100%;
  animation: header-sheen 9s ease-in-out infinite;
}
@keyframes header-sheen {
  0%, 100% { background-position: 130% 0; }
  50%      { background-position: -30% 0; }
}
.site-header .nav { position: relative; z-index: 2; }
.truck-run { z-index: 1; }
@media (prefers-reduced-motion: reduce) { .site-header::after { animation: none; } }

/* ---------- mobile hardening: nothing may force a column wider than the screen ---------- */
.contact-grid > * { min-width: 0; }
.contact-item { min-width: 0; }
.contact-item p, .contact-item b { overflow-wrap: anywhere; }
.footer-contact li { overflow-wrap: anywhere; }
@media (max-width: 520px) {
  .contact-item { grid-template-columns: 44px 1fr; gap: 12px; padding: 16px; }
  .contact-item .ci-icon { width: 44px; height: 44px; }
  .contact-item p { font-size: .95rem; }
}
