/* =========================
   VARIATION A — Editorial Calm (built out)
========================= */

.va-root { min-height: 100%; padding-top: 0; }

/* ─── HERO ─────────────────────────────────── */
.va-hero {
  position: relative;
  padding: 200px 0 140px;
  overflow: hidden;
  background: var(--rh-paper);
  isolation: isolate;
}
.va-hero__motif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.va-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.va-hero__copy { max-width: 640px; }
.va-hero__title {
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 1.0;
  margin: 0 0 40px;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--rh-teal-deep);
}
.va-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rh-gold);
}
.va-hero__lede {
  font-size: 19px;
  color: var(--rh-ink-soft);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 0 48px;
}
.va-hero__cta {
  display: flex;
  gap: 14px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.va-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--rh-rule);
  border-radius: var(--rh-r-lg);
  box-shadow: var(--rh-shadow-sm), var(--rh-shadow-inset);
  max-width: 600px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.va-hero__meta > div { display: flex; flex-direction: column; gap: 6px; }
.va-hero__meta-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-ink-soft);
}
.va-hero__meta-v {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--rh-teal);
  font-weight: 400;
}

/* Hero logo — soft cream pillow behind the watercolor mark */
.va-hero__logo {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  margin-left: auto;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
}
.va-hero__logo::before {
  content: "";
  position: absolute;
  inset: 6%;
  background: radial-gradient(ellipse at 30% 25%, #FFFFFF 0%, var(--rh-cream) 60%, var(--rh-paper-2) 100%);
  border-radius: 50%;
  z-index: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 -10px 40px rgba(184, 148, 86, 0.10) inset,
    0 50px 80px -30px rgba(20, 32, 31, 0.22),
    0 10px 28px -10px rgba(184, 148, 86, 0.18);
}
.va-hero__logo img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 92%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(20, 32, 31, 0.12));
}

/* ─── MARQUEE STRIP (insurance ticker) ─────── */
.va-strip {
  background: var(--rh-teal-deep);
  color: var(--rh-cream);
  padding: 22px 0;
  border-top: 1px solid rgba(244, 234, 211, 0.1);
  border-bottom: 1px solid rgba(244, 234, 211, 0.1);
  overflow: hidden;
}
.va-strip__track {
  display: flex;
  gap: 56px;
  animation: vaScroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-items: center;
}
.va-strip__item { display: inline-flex; align-items: center; gap: 12px; }
.va-strip__item::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--rh-gold);
  border-radius: 50%;
}
@keyframes vaScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── ABOUT ─────────────────────────────────── */
.va-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.va-about__title {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin-top: 24px;
  font-weight: 300;
}
.va-about__lead {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.4;
  color: var(--rh-teal);
  margin-bottom: 24px;
  font-weight: 300;
}
.va-about__body p { font-size: 17px; color: var(--rh-ink-soft); }
.va-about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rh-rule);
}
.va-about__pillar h4 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 12px 0 6px;
  font-weight: 400;
}
.va-about__pillar p {
  font-size: 14px;
  color: var(--rh-ink-soft);
  margin: 0;
}
.va-about__pillar-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rh-gold);
}

/* ─── PROCESS ─────────────────────────────── */
.va-process { background: var(--rh-cream); }
.va-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.va-process__step {
  padding: 36px 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--rh-paper) 100%);
  border: 1px solid var(--rh-rule);
  border-radius: var(--rh-r-lg);
  box-shadow: var(--rh-shadow-sm), var(--rh-shadow-inset);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.va-process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--rh-shadow-md);
}
.va-process__step-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rh-gold);
  margin-bottom: 16px;
  display: block;
}
.va-process__step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 400;
}
.va-process__step p {
  font-size: 14.5px;
  color: var(--rh-ink-soft);
  margin: 0;
}

/* ─── SERVICES ─────────────────────────────── */
.va-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.va-service {
  padding: 40px 32px 36px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--rh-paper) 100%);
  border: 1px solid var(--rh-rule);
  border-radius: var(--rh-r-lg);
  box-shadow: var(--rh-shadow-md), var(--rh-shadow-inset);
  transition: transform .35s ease, box-shadow .35s ease, background 1.2s ease, border-color 1.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
  cursor: pointer;
}
.va-service:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, #FFF8E8 0%, #F4E6C4 100%);
  border-color: rgba(184, 148, 86, 0.45);
  box-shadow: 0 30px 60px -20px rgba(184, 148, 86, 0.32), 0 8px 18px -6px rgba(184, 148, 86, 0.18);
}
.va-service:hover h3 { color: var(--rh-teal-deep); }
.va-service:hover .va-service__num { color: var(--rh-gold); }
.va-service:hover .va-service__icon { color: var(--rh-gold); }
.va-service:hover .va-service__desc { color: var(--rh-ink); }
.va-service:hover .va-service__more { color: var(--rh-gold); }

.va-service__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.va-service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rh-ink-soft);
  transition: color 1.2s ease;
}
.va-service__icon {
  display: inline-flex;
  width: 52px; height: 52px;
  padding: 10px;
  background: var(--rh-cream);
  border-radius: var(--rh-r-md);
  color: var(--rh-teal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 1px 2px rgba(20, 32, 31, 0.04);
  transition: color 1.2s ease, background 1.2s ease;
}
.va-service:hover .va-service__icon { background: rgba(246, 236, 214, 0.12); }
.va-service__icon svg { width: 100%; height: 100%; }
.va-service__title {
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
  transition: color 1.2s ease;
}
.va-service__desc {
  font-size: 15px;
  color: var(--rh-ink-soft);
  flex-grow: 1;
  line-height: 1.7;
  margin: 0;
  transition: color 1.2s ease;
}
.va-service__more {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-teal);
  border-bottom: none;
  align-self: flex-start;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 1.2s ease;
}

/* ─── TESTIMONIAL STRIP ───────────────────── */
.va-testimonial {
  padding: 100px 0;
  background: var(--rh-paper);
  border-top: 1px solid var(--rh-rule);
  border-bottom: 1px solid var(--rh-rule);
}
.va-testimonial__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.va-testimonial__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--rh-gold);
  margin-bottom: 12px;
}
.va-testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.4;
  color: var(--rh-teal);
  font-weight: 300;
  margin: 0 0 28px;
}
.va-testimonial__cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rh-ink-soft);
}

/* ─── TEAM ─────────────────────────────────── */
.va-team__list {
  display: grid;
  gap: 120px;
}
.va-team__row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.va-team__row:nth-child(even) {
  grid-template-columns: 1fr 420px;
}
.va-team__row:nth-child(even) .va-team__photo { order: 2; }
.va-team__row:nth-child(even) .va-team__body { order: 1; }

.va-team__photo {
  position: relative;
}
.va-team__photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--rh-cream);
  border-radius: var(--rh-r-lg);
  box-shadow: var(--rh-shadow-md);
  z-index: 0;
}
.va-team__row:nth-child(even) .va-team__photo::before {
  inset: 18px 18px -18px -18px;
}
.va-team__frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--rh-cream);
  border-radius: var(--rh-r-lg);
  box-shadow: 0 30px 60px -20px rgba(37, 48, 46, 0.32), 0 8px 18px -6px rgba(37, 48, 46, 0.14);
}
.va-team__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* default focal point — overridden per person below */
  object-position: center 25%;
}
/* Per-person focal tuning so each crop frames the face/subject well */
.va-team__frame[data-who="kim"] img    { object-position: 35% 30%; }
.va-team__frame[data-who="george"] img { object-position: center 38%; }
.va-team__frame[data-who="abbie"] img  { object-position: 70% 35%; }
.va-team__frame[data-who="brae"] img   { object-position: center 50%; }

.va-team__body { padding-top: 16px; }
.va-team__name {
  font-size: 44px;
  line-height: 1.05;
  margin: 16px 0 6px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.va-team__cred {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-gold);
  margin-bottom: 28px;
}
.va-team__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--rh-teal-muted);
  border-left: 2px solid var(--rh-gold);
  padding-left: 20px;
  margin: 0 0 28px;
  font-weight: 300;
}
.va-team__bio {
  font-size: 16px;
  color: var(--rh-ink-soft);
  margin-bottom: 32px;
  max-width: 580px;
}
.va-team__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--rh-rule);
  gap: 20px;
  flex-wrap: wrap;
}
.va-team__meta-k {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-ink-soft);
  margin-bottom: 4px;
}
.va-team__meta-v {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--rh-teal);
}
.va-team__book {
  /* Sized down a touch from the default .btn so it sits comfortably inside the team meta row */
  padding: 12px 22px !important;
  font-size: 13px !important;
}

/* ─── INSURANCE ─────────────────────────────── */
.va-insurance__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.va-insurance__title {
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.05;
  margin: 24px 0 24px;
  font-weight: 300;
}
.va-insurance__lede {
  color: rgba(244, 234, 211, 0.78);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 420px;
}
.va-insurance__list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid rgba(244, 234, 211, 0.18);
}
.va-insurance__list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244, 234, 211, 0.18);
  transition: padding-left .25s ease;
}
.va-insurance__list li:hover { padding-left: 14px; }
.va-insurance__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rh-gold);
}
.va-insurance__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--rh-cream);
  font-weight: 400;
}
.va-insurance__status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rh-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.va-insurance__status::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--rh-gold);
  border-radius: 50%;
}

/* ─── FAQ ─────────────────────────────────── */
.va-faq__list {
  display: grid;
  gap: 16px;
}
.va-faq__item {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--rh-paper) 100%);
  border: 1px solid var(--rh-rule);
  border-radius: var(--rh-r-lg);
  box-shadow: var(--rh-shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.va-faq__item:hover { box-shadow: var(--rh-shadow-md); }
.va-faq__item.open {
  box-shadow: var(--rh-shadow-md);
  border-color: rgba(184, 148, 86, 0.35);
}
.va-faq__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  align-items: center;
  background: none;
  border: none;
  padding: 28px 32px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.va-faq__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rh-gold);
}
.va-faq__q {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--rh-teal);
  letter-spacing: -0.01em;
}
.va-faq__plus {
  width: 32px;
  height: 32px;
  position: relative;
  justify-self: end;
  background: var(--rh-cream);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(37, 48, 46, 0.06);
  transition: background .3s, transform .3s;
}
.va-faq__plus::before, .va-faq__plus::after {
  content: "";
  position: absolute;
  background: var(--rh-teal);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .25s;
  border-radius: 1px;
}
.va-faq__plus::before { width: 12px; height: 1.5px; }
.va-faq__plus::after { width: 1.5px; height: 12px; }
.va-faq__item.open .va-faq__plus {
  background: linear-gradient(180deg, var(--rh-teal-muted), var(--rh-teal));
  transform: rotate(45deg);
  box-shadow: 0 4px 10px -2px rgba(31, 71, 68, 0.32);
}
.va-faq__item.open .va-faq__plus::before,
.va-faq__item.open .va-faq__plus::after { background: var(--rh-cream); }
.va-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.va-faq__a > div { overflow: hidden; }
.va-faq__a p {
  font-size: 16px;
  color: var(--rh-ink-soft);
  margin: 0;
  padding: 0 32px 28px 116px;
  max-width: 720px;
  line-height: 1.75;
}
.va-faq__item.open .va-faq__a { grid-template-rows: 1fr; }

/* ─── CONTACT ─────────────────────────────── */
.va-contact { background: var(--rh-paper); }
.va-contact__card {
  text-align: center;
  padding: 100px 60px;
  border: 1px solid var(--rh-rule);
  background:
    radial-gradient(ellipse at top, rgba(184, 148, 86, 0.16), transparent 65%),
    linear-gradient(180deg, #FFFFFF 0%, var(--rh-cream) 100%);
  border-radius: var(--rh-r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--rh-shadow-lg), var(--rh-shadow-inset);
}
.va-contact__card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px;
  background: linear-gradient(90deg, transparent, var(--rh-gold), transparent);
  border-radius: 0 0 var(--rh-r-pill) var(--rh-r-pill);
}
.va-contact .btn--large {
  padding: 18px 40px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* "Call us" button — label flips to phone number on hover.
   Both states share the same width via grid-stack so the pill doesn't reflow. */
.va-contact__call {
  display: inline-grid !important;
  grid-template-areas: "stack";
  align-items: center;
  justify-items: center;
  position: relative;
  overflow: hidden;
}
.va-contact__call .va-contact__call-label,
.va-contact__call .va-contact__call-number {
  grid-area: stack;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: opacity .25s ease, transform .25s ease;
}
.va-contact__call .va-contact__call-number {
  opacity: 0;
  transform: translateY(6px);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.va-contact__call:hover .va-contact__call-label {
  opacity: 0;
  transform: translateY(-6px);
}
.va-contact__call:hover .va-contact__call-number {
  opacity: 1;
  transform: translateY(0);
}
.va-contact__title {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  margin: 24px 0 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.va-contact__title em { color: var(--rh-gold); font-style: italic; font-weight: 300; }
.va-contact__lede {
  font-size: 18px;
  color: var(--rh-ink-soft);
  max-width: 540px;
  margin: 0 auto 36px;
}
.va-contact__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.va-contact__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  font-size: 14px;
  color: var(--rh-ink-soft);
  padding-top: 40px;
  border-top: 1px solid var(--rh-rule);
  max-width: 700px;
  margin: 0 auto;
}
.va-contact__meta > div { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.va-contact__meta-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-gold);
}
.va-contact__meta-v {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--rh-teal);
}
.va-contact__meta-action {
  display: inline-grid;
  gap: 8px;
  justify-items: center;
}
.va-contact__meta-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.va-contact__meta-action:hover .va-contact__meta-actions,
.va-contact__meta-action:focus-within .va-contact__meta-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.va-contact__meta-actions a,
.va-contact__meta-actions button {
  border: 1px solid rgba(184, 148, 86, 0.35);
  border-radius: var(--rh-r-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--rh-teal);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1;
  padding: 8px 11px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.va-contact__meta-actions a:hover,
.va-contact__meta-actions button:hover,
.va-contact__meta-actions a:focus-visible,
.va-contact__meta-actions button:focus-visible {
  background: #fff;
  border-color: var(--rh-gold);
  color: var(--rh-gold);
  outline: none;
}

/* ─── MODAL ────────────────────────────────── */
.va-modal { display: none; position: fixed; inset: 0; z-index: 200; }
.va-modal.open { display: flex; align-items: center; justify-content: center; }
.va-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 32, 31, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.va-modal__inner {
  position: relative;
  background: var(--rh-paper);
  max-width: 940px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: var(--rh-r-xl);
  box-shadow: 0 40px 80px -20px rgba(20, 32, 31, 0.4), 0 12px 28px -10px rgba(20, 32, 31, 0.2);
  z-index: 1;
}
.va-modal__body {
  padding: 52px;
  position: relative;
}
.va-modal__head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
  padding-right: 44px;
  margin-bottom: 32px;
}
.va-modal__photo {
  aspect-ratio: 1;
  background: var(--rh-cream);
  overflow: hidden;
  border-radius: var(--rh-r-md);
  box-shadow: 0 24px 48px -24px rgba(37, 48, 46, 0.38), 0 8px 18px -10px rgba(37, 48, 46, 0.18);
}
.va-modal__photo .rh-placeholder { width: 100%; height: 100%; }
.va-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 30%;
}
.va-modal__photo[data-who="kim"] img    { object-position: 35% 30%; }
.va-modal__photo[data-who="george"] img { object-position: center 38%; }
.va-modal__photo[data-who="abbie"] img  { object-position: 70% 35%; }
.va-modal__photo[data-who="brae"] img   { object-position: center 50%; }
.va-modal__close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--rh-cream);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 20px;
  color: var(--rh-teal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 10px -2px rgba(37, 48, 46, 0.12);
  transition: background .25s, color .25s, transform .25s;
}
.va-modal__close:hover {
  background: linear-gradient(180deg, var(--rh-teal-muted), var(--rh-teal));
  color: var(--rh-cream);
  transform: rotate(90deg);
}
.va-modal__cred {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-gold);
  margin-bottom: 12px;
}
.va-modal__name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--rh-teal);
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.va-modal__focus {
  margin: 0;
  color: var(--rh-ink-soft);
  font-size: 16px;
}
.va-modal__bio {
  font-size: 15.5px;
  color: var(--rh-ink-soft);
  line-height: 1.7;
  white-space: pre-wrap;
}

/* ─── HERO BUBBLES ─────────────────────────────────── */
.va-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2; /* above hero content so every bubble is always hittable */
}

.va-bubble {
  position: absolute;
  border-radius: 50%;
  /* center the orb on its x/y coordinates */
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  /* layered radial gradients — highlight on top-left, color body on bottom-right */
  background:
    radial-gradient(
      circle at 34% 28%,
      rgba(255, 255, 255, 0.52) 0%,
      rgba(255, 255, 255, 0.10) 45%,
      transparent 68%
    ),
    radial-gradient(
      circle at 62% 68%,
      var(--bubble-color) 0%,
      transparent 62%
    );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.38),
    0 2px 18px rgba(0, 0, 0, 0.04);
  opacity: 0.14;
  transition: opacity 0.4s ease;
  will-change: left, top;
}

.va-bubble:hover {
  opacity: 0.30;
}

.va-bubble.popping {
  animation: va-pop 0.44s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  pointer-events: none;
}

@keyframes va-pop {
  /* no opacity at 0% — animation inherits current bubble opacity */
  0%   { transform: translate(-50%, -50%) scale(1); }
  35%  { transform: translate(-50%, -50%) scale(1.55); }
  70%  { transform: translate(-50%, -50%) scale(1.9);  opacity: 0.18; }
  100% { transform: translate(-50%, -50%) scale(0.3);  opacity: 0; }
}

/* Responsive */
@media (max-width: 900px) {
  .va-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .va-hero__logo { max-width: 320px; margin: 0 auto; }
  .va-hero__meta { grid-template-columns: 1fr; gap: 16px; }
  .va-about__grid { grid-template-columns: 1fr; gap: 32px; }
  .va-about__pillars, .va-process__steps, .va-services__grid { grid-template-columns: 1fr; }
  .va-team__row, .va-team__row:nth-child(even) { grid-template-columns: 1fr; gap: 32px; }
  .va-team__row:nth-child(even) .va-team__photo { order: 0; }
  .va-team__row:nth-child(even) .va-team__body { order: 0; }
  .va-insurance__inner { grid-template-columns: 1fr; gap: 48px; }
  .va-modal__inner { max-height: 90vh; }
  .va-modal__body { padding: 34px 24px; }
  .va-modal__head { grid-template-columns: 108px 1fr; gap: 18px; padding-right: 34px; margin-bottom: 24px; }
  .va-faq__a p { padding: 0 24px 24px 24px; }
  .va-faq__btn { grid-template-columns: 40px 1fr 32px; gap: 16px; padding: 22px 24px; }
  .va-contact__meta { grid-template-columns: 1fr; }
}
