/* ========================================================================
   Assesspro Consultants — Global Stylesheet
   Brand: Navy #0B1F3B · Crimson #8D0C16 · Silver #C9CCD1 · White #FFFFFF
   Type:  Google Sans (headings) · EB Garamond (body)
   ======================================================================== */

:root {
  --navy: #0B1F3B;
  --navy-90: rgba(11, 31, 59, 0.92);
  --navy-70: rgba(11, 31, 59, 0.7);
  --navy-10: rgba(11, 31, 59, 0.08);
  --crimson: #8D0C16;
  --crimson-dark: #6E0911;
  --silver: #C9CCD1;
  --silver-light: #EDEFF2;
  --silver-tint: #F6F7F9;
  --white: #FFFFFF;
  --ink: #0F1A2B;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 59, 0.06), 0 1px 3px rgba(11, 31, 59, 0.08);
  --shadow-md: 0 6px 20px rgba(11, 31, 59, 0.08), 0 2px 6px rgba(11, 31, 59, 0.06);
  --shadow-lg: 0 30px 60px -20px rgba(11, 31, 59, 0.25);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --font-display: "Google Sans", "Google Sans Display", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "EB Garamond", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }
.section--dark { background: var(--navy); color: var(--silver-light); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--tint { background: var(--silver-tint); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--crimson);
}
.section--dark .eyebrow { color: var(--silver); }
.section--dark .eyebrow::before { background: var(--silver); }

.lede {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--navy-70);
  max-width: 60ch;
  line-height: 1.55;
}
.section--dark .lede { color: var(--silver); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.btn--primary:hover { background: var(--crimson-dark); border-color: var(--crimson-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(11, 31, 59, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.logo__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.logo__mark svg { width: 100%; height: 100%; display: block; }
.logo small { font-family: var(--font-body); font-style: italic; color: var(--navy-70); font-size: 0.78rem; display: block; line-height: 1; margin-top: 2px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--navy); }

.header__cta { display: flex; align-items: center; gap: 12px; }
.header__cta .btn { padding: 11px 20px; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--navy);
  border-radius: var(--radius);
}
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .nav, .header__cta .btn { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .header__inner { height: 68px; }
}

.mobile-menu {
  position: fixed;
  inset: 68px 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--silver);
  padding: 24px var(--gutter) 32px;
  transform: translateY(-110%);
  transition: transform 0.3s var(--ease);
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--silver-light);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.35;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(141, 12, 22, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(11, 31, 59, 0.55) 0%, rgba(11, 31, 59, 0.95) 100%);
}
.hero__inner {
  padding: clamp(96px, 14vw, 180px) 0 clamp(88px, 12vw, 140px);
  max-width: 920px;
}
.hero__inner h1 { color: var(--white); }
.hero__inner h1 .accent { color: var(--silver); font-style: italic; font-family: var(--font-body); font-weight: 400; }
.hero__lede { font-size: clamp(1.15rem, 1.6vw, 1.35rem); color: var(--silver); max-width: 56ch; margin: 24px 0 36px; line-height: 1.55; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__meta {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: clamp(48px, 8vw, 88px);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero__meta div {
  background: var(--navy);
  padding: 28px 24px;
}
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.hero__meta span { color: var(--silver); font-size: 0.95rem; }
@media (max-width: 720px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Page hero (subpages) ---------- */
.pagehero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(110px, 14vw, 160px) 0 clamp(70px, 10vw, 110px);
  position: relative;
  overflow: hidden;
}
.pagehero::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -40%;
  width: 70%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(141, 12, 22, 0.3), transparent 70%);
  z-index: 0;
}
.pagehero__inner { position: relative; z-index: 1; max-width: 800px; }
.pagehero h1 { color: var(--white); margin-bottom: 18px; }
.pagehero p { color: var(--silver); font-size: clamp(1.05rem, 1.4vw, 1.2rem); max-width: 55ch; }
.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 24px;
}
.crumbs a { color: var(--silver); }
.crumbs span { opacity: 0.5; }

/* ---------- Trust strip ---------- */
.trust {
  padding: 40px 0;
  background: var(--silver-tint);
  border-bottom: 1px solid var(--silver-light);
}
.trust__row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 6vw, 64px);
  flex-wrap: wrap;
  justify-content: center;
}
.trust__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-70);
}
.trust__items {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  justify-content: center;
}
.trust__items span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust__items span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
}

/* ---------- Section header ---------- */
.sec-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.sec-head h2 { margin: 0; max-width: 18ch; }
.sec-head__body { color: var(--navy-70); font-size: 1.1rem; line-height: 1.6; }
.section--dark .sec-head__body { color: var(--silver); }
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; } }

/* ---------- Benefits grid ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--silver); }
.benefit__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.benefit__icon svg { width: 24px; height: 24px; }
.benefit h3 { margin-bottom: 10px; }
.benefit p { color: var(--navy-70); margin: 0; }
@media (max-width: 800px) { .benefits { grid-template-columns: 1fr; } }

/* ---------- Services preview / grid ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--silver); border: 1px solid var(--silver); border-radius: var(--radius-lg); overflow: hidden; }
.service {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s var(--ease);
  position: relative;
}
.service:hover { background: var(--silver-tint); }
.service__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--crimson);
  font-weight: 500;
}
.service h3 { margin: 0 0 4px; }
.service p { color: var(--navy-70); margin: 0; font-size: 1.02rem; }
.service ul { padding-left: 18px; margin: 8px 0 0; color: var(--navy-70); font-size: 0.98rem; }
.service ul li { margin-bottom: 4px; }
.service__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.service__more::after { content: "→"; transition: transform 0.25s var(--ease); }
.service:hover .service__more::after { transform: translateX(4px); }
@media (max-width: 960px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

/* ---------- Service detailed cards ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--silver-light);
}
.svc-detail:nth-child(even) { grid-template-columns: 1.2fr 1fr; }
.svc-detail:nth-child(even) .svc-detail__media { order: 2; }
.svc-detail__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.svc-detail__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc-detail:hover .svc-detail__media img { transform: scale(1.04); }
.svc-detail__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,59,0) 50%, rgba(11,31,59,0.4) 100%);
}
.svc-detail__tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--white);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.svc-detail h2 { margin-bottom: 16px; }
.svc-detail__list { columns: 2; column-gap: 30px; margin: 16px 0; padding: 0; list-style: none; }
.svc-detail__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.02rem;
  break-inside: avoid;
}
.svc-detail__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 1.5px;
  background: var(--crimson);
}
@media (max-width: 800px) {
  .svc-detail, .svc-detail:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .svc-detail:nth-child(even) .svc-detail__media { order: 0; }
  .svc-detail__list { columns: 1; }
}

/* ---------- About preview ---------- */
.about-prev { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-prev__media { position: relative; }
.about-prev__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-prev__media::after {
  content: "";
  position: absolute;
  bottom: -24px; right: -24px;
  width: 140px; height: 140px;
  background: var(--crimson);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-prev__media::before {
  content: "";
  position: absolute;
  top: -24px; left: -24px;
  width: 100px; height: 100px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-prev__body p { color: var(--navy-70); font-size: 1.1rem; }
.about-prev__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 32px 0; }
.about-prev__stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1;
}
.about-prev__stats div span { color: var(--navy-70); font-size: 0.95rem; }
@media (max-width: 800px) { .about-prev { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  padding: 36px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial__quote {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.testimonial__quote::before {
  content: "“";
  font-size: 3rem;
  line-height: 0.5;
  color: var(--crimson);
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial__author strong { font-family: var(--font-display); font-weight: 500; color: var(--white); display: block; font-size: 0.95rem; }
.testimonial__author span { color: var(--silver); font-size: 0.85rem; }
@media (max-width: 800px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 50%, rgba(141,12,22,0.5) 100%);
  z-index: -1;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-banner h2 { color: var(--white); margin: 0 0 14px; }
.cta-banner p { color: var(--silver); margin: 0; max-width: 50ch; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__actions { justify-content: flex-start; }
}

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: var(--silver); padding: 80px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .logo { color: var(--white); }
.footer__brand p { margin: 18px 0; max-width: 38ch; color: var(--silver); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.25s var(--ease);
}
.footer__socials a:hover { background: var(--crimson); transform: translateY(-2px); }
.footer__col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: var(--silver); font-family: var(--font-display); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--silver);
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   ABOUT page
   ======================================================================== */
.story { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.story__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); }
.story__body p { color: var(--navy-70); font-size: 1.1rem; }
.story__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--crimson);
  font-weight: 500;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
}
@media (max-width: 800px) { .story { grid-template-columns: 1fr; gap: 32px; } }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.value:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.value__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--crimson);
  margin-bottom: 16px;
  display: block;
}
.value h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value p { color: var(--navy-70); margin: 0; font-size: 1rem; }
@media (max-width: 900px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values { grid-template-columns: 1fr; } }

/* Mission/Vision split */
.mvbox { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mvbox div { padding: 40px; border-radius: var(--radius-lg); }
.mvbox .mission { background: var(--navy); color: var(--white); }
.mvbox .mission h3 { color: var(--white); }
.mvbox .vision { background: var(--silver-tint); }
.mvbox h3 { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; color: var(--crimson); }
.mvbox .mission h3 { color: var(--silver); }
.mvbox p { font-size: 1.15rem; line-height: 1.55; margin: 0; }
.mvbox .mission p { color: var(--silver-light); }
@media (max-width: 800px) { .mvbox { grid-template-columns: 1fr; } }

/* ========================================================================
   SERVICES page
   ======================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--silver-light);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--silver);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--navy-70); margin: 0; font-size: 0.98rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--silver-light);
  padding: 4px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 40px 24px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
  position: relative;
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--crimson);
  font-weight: 300;
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item[open] summary { color: var(--crimson); }
.faq__item p {
  margin: 0 0 24px;
  color: var(--navy-70);
  font-size: 1.05rem;
  max-width: 70ch;
}

/* ========================================================================
   LISTINGS page
   ======================================================================== */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0 40px;
  border-bottom: 1px solid var(--silver-light);
  margin-bottom: 48px;
  align-items: center;
}
.filters__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-70);
  margin-right: 14px;
}
.chip {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 9px 18px;
  border: 1px solid var(--silver);
  background: var(--white);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--navy); }
.chip.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--silver); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card__meta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 8px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--navy-70); font-size: 1rem; margin: 0 0 18px; }
.card__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--silver-light);
}
.card__foot span { font-family: var(--font-display); font-size: 0.82rem; color: var(--navy-70); }
.card__foot a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__foot a::after { content: "→"; transition: transform 0.25s var(--ease); }
.card__foot a:hover::after { transform: translateX(3px); }

@media (max-width: 900px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-cards { grid-template-columns: 1fr; } }

/* ========================================================================
   CONTACT page
   ======================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.form {
  background: var(--white);
  padding: 44px;
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form h2 { margin-bottom: 8px; }
.form__intro { color: var(--navy-70); margin-bottom: 28px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form__field label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 500;
}
.form__field input,
.form__field textarea,
.form__field select {
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 14px 16px;
  border: 1.5px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(11, 31, 59, 0.08);
}
.form__field textarea { resize: vertical; min-height: 140px; }
.form .btn { width: 100%; justify-content: center; padding: 16px 26px; margin-top: 8px; }
.form__note { font-size: 0.9rem; color: var(--navy-70); margin: 14px 0 0; text-align: center; }
@media (max-width: 700px) { .form__row { grid-template-columns: 1fr; } .form { padding: 28px; } }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.25s var(--ease);
}
.info-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.info-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}
.info-card__icon svg { width: 20px; height: 20px; }
.info-card h4 { margin: 0 0 4px; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--crimson); }
.info-card p { margin: 0; color: var(--navy); font-size: 1.05rem; line-height: 1.5; }
.info-card a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--silver); text-underline-offset: 4px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--silver-light);
}
.map iframe { width: 100%; height: 420px; border: 0; display: block; }

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

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Print friendly tweaks ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
