/*
Theme Name: Andrew Tsuro — Leadership Alchemist
Theme URI: https://andrewtsuro.com
Author: Andrew Tsuro & Associates
Description: A premium, accessible WordPress theme for Andrew Tsuro's leadership development, coaching and keynote practice.
Version: 8.1.1
Requires at least: 5.8
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: andrew-tsuro
*/

:root {
	--ink: #090b10;
	--ink-soft: #121722;
	--navy: #172133;
	--ivory: #f5f1e8;
	--paper: #fffdf8;
	--white: #ffffff;
	--gold: #d7b65b;
	--gold-bright: #f0d781;
	--gold-dark: #7e5b10;
	--line: rgba(16, 19, 27, 0.14);
	--line-dark: rgba(255, 255, 255, 0.16);
	--muted: #5f626a;
	--shadow: 0 24px 70px rgba(7, 9, 13, 0.12);
	--serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
	--sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--shell: 1240px;
	--header-height: 90px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }

h1,
h2,
h3,
h4,
p,
figure { margin-top: 0; }

h1,
h2,
h3,
h4 { line-height: 1.08; text-wrap: balance; }

p { text-wrap: pretty; }

::selection { background: var(--gold); color: var(--ink); }

.shell {
	width: min(calc(100% - 64px), var(--shell));
	margin-inline: auto;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--white);
	color: var(--ink);
	font-weight: 800;
}

:focus-visible {
	outline: 3px solid var(--gold-bright);
	outline-offset: 4px;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	height: var(--header-height);
	color: var(--white);
	transition: background-color 180ms ease, box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled,
.at-inner-page .site-header {
	height: 76px;
	background: rgba(9, 11, 16, 0.97);
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 64px), 1380px);
	height: 100%;
	margin-inline: auto;
}

.site-branding__link,
.custom-logo-link {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	color: inherit;
	text-decoration: none;
}

.custom-logo { width: auto; max-height: 54px; }

.site-branding__name,
.site-footer__wordmark {
	font-family: var(--serif);
	font-size: 1.55rem;
	font-weight: 700;
	letter-spacing: 0.015em;
}

.site-branding__descriptor {
	margin-top: -2px;
	color: var(--gold-bright);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.19em;
	text-transform: uppercase;
}

.site-nav__list,
.site-nav__list ul,
.footer-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list { display: flex; align-items: center; gap: 30px; }

.site-nav__list > li { position: relative; }

.site-nav__list a {
	display: block;
	padding: 10px 0;
	color: inherit;
	font-size: 0.77rem;
	font-weight: 750;
	letter-spacing: 0.075em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav__list a:hover { color: var(--gold-bright); }

.site-nav__list > li:last-child > a {
	padding: 11px 18px;
	border: 1px solid var(--gold);
	color: var(--gold-bright);
}

.site-nav__list ul {
	position: absolute;
	top: 100%;
	left: -18px;
	min-width: 230px;
	padding: 10px 18px;
	background: var(--ink);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 160ms ease;
}

.site-nav__list li:hover > ul,
.site-nav__list li:focus-within > ul { opacity: 1; visibility: visible; transform: none; }

.site-nav__toggle { display: none; }

.hero {
	position: relative;
	display: flex;
	min-height: 900px;
	align-items: center;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.hero__media,
.hero__media img,
.hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__media img { object-fit: cover; object-position: 58% center; }

.hero__overlay {
	background:
		linear-gradient(90deg, rgba(5, 7, 11, 0.97) 0%, rgba(5, 7, 11, 0.78) 38%, rgba(5, 7, 11, 0.14) 71%),
		linear-gradient(0deg, rgba(5, 7, 11, 0.92) 0%, transparent 30%);
}

.hero__content { position: relative; z-index: 2; padding: 145px 0 190px; }
.hero__copy { max-width: 780px; }

.eyebrow,
.section-kicker {
	margin-bottom: 18px;
	color: var(--gold-dark);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .section-kicker { color: var(--gold-bright); }
.eyebrow span { margin-inline: 8px; color: rgba(255, 255, 255, 0.5); }

.hero h1,
.display-title {
	margin-bottom: 28px;
	font-family: var(--serif);
	font-size: clamp(4.25rem, 7.2vw, 7.5rem);
	font-weight: 500;
	letter-spacing: -0.055em;
}

.hero h1 em,
.display-title em { color: var(--gold-bright); font-weight: 400; }

.hero__lead {
	max-width: 650px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.83);
	font-size: clamp(1.08rem, 1.6vw, 1.32rem);
	line-height: 1.55;
}

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 15px 18px; }

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 21px;
	border: 1px solid transparent;
	background: var(--ink);
	color: var(--white);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--gold { background: var(--gold); color: var(--ink); }
.button--gold:hover { background: var(--gold-bright); }
.button--ghost,
.button--outline { border-color: rgba(255,255,255,.55); background: transparent; color: var(--white); }
.button--ghost:hover,
.button--outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.button--ink { background: var(--ink); }
.button--small { min-height: 44px; padding: 11px 16px; font-size: 0.68rem; }
.button--full { width: 100%; }

.hero__contact-links { display: flex; gap: 34px; margin-top: 37px; }
.hero__contact-links a { color: var(--white); font-size: 0.92rem; font-weight: 700; text-decoration: none; }
.hero__contact-links span { display: block; color: rgba(255,255,255,.55); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }

.hero__proof {
	position: absolute;
	z-index: 3;
	inset: auto 0 0;
	border-top: 1px solid rgba(255,255,255,.17);
	background: rgba(7,9,13,.74);
	backdrop-filter: blur(14px);
}

.hero__proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__proof-grid > div { min-height: 126px; padding: 25px 30px; border-left: 1px solid rgba(255,255,255,.13); }
.hero__proof-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.hero__proof-grid strong { display: block; color: var(--gold-bright); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.hero__proof-grid span { display: block; max-width: 190px; margin-top: 9px; color: rgba(255,255,255,.65); font-size: .74rem; line-height: 1.45; }

.section-light,
.section-dark,
.section-ivory,
.client-proof,
.contact,
.media-section { padding: clamp(78px, 9vw, 132px) 0; }
.section-light { background: var(--paper); }
.section-ivory { background: var(--ivory); }
.section-dark,
.contact { background: var(--ink); color: var(--white); }

.client-proof { padding-block: 70px 82px; background: var(--white); }
.section-kicker--center,
.section-title--center { text-align: center; }

.section-title {
	max-width: 850px;
	margin-bottom: 30px;
	font-family: var(--serif);
	font-size: clamp(2.65rem, 4.8vw, 5rem);
	font-weight: 500;
	letter-spacing: -0.045em;
}

.section-title--center { margin-inline: auto; }
.section-title--light { color: var(--white); }

.client-proof .section-title { font-size: clamp(2rem, 3.3vw, 3.45rem); }
.client-logos { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; gap: 14px; margin-top: 45px; }
.client-logo { display: grid; min-height: 105px; place-items: center; padding: 15px; border: 1px solid var(--line); background: #fff; }
.client-logo img { width: 100%; height: 68px; object-fit: contain; filter: grayscale(1); opacity: .76; transition: 180ms ease; }
.client-logo:hover img { filter: none; opacity: 1; }

.split-intro { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: clamp(45px, 7vw, 110px); }
.split-intro .display-title { max-width: 880px; font-size: clamp(3rem, 5.7vw, 6.4rem); }
.rich-copy { max-width: 550px; color: rgba(255,255,255,.73); }
.rich-copy p { margin-bottom: 22px; }

.section-heading,
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 55px; }
.section-heading > p,
.gallery-heading > p { max-width: 440px; margin-bottom: 30px; color: var(--muted); }
.section-heading--dark > p,
.gallery-heading > p { color: rgba(255,255,255,.64); }

.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.expertise-card { position: relative; display: flex; flex-direction: column; padding: 40px 35px 38px; border-right: 1px solid var(--line); }
.expertise-card:last-child { border-right: 0; }
.expertise-card--featured { background: var(--ivory); }
.expertise-card__number { color: var(--gold-dark); font-family: var(--serif); font-size: 1.5rem; }
.expertise-card__for { min-height: 46px; margin: 24px 0 8px; color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.expertise-card h3 { min-height: 82px; margin-bottom: 20px; font-family: var(--serif); font-size: clamp(1.7rem, 2.3vw, 2.35rem); font-weight: 600; }
.expertise-card > p:not(.expertise-card__for) { color: var(--muted); }
.expertise-card .text-link { margin-top: auto; }

.check-list { margin: 16px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 8px 0; padding-left: 22px; font-size: .88rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 900; }
.section-dark .check-list li::before { color: var(--gold-bright); }

.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-dark); font-size: .77rem; font-weight: 850; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.text-link:hover { text-decoration: underline; }

.watch-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(45px, 7vw, 100px); }
.video-poster { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #000; box-shadow: 0 34px 90px rgba(0,0,0,.35); }
.video-poster img,
.video-poster iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.42), transparent 60%); pointer-events: none; }
.video-poster.is-playing::after { display: none; }
.video-poster__play,
.media-card__play { position: absolute; z-index: 2; display: grid; width: 76px; height: 76px; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(9,11,16,.66); color: #fff; }
.video-poster__play { inset: 50% auto auto 50%; transform: translate(-50%, -50%); cursor: pointer; }
.video-poster__play:hover { background: var(--gold); color: var(--ink); }
.watch-copy p { color: rgba(255,255,255,.7); }
.watch-copy .button { margin-top: 18px; }

.keynote-list { border-top: 1px solid var(--line); }
.keynote-card { display: grid; grid-template-columns: 85px 1fr 220px; align-items: start; gap: 35px; padding: 50px 0; border-bottom: 1px solid var(--line); }
.keynote-card__index { color: var(--gold-dark); font-family: var(--serif); font-size: 1.65rem; }
.keynote-card__subtitle { margin-bottom: 8px; color: var(--gold-dark); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.keynote-card h3 { margin-bottom: 18px; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 4.4rem); font-weight: 500; letter-spacing: -.04em; }
.keynote-card__content > p:not(.keynote-card__subtitle) { max-width: 790px; color: var(--muted); }
.keynote-card details { margin-top: 22px; }
.keynote-card summary { cursor: pointer; color: var(--gold-dark); font-weight: 800; }
.keynote-card .button { margin-top: 27px; }

.case-study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-study { padding: 34px; border: 1px solid var(--line-dark); background: var(--ink-soft); }
.case-study__client { color: var(--gold-bright); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.case-study h3 { min-height: 92px; font-family: var(--serif); font-size: 2rem; font-weight: 550; }
.case-study > p:not(.case-study__client) { min-height: 152px; color: rgba(255,255,255,.66); font-size: .9rem; }
.case-study__metric { display: grid; grid-template-columns: 94px 1fr; align-items: center; padding: 17px 0; border-top: 1px solid var(--line-dark); }
.case-study__metric strong { color: var(--gold-bright); font-family: var(--serif); font-size: 1.55rem; }
.case-study__metric span { color: rgba(255,255,255,.63); font-size: .76rem; line-height: 1.4; }
.results__note { margin: 24px 0 0; color: rgba(255,255,255,.45); font-size: .74rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 55px; }
.testimonial { grid-column: span 2; display: flex; min-height: 350px; flex-direction: column; justify-content: space-between; margin: 0; padding: 34px; border: 1px solid var(--line); background: #fff; }
.testimonial:nth-child(4) { grid-column: 2 / span 2; }
.testimonial blockquote { margin: 0; font-family: var(--serif); font-size: 1.45rem; line-height: 1.42; }
.testimonial blockquote > span { display: block; height: 48px; color: var(--gold); font-size: 4.5rem; line-height: .7; }
.testimonial figcaption { padding-top: 28px; border-top: 1px solid var(--line); }
.testimonial figcaption strong,
.testimonial figcaption span { display: block; }
.testimonial figcaption strong { font-size: .84rem; }
.testimonial figcaption span { color: var(--muted); font-size: .74rem; }

.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(50px, 8vw, 115px); }
.about-media { position: relative; max-width: 500px; }
.about-media img { width: 100%; box-shadow: var(--shadow); }
.about-media__note { position: absolute; right: -55px; bottom: 40px; max-width: 250px; padding: 20px 24px; background: var(--ink); color: #fff; }
.about-media__note strong,
.about-media__note span { display: block; }
.about-media__note strong { color: var(--gold-bright); font-family: var(--serif); font-size: 1.15rem; }
.about-media__note span { margin-top: 4px; color: rgba(255,255,255,.68); font-size: .7rem; }
.about-copy__lead { font-family: var(--serif); font-size: 1.45rem; line-height: 1.45; }
.about-copy > p:not(.section-kicker) { color: #4c4f56; }
.about-pillars { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 36px; }
.about-pillars span { padding: 8px 12px; border: 1px solid rgba(126,91,16,.35); border-radius: 100px; color: #5e470f; font-size: .72rem; font-weight: 750; }

.gallery-section { padding-bottom: 0; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 310px; }
.photo-grid__item { position: relative; margin: 0; overflow: hidden; }
.photo-grid__item--1,
.photo-grid__item--6 { grid-column: span 2; }
.photo-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-grid__item:hover img { transform: scale(1.03); }

.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.media-card { position: relative; display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--ink); color: #fff; text-decoration: none; }
.media-card > img { width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: .3s ease; }
.media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,7,11,.92), transparent 64%); }
.media-card:hover > img { opacity: .9; transform: scale(1.02); }
.media-card__play { top: 25px; right: 25px; width: 52px; height: 52px; font-size: .75rem; }
.media-card > div { position: absolute; z-index: 2; inset: auto 30px 24px; }
.media-card > div span { color: var(--gold-bright); font-size: .67rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.media-card h3 { margin: 5px 0 0; font-family: var(--serif); font-size: 2rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(50px, 8vw, 115px); }
.contact .display-title { font-size: clamp(3rem, 5vw, 5.5rem); }
.contact-copy > p:not(.section-kicker) { color: rgba(255,255,255,.68); }
.contact-options { margin: 38px 0; border-top: 1px solid var(--line-dark); }
.contact-options a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; }
.contact-options span,
.contact-options strong { display: block; }
.contact-options span { color: rgba(255,255,255,.47); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-options strong { color: var(--gold-bright); font-family: var(--serif); font-size: 1.18rem; }
.calendly-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px; border: 1px solid var(--line-dark); }
.calendly-card span,
.calendly-card strong { display: block; }
.calendly-card span { color: rgba(255,255,255,.5); font-size: .68rem; }
.calendly-card strong { font-family: var(--serif); font-size: 1.15rem; }

.contact-form-wrap { padding: clamp(26px, 4vw, 48px); background: var(--paper); color: var(--ink); box-shadow: 0 32px 90px rgba(0,0,0,.3); }
.contact-form { position: relative; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 6px; font-size: .72rem; font-weight: 800; }
.field input,
.field select,
.field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 13px;
	border: 1px solid #c9c7c0;
	border-radius: 0;
	background: #fff;
	color: var(--ink);
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold-dark); outline: 2px solid rgba(126,91,16,.2); }
.consent-field { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; margin: 0 0 22px; color: #555860; font-size: .76rem; }
.consent-field input { width: 18px; height: 18px; margin-top: 3px; }
.consent-field a { color: var(--gold-dark); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin-bottom: 24px; padding: 16px 18px; border-left: 4px solid; }
.form-message p { margin: 4px 0 0; }
.form-message--success { border-color: #287a3f; background: #e7f4e9; }
.form-message--error { border-color: #a02c2c; background: #f9e6e6; }

.site-footer { padding: 76px 0 22px; background: #05070a; color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.1fr .55fr 1fr; gap: 70px; padding-bottom: 55px; }
.site-footer h2 { color: var(--gold-bright); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer__brand p { max-width: 350px; margin: 15px 0 20px; color: rgba(255,255,255,.55); }
.site-footer__wordmark { color: #fff; text-decoration: none; }
.social-links { display: flex; flex-wrap: wrap; gap: 18px; }
.social-links a,
.footer-nav__list a,
.site-footer__contact a { color: rgba(255,255,255,.72); font-size: .82rem; }
.footer-nav__list li { margin: 8px 0; }
.site-footer__contact a { display: block; margin: 7px 0; }
.site-footer__contact p { color: rgba(255,255,255,.45); font-size: .76rem; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.43); font-size: .68rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { margin-left: 18px; }

.floating-cta {
	position: fixed;
	z-index: 900;
	right: 22px;
	bottom: 22px;
	padding: 13px 17px;
	border: 1px solid rgba(255,255,255,.35);
	background: var(--gold);
	box-shadow: 0 15px 45px rgba(0,0,0,.24);
	color: var(--ink);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .07em;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	transform: translateY(15px);
	transition: .2s ease;
}
.floating-cta.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* Supporting WordPress pages */
.page-hero { padding: 170px 0 80px; background: var(--ink); color: #fff; }
.page-hero .section-title { margin-bottom: 12px; }
.page-hero p { max-width: 700px; color: rgba(255,255,255,.66); }
.content-shell { width: min(calc(100% - 64px), 900px); margin-inline: auto; padding: 80px 0 110px; }
.content-shell--wide { width: min(calc(100% - 64px), var(--shell)); }
.entry-content > * { max-width: 800px; }
.entry-content > .alignwide { max-width: 1100px; margin-inline: calc((800px - 1100px) / 2); }
.entry-content h2 { margin: 2em 0 .6em; font-family: var(--serif); font-size: 2.5rem; }
.entry-content h3 { margin: 1.7em 0 .5em; font-family: var(--serif); font-size: 1.75rem; }
.entry-content a { color: var(--gold-dark); }
.entry-content blockquote { margin: 2rem 0; padding-left: 24px; border-left: 4px solid var(--gold); font-family: var(--serif); font-size: 1.45rem; }
.entry-content img { height: auto; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { border: 1px solid var(--line); background: #fff; }
.post-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--ivory); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 26px; }
.post-card__meta,
.entry-meta { color: var(--gold-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-card h2 { margin: 10px 0 14px; font-family: var(--serif); font-size: 1.85rem; }
.post-card h2 a { text-decoration: none; }
.post-card p { color: var(--muted); font-size: .88rem; }
.pagination { margin-top: 50px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.pagination a,
.pagination span { display: grid; min-width: 44px; min-height: 44px; place-items: center; padding: 8px; border: 1px solid var(--line); text-decoration: none; }
.pagination .current { background: var(--ink); color: #fff; }
.post-navigation { margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--line); }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.post-navigation .nav-next { text-align: right; }
.search-form { display: flex; max-width: 650px; gap: 8px; margin-top: 25px; }
.search-form label { flex: 1; }
.search-field { width: 100%; min-height: 50px; padding: 10px 13px; border: 1px solid var(--line); }
.search-submit { min-height: 50px; padding: 11px 20px; border: 0; background: var(--gold); color: var(--ink); font-weight: 800; cursor: pointer; }
.not-found { text-align: center; }
.not-found .display-title { margin-bottom: 10px; color: var(--gold-dark); }
.comments-area { margin-top: 60px; }

.enquiry-admin-table { width: 100%; border-collapse: collapse; }
.enquiry-admin-table th,
.enquiry-admin-table td { padding: 10px; border-bottom: 1px solid #dcdcde; text-align: left; vertical-align: top; }
.enquiry-admin-table th { width: 170px; }

@media (max-width: 1100px) {
	.site-nav__list { gap: 18px; }
	.site-nav__list a { font-size: .7rem; }
	.client-logos { grid-template-columns: repeat(4, 1fr); }
	.expertise-card { padding-inline: 24px; }
	.keynote-card { grid-template-columns: 65px 1fr; }
	.keynote-card > .button { grid-column: 2; justify-self: start; margin-top: 0; }
	.case-study h3 { min-height: 112px; }
	.photo-grid { grid-auto-rows: 250px; }
}

@media (max-width: 900px) {
	:root { --header-height: 76px; }
	.shell,
	.site-header__inner,
	.content-shell,
	.content-shell--wide { width: min(calc(100% - 40px), var(--shell)); }
	.site-nav__toggle { display: flex; align-items: center; gap: 10px; min-width: 48px; min-height: 48px; justify-content: center; border: 0; background: transparent; color: #fff; cursor: pointer; }
	.site-nav__toggle-label { font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
	.site-nav__toggle-icon { display: flex; width: 22px; flex-direction: column; gap: 5px; }
	.site-nav__toggle-icon span { display: block; height: 2px; background: currentColor; transition: .2s ease; }
	.nav-open .site-nav__toggle-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-open .site-nav__toggle-icon span:nth-child(2) { opacity: 0; }
	.nav-open .site-nav__toggle-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.has-js .site-nav { position: fixed; inset: 76px 0 0; padding: 38px 20px; background: rgba(9,11,16,.99); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
	.has-js .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
	.site-nav__list { width: min(100%, 600px); margin-inline: auto; flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav__list a { padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.13); font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
	.site-nav__list > li:last-child > a { margin-top: 16px; padding: 15px; font-family: var(--sans); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
	.site-nav__list ul { position: static; min-width: 0; padding: 0 0 0 15px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.hero { min-height: 880px; }
	.hero__content { padding-bottom: 210px; }
	.hero__proof-grid { grid-template-columns: repeat(2, 1fr); }
	.hero__proof-grid > div { min-height: 105px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
	.hero__proof-grid strong { font-size: 1.65rem; }
	.split-intro,
	.watch-grid,
	.about-grid,
	.contact-grid { grid-template-columns: 1fr; }
	.expertise-grid { grid-template-columns: 1fr; border-bottom: 0; }
	.expertise-card { border-right: 0; border-bottom: 1px solid var(--line); }
	.expertise-card__for,
	.expertise-card h3 { min-height: 0; }
	.case-study-grid { grid-template-columns: 1fr; }
	.case-study h3,
	.case-study > p:not(.case-study__client) { min-height: 0; }
	.testimonial { grid-column: span 3; }
	.testimonial:nth-child(4) { grid-column: span 3; }
	.testimonial:nth-child(5) { grid-column: 2 / span 4; }
	.about-media { margin-inline: auto; }
	.photo-grid { grid-template-columns: repeat(2, 1fr); }
	.photo-grid__item--1,
	.photo-grid__item--6 { grid-column: span 1; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
	body { font-size: 16px; }
	.shell,
	.site-header__inner,
	.content-shell,
	.content-shell--wide { width: min(calc(100% - 32px), var(--shell)); }
	.site-branding__name { font-size: 1.3rem; }
	.site-branding__descriptor { font-size: .55rem; }
	.site-nav__toggle-label { display: none; }
	.hero { min-height: 900px; align-items: flex-start; }
	.hero__media img { object-position: 62% center; }
	.hero__overlay { background: linear-gradient(90deg, rgba(5,7,11,.95), rgba(5,7,11,.54)), linear-gradient(0deg, rgba(5,7,11,.95) 0%, transparent 53%); }
	.hero__content { padding-top: 132px; padding-bottom: 250px; }
	.hero h1 { font-size: clamp(3.55rem, 17.5vw, 5.2rem); }
	.hero__lead { font-size: 1rem; }
	.hero .button-row { align-items: stretch; flex-direction: column; }
	.hero .button { width: 100%; }
	.hero__contact-links { gap: 18px; flex-direction: column; margin-top: 25px; }
	.hero__proof-grid > div { padding: 14px 12px; }
	.hero__proof-grid strong { font-size: 1.4rem; }
	.hero__proof-grid span { font-size: .63rem; }
	.client-logos { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.client-logo { min-height: 90px; padding: 9px; }
	.client-logo img { height: 58px; }
	.section-heading,
	.gallery-heading { display: block; margin-bottom: 36px; }
	.section-heading > p,
	.gallery-heading > p { margin-bottom: 0; }
	.section-title { font-size: clamp(2.45rem, 12vw, 3.5rem); }
	.display-title { font-size: clamp(2.8rem, 13vw, 4.2rem); }
	.keynote-card { grid-template-columns: 1fr; gap: 12px; padding: 38px 0; }
	.keynote-card > .button { grid-column: 1; }
	.keynote-card h3 { font-size: 2.6rem; }
	.testimonial-grid { grid-template-columns: 1fr; }
	.testimonial,
	.testimonial:nth-child(4),
	.testimonial:nth-child(5) { grid-column: 1; min-height: 300px; padding: 27px; }
	.about-media__note { right: -8px; bottom: 18px; max-width: 220px; }
	.photo-grid { grid-auto-rows: 190px; }
	.media-grid,
	.form-grid,
	.post-grid { grid-template-columns: 1fr; }
	.media-card h3 { font-size: 1.55rem; }
	.calendly-card { align-items: stretch; flex-direction: column; }
	.contact-form-wrap { margin-inline: -16px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
	.site-footer__bottom { align-items: flex-start; flex-direction: column; }
	.site-footer__bottom a { margin: 0 18px 0 0; }
	.floating-cta { display: none; }
	.page-hero { padding-top: 135px; }
	.post-navigation .nav-links { grid-template-columns: 1fr; }
	.post-navigation .nav-next { text-align: left; }
	.search-form { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
	.site-header,
	.site-footer,
	.floating-cta,
	.button,
	.video-poster__play { display: none !important; }
	body { color: #000; background: #fff; }
}
