/*!
Theme Name: Chris Wayne-Wills
Theme URI: https://www.purplemoondesigns.co.uk
Author: Purple Moon Designs
Author URI: https://www.purplemoondesigns.co.uk
Description: Custom WordPress theme for Chris Wayne-Wills — keynote speaker, executive coach and conference host (High Performance Hospitality). Built by Purple Moon Designs on the PMD base theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: purplemoondesigns
Tags: custom-logo, custom-menu, one-column, dark
*/

/*******************************
================================
THEME GUIDE
================================
*******************************

DESIGN SOURCE
  Six page exports supplied by the client (Front Page, Speaking, Coaching,
  Hosting, Story, Book). Dark editorial layout, single red accent, hairline grids.

COLOURS (see :root tokens below)
  --red     #EE3B2B   accent, CTAs, eyebrows, numbers
  --ink     #0B0A0A   page background
  --ink2    #141211   raised surfaces / hover
  --paper   #F6F3EE   text on ink, light sections (Coaching)
  --line    rgba(246,243,238,.14)  hairlines on ink
  --lineD   rgba(11,10,10,.14)     hairlines on paper / red

FONTS (enqueued from Google Fonts in functions.php)
  Poppins  400 500 600 700 800 900  headings, labels, buttons, nav, numbers
  Inter    300 400 500              body copy (default weight 300)

TYPE SCALE
  h1 display   clamp(46px, 6.6vw, 104px)  line-height .9   letter-spacing -.045em
  h2 xl        clamp(40px, 4.8vw, 72px)
  h2 lg        clamp(34px, 3.8vw, 58px)
  h2 md        clamp(32px, 3.4vw, 52px)
  h2 sm        clamp(28px, 3vw, 44px)
  eyebrow      11px Poppins 600, letter-spacing .28em, uppercase, red
  lead         18px / 1.72
  body         16–17px / 1.7, paper at 66–74% opacity

SPACING
  Section padding 96px 56px desktop (hero 88px top), 60px 22px on mobile.
  Hairline grids use gap:1px with the line colour as grid background.

BREAKPOINTS
  1024px  3-col grids drop to 2
  760px   nav collapses to burger, all grids 1 column, section padding reduced

TEMPLATES
  pages/home.php, speaking.php, coaching.php, hosting.php, story.php, book.php
  template-parts/cta-contact.php (email/phone/LinkedIn block), section-orgs.php
  Contact details editable in WP Admin > Theme Options (ACF).

*******************************/


/*******************************
================================
TOKENS
================================
*******************************/

:root {
	--red: #EE3B2B;
	--ink: #0B0A0A;
	--ink2: #141211;
	--paper: #F6F3EE;
	--line: rgba(246, 243, 238, .14);
	--lineD: rgba(11, 10, 10, .14);

	--paper-74: rgba(246, 243, 238, .74);
	--paper-66: rgba(246, 243, 238, .66);
	--paper-62: rgba(246, 243, 238, .62);
	--paper-55: rgba(246, 243, 238, .55);
	--paper-50: rgba(246, 243, 238, .5);
	--ink-78: rgba(11, 10, 10, .78);
	--ink-72: rgba(11, 10, 10, .72);
	--ink-68: rgba(11, 10, 10, .68);

	--font-head: 'Poppins', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;

	--ease: cubic-bezier(.32, .08, .24, 1);
	--pad-x: 56px;
	--header-h: 75px;
}


/*******************************
================================
GLOBAL
================================
*******************************/

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

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font-body);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-wrap: pretty;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color .42s var(--ease), border-color .42s var(--ease), background .42s var(--ease);
}

a:hover {
	color: var(--red);
}

p {
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font: inherit;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

#page {
	min-width: 0;
	overflow-x: clip;
}

.skip-link:focus {
	clip: auto !important;
	clip-path: none;
	position: fixed !important;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	background: var(--red);
	color: var(--ink);
	z-index: 100;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .1em;
}

.content_wrap {
	max-width: 1400px;
	margin: 0 auto;
	width: 90%;
}

.site-main {
	display: block;
}

@keyframes rise {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: none; }
}

.rise {
	animation: rise .8s var(--ease) both;
}


/*******************************
================================
TYPOGRAPHY
================================
*******************************/

.eyebrow {
	display: flex;
	align-items: center;
	gap: 18px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--red);
}

.eyebrow--rule::before {
	content: "";
	width: 46px;
	height: 1px;
	background: currentColor;
	flex: none;
}

.eyebrow--muted {
	color: var(--paper-50);
}

.eyebrow--ink {
	color: var(--ink);
}

.cww-h1 {
	font-size: clamp(46px, 6.6vw, 104px);
	line-height: .9;
	letter-spacing: -.045em;
}

.cww-h2--xl { font-size: clamp(40px, 4.8vw, 72px); line-height: 1; }
.cww-h2--lg { font-size: clamp(34px, 3.8vw, 58px); line-height: 1; }
.cww-h2--md { font-size: clamp(32px, 3.4vw, 52px); line-height: 1.02; }
.cww-h2--sm { font-size: clamp(28px, 3vw, 44px); line-height: 1.05; letter-spacing: -.035em; }
.cww-h2--display { font-size: clamp(44px, 5.6vw, 86px); line-height: .96; }

.accent { color: var(--red); }
.on-paper { color: var(--paper); }

.tagline {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: clamp(19px, 2.1vw, 32px);
	line-height: 1.2;
	letter-spacing: -.02em;
	max-width: 640px;
}

.lead {
	font-size: 18px;
	line-height: 1.72;
	color: var(--paper-74);
	max-width: 540px;
}

.lead--17 { font-size: 17px; line-height: 1.74; color: rgba(246, 243, 238, .7); max-width: 460px; }

.muted {
	font-size: 16px;
	line-height: 1.7;
	color: var(--paper-66);
	max-width: 420px;
}

.meta-label {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--paper-50);
}

.meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.meta-row .sep { color: var(--red); }


/*******************************
================================
BUTTONS & CHIPS
================================
*******************************/

.btn {
	display: inline-block;
	padding: 17px 32px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	line-height: 1.2;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
}

.btn--red {
	background: var(--red);
	border-color: var(--red);
	color: var(--ink);
}

.btn--red:hover {
	background: var(--paper);
	border-color: var(--paper);
	color: var(--ink);
}

.btn--outline {
	border-color: var(--line);
	color: var(--paper);
	font-weight: 600;
}

.btn--outline:hover {
	border-color: var(--red);
	color: var(--red);
}

.btn--ink {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--paper);
}

.btn--ink:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--ink);
}

.btn--ink-paper:hover {
	background: var(--paper);
	border-color: var(--paper);
	color: var(--ink);
}

.btn--sm {
	padding: 16px 30px;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.btn-center {
	margin-top: 56px;
	display: flex;
	justify-content: center;
}

.text-link {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--red);
	border-bottom: 1px solid var(--red);
	padding-bottom: 4px;
}

.text-link:hover {
	color: var(--paper);
	border-color: var(--paper);
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.chip {
	padding: 11px 17px;
	border: 1px solid var(--line);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(246, 243, 238, .82);
}

.chip--lg {
	padding: 12px 20px;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: none;
	color: var(--paper);
}

.chip--dark {
	border-color: var(--lineD);
	color: var(--ink);
}

.chip--on-red {
	padding: 12px 18px;
	border-color: rgba(11, 10, 10, .35);
	font-weight: 600;
	color: var(--ink);
}


/*******************************
================================
HEADER
================================
*******************************/

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 32px;
	padding: 18px 40px;
	background: rgba(11, 10, 10, .88);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.admin-bar .site-header {
	top: 32px;
}

.site-branding a {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
	white-space: nowrap;
}

.site-branding a:hover {
	color: var(--red);
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: var(--red);
	color: var(--ink);
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: -.03em;
}

.brand-name {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 16px;
	letter-spacing: -.02em;
	text-transform: uppercase;
}

.brand-logo {
	display: inline-flex;
	align-items: center;
	flex: none;
}

.brand-logo img,
.custom-logo {
	display: block;
	height: 38px;
	width: auto;
	max-width: 160px;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 14px clamp(16px, 2.2vw, 32px);
}

.main-navigation ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px clamp(16px, 2.2vw, 32px);
}

.main-navigation a,
.nav-cta {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	white-space: nowrap;
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a {
	color: var(--red);
}

.main-navigation .sub-menu {
	display: none;
}

.nav-cta {
	padding: 11px 20px;
	border: 1px solid var(--red);
	color: var(--red);
}

.nav-cta:hover {
	background: var(--red);
	color: var(--ink);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 6px;
	background: none;
	border: 0;
	color: var(--paper);
	cursor: pointer;
}

.menu-toggle svg {
	display: block;
}

.menu-toggle .icon-close { display: none; }
.site-header.menu-open .menu-toggle .icon-burger { display: none; }
.site-header.menu-open .menu-toggle .icon-close { display: block; }


/*******************************
================================
FOOTER
================================
*******************************/

.site-footer {
	padding: 40px var(--pad-x);
	display: flex;
	flex-wrap: wrap;
	gap: 20px 32px;
	align-items: center;
	justify-content: space-between;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--paper-50);
}

.footer-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 26px;
}

.footer-navigation a:hover {
	color: var(--red);
}


/*******************************
================================
SECTIONS & LAYOUT
================================
*******************************/

.cww-section {
	padding: 96px var(--pad-x);
	border-bottom: 1px solid var(--line);
}

.cww-section--hero      { padding: 88px var(--pad-x) 64px; }
.cww-section--hero-tall { padding: 88px var(--pad-x) 72px; }
.cww-section--100       { padding: 100px var(--pad-x); }
.cww-section--104       { padding: 104px var(--pad-x); }
.cww-section--110       { padding: 110px var(--pad-x); }
.cww-section--120       { padding: 120px var(--pad-x); }
.cww-section--strip     { padding: 34px var(--pad-x); }
.cww-section--strip-lg  { padding: 56px var(--pad-x); }
.cww-section--flush     { padding: 0; }
.cww-section--no-border { border-bottom: 0; }

.cww-section--paper {
	background: var(--paper);
	color: var(--ink);
	border-bottom: 0;
}

.cww-section--red {
	background: var(--red);
	color: var(--ink);
	border-bottom: 0;
}

.split {
	display: grid;
	gap: 72px;
	align-items: start;
}

.split--hero       { grid-template-columns: 1fr .82fr; gap: 56px; align-items: stretch; }
.split--story-hero { grid-template-columns: 1.05fr .95fr; align-items: end; }
.split--42         { grid-template-columns: .42fr .58fr; }
.split--44         { grid-template-columns: .44fr .56fr; gap: 80px; }
.split--50         { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--62         { grid-template-columns: .62fr .38fr; gap: 0; align-items: stretch; }
.split--contact    { grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.split--book       { grid-template-columns: 1.15fr .85fr; gap: 80px; }

.split > * {
	min-width: 0;
}

.stack {
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
}

.stack--26 { gap: 26px; }
.stack--22 { gap: 22px; }

/* Hairline grids: 1px gaps showing the line colour */
.hairline {
	display: grid;
	gap: 1px;
	background: var(--line);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.hairline--boxed {
	border: 1px solid var(--line);
}

.hairline--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hairline--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hairline--1 { grid-template-columns: 1fr; }

.hairline > * {
	background: var(--ink);
	min-width: 0;
}

.hairline--dark {
	background: var(--lineD);
	border-color: var(--lineD);
}

.hairline--dark > * {
	background: var(--paper);
}

.hairline--on-red {
	background: rgba(11, 10, 10, .22);
	border: 0;
}

.hairline--on-red > * {
	background: var(--red);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 64px;
}

.section-head--72 { margin-bottom: 72px; }

.section-head .muted {
	max-width: 420px;
	font-size: 17px;
	line-height: 1.65;
}

.section-head__title {
	display: flex;
	align-items: center;
	gap: 26px;
}

.arrow-rule {
	position: relative;
	display: inline-block;
	width: 64px;
	height: 1px;
	background: var(--paper);
	flex: none;
}

.arrow-rule::after {
	content: "";
	position: absolute;
	right: 0;
	top: -3px;
	width: 7px;
	height: 7px;
	border-top: 1px solid var(--paper);
	border-right: 1px solid var(--paper);
	transform: rotate(45deg);
}

.rule-head {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 52px;
}

.rule-head--56 { margin-bottom: 56px; }

.rule-head .rule {
	flex: 1;
	height: 1px;
	background: var(--line);
}

.rule-head .meta-label {
	letter-spacing: .22em;
	color: var(--paper-55);
}

.photo {
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: var(--ink2);
}

.photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo--hero { min-height: 440px; }
.photo--hero img { object-position: 60% 25%; }

.photo__frame {
	position: absolute;
	inset: 0;
	border: 1px solid var(--line);
	pointer-events: none;
}

.photo__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11, 10, 10, .55), transparent 45%);
	pointer-events: none;
}

.photo__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px 32px;
}

.photo__caption strong {
	display: block;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.photo__caption span {
	display: block;
	margin-top: 5px;
	font-size: 13px;
	color: rgba(246, 243, 238, .72);
}


/*******************************
================================
HOME
================================
*******************************/

/* Logo / org strip */
.orgs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px 40px;
}

.orgs--lg { gap: 26px 44px; }

.orgs .eyebrow {
	letter-spacing: .26em;
	flex: none;
}

.orgs__item {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(13px, 1.15vw, 16px);
	letter-spacing: -.01em;
	color: var(--paper-55);
}

.orgs--lg .orgs__item {
	font-size: clamp(14px, 1.3vw, 18px);
	color: rgba(246, 243, 238, .6);
}

/* Book Chris for — offer cards */
.offer {
	padding: 44px 36px 48px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: var(--paper);
}

.offer:hover {
	background: var(--ink2);
	color: var(--paper);
}

.offer__num {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 68px;
	line-height: .86;
	letter-spacing: -.05em;
}

.offer__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: clamp(24px, 2.3vw, 32px);
	line-height: 1.1;
	letter-spacing: -.025em;
}

.offer__bar {
	width: 80px;
	height: 3px;
	background: var(--red);
}

.offer__body {
	font-size: 16px;
	line-height: 1.72;
	color: rgba(246, 243, 238, .72);
}

.offer__points {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-top: 2px;
}

.offer__points li {
	display: flex;
	gap: 11px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(246, 243, 238, .86);
}

.offer__points li::before {
	content: "·";
	color: var(--red);
}

.offer__cta {
	margin-top: auto;
	padding-top: 26px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--red);
}

.also {
	margin-top: 56px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 28px;
}

.also .eyebrow {
	letter-spacing: .26em;
	color: var(--paper-50);
}

/* Credibility / stats */
.impact__main {
	border-right: 1px solid var(--line);
}

.impact__head {
	padding: 56px var(--pad-x) 26px;
}

.stat {
	padding: 38px 32px 46px;
}

.stat__value {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(34px, 3.6vw, 56px);
	letter-spacing: -.035em;
	color: var(--red);
	line-height: 1;
}

.stat__label {
	margin-top: 10px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 11px;
	line-height: 1.6;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--paper-62);
}

.impact__note {
	padding: 34px var(--pad-x) 26px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 24px;
}

.impact__note p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--paper-66);
	max-width: 640px;
}

.impact__chips {
	padding: 0 var(--pad-x) 56px;
}

.photo--impact { min-height: 380px; }
.photo--impact img { object-position: center 22%; }

/* Audience / who cards */
.who-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px 44px;
}

.who {
	min-width: 0;
	border-top: 3px solid var(--red);
	padding-top: 18px;
}

.who__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 19px;
	letter-spacing: -.015em;
}

.who__body {
	margin-top: 9px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(246, 243, 238, .64);
}

.split-intro .muted {
	margin-top: 26px;
}

.split-intro .btn {
	margin-top: 34px;
}


/*******************************
================================
SPEAKING
================================
*******************************/

.fact {
	padding: 18px 24px;
	aspect-ratio: 2.4 / 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fact__label {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--red);
}

.fact__value {
	margin-top: 12px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 19px;
	line-height: 1.3;
	letter-spacing: -.015em;
}

.fact-photo {
	grid-column: 1 / -1;
	position: relative;
	height: clamp(120px, 15vw, 180px);
	overflow: hidden;
}

.fact-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
}

.fact-photo__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11, 10, 10, .5), transparent 60%);
	pointer-events: none;
}

.hairline--facts {
	align-content: start;
}

.stage {
	position: relative;
	background: var(--ink2);
}

.stage img {
	width: 100%;
	height: clamp(340px, 52vw, 660px);
	object-fit: cover;
	object-position: 22% 42%;
}

.stage__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11, 10, 10, .9), rgba(11, 10, 10, .05) 55%, transparent);
	pointer-events: none;
}

.stage__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 48px var(--pad-x);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px 40px;
}

.stage__text {
	max-width: 640px;
}

.stage__text .eyebrow {
	margin-bottom: 16px;
}

.stage__title {
	font-size: clamp(26px, 3.2vw, 46px);
	line-height: 1.02;
	letter-spacing: -.035em;
}

.topic {
	padding: 32px 30px;
	display: flex;
	gap: 24px;
	align-items: baseline;
}

.topic:hover {
	background: var(--ink2);
}

.topic__num,
.num-label {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .1em;
	color: var(--red);
	flex: none;
	min-width: 34px;
}

.topic__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: clamp(19px, 1.8vw, 24px);
	line-height: 1.25;
	letter-spacing: -.02em;
}

.topic__body {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(246, 243, 238, .64);
}

.page-intro .eyebrow {
	margin-bottom: 26px;
	letter-spacing: .3em;
}

.page-intro .lead--17 {
	margin-top: 30px;
}

.page-intro .btn {
	margin-top: 34px;
}


/*******************************
================================
COACHING
================================
*******************************/

.cww-section--paper .lead--17 {
	color: var(--ink-72);
}

.coach-row {
	padding: 28px 0;
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 24px;
	align-items: baseline;
}

.coach-row__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 21px;
	letter-spacing: -.02em;
}

.coach-row__body {
	margin-top: 9px;
	font-size: 15px;
	line-height: 1.68;
	color: var(--ink-68);
}

.coach-chips {
	padding: 26px 0;
}


/*******************************
================================
HOSTING
================================
*******************************/

.host-card {
	padding: 28px 26px;
}

.host-card__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 17px;
	letter-spacing: -.01em;
}

.host-card__body {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--paper-62);
}

.step {
	padding: 36px 32px;
}

.step__label {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--red);
}

.step__title {
	margin-top: 16px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: -.015em;
}

.step__body {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.66;
	color: rgba(246, 243, 238, .64);
}


/*******************************
================================
STORY
================================
*******************************/

.portfolio-line {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: clamp(14px, 1.2vw, 16px);
	line-height: 1.8;
	letter-spacing: .04em;
	margin-bottom: 40px;
}

.portfolio-line .sep {
	color: var(--red);
}

.story-side .eyebrow--muted {
	margin-bottom: 14px;
	letter-spacing: .3em;
}

.story-side .eyebrow:not(.eyebrow--muted) {
	margin-bottom: 28px;
	letter-spacing: .3em;
}

.chairs {
	margin-top: 36px;
}

.chair {
	padding: 18px 0;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
}

.chair__role {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
}

.story-body {
	display: flex;
	flex-direction: column;
	gap: 22px;
	font-size: 17px;
	line-height: 1.78;
	color: var(--paper-74);
	max-width: 760px;
}

.story-body strong,
.story-body .on-paper {
	font-weight: inherit;
	color: var(--paper);
}

.philosophy .eyebrow {
	margin-bottom: 34px;
	letter-spacing: .3em;
}

.quote-big {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.18;
	letter-spacing: -.03em;
}

.quote-big__by {
	margin-top: 26px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--paper-55);
}

.pillar {
	padding: 32px 34px;
}

.pillar__head {
	display: flex;
	align-items: baseline;
	gap: 16px;
}

.pillar__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: -.01em;
}

.pillar__body {
	margin: 12px 0 0 50px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--paper-66);
}

.awards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.award {
	border-top: 3px solid var(--red);
	padding-top: 20px;
}

.award__year {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 15px;
	letter-spacing: .1em;
	color: var(--red);
}

.award__title {
	margin-top: 12px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -.015em;
}

.award__by {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--paper-62);
}

.recognition .chips {
	margin-top: 64px;
	gap: 12px;
}

.recognition .chip {
	padding: 11px 18px;
	color: rgba(246, 243, 238, .8);
}

.quote-card {
	padding: 38px 34px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 26px;
}

.quote-card:hover {
	background: var(--ink2);
}

.quote-card__mark {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 44px;
	line-height: .6;
	color: var(--red);
}

.quote-card__text {
	font-size: 16px;
	line-height: 1.66;
	color: rgba(246, 243, 238, .86);
}

.quote-card__name {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .02em;
}

.quote-card__role {
	margin-top: 5px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 11px;
	line-height: 1.5;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--red);
}


/*******************************
================================
CONTACT BLOCK & BOOK PAGE
================================
*******************************/

.cww-section--red .eyebrow {
	color: var(--ink);
	margin-bottom: 30px;
	letter-spacing: .3em;
}

.cww-section--red .lead {
	margin-top: 28px;
	color: var(--ink-78);
	line-height: 1.66;
}

.contact-list > * {
	padding: 22px 4px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	flex-wrap: wrap;
	color: var(--ink);
}

.contact-list--lg > * {
	padding: 24px 4px;
}

.contact-list a:hover {
	color: var(--paper);
}

.contact-list__label {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.contact-list__value {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 18px;
}

.book-chips {
	margin-top: 40px;
	gap: 12px;
}

.book-form-wrap {
	margin-top: 64px;
	max-width: 1000px;
	padding: clamp(28px, 4vw, 56px);
	border: 1px solid rgba(11, 10, 10, .32);
	background: transparent;
	color: var(--ink);
}

.book-form__head {
	margin-bottom: 44px;
}

.book-form__title {
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 1;
	letter-spacing: -.035em;
	color: var(--ink);
}

.book-form__sub {
	margin-top: 12px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: .02em;
	color: var(--ink-72);
}

.book-form-wrap .wpcf7 form,
.book-form {
	max-width: 960px;
}

.book-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 40px;
}

.book-form__field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

/* If CF7 auto-paragraphs are still on, let the grid see through the <p> wrappers */
.book-form__grid > p,
.book-form__grid > br {
	display: contents;
}

.book-form .wpcf7-form > p,
.book-form .wpcf7-form > br {
	display: contents;
}

.book-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.book-form .wpcf7-form-control-wrap > input,
.book-form .wpcf7-form-control-wrap > select,
.book-form .wpcf7-form-control-wrap > textarea {
	width: 100%;
}

.book-form__field--full {
	grid-column: 1 / -1;
}

.book-form__field > span:first-child,
.book-form__label {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink);
}

.book-form input[type="text"],
.book-form input[type="email"],
.book-form input[type="tel"],
.book-form select,
.book-form textarea {
	width: 100%;
	padding: 14px 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid rgba(11, 10, 10, .5);
	color: var(--ink);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 17px;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.book-form select {
	cursor: pointer;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%230B0A0A' stroke-width='1.4'%3E%3Cpath d='M2 5l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 2px center;
	padding-right: 24px;
}

.book-form select option {
	color: var(--ink);
	background: var(--paper);
}

.book-form textarea {
	line-height: 1.6;
	resize: vertical;
	min-height: 120px;
}

.book-form input::placeholder,
.book-form textarea::placeholder {
	color: rgba(11, 10, 10, .42);
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
	border-bottom-color: var(--ink);
}

.book-form .wpcf7-form-control-wrap {
	display: block;
}

.book-form .wpcf7-submit,
.book-form button[type="submit"] {
	margin-top: 40px;
	padding: 17px 40px;
	background: var(--ink);
	color: var(--paper);
	border: 1px solid var(--ink);
	cursor: pointer;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	transition: background .42s var(--ease), color .42s var(--ease);
}

.book-form .wpcf7-submit:hover,
.book-form button[type="submit"]:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--ink);
}

.book-form .wpcf7-spinner {
	margin-left: 12px;
}

.book-form .wpcf7-not-valid-tip {
	margin-top: 8px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .04em;
	color: var(--ink);
}

.book-form .wpcf7-response-output {
	margin: 24px 0 0;
	padding: 16px 20px;
	border: 1px solid rgba(11, 10, 10, .5) !important;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .04em;
	color: var(--ink);
}

.book-form .wpcf7-form.sent .wpcf7-response-output {
	border-color: var(--ink) !important;
	font-size: clamp(20px, 2.4vw, 30px);
	font-weight: 800;
	letter-spacing: -.02em;
	border: 0 !important;
	padding: 0;
}


/*******************************
================================
DEFAULT PAGE, POSTS, 404
================================
*******************************/

.page-hero {
	padding: 88px var(--pad-x) 56px;
	border-bottom: 1px solid var(--line);
}

.page-hero h1 {
	font-size: clamp(40px, 5vw, 80px);
	line-height: .95;
}

.the_content {
	max-width: 760px;
	padding: 72px 0 96px;
	font-size: 17px;
	line-height: 1.78;
	color: var(--paper-74);
}

.the_content h2,
.the_content h3,
.the_content h4 {
	color: var(--paper);
	margin: 1.6em 0 .6em;
	line-height: 1.15;
}

.the_content h2 { font-size: clamp(28px, 3vw, 40px); }
.the_content h3 { font-size: 24px; }
.the_content h4 { font-size: 19px; }

.the_content p,
.the_content ul,
.the_content ol {
	margin: 0 0 1.3em;
}

.the_content ul { list-style: disc; padding-left: 1.3em; }
.the_content ol { list-style: decimal; padding-left: 1.3em; }

.the_content a {
	color: var(--red);
	border-bottom: 1px solid currentColor;
}

.the_content a:hover {
	color: var(--paper);
}

.the_content strong {
	color: var(--paper);
	font-weight: 500;
}

.the_content blockquote {
	margin: 2em 0;
	padding-left: 24px;
	border-left: 3px solid var(--red);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.3;
	color: var(--paper);
}

.the_content img {
	margin: 2em 0;
}

.the_content .wp-block-image figcaption {
	font-size: 13px;
	color: var(--paper-55);
}

.entry-meta {
	margin-top: 16px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--paper-50);
}

.page-not-found {
	padding: 96px 0;
	text-align: center;
}

.page-not-found img {
	max-width: 420px;
	margin: 0 auto 40px;
	opacity: .9;
}

.page-not-found .page-title {
	font-size: clamp(30px, 4vw, 56px);
	color: var(--paper);
	margin-bottom: 32px;
}

.cta-btn {
	display: flex;
	justify-content: center;
}

.cta-btn a {
	display: inline-block;
	padding: 17px 32px;
	background: var(--red);
	color: var(--ink);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.cta-btn a:hover {
	background: var(--paper);
}

.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1.5em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1.5em; }
.aligncenter { clear: both; display: block; margin: 0 auto 1.5em; }


/*******************************
================================
RESPONSIVE
================================
*******************************/

@media (max-width: 1100px) {
	.awards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.hairline--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.split--hero,
	.split--story-hero,
	.split--42,
	.split--44,
	.split--50,
	.split--contact,
	.split--book {
		gap: 48px;
	}

	.offer__num {
		font-size: 56px;
	}
}

@media (max-width: 760px) {
	:root {
		--pad-x: 22px;
	}

	/* Header / mobile nav */
	.site-header {
		padding: 16px 22px;
	}

	.brand-name {
		font-size: 14px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.header-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
		padding: 24px 22px 28px;
		background: rgba(11, 10, 10, .97);
		-webkit-backdrop-filter: blur(14px);
		backdrop-filter: blur(14px);
		border-bottom: 1px solid var(--line);
	}

	.site-header.menu-open .header-nav {
		display: flex;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
	}

	/* Sections */
	.cww-section,
	.cww-section--hero,
	.cww-section--hero-tall,
	.cww-section--100,
	.cww-section--104,
	.cww-section--110,
	.cww-section--120 {
		padding: 60px 22px;
	}

	.cww-section--strip,
	.cww-section--strip-lg {
		padding: 40px 22px;
	}

	.cww-section--flush {
		padding: 0;
	}

	.split,
	.split--hero,
	.split--story-hero,
	.split--42,
	.split--44,
	.split--50,
	.split--62,
	.split--contact,
	.split--book {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.impact__main {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.hairline--2,
	.hairline--3 {
		grid-template-columns: 1fr;
	}

	.who-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.awards {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.section-head,
	.section-head--72 {
		margin-bottom: 40px;
	}

	.rule-head {
		flex-wrap: wrap;
		gap: 14px;
	}

	.photo--hero {
		min-height: 360px;
	}

	.photo--impact {
		min-height: 320px;
	}

	.fact {
		aspect-ratio: auto;
		padding: 22px 24px;
	}

	.stage img {
		height: 420px;
	}

	.stage__content {
		padding: 28px 22px;
	}

	.coach-row {
		grid-template-columns: 44px 1fr;
		gap: 16px;
	}

	.pillar__body {
		margin-left: 0;
	}

	.book-form__grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.book-form-wrap {
		margin-top: 44px;
		padding: 28px 22px;
	}

	.book-form__head {
		margin-bottom: 32px;
	}

	.site-footer {
		padding: 32px 22px;
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.offer {
		padding: 36px 26px 40px;
	}

	.topic {
		padding: 26px 22px;
		gap: 16px;
	}

	.stat {
		padding: 30px 24px 36px;
	}

	.impact__head,
	.impact__note {
		padding-left: 22px;
		padding-right: 22px;
	}

	.impact__chips {
		padding: 0 22px 40px;
	}

	.btn {
		white-space: normal;
		text-align: center;
	}
}

@media (max-width: 420px) {
	.brand-name {
		display: none;
	}
}
