/* =================================================================
   Wingate Lab — brand stylesheet (v2)
   Inspired by takeshi-kitano.jp (personal-brand hero) + cow-aka.jp
   (image-first magazine layout, floating decorative bubbles,
   sticky header). Brand colors derived from logo SVG.
   ================================================================= */

:root {
	--wl-blue: #5993c5;
	--wl-blue-dark: #2e6ea3;
	--wl-blue-soft: #b9d4e8;
	--wl-ink: #1e1e1e;
	--wl-ink-soft: #4b4540;
	--wl-mute: #8a8480;
	--wl-line: #e8e3dd;
	--wl-cream: #faf6ee;
	--wl-cream-2: #f3eddf;
	--wl-paper: #f7f4ec;
	--wl-bg: #ffffff;
	--wl-accent: #d96b5b;

	--wl-font-jp: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", "Meiryo", sans-serif;
	--wl-font-disp: "Cormorant Garamond", "Times New Roman", "Yu Mincho", "游明朝", serif;
	--wl-font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

	--wl-container: 1200px;
	--wl-container-wide: 1440px;
}

/* ---------- Reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--wl-font-jp);
	font-size: 16px;
	line-height: 1.95;
	color: var(--wl-ink);
	background: var(--wl-bg);
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--wl-ink); text-decoration: none; transition: opacity .25s ease, color .25s ease; }
a:hover { opacity: .72; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.35; letter-spacing: .02em; margin: 0; }
p { margin: 0 0 1.25em; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--wl-ink); color: #fff; padding: .5em 1em; z-index: 9999; }
.skip-link:focus { left: 1rem; top: 1rem; }

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

.wl-container { width: 100%; max-width: var(--wl-container); margin: 0 auto; padding: 0 32px; position: relative; }
.wl-container--wide { max-width: var(--wl-container-wide); }
.wl-container--narrow { max-width: 880px; }

.wl-section { padding: 120px 0; position: relative; }
.wl-section--cream { background: var(--wl-cream); }
.wl-section--paper { background: var(--wl-paper); }
.wl-section--ink { background: var(--wl-ink); color: #efece7; }
.wl-section--ink a { color: #efece7; }
.wl-section--tight { padding: 72px 0; }

@media (max-width: 768px) {
	.wl-container { padding: 0 22px; }
	.wl-section { padding: 80px 0; }
	.wl-section--tight { padding: 56px 0; }
}

/* ---------- Typography scale ---------- */

.wl-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--wl-font-disp);
	font-size: 13px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--wl-blue);
	margin-bottom: 22px;
	font-weight: 500;
}
.wl-eyebrow::before {
	content: ""; width: 32px; height: 1px; background: var(--wl-blue);
}

.wl-display {
	font-family: var(--wl-font-disp);
	font-size: clamp(2.6rem, 6vw, 5rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: .015em;
	color: var(--wl-ink);
	margin: 0;
}

.wl-section-title {
	font-family: var(--wl-font-disp);
	font-size: clamp(2.2rem, 4.6vw, 3.6rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: .02em;
	margin: 0 0 .35em;
	color: var(--wl-ink);
}
.wl-section-title-jp {
	display: block;
	font-family: var(--wl-font-jp);
	font-size: .95rem;
	letter-spacing: .22em;
	color: var(--wl-mute);
	margin-top: 14px;
	font-weight: 500;
}
.wl-lead {
	font-size: 1.05rem; line-height: 2.1; max-width: 720px; color: var(--wl-ink-soft);
}

/* ---------- Header (sticky, hides on scroll-down) ---------- */

.site-header {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 100;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: transform .35s ease, border-color .25s ease, background .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--wl-line); }
.site-header.is-hidden { transform: translateY(-100%); }
body { padding-top: 78px; }
@media (max-width: 768px) { body { padding-top: 62px; } }

.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	max-width: var(--wl-container-wide); margin: 0 auto;
	padding: 18px 32px; gap: 24px;
}
@media (max-width: 768px) { .site-header__inner { padding: 14px 22px; } }

.site-header__brand { margin: 0; line-height: 0; }
.site-header__brand-image,
.site-header .custom-logo {
	display: block; width: auto; height: 42px; max-width: 220px;
}
@media (max-width: 768px) {
	.site-header__brand-image, .site-header .custom-logo { height: 30px; }
}

.site-header__nav { display: flex; align-items: center; }
.site-header__menu {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 36px; align-items: center;
}
.site-header__menu a {
	font-family: var(--wl-font-disp);
	font-size: 14px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--wl-ink);
	position: relative;
	padding: 6px 0;
}
.site-header__menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--wl-blue);
	transition: width .35s ease;
}
.site-header__menu a:hover::after,
.site-header__menu .current-menu-item > a::after { width: 100%; }

/* Mobile menu */
.site-header__toggle {
	display: none;
	background: transparent; border: 0; padding: 8px;
	cursor: pointer; width: 40px; height: 40px; position: relative;
}
.site-header__toggle span {
	position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--wl-ink);
	transition: transform .3s ease, top .3s ease, opacity .2s ease;
}
.site-header__toggle span:nth-child(1) { top: 14px; }
.site-header__toggle span:nth-child(2) { top: 20px; }
.site-header__toggle span:nth-child(3) { top: 26px; }
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 960px) {
	.site-header__toggle { display: block; }
	.site-header__nav {
		position: fixed; inset: 0;
		background: var(--wl-bg);
		padding: 100px 32px 60px;
		transform: translateX(100%);
		transition: transform .45s cubic-bezier(.65,.05,.36,1);
		overflow-y: auto;
	}
	.site-header__nav[data-open="true"] { transform: translateX(0); }
	.site-header__menu {
		flex-direction: column; align-items: flex-start; gap: 28px;
	}
	.site-header__menu a {
		font-family: var(--wl-font-disp);
		font-size: 28px; letter-spacing: .1em;
	}
	.site-header__menu a::after { display: none; }
}

/* ---------- HERO (kitano-inspired split: text on dark left, photo right) ---------- */

.wl-hero {
	position: relative;
	min-height: calc(100vh - 78px);
	overflow: hidden;
	color: #fff;
	background: var(--wl-ink);
	display: flex;
	align-items: stretch;
}
@media (max-width: 768px) {
	.wl-hero { min-height: calc(100vh - 62px); }
}

/* Photo occupies the right ~58% on desktop and fades into the dark left side */
.wl-hero__bg {
	position: absolute; top: 0; bottom: 0; right: 0;
	width: 62%; overflow: hidden;
}
.wl-hero__bg img {
	width: 100%; height: 100%; object-fit: cover; object-position: 55% 22%;
	transform: scale(1.06);
	transition: transform 1.8s cubic-bezier(.2,.6,.2,1), opacity 1.2s ease;
	opacity: 0;
}
.wl-hero.is-ready .wl-hero__bg img { transform: scale(1); opacity: .95; }

/* Gradient that fades the photo into the ink background on its left edge */
.wl-hero__bg::before {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, var(--wl-ink) 0%, rgba(30,30,30,.85) 12%, rgba(30,30,30,.25) 32%, rgba(30,30,30,0) 55%),
		linear-gradient(180deg, rgba(30,30,30,.05) 0%, rgba(30,30,30,.55) 100%);
	z-index: 1;
}

/* Subtle decorative grain/lines on the dark side */
.wl-hero::before {
	content: "";
	position: absolute; top: 0; bottom: 0; left: 0; width: 38%;
	background:
		radial-gradient(circle at 25% 30%, rgba(89,147,197,.18) 0%, transparent 55%),
		linear-gradient(180deg, var(--wl-ink) 0%, #161616 100%);
	z-index: 0;
}

@media (max-width: 900px) {
	.wl-hero { flex-direction: column; }
	.wl-hero::before { width: 100%; height: 40%; top: auto; bottom: 0; }
	.wl-hero__bg { position: relative; width: 100%; height: 55vh; right: auto; }
	.wl-hero__bg img { object-position: center 22%; }
	.wl-hero__bg::before {
		background:
			linear-gradient(180deg, rgba(30,30,30,0) 0%, rgba(30,30,30,.2) 40%, rgba(30,30,30,.92) 100%);
	}
}

.wl-hero__inner {
	position: relative;
	width: 100%; max-width: var(--wl-container-wide);
	margin: 0 auto; padding: 96px 32px;
	z-index: 2;
	display: grid; grid-template-columns: auto minmax(0, 1fr);
	gap: 40px; align-items: end;
}
@media (max-width: 900px) {
	.wl-hero__inner {
		grid-template-columns: 1fr;
		padding: 32px 22px 56px;
		align-self: stretch;
		margin-top: -80px; /* pull the copy up over the photo bottom */
	}
}

.wl-hero__name-vertical {
	font-family: var(--wl-font-disp);
	writing-mode: vertical-rl;
	letter-spacing: .35em;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
	padding: 0 8px;
	border-left: 1px solid rgba(255,255,255,.3);
	transform: translateY(40px);
	opacity: 0;
	transition: transform 1s ease .6s, opacity 1s ease .6s;
}
.wl-hero.is-ready .wl-hero__name-vertical { transform: translateY(0); opacity: 1; }
@media (max-width: 900px) { .wl-hero__name-vertical { display: none; } }

.wl-hero__copy { max-width: 580px; }
@media (min-width: 1200px) {
	.wl-hero__copy { max-width: 640px; }
}

.wl-hero__eyebrow {
	font-family: var(--wl-font-disp);
	letter-spacing: .4em; text-transform: uppercase;
	color: rgba(255,255,255,.85);
	font-size: 12px; font-weight: 500;
	margin-bottom: 32px;
	display: inline-flex; align-items: center; gap: 14px;
	transform: translateY(20px); opacity: 0;
	transition: transform .9s ease .2s, opacity .9s ease .2s;
}
.wl-hero__eyebrow::before {
	content: ""; width: 40px; height: 1px; background: rgba(255,255,255,.7);
}
.wl-hero.is-ready .wl-hero__eyebrow { transform: translateY(0); opacity: 1; }

.wl-hero__title {
	font-family: var(--wl-font-jp);
	font-size: clamp(2.2rem, 5.2vw, 4.4rem);
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: .03em;
	color: #fff;
	margin-bottom: 32px;
	transform: translateY(40px); opacity: 0;
	transition: transform 1s ease .3s, opacity 1s ease .3s;
}
.wl-hero.is-ready .wl-hero__title { transform: translateY(0); opacity: 1; }
.wl-hero__title em {
	font-style: normal;
	color: var(--wl-blue-soft);
	font-family: var(--wl-font-disp);
	font-weight: 500;
	font-size: 1.05em;
}

.wl-hero__sub {
	font-size: 1.02rem; line-height: 2.05;
	color: rgba(255,255,255,.78);
	max-width: 580px;
	margin-bottom: 44px;
	transform: translateY(30px); opacity: 0;
	transition: transform 1s ease .5s, opacity 1s ease .5s;
}
.wl-hero.is-ready .wl-hero__sub { transform: translateY(0); opacity: 1; }

.wl-hero__cta {
	transform: translateY(20px); opacity: 0;
	transition: transform 1s ease .7s, opacity 1s ease .7s;
}
.wl-hero.is-ready .wl-hero__cta { transform: translateY(0); opacity: 1; }

.wl-hero__scroll {
	position: absolute; left: 50%; bottom: 30px;
	transform: translateX(-50%);
	font-family: var(--wl-font-disp);
	font-size: 11px; letter-spacing: .4em;
	color: rgba(255,255,255,.6);
	z-index: 3;
	writing-mode: vertical-rl;
	text-transform: uppercase;
	padding-bottom: 60px;
}
.wl-hero__scroll::after {
	content: ""; position: absolute; left: 50%; bottom: 0; width: 1px; height: 50px;
	background: rgba(255,255,255,.5);
	transform-origin: top;
	animation: wlScrollLine 1.8s cubic-bezier(.6,.1,.3,1) infinite;
}
@keyframes wlScrollLine {
	0% { transform: scaleY(0); transform-origin: top; }
	50% { transform: scaleY(1); transform-origin: top; }
	51% { transform: scaleY(1); transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Buttons ---------- */

.wl-btn {
	display: inline-flex; align-items: center; gap: 14px;
	font-family: var(--wl-font-disp);
	font-size: 13px;
	letter-spacing: .26em;
	text-transform: uppercase;
	padding: 17px 32px;
	background: var(--wl-ink);
	color: #fff !important;
	border: 1px solid var(--wl-ink);
	transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.wl-btn:hover {
	background: var(--wl-blue); border-color: var(--wl-blue);
	opacity: 1; transform: translateY(-2px);
}
.wl-btn--ghost { background: transparent; color: var(--wl-ink) !important; }
.wl-btn--ghost:hover { background: var(--wl-ink); color: #fff !important; }
.wl-btn--light { background: #fff; color: var(--wl-ink) !important; border-color: #fff; }
.wl-btn--light:hover { background: var(--wl-blue); color: #fff !important; border-color: var(--wl-blue); }
.wl-btn::after { content: "→"; font-family: var(--wl-font-jp); font-size: 15px; letter-spacing: 0; }

/* ---------- Section heading block ---------- */

.wl-heading { margin-bottom: 64px; max-width: 800px; }
.wl-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.wl-heading--center .wl-eyebrow { margin-left: auto; margin-right: auto; }

/* ---------- Decorative background type ---------- */

.wl-bg-text {
	position: absolute;
	font-family: var(--wl-font-disp);
	font-size: clamp(8rem, 22vw, 22rem);
	font-weight: 500;
	color: rgba(89,147,197,.07);
	line-height: 1;
	letter-spacing: -.03em;
	pointer-events: none;
	user-select: none;
	z-index: 0;
	text-transform: uppercase;
}

/* ---------- Floating bubble decorations (.wl-bubble + js-bubble-obj) ---------- */

.wl-bubble {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	will-change: transform;
	transition: transform .25s linear;
}
.wl-bubble--blue { background: radial-gradient(circle at 35% 30%, var(--wl-blue-soft) 0%, var(--wl-blue) 80%); opacity: .18; }
.wl-bubble--cream { background: radial-gradient(circle at 35% 30%, #fff 0%, var(--wl-cream-2) 90%); opacity: .8; box-shadow: 0 8px 28px rgba(89,147,197,.12); }
.wl-bubble--accent { background: radial-gradient(circle at 35% 30%, #ffd2c8 0%, var(--wl-accent) 90%); opacity: .25; }

.wl-bubble--float {
	animation: wlBubbleFloat 8s ease-in-out infinite;
}
.wl-bubble--float-slow {
	animation: wlBubbleFloat 12s ease-in-out infinite;
}
@keyframes wlBubbleFloat {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -16px, 0); }
}

/* ---------- Reveal animations (.js-reveal) ---------- */

.js-reveal, .js-reveal-stagger > * {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
	transition-delay: var(--wl-reveal-delay, 0ms);
}
.js-reveal.is-revealed, .js-reveal-stagger.is-revealed > * {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Card grid (magazine style) ---------- */

.wl-grid { display: grid; gap: 48px; position: relative; }
.wl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wl-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
	.wl-grid--3, .wl-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 640px) {
	.wl-grid--3, .wl-grid--2 { grid-template-columns: 1fr; gap: 40px; }
	.wl-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.wl-card { display: block; color: var(--wl-ink); position: relative; }
.wl-card:hover { opacity: 1; }
.wl-card__media {
	position: relative; overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--wl-cream-2);
	margin-bottom: 24px;
}
.wl-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	object-position: 50% 30%;
	transition: transform 1s cubic-bezier(.2,.6,.2,1);
}
.wl-card:hover .wl-card__media img { transform: scale(1.06); }
.wl-card__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.15) 100%);
	pointer-events: none;
}
.wl-card__num {
	position: absolute; top: 18px; left: 18px;
	font-family: var(--wl-font-disp);
	font-size: 14px; letter-spacing: .22em;
	color: #fff;
	padding: 4px 10px;
	background: rgba(0,0,0,.55);
	backdrop-filter: blur(6px);
	z-index: 2;
}
.wl-card__tag {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--wl-font-disp);
	font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
	color: var(--wl-blue); margin-bottom: 12px; font-weight: 500;
}
.wl-card__tag::before { content: ""; width: 18px; height: 1px; background: var(--wl-blue); }

.wl-card__title {
	font-size: 1.25rem;
	line-height: 1.55;
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--wl-ink);
	letter-spacing: .015em;
}
.wl-card__excerpt {
	font-size: .92rem; color: var(--wl-mute); margin: 0 0 16px; line-height: 1.85;
}

/* ---------- Pill tag row ---------- */

.wl-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.wl-tag {
	display: inline-block;
	font-size: 11px; letter-spacing: .14em;
	padding: 5px 14px;
	background: #fff;
	border: 1px solid var(--wl-line);
	color: var(--wl-ink-soft);
	border-radius: 999px;
	text-decoration: none;
	transition: all .3s ease;
}
.wl-tag:hover { background: var(--wl-blue); border-color: var(--wl-blue); color: #fff; opacity: 1; }
.wl-section--cream .wl-tag { background: #fff; }

/* ---------- Marquee band ---------- */

.wl-marquee {
	overflow: hidden; padding: 28px 0;
	border-top: 1px solid var(--wl-line);
	border-bottom: 1px solid var(--wl-line);
	background: var(--wl-paper);
}
.wl-marquee__inner {
	display: flex; gap: 56px; white-space: nowrap;
	animation: wlMarquee 36s linear infinite;
}
.wl-marquee__inner > * {
	font-family: var(--wl-font-disp);
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	letter-spacing: .04em;
	font-weight: 500;
	color: var(--wl-ink);
	display: inline-flex; align-items: center; gap: 56px;
}
.wl-marquee__inner > *::after {
	content: "✺"; color: var(--wl-blue); font-size: 1.2em;
}
@keyframes wlMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Founder block (magazine style) ---------- */

.wl-founder {
	display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: center;
	position: relative;
}
.wl-founder__visual {
	aspect-ratio: 4/5; overflow: hidden; background: var(--wl-cream-2);
	position: relative;
}
.wl-founder__visual img { width: 100%; height: 100%; object-fit: cover; }
.wl-founder__visual::before {
	content: ""; position: absolute; top: -24px; left: -24px; right: 24px; bottom: 24px;
	border: 1px solid var(--wl-blue); z-index: -1;
}
.wl-founder__copy h3 {
	font-family: var(--wl-font-disp);
	font-size: clamp(2.2rem, 3.8vw, 3.2rem);
	font-weight: 500; letter-spacing: .02em;
	margin-bottom: 8px;
}
.wl-founder__name-jp {
	display: block; font-family: var(--wl-font-jp); font-size: 1.1rem; color: var(--wl-mute);
	letter-spacing: .26em; margin-bottom: 32px;
}
.wl-founder__bio { font-size: 1rem; line-height: 2.05; }

@media (max-width: 900px) {
	.wl-founder { grid-template-columns: 1fr; gap: 48px; }
	.wl-founder__visual::before { display: none; }
}

/* ---------- Credentials list ---------- */

.wl-creds { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 14px; }
.wl-creds li {
	padding-left: 32px; position: relative;
	font-size: .95rem; line-height: 1.85; color: var(--wl-ink-soft);
}
.wl-creds li::before {
	content: ""; position: absolute; left: 0; top: 13px;
	width: 18px; height: 1px; background: var(--wl-blue);
}

/* ---------- Network grid ---------- */

.wl-network {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.wl-network__item {
	aspect-ratio: 1/1; overflow: hidden; position: relative;
}
.wl-network__item img {
	width: 100%; height: 100%; object-fit: cover;
	object-position: 50% 25%;
	filter: grayscale(.4) contrast(.95);
	transition: filter .5s ease, transform .8s ease;
}
.wl-network__item::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(30,30,30,.55) 100%);
	transition: opacity .5s ease;
}
.wl-network__item:hover img { filter: grayscale(0) contrast(1); transform: scale(1.05); }
@media (max-width: 768px) { .wl-network { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---------- Award (kitano-magazine hybrid) ---------- */

.wl-award {
	display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative;
}
.wl-award figure { margin: 0; }
.wl-award img { width: 100%; height: auto; }
.wl-award h3 {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	line-height: 1.5; font-weight: 700;
	margin: 8px 0 24px;
}
@media (max-width: 900px) { .wl-award { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Meta row ---------- */

.wl-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: .82rem; color: var(--wl-mute); margin-bottom: 18px; }
.wl-meta__item { display: inline-flex; align-items: center; gap: 8px; }
.wl-meta__label {
	font-family: var(--wl-font-disp); letter-spacing: .22em; text-transform: uppercase;
	color: var(--wl-blue); font-size: 11px;
}

/* ---------- Single Case article ---------- */

.wl-case-hero {
	background: var(--wl-cream);
	padding: 96px 0 64px;
	border-bottom: 1px solid var(--wl-line);
}
.wl-case-hero__container { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.wl-case-hero h1 {
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	line-height: 1.45; font-weight: 700; margin: 20px 0 18px;
}
.wl-case-hero__sub { color: var(--wl-mute); font-size: 1rem; margin: 0; line-height: 1.85; }

.wl-case-figure { margin: 0 0 56px; }
.wl-case-figure img { width: 100%; height: auto; }

.wl-case-body {
	max-width: 760px; margin: 0 auto; padding: 80px 32px 104px;
	font-size: 1.02rem; line-height: 2.05;
}
.wl-case-body h2 {
	font-size: 1.5rem; font-weight: 700; margin: 64px 0 22px;
	padding-top: 12px; border-top: 1px solid var(--wl-line);
}
.wl-case-body h3 { font-size: 1.18rem; font-weight: 700; margin: 40px 0 14px; color: var(--wl-blue-dark); }
.wl-case-body ul { padding-left: 1.2em; }
.wl-case-body li { margin-bottom: 10px; }

/* ---------- Stat row ---------- */

.wl-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.wl-stats__num {
	font-family: var(--wl-font-disp);
	font-size: clamp(2.6rem, 4.6vw, 3.6rem);
	font-weight: 500; line-height: 1; color: var(--wl-blue);
	letter-spacing: .02em;
	display: block; margin-bottom: 12px;
}
.wl-stats__label { font-size: .88rem; color: var(--wl-mute); letter-spacing: .08em; line-height: 1.65; }
@media (max-width: 768px) { .wl-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ---------- Contact ---------- */

.wl-contact-intro { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.wl-contact-form { max-width: 640px; margin: 0 auto; }
.wl-contact-form input[type="text"],
.wl-contact-form input[type="email"],
.wl-contact-form input[type="tel"],
.wl-contact-form textarea {
	width: 100%; padding: 14px 16px;
	border: 1px solid var(--wl-line);
	background: #fff; font-family: inherit; font-size: 1rem;
	transition: border-color .25s ease;
}
.wl-contact-form input:focus, .wl-contact-form textarea:focus {
	outline: none; border-color: var(--wl-blue);
}
.wl-contact-form label {
	display: block; font-size: .88rem; font-weight: 600; letter-spacing: .08em;
	margin: 20px 0 8px; color: var(--wl-ink);
}
.wl-contact-form .wpcf7-submit,
.wl-contact-form button[type="submit"] {
	cursor: pointer; display: inline-flex; align-items: center;
	font-family: var(--wl-font-disp);
	font-size: 13px; letter-spacing: .26em; text-transform: uppercase;
	padding: 17px 36px; background: var(--wl-ink); color: #fff; border: 1px solid var(--wl-ink);
	margin-top: 28px; transition: background .25s ease;
}
.wl-contact-form .wpcf7-submit:hover { background: var(--wl-blue); border-color: var(--wl-blue); }

.wl-cf7-row { margin: 0 0 22px; }
.wl-cf7-row label {
	display: block; font-size: .9rem; font-weight: 600; letter-spacing: .06em;
	margin: 0 0 8px; color: var(--wl-ink);
}
.wl-cf7-row label .required { color: var(--wl-blue); margin-left: 6px; font-size: .82rem; }
.wl-cf7-row .wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.wl-cf7-row select.wpcf7-select {
	width: 100%; padding: 14px 16px; border: 1px solid var(--wl-line);
	background: #fff; font-family: inherit; font-size: 1rem;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235993c5' d='M6 8L0 0h12z'/></svg>");
	background-repeat: no-repeat; background-position: right 16px center;
}
.wl-cf7-submit { text-align: center; margin-top: 32px !important; }

.wpcf7-not-valid-tip {
	color: #c2410c; font-size: .82rem; margin-top: 6px; display: block;
}
.wpcf7-response-output {
	margin: 24px 0 0 !important; padding: 14px 18px !important;
	border-width: 1px !important; border-style: solid !important;
	border-radius: 0 !important;
	font-size: .92rem; line-height: 1.6;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output { border-color: #c2410c !important; color: #c2410c !important; background: #fff7ed; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--wl-blue) !important; color: var(--wl-blue) !important; background: var(--wl-cream); }

.wl-contact-direct {
	text-align: center; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--wl-line);
}
.wl-contact-direct__mail {
	font-family: var(--wl-font-disp); font-size: 1.7rem; letter-spacing: .04em; color: var(--wl-blue);
	display: inline-block; margin-top: 8px;
}

/* ---------- Footer ---------- */

.site-footer { background: var(--wl-ink); color: #d7d2cb; padding: 96px 0 36px; position: relative; overflow: hidden; }
.site-footer a { color: #d7d2cb; }
.site-footer a:hover { color: #fff; opacity: 1; }
.site-footer__top {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
	max-width: var(--wl-container-wide); margin: 0 auto; padding: 0 32px;
	position: relative; z-index: 2;
}
.site-footer__brand img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 24px; }
.site-footer__tag { font-size: .92rem; color: #a7a29a; line-height: 1.95; max-width: 340px; }
.site-footer__nav h4, .site-footer__contact h4 {
	font-family: var(--wl-font-disp); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
	color: #fff; font-weight: 500; margin-bottom: 24px;
}
.site-footer__nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.site-footer__nav a { font-size: .95rem; }
.site-footer__contact p { font-size: .95rem; margin-bottom: 8px; }
.site-footer__contact a { font-family: var(--wl-font-disp); font-size: 1.1rem; letter-spacing: .04em; }
.site-footer__bottom {
	max-width: var(--wl-container-wide); margin: 64px auto 0; padding: 28px 32px 0;
	border-top: 1px solid rgba(255,255,255,.08);
	display: flex; justify-content: space-between; gap: 16px;
	font-size: .8rem; color: #8a8480; letter-spacing: .08em;
	position: relative; z-index: 2;
}
.site-footer__giant {
	position: absolute; left: 50%; bottom: -40px; transform: translateX(-50%);
	font-family: var(--wl-font-disp);
	font-size: clamp(8rem, 22vw, 24rem);
	letter-spacing: -.02em; line-height: 1;
	color: rgba(255,255,255,.04);
	z-index: 1; pointer-events: none; white-space: nowrap;
	font-weight: 500;
}

@media (max-width: 768px) {
	.site-footer__top { grid-template-columns: 1fr; gap: 40px; padding: 0 22px; }
	.site-footer__bottom { flex-direction: column; padding: 24px 22px 0; }
}

/* ---------- Page title (interior pages, with optional bg image) ---------- */

.wl-page-title {
	padding: 180px 0 110px;
	background: var(--wl-ink);
	color: #fff;
	border-bottom: 1px solid var(--wl-line);
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 360px;
	display: flex; align-items: center; justify-content: center;
}
.wl-page-title__bg {
	position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.wl-page-title__bg img {
	width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
	transform: scale(1.04);
	animation: wlPtZoom 14s ease-out forwards;
	opacity: 0;
}
@keyframes wlPtZoom {
	0% { transform: scale(1.12); opacity: 0; }
	8% { opacity: .9; }
	100% { transform: scale(1); opacity: .85; }
}
.wl-page-title__bg::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(30,30,30,.55) 0%, rgba(30,30,30,.4) 40%, rgba(30,30,30,.85) 100%);
	z-index: 1;
}

.wl-page-title__inner { position: relative; z-index: 2; }

.wl-page-title h1 {
	font-family: var(--wl-font-disp);
	font-size: clamp(2.8rem, 5.6vw, 4.6rem);
	font-weight: 500; letter-spacing: .04em;
	margin: 0;
	color: inherit;
}
.wl-page-title__jp {
	display: block; font-family: var(--wl-font-jp);
	font-size: .92rem; letter-spacing: .28em;
	color: rgba(255,255,255,.7);
	margin-top: 18px;
}
.wl-page-title__eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--wl-font-disp);
	font-size: 12px; letter-spacing: .36em; text-transform: uppercase;
	color: var(--wl-blue-soft);
	margin-bottom: 22px;
	font-weight: 500;
}
.wl-page-title__eyebrow::before {
	content: ""; width: 36px; height: 1px; background: var(--wl-blue-soft);
}
.wl-page-title__giant {
	position: absolute; left: 50%; bottom: -32px;
	transform: translateX(-50%);
	font-family: var(--wl-font-disp);
	font-size: clamp(7rem, 18vw, 17rem);
	font-weight: 500;
	color: rgba(255,255,255,.05);
	line-height: 1;
	letter-spacing: .02em;
	pointer-events: none; user-select: none;
	z-index: 1;
	white-space: nowrap;
	text-transform: uppercase;
}

/* When no bg image is provided fall back to cream */
.wl-page-title--plain {
	background: var(--wl-cream);
	color: var(--wl-ink);
	min-height: auto;
	padding: 120px 0 80px;
}
.wl-page-title--plain .wl-page-title__jp { color: var(--wl-mute); }
.wl-page-title--plain .wl-page-title__giant { color: rgba(89,147,197,.06); }

/* ---------- About body ---------- */

.wl-prose { max-width: 760px; margin: 0 auto; font-size: 1.02rem; line-height: 2.05; }
.wl-prose h2 {
	font-size: 1.55rem; font-weight: 700; margin: 64px 0 22px;
	padding-bottom: 14px; border-bottom: 1px solid var(--wl-line);
}
.wl-prose h2 .wl-num {
	font-family: var(--wl-font-disp);
	color: var(--wl-blue);
	margin-right: 20px;
	font-weight: 500;
}
.wl-prose h3 { font-size: 1.1rem; font-weight: 700; margin: 36px 0 14px; }
.wl-prose .lead { font-size: 1.12rem; line-height: 2; margin-bottom: 36px; color: var(--wl-ink-soft); }

/* ---------- Misc ---------- */

.wl-divider { display: block; width: 64px; height: 1px; background: var(--wl-blue); margin: 28px 0; }
.wl-divider--center { margin-left: auto; margin-right: auto; }

.wl-num-label {
	font-family: var(--wl-font-disp);
	font-size: 12px; letter-spacing: .3em;
	color: var(--wl-blue); font-weight: 500;
}

/* ---------- Pagination (wl-pager) ---------- */

.wl-pager {
	margin: 72px auto 0;
	display: flex; justify-content: center;
}
.wl-pager .nav-links {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 10px;
}
.wl-pager .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 14px;
	font-family: var(--wl-font-disp); font-size: 0.95rem; font-weight: 500;
	color: var(--wl-ink); background: #fff;
	border: 1px solid var(--wl-line); border-radius: 999px;
	text-decoration: none;
	transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.wl-pager .page-numbers:hover {
	border-color: var(--wl-blue); color: var(--wl-blue);
	transform: translateY(-1px);
}
.wl-pager .page-numbers.current {
	background: var(--wl-blue); color: #fff; border-color: var(--wl-blue);
}
.wl-pager .page-numbers.dots {
	border: 0; background: transparent; min-width: 24px; padding: 0;
	color: var(--wl-mute);
}
.wl-pager .prev,
.wl-pager .next {
	gap: 8px; padding: 0 20px;
	font-family: var(--wl-font-sans);
	letter-spacing: .05em;
}
.wl-pager__arrow { font-family: var(--wl-font-disp); font-size: 1.1rem; line-height: 1; }
.wl-pager__label { font-size: 0.9rem; }

@media (max-width: 600px) {
	.wl-pager { margin-top: 48px; }
	.wl-pager .page-numbers { min-width: 40px; height: 40px; padding: 0 10px; font-size: 0.88rem; }
	.wl-pager .prev,
	.wl-pager .next { padding: 0 14px; }
}
