/* MEET2 — Variant A · Conservative — section styles
   Scoped to .va wrapper so they don't leak into other variants. */

.va {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  --content-w: 1200px;
}

.va h1, .va h2, .va h3, .va h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.va p { margin: 0; line-height: 1.7; color: var(--ink-2); }

/* ── Section head ─────────────────────────────────────────── */
.va-sec-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.va-sec-head h2 { font-size: 44px; line-height: 1.25; margin-top: 18px; text-wrap: balance; }
.va-sec-head .m-eyebrow { color: var(--gold-deep); }
.va-sec-sub { margin-top: 18px; font-size: 16px; line-height: 1.7; }
.va-sec-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  text-align: left; max-width: var(--content-w); gap: 32px;
}
.va-sec-head--row h2 { margin-top: 10px; }

/* ── Hero (A1) ────────────────────────────────────────────── */
.va-hero {
  position: relative;
  padding: 32px var(--gutter) 110px;
  overflow: hidden;
  background: var(--bg);
}
.va-hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.va-hero-blob {
  position: absolute;
  width: 620px; height: 620px; border-radius: 50%;
  filter: blur(80px); opacity: 0.45;
}
.va-hero-blob--pink { left: -180px; top: 120px; background: #f0c8c0; }
.va-hero-blob--gold { right: -160px; top: 40px;  background: #e6cd9f; opacity: .35; }

.va-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--content-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px;
  align-items: center; padding-top: 60px;
}
.va-hero-text { min-width: 0; }
.va-hero-eyebrow { margin-bottom: 28px; }

.va-hero-title {
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 400;
  text-wrap: balance;
}
.va-hero-title br { display: block; }

.va-hero-sub {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 480px;
}
.va-hero-cta {
  display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap;
}
.va-hero-trust {
  list-style: none; padding: 0; margin: 44px 0 0;
  display: flex; flex-wrap: wrap; gap: 28px;
  font-size: 13px; color: var(--ink-2);
}
.va-hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.va-hero-trust svg { color: var(--gold); }

.va-hero-image {
  position: relative;
}
.va-hero-image .m-photo {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(80,50,30,.25);
}
.va-hero-card {
  position: absolute; left: -36px; bottom: 40px;
  background: var(--bg-elev);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 20px 40px -10px rgba(40,30,20,.18);
  border: 1px solid var(--line);
  min-width: 220px;
}
.va-hero-card-row { display: flex; align-items: center; gap: 8px; }
.va-hero-card-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6cb87a; box-shadow: 0 0 0 4px rgba(108,184,122,.18);
}
.va-hero-card-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}
.va-hero-card-num {
  font-family: var(--font-serif-en); font-size: 42px;
  color: var(--gold-deep); margin-top: 6px; line-height: 1;
}
.va-hero-card-hint { font-size: 12px; color: var(--ink-3); margin-top: 6px; }

/* ── Trust bar (A2) ──────────────────────────────────────── */
.va-promise {
  padding: 56px var(--gutter);
  max-width: var(--content-w); margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: start;
}
.va-promise-label {
  font-family: var(--font-sans-en);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap; padding-top: 8px;
}
.va-promise ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.va-promise li {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
}
.va-promise-no {
  font-family: var(--font-serif-en);
  font-size: 22px; color: var(--gold); letter-spacing: 0.04em;
  line-height: 1; padding-top: 2px;
}
.va-promise li b {
  display: block; font-weight: 500;
  font-family: var(--font-heading);
  font-size: 17px; color: var(--ink); letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.va-promise li span {
  display: block;
  font-size: 13px; color: var(--ink-3); line-height: 1.65;
  letter-spacing: 0.02em;
}
@media (max-width: 960px) {
  .va-promise { grid-template-columns: 1fr; gap: 24px; }
  .va-promise ul { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ── Brand story (A3) ────────────────────────────────────── */
.va-story {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 96px;
  align-items: center;
}
.va-story-text h2 {
  font-size: 48px; line-height: 1.22; margin: 18px 0 28px; text-wrap: balance;
}
.va-story-text p { font-size: 16px; margin-top: 14px; }
.va-fmf {
  margin-top: 40px; display: flex; flex-direction: column; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.va-fmf > div {
  font-family: var(--font-serif-en); font-size: 19px;
  color: var(--ink); letter-spacing: 0.02em;
}
.va-fmf b {
  color: var(--gold-deep); font-style: italic; font-weight: 500;
  letter-spacing: 0.04em; margin-right: 16px;
}
.va-story-art { position: relative; }
.va-story-art .m-photo {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(80,50,30,.22);
}
.va-story-art-2 {
  position: absolute !important;
  right: -32px; bottom: -32px;
  width: 220px; aspect-ratio: 1/1 !important;
  border: 6px solid var(--bg);
}

/* ── Service (A4) ─────────────────────────────────────────── */
.va-service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.va-service-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  padding: 36px 32px; border-radius: var(--radius-lg);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.va-service-card:hover {
  box-shadow: 0 20px 40px -16px rgba(80,50,30,.15);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.va-service-n {
  font-family: var(--font-serif-en); font-size: 20px;
  color: var(--gold-deep); letter-spacing: 0.08em;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
  margin-bottom: 22px; display: inline-block; padding-right: 18px;
}
.va-service-card h3 {
  font-size: 24px; line-height: 1.35; margin-bottom: 12px;
}
.va-service-card p { font-size: 15px; }

/* ── Process (A5) ─────────────────────────────────────────── */
.va-process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative;
}
.va-process::before {
  content: ""; position: absolute;
  top: 28px; left: 60px; right: 60px; height: 1px;
  background: repeating-linear-gradient(to right, var(--gold-soft) 0 4px, transparent 4px 10px);
}
.va-process-step { text-align: left; position: relative; z-index: 1; }
.va-process-n {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif-en); font-size: 19px;
  color: var(--gold-deep); letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.va-process-step h4 { font-size: 20px; line-height: 1.4; margin-bottom: 10px; }
.va-process-step p { font-size: 14px; line-height: 1.65; }

/* ── Team (A6) ────────────────────────────────────────────── */
.va-team {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 880px) {
  .va-team { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
}
.va-team-card { display: flex; flex-direction: column; gap: 18px; }
.va-team-card .m-photo {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 24px -12px rgba(80,50,30,.15);
}
.va-team-info { padding: 0 4px; }
.va-team-info h4 { font-size: 19px; margin-bottom: 4px; }
.va-team-role {
  font-family: var(--font-serif-en); font-style: italic;
  font-size: 14px; color: var(--gold-deep);
}
.va-team-tag {
  margin-top: 8px; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ── Stories (A7) ─────────────────────────────────────────── */
.va-stories {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.va-story-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
}
.va-story-card .m-photo { border-radius: 0; }
.va-story-card-body { padding: 28px 28px 30px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.va-story-meta {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep);
}
.va-story-card blockquote {
  margin: 0; font-family: var(--font-serif-cn);
  font-size: 17px; line-height: 1.7; color: var(--ink);
}
.va-story-who {
  font-family: var(--font-serif-en); font-style: italic; font-size: 13px;
  color: var(--ink-3); margin-top: auto;
}

/* ── Events (A8) ──────────────────────────────────────────── */
.va-events {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg-elev); border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 20px 40px -20px rgba(80,50,30,.12);
}
.va-event {
  display: grid; grid-template-columns: 96px 1fr auto;
  align-items: center; gap: 24px;
  padding: 22px 24px;
  border-radius: var(--radius);
  transition: background .15s;
}
.va-event:hover { background: var(--bg-tint); }
.va-event + .va-event { border-top: 1px solid var(--line); }
.va-event-date {
  font-family: var(--font-serif-en);
  display: flex; align-items: baseline; gap: 6px;
  color: var(--gold-deep);
}
.va-event-date span:first-child { font-size: 32px; }
.va-event-date span:last-child  { font-size: 13px; letter-spacing: 0.1em; }
.va-event-body h4 { font-size: 19px; margin-bottom: 4px; }
.va-event-sub { font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em; }
.va-event-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--line-strong);
  padding: 10px 18px; border-radius: 999px;
  transition: background .15s, border-color .15s;
}
.va-event-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ── Stats (A9) ───────────────────────────────────────────── */
.va-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.va-stat { text-align: center; }
.va-stat-n {
  font-family: var(--font-serif-en); font-size: 56px;
  color: var(--gold-deep); line-height: 1; letter-spacing: -0.01em;
}
.va-stat-l {
  margin-top: 12px; font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-2);
}

/* ── FAQ (A10) ────────────────────────────────────────────── */
.va-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.va-faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
}
.va-faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading); font-size: 19px;
  color: var(--ink); padding-right: 16px;
}
.va-faq summary::-webkit-details-marker { display: none; }
.va-faq-icon {
  font-family: var(--font-sans-en); font-size: 22px;
  color: var(--gold-deep); font-weight: 300;
  transition: transform .2s;
}
.va-faq details[open] .va-faq-icon { transform: rotate(45deg); }
.va-faq-a {
  margin-top: 14px;
  font-size: 15px; line-height: 1.75; color: var(--ink-2);
  max-width: 680px;
}

/* ── Closing CTA (A11) ───────────────────────────────────── */
.va-cta {
  text-align: center; max-width: 720px; margin: 0 auto;
  padding: 40px 0;
}
.va-cta h2 {
  font-size: 56px; line-height: 1.18; color: #fff;
  margin: 22px 0 24px; text-wrap: balance;
}
.va-cta p {
  font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.72);
  max-width: 540px; margin: 0 auto;
}
.va-cta .va-hero-cta { justify-content: center; margin-top: 40px; }
