/* =========================================================================
 *  GV Advisors — About page styles (additions only).
 *  Loads AFTER gv-home.css and reuses its tokens (:root vars), .gv-section,
 *  .gv-container, .gv-kicker, .gv-btn, .gv-why, .gv-cta, .gv-reveal, etc.
 *  Only the pieces the homepage doesn't already have live here.
 * ========================================================================= */

/* ---------------------------- 1 · About hero -------------------------- */
.gv-about-hero {
	position: relative;
	min-height: 64vh;
	display: flex; align-items: flex-end;
	padding: clamp(120px, 16vw, 200px) 0 clamp(48px, 6vw, 80px);
	background-color: var(--gv-forest-dark);
	background-size: cover; background-position: center;
	color: var(--gv-bg);
	overflow: hidden;
}
.gv-about-hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(21,64,47,.45) 0%, rgba(21,64,47,.55) 45%, rgba(21,64,47,.82) 100%),
		linear-gradient(90deg, rgba(21,64,47,.6) 0%, rgba(21,64,47,.12) 75%);
}
.gv-about-hero__inner { position: relative; max-width: 860px; }
.gv-about-hero .gv-kicker { color: var(--gv-brass); }
.gv-about-hero__title { color: var(--gv-bg); font-size: clamp(42px, 6.4vw, 78px); font-weight: 600; letter-spacing: -.5px; }
.gv-about-hero__sub { margin: 24px 0 0; max-width: 620px; font-size: clamp(16px, 2vw, 20px); color: rgba(248,245,238,.9); line-height: 1.6; }

.gv-breadcrumb { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; font-size: 13px; letter-spacing: .5px; color: rgba(248,245,238,.7); }
.gv-breadcrumb a { color: rgba(248,245,238,.7); text-decoration: none; transition: color .3s var(--gv-ease); }
.gv-breadcrumb a:hover { color: var(--gv-brass); }
.gv-breadcrumb span[aria-current] { color: var(--gv-bg); }

/* ---------------------------- 2 · Who we are -------------------------- */
.gv-two { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.gv-two__aside { position: sticky; top: 120px; }
.gv-two__body > p { font-size: clamp(16px, 1.5vw, 18px); color: var(--gv-charcoal); opacity: .86; margin: 0 0 22px; }
.gv-two__body > p:last-child { margin-bottom: 0; }
.gv-two__body > p:first-child { font-size: clamp(18px, 1.8vw, 22px); opacity: 1; color: var(--gv-forest); font-family: var(--gv-serif); line-height: 1.45; }

/* ------------------------- 3 · Mission & Vision ----------------------- */
.gv-mv { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 34px); }
.gv-mv__card {
	background: var(--gv-surface);
	border: 1px solid var(--gv-border);
	border-radius: var(--gv-radius);
	padding: clamp(34px, 4vw, 52px);
	box-shadow: 0 10px 30px var(--gv-shadow);
	transition: transform .4s var(--gv-ease), box-shadow .4s var(--gv-ease);
}
.gv-mv__card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px var(--gv-shadow); }
.gv-mv__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 66px; height: 66px; border-radius: 50%;
	background: var(--gv-light-sage); color: var(--gv-forest); margin-bottom: 26px;
}
.gv-mv__icon svg { width: 30px; height: 30px; }
.gv-mv__title { font-size: 30px; margin: 0 0 14px; }
.gv-mv__card p { font-size: 16px; color: var(--gv-charcoal); opacity: .82; margin: 0; }

/* ------------------------- 5 · Advisory philosophy -------------------- */
.gv-philosophy__inner { max-width: 1000px; }
.gv-philosophy__lead {
	font-family: var(--gv-serif); font-weight: 500;
	font-size: clamp(26px, 3.6vw, 44px); line-height: 1.32; color: var(--gv-forest); margin: 24px 0 0;
}
.gv-philosophy__lead em { color: var(--gv-brass); font-style: italic; }

/* ---------------------------- 6 · Timeline ---------------------------- */
.gv-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.gv-timeline::before {
	content: ""; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 1px;
	background: linear-gradient(180deg, var(--gv-brass), rgba(184,149,107,.2));
}
.gv-timeline__item { position: relative; display: grid; grid-template-columns: 68px 1fr; gap: clamp(20px, 3vw, 40px); padding: 0 0 clamp(30px, 3.5vw, 44px); }
.gv-timeline__item:last-child { padding-bottom: 0; }
.gv-timeline__no {
	position: relative; z-index: 1;
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--gv-light-sage); border: 1px solid var(--gv-brass);
	font-family: var(--gv-serif); font-size: 19px; color: var(--gv-forest);
}
.gv-timeline__title { font-size: 27px; margin: 6px 0 10px; }
.gv-timeline__body p { font-size: 16px; color: var(--gv-charcoal); opacity: .82; margin: 0; max-width: 640px; }

/* ----------------------- 7 · Numbers that matter ---------------------- */
.gv-numbers { position: relative; background: var(--gv-forest); color: var(--gv-bg); padding: clamp(64px, 8vw, 104px) 0; overflow: hidden; }
.gv-numbers__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--gv-forest), var(--gv-forest-dark)); opacity: .55; }
.gv-numbers__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); text-align: center; }
.gv-counter-block { display: flex; flex-direction: column; align-items: center; position: relative; }
.gv-counter-block:not(:last-child)::after { content: ""; position: absolute; right: calc(-1 * clamp(12px, 1.5vw, 20px)); top: 12%; bottom: 12%; width: 1px; background: rgba(184,149,107,.4); }
.gv-counter { font-family: var(--gv-serif); font-size: clamp(48px, 6vw, 74px); font-weight: 600; line-height: 1; color: var(--gv-bg); }
.gv-counter-block__label { margin-top: 14px; font-size: 13px; letter-spacing: .8px; color: rgba(248,245,238,.72); max-width: 160px; }

/* ---------------------------- 8 · Leadership -------------------------- */
.gv-leader { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.gv-leader__portrait {
	position: relative; aspect-ratio: 4 / 5; border-radius: var(--gv-radius);
	background-color: var(--gv-forest-dark); background-size: cover; background-position: center;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
	box-shadow: 0 20px 50px rgba(26,77,58,.2);
}
.gv-leader__mono { font-family: var(--gv-serif); font-weight: 700; font-size: 76px; color: rgba(248,245,238,.16); }
.gv-leader__role { font-family: var(--gv-serif); font-style: italic; font-size: 19px; color: var(--gv-brass); margin: 8px 0 20px; }
.gv-leader__body > p { font-size: 16px; color: var(--gv-charcoal); opacity: .84; margin: 0 0 20px; }
.gv-leader__social { display: flex; gap: 12px; margin-top: 28px; }
.gv-leader__social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 50%;
	border: 1px solid var(--gv-border); color: var(--gv-forest); background: var(--gv-surface);
	transition: background .35s var(--gv-ease), color .35s var(--gv-ease), border-color .35s var(--gv-ease), transform .35s var(--gv-ease);
}
.gv-leader__social a:hover { background: var(--gv-forest); color: var(--gv-bg); border-color: var(--gv-forest); transform: translateY(-2px); }
.gv-leader__social svg { width: 20px; height: 20px; }

/* ------------------------------- 9 · FAQ ------------------------------ */
.gv-faq-wrap { max-width: 860px; }
.gv-faq { border-top: 1px solid var(--gv-border); }
.gv-faq__item { border-bottom: 1px solid var(--gv-border); }
.gv-faq__q {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
	background: none; border: none; cursor: pointer; text-align: left;
	padding: 28px 4px; font-family: var(--gv-serif); font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 600; color: var(--gv-forest); transition: color .3s var(--gv-ease);
}
.gv-faq__q:hover { color: var(--gv-forest-dark); }
.gv-faq__icon { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.gv-faq__icon::before, .gv-faq__icon::after { content: ""; position: absolute; background: var(--gv-brass); transition: transform .35s var(--gv-ease), opacity .35s var(--gv-ease); }
.gv-faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.gv-faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.gv-faq__q[aria-expanded="true"] .gv-faq__icon::after { transform: scaleY(0); opacity: 0; }
.gv-faq__a { overflow: hidden; max-height: 0; transition: max-height .4s var(--gv-ease); }
.gv-faq__a p { margin: 0; padding: 0 4px 30px; font-size: 16px; line-height: 1.7; color: var(--gv-charcoal); opacity: .82; max-width: 760px; }

/* ---------------------------- CTA actions ----------------------------- */
.gv-cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ------------------------------ Responsive ---------------------------- */
@media (max-width: 1024px) {
	.gv-mv { grid-template-columns: 1fr; }
	.gv-numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
	.gv-counter-block:not(:last-child)::after { display: none; }
	.gv-leader { grid-template-columns: 1fr; }
	.gv-leader__portrait { max-width: 420px; }
}
@media (max-width: 760px) {
	.gv-two { grid-template-columns: 1fr; }
	.gv-two__aside { position: static; }
	.gv-about-hero { min-height: 56vh; align-items: center; }
}
@media (max-width: 460px) {
	.gv-numbers__grid { grid-template-columns: 1fr; }
	.gv-timeline__item { grid-template-columns: 52px 1fr; gap: 18px; }
	.gv-timeline::before { left: 19px; }
}