/* ==========================================================================
   About v2 — Full redesign (ported from prototype)
   - All rules are scoped under `.about-v2` to avoid leaking onto
     other pages or the shared theme.
   - Site nav and footer are rendered by `get_header()` / `get_footer()`,
     so no `.nav` / `footer` rules here.
   ========================================================================== */

/* Break out of the theme's default 1100px .grid-container so we get the
   same content width as the home page (max-width 1200, full-bleed sections).
   Mirror of the `.home-v2-page` override in home-v2.css.
   We ONLY target the outer wrappers — NOT `.inside-article` /
   `.entry-content` / `.site-main`, because those wrap our `.about-v2`
   sections and zeroing their padding/margin breaks layout (e.g. the hero's
   negative margin that bleeds under the sticky header). */


/* Remove the GeneratePress 1px `rgba(0,0,0,0.08)` border around
   `.site-footer` on about pages. Reason: the about page's white
   `.site` container sits directly above the dark footer, and that
   1px near-black line reads as a visible white seam at the boundary.
   (Home doesn't have this problem because its last section —
   contact-cta — has a light background that hides the seam.) */


/* ---- Reset & globals ---- */
.about-v2 img { max-width: 100%; display: block; }

/* ---- Layout helpers ---- */


/* ==========================================================================
   HERO
   ========================================================================== */
.about-v2 .av2-hero {
	position: relative;
	width: 100%;          /* explicitly — display:flex would otherwise shrink */
	min-height: 600px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
	background: #000;
	padding: 0 0 60px;
	margin-top: -80px;    /* let hero bleed under the sticky theme header */
}
.about-v2 .av2-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.35) 50%, rgba(11,11,13,.95) 100%),
		url('https://wiilove.com/wp-content/uploads/2026/04/1776735654-IMG_9899-%E6%8B%B7%E8%B4%9D-scaled.jpg') center/cover no-repeat;
	z-index: 0;
	filter: saturate(.9);
}
.about-v2 .av2-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(ellipse at 20% 40%, rgba(196,47,47,.18), transparent 55%);
	pointer-events: none;
}
.about-v2 .av2-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 50px 24px 0; /* matches Material / Contact / OEM hero (600px total) */
}
.about-v2 .av2-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: rgba(255,255,255,.75);
	margin-bottom: 28px;
}
.about-v2 .av2-eyebrow::before {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--accent);
}
.about-v2 .av2-hero-title {
	font-size: clamp(48px, 7vw, 96px);
	font-weight: 200;
	line-height: 1.02;
	letter-spacing: -.02em;
	max-width: 960px;
	margin-bottom: 28px;
	color: #fff;
}
.about-v2 .av2-hero-title em {
	font-style: normal;
	color: var(--accent-2);
	font-weight: 300;
}
.about-v2 .av2-hero-lede {
	max-width: 620px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255,255,255,.78);
	font-weight: 300;
	margin-bottom: 44px;
}
.about-v2 .av2-hero-meta {
	display: flex;
	gap: 56px;
	flex-wrap: wrap;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,.14);
	max-width: 820px;
}
.about-v2 .av2-hero-meta > div { color: rgba(255,255,255,.8); }
.about-v2 .av2-hero-meta .av2-k {
	font-size: 11px;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
	margin-bottom: 8px;
}
.about-v2 .av2-hero-meta .av2-v {
	font-size: 16px;
	font-weight: 400;
	color: rgba(255,255,255,.9);
}

/* ==========================================================================
   KPI
   ========================================================================== */
.about-v2 .av2-kpi {
	background: var(--ink-2);
	color: #fff;
	padding: 64px 0;
}
.about-v2 .av2-kpi-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.about-v2 .av2-kpi-item {
	padding: 8px 32px;
	border-left: 1px solid var(--line-dark);
}
.about-v2 .av2-kpi-item:first-child {
	border-left: none;
	padding-left: 0;
}
.about-v2 .av2-kpi-num {
	font-size: clamp(48px, 5.5vw, 72px);
	font-weight: 200;
	letter-spacing: -.02em;
	line-height: 1;
	margin-bottom: 14px;
	color: #fff;
}
.about-v2 .av2-kpi-num sup {
	font-size: .45em;
	color: var(--accent-2);
	font-weight: 300;
	margin-left: 4px;
	vertical-align: super;
}
.about-v2 .av2-kpi-lbl {
	font-size: 14px;
	color: rgba(255,255,255,.7);
	margin-bottom: 4px;
}
.about-v2 .av2-kpi-en {
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255,255,255,.4);
}

/* ==========================================================================
   INTRO (bilingual side-by-side)
   ========================================================================== */
.about-v2 .av2-intro { background: var(--paper); }
.about-v2 .av2-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.about-v2 .av2-intro-col .av2-flag {
	font-size: 11px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 24px;
	padding-top: 32px;
}
.about-v2 .av2-intro-col h3 {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -.01em;
	margin-bottom: 28px;
	line-height: 1.3;
	color: var(--ink);
}
.about-v2 .av2-intro-col p {
	color: #3a3a42;
	font-size: 15.5px;
	margin-bottom: 18px;
	font-weight: 300;
	line-height: 1.75;
}
.about-v2 .av2-intro-col p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CAPABILITIES (4 cards)
   ========================================================================== */
.about-v2 .av2-cap {
	background: #fff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.about-v2 .av2-cap-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
}
.about-v2 .av2-cap-card {
	padding: 52px 40px 60px;
	border-right: 1px solid var(--line);
	transition: background .3s;
	position: relative;
}
.about-v2 .av2-cap-card:last-child { border-right: none; }
.about-v2 .av2-cap-card:hover { background: #fafafa; }
.about-v2 .av2-cap-idx {
	font-size: 12px;
	color: var(--muted-2);
	letter-spacing: .2em;
	margin-bottom: 28px;
	font-variant-numeric: tabular-nums;
}
.about-v2 .av2-cap-icon {
	width: 44px;
	height: 44px;
	border: 1px solid var(--ink);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	font-size: 20px;
	color: var(--ink);
	transition: all .3s;
}
.about-v2 .av2-cap-card:hover .av2-cap-icon {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}
.about-v2 .av2-cap-card h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 12px;
	letter-spacing: -.005em;
}
.about-v2 .av2-cap-en {
	font-size: 12px;
	color: var(--muted-2);
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.about-v2 .av2-cap-card p {
	color: var(--muted);
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7;
}

/* ==========================================================================
   STORY / TIMELINE
   ========================================================================== */
.about-v2 .av2-story {
	background: var(--paper);
	position: relative;
	overflow: hidden;
}
.about-v2 .av2-timeline {
	position: relative;
	padding-left: 0;
}
.about-v2 .av2-timeline::before {
	content: "";
	position: absolute;
	left: 120px;
	top: 12px;
	bottom: 12px;
	width: 1px;
	background: linear-gradient(180deg, var(--accent) 0%, var(--line) 100%);
}
.about-v2 .av2-tl-item {
	position: relative;
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 60px;
	padding: 36px 0;
}
.about-v2 .av2-tl-item::before {
	content: "";
	position: absolute;
	left: 116px;
	top: 52px;
	width: 9px;
	height: 9px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--line);
}
.about-v2 .av2-tl-year {
	font-size: 32px;
	font-weight: 250;
	color: var(--ink);
	letter-spacing: -.01em;
	font-variant-numeric: tabular-nums;
}
.about-v2 .av2-tl-content h5 {
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--ink);
}
.about-v2 .av2-tl-content p {
	color: var(--muted);
	font-size: 14.5px;
	font-weight: 300;
	max-width: 520px;
}

/* ==========================================================================
   QUALITY / MATERIALS (dark)
   ========================================================================== */
.about-v2 .av2-quality {
	background: var(--ink-3);
	color: #fff;
}
.about-v2 .av2-quality .av2-section-head h2 { color: #fff; }
.about-v2 .av2-quality .av2-section-head p { color: rgba(255,255,255,.6); }
.about-v2 .av2-quality-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 80px;
	align-items: center;
}
.about-v2 .av2-materials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--line-dark);
	border: 1px solid var(--line-dark);
}
.about-v2 .av2-mat {
	padding: 36px 32px;
	background: var(--ink);
}
.about-v2 .av2-mat-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 3px;
	color: rgba(255,255,255,.7);
	margin-bottom: 20px;
}
.about-v2 .av2-mat h5 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
}
.about-v2 .av2-mat-src {
	font-size: 12.5px;
	color: var(--muted-2);
	letter-spacing: .05em;
}
.about-v2 .av2-mat p {
	font-size: 13.5px;
	color: rgba(255,255,255,.6);
	font-weight: 300;
	margin-top: 16px;
	line-height: 1.7;
}
.about-v2 .av2-cert-panel {
	padding: 56px 44px;
	border: 1px solid var(--line-dark);
	background: linear-gradient(180deg, rgba(196,47,47,.06), rgba(196,47,47,0));
	position: relative;
	overflow: hidden;
}
.about-v2 .av2-cert-panel::before {
	content: "ISO";
	position: absolute;
	top: -30px;
	right: -20px;
	font-size: 180px;
	font-weight: 800;
	color: rgba(196,47,47,.05);
	letter-spacing: -.05em;
}
.about-v2 .av2-cert-stamp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	border: 2px solid var(--accent);
	color: var(--accent);
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 28px;
	letter-spacing: -.01em;
	line-height: 1.1;
	text-align: center;
}
.about-v2 .av2-cert-panel h4 {
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 14px;
}
.about-v2 .av2-cert-panel p {
	color: rgba(255,255,255,.65);
	font-size: 14.5px;
	font-weight: 300;
	max-width: 340px;
}
.about-v2 .av2-cert-panel ul {
	list-style: none;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--line-dark);
}
.about-v2 .av2-cert-panel ul li {
	font-size: 13.5px;
	color: rgba(255,255,255,.75);
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 12px;
}
.about-v2 .av2-cert-panel ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	background: var(--accent);
	border-radius: 50%;
	flex: 0 0 auto;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.about-v2 .av2-gallery { background: #fff; }
.about-v2 .av2-gal-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 280px 280px;
	gap: 12px;
}
.about-v2 .av2-gal-item {
	position: relative;
	overflow: hidden;
	background: #000;
	cursor: pointer;
}
.about-v2 .av2-gal-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease, filter .8s ease;
	filter: brightness(.92);
}
.about-v2 .av2-gal-item:hover img {
	transform: scale(1.06);
	filter: brightness(1);
}
.about-v2 .av2-gal-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7));
	pointer-events: none;
}
.about-v2 .av2-gal-cap {
	position: absolute;
	left: 24px;
	bottom: 20px;
	right: 24px;
	color: #fff;
	z-index: 2;
}
.about-v2 .av2-gal-t {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 4px;
}
.about-v2 .av2-gal-s {
	font-size: 12px;
	color: rgba(255,255,255,.7);
	letter-spacing: .05em;
}
.about-v2 .av2-gal-tall { grid-row: span 2; }

/* ==========================================================================
   GLOBAL REACH
   ========================================================================== */
.about-v2 .av2-reach {
	background: var(--paper);
	border-top: 1px solid var(--line);
}
.about-v2 .av2-reach-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: center;
}
.about-v2 .av2-reach-kicker {
	color: var(--accent);
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.about-v2 .av2-reach-kicker::before {
	content: "";
	width: 36px;
	height: 1px;
	background: var(--accent);
}
.about-v2 .av2-reach-grid h3 {
	font-size: 32px;
	font-weight: 300;
	letter-spacing: -.01em;
	margin-bottom: 22px;
	line-height: 1.25;
	color: var(--ink);
}
.about-v2 .av2-reach-grid p {
	color: var(--muted);
	font-size: 15.5px;
	font-weight: 300;
	margin-bottom: 16px;
}
.about-v2 .av2-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
}
.about-v2 .av2-tag {
	padding: 6px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 12px;
	color: #3a3a42;
	background: #fff;
}
.about-v2 .av2-reach-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
.about-v2 .av2-rs {
	padding: 36px 28px;
	background: #fff;
}
.about-v2 .av2-rs-n {
	font-size: 44px;
	font-weight: 250;
	letter-spacing: -.02em;
	line-height: 1;
	color: var(--ink);
	margin-bottom: 8px;
}
.about-v2 .av2-rs-n span { color: var(--accent); }
.about-v2 .av2-rs-l {
	font-size: 13px;
	color: var(--muted);
	font-weight: 300;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.about-v2 .av2-btn:hover .av2-arrow {
	transform: translateX(4px);
}

/* ==========================================================================
   Reveal-on-scroll animation
   ========================================================================== */
.about-v2 .av2-reveal.av2-in {
	opacity: 1;
	transform: none;
}

/* ==========================================================================
   Responsive — Tablet
   ========================================================================== */
@media (max-width: 768px) {
	.about-v2 .av2-hero-inner { padding: 180px 24px 0; }
	.about-v2 .av2-hero-meta { gap: 28px; }
	.about-v2 .av2-kpi-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 0;
	}
	.about-v2 .av2-kpi-item {
		padding: 8px 20px;
		border-left: 1px solid var(--line-dark);
	}
	.about-v2 .av2-kpi-item:nth-child(odd) {
		border-left: none;
		padding-left: 0;
	}
	.about-v2 .av2-intro-grid,
	.about-v2 .av2-quality-grid,
	.about-v2 .av2-reach-grid,
	.about-v2 .av2-cta-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.about-v2 .av2-cap-grid { grid-template-columns: 1fr 1fr; }
	.about-v2 .av2-cap-card { border-bottom: 1px solid var(--line); }
	.about-v2 .av2-cap-card:nth-child(even) { border-right: none; }
	.about-v2 .av2-cap-card:nth-last-child(-n+2) { border-bottom: none; }
	.about-v2 .av2-gal-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px 220px 220px;
	}
	.about-v2 .av2-gal-tall { grid-row: auto; grid-column: span 2; }
	.about-v2 .av2-tl-item { grid-template-columns: 80px 1fr; gap: 32px; }
	.about-v2 .av2-timeline::before { left: 80px; }
	.about-v2 .av2-tl-item::before { left: 76px; }
	.about-v2 .av2-cta-actions { justify-self: start; width: 100%; }
	.about-v2 .av2-btn { width: 100%; min-width: 0; }
	.about-v2 .av2-materials { grid-template-columns: 1fr; }
	.about-v2 .av2-reach-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
	.about-v2 .av2-kpi-grid { grid-template-columns: 1fr; }
	.about-v2 .av2-kpi-item {
		border-left: none;
		padding-left: 0;
	}
	.about-v2 .av2-cap-grid { grid-template-columns: 1fr; }
	.about-v2 .av2-cap-card { border-right: none; }
	.about-v2 .av2-cap-card:last-child { border-bottom: none; }
	.about-v2 .av2-gal-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(5, 200px);
	}
	.about-v2 .av2-gal-tall { grid-column: auto; }
	.about-v2 .av2-reach-stats { grid-template-columns: 1fr; }
}