/*
Theme Name: Steve Simpson
Theme URI: https://steve-simpson.com
Author: Steve Simpson
Description: Custom WordPress theme for Steve Simpson, workplace culture speaker and creator of UGRs®.
Version: 1.0.8
Text Domain: steve-simpson
*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&display=swap");

:root {
  --ink: #161816;
  --forest: #1f2b25;
  --deep: #111815;
  --brass: #c4a65a;
  --brass-light: #e0cb8b;
  --paper: #f3f0e8;
  --white: #fff;
  --muted: #6d706b;
  --line: rgba(22, 24, 22, 0.14);
}

.shop-hero {
  padding-bottom: 72px;
}

.shop-page {
  background: var(--white);
  margin-bottom: 96px;
  margin-top: 48px;
  padding: clamp(28px, 5vw, 64px);
}

.shop-page .woocommerce {
  color: var(--ink);
  font-size: 17px;
}

.shop-page .button,
.shop-page button,
.shop-page input[type="submit"] {
  background: var(--deep) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  font-family: "DM Sans", sans-serif !important;
  font-weight: 600 !important;
  padding: 14px 20px !important;
}

.shop-page input,
.shop-page select,
.shop-page textarea {
  border: 1px solid var(--line);
  font: inherit;
  padding: 12px;
}

.mobile-menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  display: none;
  font: inherit;
  font-size: 14px;
  padding: 10px 14px;
}

@media (max-width: 980px) {
  .site-header .mobile-menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header > .button-small {
    display: none;
  }

  .site-header.menu-open {
    height: auto;
    min-height: 88px;
  }

  .site-header.menu-open nav {
    background: var(--paper);
    display: flex;
    flex-direction: column;
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 20px 0 28px;
    width: 100%;
  }

  .site-header.menu-open nav a {
    border-top: 1px solid var(--line);
    padding: 12px 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(243, 240, 232, 0.96);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 88px;
  padding: 0 4.8vw;
  position: relative;
  z-index: 10;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
}

.wordmark span {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 26px;
  font-style: italic;
}

.wordmark small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.18em;
  margin-top: 8px;
}

nav {
  display: flex;
  gap: 27px;
}

nav a {
  font-size: 13px;
  font-weight: 600;
}

.site-header > .button {
  justify-self: end;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 16px;
  justify-content: center;
  letter-spacing: 0.01em;
  padding: 17px 21px;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  padding: 13px 17px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-brass {
  background: var(--brass);
  color: var(--deep);
}

.hero {
  color: var(--white);
  height: min(780px, calc(100vh - 88px));
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.hero-image,
.about-portrait {
  background-image: url("gallery/17-stage-closeup.jpeg");
  background-position: center 30%;
  background-size: cover;
}

.about-portrait {
  background-image: url("gallery/14-steve-simpson-stage.png");
}

.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-image {
  filter: brightness(1.2) saturate(1.05);
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 15, 12, 0.76) 0%, rgba(9, 15, 12, 0.48) 38%, rgba(9, 15, 12, 0.02) 72%),
    linear-gradient(0deg, rgba(9, 15, 12, 0.42) 0%, transparent 42%);
}

.hero-copy {
  left: 7vw;
  max-width: 700px;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
}

.eyebrow {
  color: var(--brass-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
}

.eyebrow.dark {
  color: #8a6f2e;
}

h1,
h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.99;
  margin: 0;
}

h1 {
  font-size: clamp(55px, 6.6vw, 102px);
  max-width: 920px;
}

h1 em,
h2 em {
  color: var(--brass-light);
  font-weight: 400;
}

.hero-lede {
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.65;
  margin: 30px 0 34px;
  max-width: 630px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 34px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 22px;
  padding-bottom: 7px;
}

.light-link {
  color: var(--white);
}

.hero-proof {
  align-items: stretch;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  position: absolute;
  right: 0;
  width: 58%;
}

.hero-proof div {
  backdrop-filter: blur(10px);
  background: rgba(13, 22, 18, 0.76);
  border-left: 1px solid rgba(255,255,255,.17);
  display: flex;
  flex-direction: column;
  min-height: 102px;
  padding: 24px 28px;
}

.hero-proof strong {
  color: var(--brass-light);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.hero-proof span {
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .08em;
  margin-top: 5px;
  text-transform: uppercase;
}

.client-proof {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 25px 0 22px;
}

.audience-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-path {
  min-height: 470px;
  padding: 70px max(6vw, calc((100vw - 1280px) / 2 + 6vw));
  position: relative;
}

.audience-path-speaking {
  background: var(--forest);
  color: var(--white);
  padding-right: 6vw;
}

.audience-path-culture {
  background: #e4e6dd;
  padding-left: 6vw;
}

.audience-path .path-number {
  color: var(--brass-light);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 25px;
  position: absolute;
  right: 42px;
  top: 35px;
}

.audience-path-culture .path-number {
  color: #8a6f2e;
}

.audience-path h2 {
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.03;
  max-width: 620px;
}

.audience-path > p:not(.eyebrow) {
  color: rgba(255,255,255,.64);
  line-height: 1.75;
  margin: 30px 0 38px;
  max-width: 560px;
}

.audience-path-culture > p:not(.eyebrow) {
  color: #5b6059;
}

.case-intro {
  display: grid;
  gap: 5vw;
  grid-template-columns: .55fr 1.1fr .9fr;
  padding-bottom: 100px;
  padding-top: 100px;
}

.case-intro h2 {
  font-size: clamp(39px, 4.5vw, 62px);
}

.case-intro > p:last-child {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.case-list {
  padding-bottom: 110px;
}

.case-study {
  align-items: stretch;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5vw;
  grid-template-columns: 1fr 1fr;
  padding: 80px 0;
}

.case-study:nth-child(even) .case-video {
  order: 2;
}

.case-video {
  align-self: start;
  aspect-ratio: 16 / 10;
  background: var(--deep);
  box-shadow: 0 25px 55px rgba(18, 28, 23, .16);
}

.case-video iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.case-copy {
  position: relative;
}

.case-number {
  color: rgba(138,111,46,.25);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 70px;
  position: absolute;
  right: 0;
  top: -25px;
}

.case-copy h2 {
  font-size: clamp(43px, 5vw, 68px);
  padding-right: 75px;
}

.case-copy h3 {
  color: #8a6f2e;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.25;
  margin: 18px 0 35px;
}

.case-copy dl,
.case-copy dd {
  margin: 0;
}

.case-copy dl > div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 105px 1fr;
  padding: 18px 0;
}

.case-copy dt {
  color: #8a6f2e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.case-copy dd {
  color: #555a54;
  font-size: 14px;
  line-height: 1.7;
}

.case-pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-pathways > div {
  min-height: 360px;
  padding: 70px 7vw;
}

.case-pathways > div:first-child {
  background: var(--forest);
  color: var(--white);
}

.case-pathways > div:last-child {
  background: var(--brass);
}

.case-pathways h2 {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 40px;
}

.client-proof-heading {
  align-items: baseline;
  display: flex;
  gap: 25px;
  margin: 0 auto 22px;
  max-width: 1280px;
  padding: 0 6vw;
}

.client-proof-heading span {
  color: #8a6f2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  white-space: nowrap;
  text-transform: uppercase;
}

.client-proof-heading p {
  color: #6a6e67;
  font-size: 13px;
  margin: 0;
}

.client-marquee {
  overflow: hidden;
  width: 100%;
}

.client-track {
  align-items: center;
  animation: client-scroll 44s linear infinite;
  display: flex;
  gap: 30px;
  width: max-content;
}

.client-track strong {
  color: #30342f;
  font-size: 15px;
  letter-spacing: .055em;
  white-space: nowrap;
}

.client-track i {
  color: var(--brass);
  font-style: normal;
}

@keyframes client-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 6vw;
    width: auto;
  }
}

.showreel {
  padding-bottom: 120px;
  padding-top: 120px;
}

.showreel-heading,
.about-video {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.25fr .75fr;
  margin-bottom: 50px;
}

.showreel-heading h2,
.about-video h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(44px, 5.4vw, 74px);
  font-weight: 400;
  line-height: 1.03;
  margin: 0;
}

.showreel-heading > p,
.about-video > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--deep);
  box-shadow: 0 28px 60px rgba(17,24,21,.17);
  overflow: hidden;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.section-shell {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 6vw;
  padding-right: 6vw;
}

.intro {
  padding-bottom: 110px;
  padding-top: 125px;
}

.section-kicker {
  align-items: center;
  color: #8a6f2e;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 20px;
  letter-spacing: .17em;
  margin-bottom: 42px;
}

.section-kicker .rule {
  background: var(--brass);
  height: 1px;
  width: 52px;
}

.intro-grid {
  display: grid;
  gap: 9vw;
  grid-template-columns: 1.05fr .95fr;
}

.intro-grid h2,
.section-heading h2,
.results h2,
.about h2,
.contact h2 {
  font-size: clamp(46px, 5.4vw, 76px);
}

.intro-grid h2 em {
  color: #8a6f2e;
}

.intro-copy p,
.results-copy > p,
.about-copy > p {
  color: #555953;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.intro-copy .text-link,
.about-copy .text-link {
  margin-top: 14px;
}

.statement {
  border-left: 1px solid var(--brass);
  color: #31342f;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.32;
  margin: 100px 0 0 20%;
  max-width: 880px;
  padding: 8px 0 8px 42px;
}

.speaker-gallery {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: .9fr 1.2fr .9fr;
  padding-bottom: 120px;
  padding-top: 30px;
}

.speaker-photo {
  background-color: #d8d4cb;
  background-position: center;
  background-size: cover;
  border: 8px solid var(--white);
  box-shadow:
    0 2px 3px rgba(18, 28, 23, .08),
    0 20px 48px rgba(18, 28, 23, .16);
  filter: saturate(.92) contrast(1.03);
  min-height: 390px;
  transition: box-shadow .3s ease, transform .3s ease;
}

.speaker-photo:hover {
  box-shadow:
    0 3px 5px rgba(18, 28, 23, .08),
    0 28px 65px rgba(18, 28, 23, .2);
  transform: translateY(-5px);
}

.speaker-photo-one {
  background-image: url("assets/about-stage.jpg");
  transform: rotate(-1.1deg);
}

.speaker-photo-two {
  background-image: url("assets/speaker-two.jpg");
  box-shadow:
    0 3px 5px rgba(18, 28, 23, .1),
    0 30px 70px rgba(18, 28, 23, .22);
  min-height: 470px;
  transform: translateY(-22px);
}

.speaker-photo-three {
  background-image: url("assets/portrait.jpg");
  transform: rotate(1.1deg);
}

.speaker-photo-one:hover {
  transform: rotate(-1.1deg) translateY(-5px);
}

.speaker-photo-two:hover {
  transform: translateY(-27px);
}

.speaker-photo-three:hover {
  transform: rotate(1.1deg) translateY(-5px);
}

.gallery-link {
  padding-bottom: 90px;
  text-align: center;
}

.gallery-link .text-link {
  display: inline-flex;
}

.gallery-intro {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 5vw;
  grid-template-columns: .55fr 1.2fr .9fr;
  padding-bottom: 80px;
  padding-top: 80px;
}

.gallery-intro h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.04;
  margin: 0;
}

.gallery-intro > p:last-child {
  color: #5c6059;
  line-height: 1.8;
  margin: 0;
}

.conference-gallery {
  display: grid;
  gap: 16px;
  grid-auto-flow: dense;
  grid-auto-rows: 300px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 110px;
  padding-top: 80px;
}

.conference-gallery figure {
  background: var(--deep);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.conference-gallery figure.gallery-featured {
  grid-column: span 2;
}

.conference-gallery figure.gallery-tall {
  grid-row: span 2;
}

.gallery-image-link {
  background: none;
  border: 0;
  cursor: zoom-in;
  display: block;
  height: 100%;
  padding: 0;
  width: 100%;
}

.conference-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  width: 100%;
}

.conference-gallery figure:hover img {
  transform: scale(1.035);
}

.conference-gallery figcaption {
  background: linear-gradient(transparent, rgba(8, 15, 12, .88));
  bottom: 0;
  color: var(--white);
  font-size: 12px;
  left: 0;
  letter-spacing: .04em;
  padding: 65px 24px 22px;
  position: absolute;
  right: 0;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  align-items: center;
  background: rgba(5, 10, 8, .94);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 32px 80px;
  position: fixed;
  z-index: 1000;
}

.gallery-lightbox figure {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0;
  max-width: 1280px;
  width: 100%;
}

.gallery-lightbox img {
  height: calc(100% - 48px);
  object-fit: contain;
  width: 100%;
}

.gallery-lightbox figcaption {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  padding-top: 16px;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  cursor: pointer;
  position: absolute;
}

.gallery-lightbox-close {
  font-size: 30px;
  height: 48px;
  line-height: 1;
  right: 24px;
  top: 22px;
  width: 48px;
}

.gallery-lightbox-nav {
  border-radius: 50%;
  font-size: 40px;
  height: 54px;
  top: calc(50% - 27px);
  width: 54px;
}

.gallery-lightbox-prev {
  left: 18px;
}

.gallery-lightbox-next {
  right: 18px;
}

.gallery-organiser-band {
  align-items: center;
  background: var(--deep);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 85px 8vw;
}

.gallery-organiser-band h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  margin: 12px 0 0;
  max-width: 760px;
}

.resource-gallery-link {
  margin-top: 35px;
}

.statement cite {
  color: #8a6f2e;
  display: block;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .13em;
  margin-top: 24px;
  text-transform: uppercase;
}

.programmes {
  background: var(--forest);
  color: var(--white);
  padding: 110px 0 120px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.5fr .5fr;
  margin-bottom: 65px;
}

.section-heading p:last-child {
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.programme-grid {
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.programme-card {
  border-left: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 38px;
}

.programme-card:last-child {
  border-right: 1px solid rgba(255,255,255,.18);
}

.programme-card > span {
  color: var(--brass-light);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 18px;
}

.programme-card h3 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  margin: 72px 0 22px;
  min-height: 75px;
}

.programme-card p {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.card-link {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
}

.results {
  align-items: center;
  display: grid;
  gap: 10vw;
  grid-template-columns: 1fr .84fr;
  padding-bottom: 125px;
  padding-top: 125px;
}

.results-copy > p {
  margin-top: 28px;
}

.results ul {
  list-style: none;
  margin: 35px 0 0;
  padding: 0;
}

.results li {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  gap: 18px;
  padding: 16px 0;
}

.results li span {
  color: #8a6f2e;
}

.results-shift {
  border-bottom: 1px solid #c9c1b0;
  border-top: 4px solid var(--brass);
  padding: 38px 0 32px;
}

.results-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 70px;
  text-transform: uppercase;
}

.shift-line {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shift-line small {
  color: #8a6f2e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.shift-line strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.12;
}

.shift-rule {
  align-items: center;
  display: flex;
  margin: 28px 0;
}

.shift-rule::before {
  background: #c9c1b0;
  content: "";
  height: 1px;
  width: 100%;
}

.shift-rule span {
  color: #8a6f2e;
  font-size: 24px;
  padding-left: 18px;
}

.shift-line-to strong {
  color: #315f4e;
}

.testimonial-section {
  background: var(--deep);
  color: var(--white);
  padding: 110px 0 120px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid figure {
  border-left: 1px solid rgba(255,255,255,.16);
  display: flex;
  flex-direction: column;
  margin: 18px 0 0;
  min-height: 350px;
  padding: 0 35px;
}

.testimonial-grid figure:last-child {
  border-right: 1px solid rgba(255,255,255,.16);
}

.quote-mark {
  color: var(--brass-light);
  font-family: Georgia, serif;
  font-size: 62px;
  height: 52px;
}

.testimonial-grid blockquote {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.38;
  margin: 28px 0 44px;
}

.testimonial-grid figcaption {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.testimonial-grid figcaption strong {
  font-size: 12px;
}

.testimonial-grid figcaption span {
  color: rgba(255,255,255,.52);
  font-size: 11px;
  margin-top: 6px;
}

.about {
  align-items: center;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr .9fr;
  padding-bottom: 125px;
  padding-top: 125px;
}

.about-portrait {
  aspect-ratio: .84;
  background-position: 37% center;
  border: 10px solid var(--white);
  box-shadow:
    -22px 22px 0 rgba(188, 155, 75, .28),
    0 28px 65px rgba(18, 28, 23, .18);
  filter: saturate(.94) contrast(1.03);
  min-height: 600px;
  position: relative;
}

.about-portrait span {
  background: var(--brass);
  bottom: 0;
  font-size: 10px;
  font-weight: 700;
  left: 0;
  letter-spacing: .1em;
  padding: 19px 24px;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
}

.about-copy > p {
  margin-top: 25px;
}

.contact {
  background: var(--forest);
  color: var(--white);
  padding: 120px 6vw;
  text-align: center;
}

.contact-inner {
  margin: 0 auto;
  max-width: 900px;
}

.contact h2 {
  font-size: clamp(52px, 6.5vw, 92px);
}

.contact-inner > p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.7;
  margin: 28px auto 38px;
  max-width: 620px;
}

.contact-actions {
  align-items: center;
  display: flex;
  gap: 34px;
  justify-content: center;
}

.contact-detail {
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-size: 14px;
  padding-bottom: 5px;
}

footer {
  align-items: center;
  background: var(--deep);
  color: rgba(255,255,255,.6);
  display: grid;
  font-size: 10px;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: .04em;
  padding: 45px 6vw;
}

.footer-mark {
  color: var(--white);
}

footer p {
  margin: 0;
}

footer > div {
  display: flex;
  gap: 24px;
  justify-self: end;
}

.page-hero {
  background: var(--deep);
  color: var(--white);
  padding: 115px max(6vw, calc((100vw - 1280px) / 2 + 6vw)) 105px;
}

.page-hero h1 {
  font-size: clamp(58px, 7vw, 105px);
  max-width: 1120px;
}

.page-hero > p:last-child {
  color: rgba(255,255,255,.65);
  font-size: 18px;
  line-height: 1.7;
  margin: 38px 0 0 auto;
  max-width: 620px;
}

.content-shell {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 6vw;
  padding-right: 6vw;
}

.presentation-list {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  padding-bottom: 110px;
  padding-top: 65px;
}

.presentation-positioning {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4vw;
  grid-template-columns: .65fr 1fr 1fr;
  padding-bottom: 60px;
  padding-top: 70px;
}

.presentation-positioning h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  margin: 0;
}

.presentation-positioning > p:last-child {
  color: #5c6059;
  line-height: 1.75;
  margin: 0;
}

.presentation-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 0 42px;
  grid-template-columns: 48px minmax(0, 1.15fr) minmax(280px, .85fr);
  padding: 38px;
  position: relative;
  transition: box-shadow .25s ease, transform .25s ease;
}

.presentation-card:hover {
  box-shadow: 0 22px 50px rgba(18, 28, 23, .12);
  transform: translateY(-4px);
}

.presentation-number {
  color: #8a6f2e;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 25px;
}

.presentation-card .eyebrow {
  margin-bottom: 14px;
}

.presentation-card h2,
.service-cards h2,
.book-copy h2,
.article-grid h2,
.conference-copy h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(33px, 4vw, 53px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 22px;
}

.presentation-card p,
.service-cards p,
.book-copy p,
.article-grid p,
.conference-copy p {
  color: #5c6059;
  font-size: 15px;
  line-height: 1.75;
}

.presentation-card ul,
.book-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.presentation-card ul {
  align-self: center;
  grid-column: 3;
}

.book-copy ul {
  grid-column: 2;
  margin-top: 30px;
}

.presentation-card li,
.book-copy li {
  border-top: 1px solid var(--line);
  color: #4e524c;
  font-size: 12px;
  padding: 13px 0;
}

.presentation-card li::before,
.book-copy li::before {
  color: #8a6f2e;
  content: "✓";
  margin-right: 10px;
}

.presentation-card-copy h2 {
  font-size: clamp(31px, 3.3vw, 46px);
}

.presentation-card-link {
  align-self: end;
  grid-column: 2;
  justify-self: start;
  margin-top: 28px;
}

.presentation-featured {
  background: var(--deep);
  color: var(--white);
  gap: 0 42px;
  grid-column: 1 / -1;
  grid-template-columns: 45% 52px 1fr;
  min-height: 570px;
  padding: 0;
}

.presentation-featured:hover {
  transform: none;
}

.presentation-featured-image {
  background-image:
    linear-gradient(90deg, rgba(14, 24, 20, .05), rgba(14, 24, 20, .55)),
    url("assets/speaker-one.jpg");
  background-position: center;
  background-size: cover;
  grid-row: 1 / span 4;
  min-height: 570px;
}

.presentation-featured .presentation-number {
  color: var(--brass-light);
  padding-top: 55px;
}

.presentation-featured .presentation-card-copy {
  padding: 55px 45px 0 0;
}

.presentation-featured .eyebrow,
.presentation-featured h2 {
  color: var(--white);
}

.presentation-featured .presentation-card-copy > p:last-child {
  color: rgba(255,255,255,.68);
}

.presentation-featured ul {
  grid-column: 3;
  margin-right: 45px;
}

.presentation-featured li {
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
}

.presentation-featured .text-link {
  color: var(--brass-light);
  grid-column: 3;
  justify-self: start;
  margin: 30px 0 50px;
}

.presentation-safety {
  background: #e5e8df;
  border-top: 5px solid #6f7f58;
  grid-column: 1 / -1;
  grid-template-columns: 48px minmax(0, 1.15fr) minmax(280px, .85fr);
}

.presentation-safety::after {
  color: rgba(49, 95, 78, .12);
  content: "SAFETY";
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -.04em;
  position: absolute;
  right: 24px;
  top: 12px;
}

.presentation-safety .presentation-card-copy,
.presentation-safety ul,
.presentation-safety .presentation-number {
  position: relative;
  z-index: 1;
}

.presentation-safety ul {
  align-self: center;
  grid-column: 3;
  margin: 0 0 0 48px;
}

.format-band,
.awards-band {
  background: var(--brass);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 6vw;
}

.organiser-intro {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 7vw;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 80px;
  padding-top: 80px;
}

.organiser-decision {
  align-items: start;
  display: grid;
  gap: 0;
  grid-template-columns: 1.08fr .92fr;
  padding-bottom: 100px;
  padding-top: 100px;
}

.organiser-showreel {
  background: var(--deep);
  aspect-ratio: 16 / 9;
}

.organiser-showreel iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.organiser-booking-copy {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 55px;
}

.organiser-booking-copy h2,
.organiser-verdict blockquote,
.resource-copy-heading h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400;
}

.organiser-booking-copy h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.05;
  margin: 22px 0 28px;
}

.organiser-booking-copy > p:not(.eyebrow) {
  color: #565b54;
  font-size: 17px;
  line-height: 1.75;
}

.organiser-booking-copy ul {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.organiser-booking-copy li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 90px 1fr;
  padding: 15px 0;
}

.organiser-booking-copy li strong {
  color: #8a6f2e;
}

.organiser-booking-copy li span {
  color: #565b54;
  line-height: 1.5;
}

.organiser-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 38px;
}

.organiser-verdict {
  background: var(--deep);
  color: var(--white);
  padding: 95px 0;
  text-align: center;
}

.organiser-verdict blockquote {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.12;
  margin: 35px auto;
  max-width: 1050px;
}

.organiser-verdict > div > p:not(.eyebrow) {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.organiser-verdict p span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  margin-top: 6px;
}

.organiser-intro h2,
.resource-copy h2,
.resource-topics h2,
.resource-photos h2,
.resource-av h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  margin: 12px 0 0;
}

.organiser-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.organiser-facts div {
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 130px;
  padding: 20px 24px;
}

.organiser-facts strong {
  color: var(--brass);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
}

.organiser-facts span {
  color: #62665f;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.resource-copy {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 100px;
  padding-top: 80px;
}

.resource-copy-heading {
  grid-column: 1 / -1;
  margin-bottom: 28px;
  max-width: 900px;
}

.resource-copy-heading h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.06;
  margin: 16px 0 0;
}

.resource-copy article {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 48px;
}

.resource-copy article > p:last-of-type,
.resource-copy blockquote {
  color: #565b54;
  font-size: 16px;
  line-height: 1.8;
  margin: 30px 0;
}

.resource-copy blockquote {
  border-left: 3px solid var(--brass);
  padding-left: 24px;
}

.resource-copy .button {
  align-self: flex-start;
  margin-top: auto;
}

.resource-topics {
  background: var(--deep);
  color: var(--white);
  padding: 90px 0;
}

.resource-topics h2 {
  max-width: 780px;
}

.resource-topic-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 55px 0 42px;
}

.resource-topic-grid article {
  background: rgba(255,255,255,.06);
  min-height: 280px;
  padding: 34px;
}

.resource-topic-grid span {
  color: var(--brass-light);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.resource-topic-grid h3 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
  margin: 45px 0 20px;
}

.resource-topic-grid p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.7;
}

.resource-photos {
  padding-bottom: 110px;
  padding-top: 100px;
}

.resource-section-heading {
  align-items: end;
  display: grid;
  gap: 5vw;
  grid-template-columns: 1.2fr .8fr;
  margin-bottom: 50px;
}

.resource-section-heading p {
  color: #62665f;
  line-height: 1.7;
  margin: 0;
}

.resource-photo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.resource-photo-grid figure {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 0;
}

.resource-photo-grid img {
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  width: 100%;
}

.resource-photo-grid figcaption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.resource-photo-grid figcaption strong {
  font-size: 14px;
}

.resource-photo-grid figcaption a {
  color: #7b642d;
  font-size: 12px;
  text-decoration: none;
}

.resource-av {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 100px;
  padding-top: 90px;
}

.resource-av p:not(.eyebrow) {
  color: #62665f;
  line-height: 1.75;
  margin: 28px 0;
}

.resource-av ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resource-av li {
  border-top: 1px solid var(--line);
  color: #4e524c;
  padding: 18px 0;
}

.resource-av li::before {
  color: var(--brass);
  content: "✓";
  margin-right: 12px;
}

.format-band div,
.awards-band div {
  border-left: 1px solid rgba(22,24,22,.2);
  display: flex;
  flex-direction: column;
  min-height: 160px;
  padding: 38px;
}

.format-band div:last-child,
.awards-band div:last-child {
  border-right: 1px solid rgba(22,24,22,.2);
}

.format-band strong,
.awards-band strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 33px;
  font-weight: 400;
}

.format-band span,
.awards-band span {
  font-size: 10px;
  letter-spacing: .11em;
  margin-top: 12px;
  text-transform: uppercase;
}

.compact-contact {
  padding-bottom: 90px;
  padding-top: 90px;
}

.compact-contact h2 {
  font-size: clamp(48px, 5.4vw, 74px);
}

.split-story {
  display: grid;
  gap: 8vw;
  grid-template-columns: .9fr 1.1fr;
  padding-bottom: 120px;
  padding-top: 120px;
}

.split-story h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(43px, 5vw, 69px);
  font-weight: 400;
  line-height: 1.03;
  margin: 0;
}

.rich-copy > p {
  color: #555953;
  font-size: 17px;
  line-height: 1.85;
  margin: 0 0 25px;
}

.example-stack {
  margin: 44px 0;
}

.example-stack blockquote {
  border-top: 1px solid var(--line);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.35;
  margin: 0;
  padding: 20px 0;
}

.dark-content {
  background: var(--forest);
  color: var(--white);
  padding: 105px 0;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.pathway-grid article {
  border-left: 1px solid rgba(255,255,255,.17);
  min-height: 285px;
  padding: 28px;
}

.pathway-grid article:last-child {
  border-right: 1px solid rgba(255,255,255,.17);
}

.pathway-grid span {
  color: var(--brass-light);
  font-family: "Libre Caslon Display", Georgia, serif;
}

.pathway-grid h3 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  margin: 70px 0 16px;
}

.pathway-grid p {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.6;
}

.service-cards {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 120px;
  padding-top: 120px;
}

.service-cards article {
  border: 1px solid var(--line);
  padding: 50px;
}

.about-page-image {
  background-image: url("assets/about-portrait.jpg");
  background-position: 38% center;
  background-size: cover;
  border: 10px solid var(--white);
  box-shadow:
    20px 24px 0 rgba(188, 155, 75, .22),
    0 30px 70px rgba(18, 28, 23, .17);
  filter: saturate(.94) contrast(1.03);
  min-height: 650px;
}

.awards-band {
  grid-template-columns: repeat(4, 1fr);
}

.about-video {
  align-items: center;
  grid-template-columns: .6fr 1.4fr;
  margin-bottom: 0;
  padding-bottom: 120px;
  padding-top: 120px;
}

.conference-copy {
  max-width: 900px;
  padding-bottom: 120px;
  padding-top: 120px;
  text-align: center;
}

.conference-copy p {
  font-size: 17px;
  margin: 25px auto 30px;
  max-width: 720px;
}

.quote-wall {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0;
}

.quote-wall figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 350px;
  padding: 42px;
  transition: box-shadow .25s ease, transform .25s ease;
}

.quote-wall figure:hover {
  box-shadow: 0 22px 50px rgba(18, 28, 23, .11);
  transform: translateY(-4px);
}

.quote-wall .quote-accent {
  background: #e5e8df;
  border-top-color: #6f7f58;
}

.quote-wall blockquote {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1.42;
  margin: 38px 0 45px;
}

.quote-wall figcaption {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.quote-wall figcaption strong {
  font-size: 12px;
}

.quote-wall figcaption span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 5px;
}

.quote-theme {
  color: #8a6f2e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.results-proof {
  background: var(--brass);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 6vw;
}

.results-proof div {
  border-left: 1px solid rgba(22,24,22,.2);
  display: flex;
  flex-direction: column;
  min-height: 155px;
  padding: 34px;
}

.results-proof div:last-child {
  border-right: 1px solid rgba(22,24,22,.2);
}

.results-proof strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.results-proof span {
  font-size: 10px;
  letter-spacing: .08em;
  margin-top: 9px;
  text-transform: uppercase;
}

.results-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  padding: 0;
}

.results-feature-image {
  background-image: linear-gradient(90deg, transparent 72%, var(--deep) 100%), url("gallery/15-conference-keynote.jpeg");
  background-position: 74% center;
  background-size: cover;
  min-height: 440px;
}

.results-feature figure {
  background: var(--deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 44px 52px;
}

.results-feature blockquote {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.22;
  margin: 35px 0 42px;
}

.results-feature figcaption {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.results-feature figcaption span {
  color: rgba(255,255,255,.56);
  font-size: 12px;
  margin-top: 7px;
}

.testimonial-group {
  padding-bottom: 110px;
  padding-top: 95px;
}

.testimonial-group-heading {
  align-items: end;
  display: grid;
  gap: 24px 70px;
  grid-template-columns: 1fr .75fr;
  margin-bottom: 50px;
}

.testimonial-group-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.testimonial-group-heading h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(44px, 5.3vw, 72px);
  font-weight: 400;
  line-height: 1.03;
  margin: 0;
}

.testimonial-group-heading h2 em {
  color: #8a6f2e;
  font-weight: 400;
}

.testimonial-group-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 4px;
}

.results-stage {
  background: var(--deep);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  margin: 0;
}

.results-stage-image {
  background-image: linear-gradient(90deg, transparent 72%, var(--deep) 100%), url("gallery/14-steve-simpson-stage.png");
  background-position: center;
  background-size: cover;
  min-height: 620px;
}

.results-stage figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 70px 7vw 70px 60px;
}

.results-stage .quote-theme {
  color: var(--brass);
}

.results-stage blockquote {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.2;
  margin: 38px 0 55px;
}

.results-stage figcaption {
  display: flex;
  flex-direction: column;
}

.results-stage figcaption span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  margin-top: 7px;
}

.testimonial-group-events {
  background: #f2f0ea;
  max-width: none;
  padding-left: max(6vw, calc((100vw - 1320px) / 2));
  padding-right: max(6vw, calc((100vw - 1320px) / 2));
}

.results-close {
  border-top: 1px solid var(--line);
  padding-bottom: 120px;
  padding-top: 100px;
  text-align: center;
}

.results-close h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.04;
  margin: 25px 0;
}

.results-close h2 em {
  color: #8a6f2e;
  font-weight: 400;
}

.results-close > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 auto 35px;
  max-width: 680px;
}

.article-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 120px;
  padding-top: 80px;
}

.article-grid article {
  border: 1px solid var(--line);
  min-height: 390px;
  padding: 42px;
}

.article-grid .featured-article {
  background: var(--brass);
  grid-column: 1 / -1;
  min-height: 430px;
}

.article-meta {
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .12em;
}

.article-grid h2 {
  margin-top: 70px;
  max-width: 720px;
}

.featured-article h2 {
  font-size: clamp(46px, 5.4vw, 75px);
}

.article-grid .text-link {
  margin-top: 28px;
}

.newsletter-strip {
  align-items: center;
  background: var(--forest);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 75px 8vw;
}

.newsletter-strip h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  margin: 0;
}

.newsletter-hero {
  background: var(--deep);
  color: var(--white);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.35fr .65fr;
  padding: 110px 8vw;
}

.newsletter-hero h1 {
  font-size: clamp(57px, 7vw, 100px);
}

.newsletter-hero > div > p:not(.eyebrow) {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  line-height: 1.75;
  max-width: 650px;
}

.preview-form {
  margin-top: 45px;
}

.preview-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.preview-form > div {
  display: flex;
}

.preview-form input {
  background: var(--white);
  border: 0;
  flex: 1;
  font: inherit;
  padding: 18px;
}

.preview-form button,
.contact-form button {
  background: var(--brass);
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 18px 24px;
}

.preview-form small,
.contact-form small {
  color: rgba(255,255,255,.45);
  display: block;
  font-size: 10px;
  margin-top: 12px;
}

.form-confirmation {
  color: var(--brass-light);
  font-size: 12px;
  line-height: 1.55;
  margin: 14px 0 0;
}

.newsletter-hero aside {
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 45px;
}

.newsletter-hero aside > span {
  color: var(--brass-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.newsletter-hero aside ul {
  list-style: none;
  margin: 45px 0 0;
  padding: 0;
}

.newsletter-hero aside li {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 22px 0;
}

.newsletter-hero aside strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.newsletter-hero aside p {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1.6;
}

.newsletter-sample {
  max-width: 900px;
  padding-bottom: 120px;
  padding-top: 120px;
}

.newsletter-sample blockquote {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 65px);
  line-height: 1.12;
  margin: 35px 0;
}

.newsletter-sample > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.book-list {
  padding-bottom: 120px;
  padding-top: 100px;
}

.book-list article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 9vw;
  grid-template-columns: .75fr 1.25fr;
  padding: 70px 0;
}

.book-cover {
  aspect-ratio: .72;
  box-shadow: 0 30px 45px rgba(22,24,22,.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 350px;
  padding: 42px 34px;
  width: 100%;
}

.book-cover span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

.book-cover strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.book-cover small {
  font-size: 9px;
  letter-spacing: .13em;
}

.book-cover-product:has(.book-cover-image) {
  height: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.book-cover-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(21, 26, 25, 0.22));
}

.cover-one {
  background: var(--forest);
  color: var(--brass-light);
}

.cover-two {
  background: var(--brass);
  color: var(--deep);
}

.book-copy .button {
  margin-top: 25px;
}

.contact-page {
  background: var(--deep);
  color: var(--white);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 88px);
  padding: 100px 8vw;
}

.contact-page h1 {
  font-size: clamp(60px, 7vw, 95px);
}

.contact-page > div > p:not(.eyebrow) {
  color: rgba(255,255,255,.62);
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
}

.direct-details {
  margin-top: 55px;
}

.direct-details a,
.direct-details div {
  border-top: 1px solid rgba(255,255,255,.17);
  display: flex;
  flex-direction: column;
  padding: 18px 0;
}

.direct-details span {
  color: var(--brass-light);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.direct-details strong {
  font-size: 14px;
  margin-top: 6px;
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  padding: 45px;
}

.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  display: block;
  font: inherit;
  margin-top: 8px;
  outline: none;
  padding: 11px 0;
  resize: vertical;
  width: 100%;
}

.contact-form small {
  color: var(--muted);
}

.article-page > header {
  background: var(--brass);
  padding: 100px max(6vw, calc((100vw - 1100px) / 2));
}

.article-page > header h1 {
  color: var(--deep);
  font-size: clamp(58px, 7vw, 102px);
  max-width: 1080px;
}

.article-page > header > p:last-child {
  color: rgba(22,24,22,.7);
  font-size: 18px;
  line-height: 1.7;
  margin: 30px 0 0;
  max-width: 720px;
}

.article-body {
  margin: 0 auto;
  max-width: 800px;
  padding: 95px 22px 120px;
}

.article-body p,
.article-body li {
  color: #4e524c;
  font-size: 17px;
  line-height: 1.9;
}

.article-body .article-lede {
  color: var(--ink);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.42;
}

.article-body h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 43px;
  font-weight: 400;
  line-height: 1.08;
  margin: 65px 0 20px;
}

.article-body blockquote {
  border-left: 2px solid var(--brass);
  color: var(--ink);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 31px;
  line-height: 1.4;
  margin: 55px 0;
  padding: 8px 0 8px 32px;
}

.article-body .text-link {
  margin-top: 45px;
}

/* Readability pass: retain hierarchy while bringing supporting copy to a comfortable size. */
.wordmark small {
  font-size: 11px;
}

nav a,
.button,
.text-link {
  font-size: 14px;
}

.eyebrow {
  font-size: 12px;
}

.hero-proof span,
.section-kicker,
.case-copy dt,
.results-label,
.shift-line small,
.quote-theme,
.article-meta,
.resource-topic-grid span,
.newsletter-hero aside > span {
  font-size: 11.5px;
}

.client-proof-heading span,
.statement cite,
.format-band span,
.awards-band span,
.results-proof span,
.preview-form label,
.contact-form label {
  font-size: 12px;
}

.client-proof-heading p,
.gallery-lightbox figcaption,
.card-link,
.testimonial-grid figcaption strong,
.resource-photo-grid figcaption a,
.results-feature figcaption span,
.form-confirmation {
  font-size: 13px;
}

.client-track strong,
.case-copy dd,
.resource-photo-grid figcaption strong,
.pathway-grid p {
  font-size: 15px;
}

.showreel-heading > p,
.about-video > div > p:not(.eyebrow),
.section-heading p:last-child,
.programme-card p,
.results li,
.presentation-card p,
.service-cards p,
.book-copy p,
.article-grid p,
.conference-copy p,
.resource-topic-grid p {
  font-size: 16px;
}

.conference-gallery figcaption,
.testimonial-grid figcaption span,
.organiser-facts span,
.presentation-card li,
.book-copy li,
.resource-photo-grid figcaption a,
.preview-form button,
.contact-form button,
.newsletter-hero aside p {
  font-size: 13px;
}

.testimonial-grid figcaption strong,
.quote-wall figcaption strong {
  font-size: 14px;
}

.quote-wall figcaption span {
  font-size: 13px;
}

.about-portrait span,
.preview-form small,
.contact-form small,
.direct-details span {
  font-size: 11px;
}

.direct-details strong {
  font-size: 16px;
}

footer {
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    left: 6vw;
    max-width: 80%;
    top: 43%;
  }

  .hero-proof {
    width: 100%;
  }

  .intro-grid,
  .results,
  .about {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .statement {
    margin-left: 8%;
  }

  .section-heading {
    align-items: start;
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .programme-card {
    padding: 28px;
  }

  .testimonial-grid blockquote {
    font-size: 20px;
  }

  .site-header nav {
    display: none;
  }

  .presentation-list {
    grid-template-columns: 1fr;
  }

  .presentation-positioning {
    grid-template-columns: 1fr;
  }

  .presentation-card {
    grid-template-columns: 48px 1fr;
  }

  .presentation-card ul {
    grid-column: 2;
    margin-top: 30px;
  }

  .presentation-card-link {
    grid-column: 2;
  }

  .presentation-safety {
    grid-template-columns: 48px 1fr;
  }

  .presentation-safety ul {
    grid-column: 2;
    margin: 30px 0 0;
  }

  .presentation-featured {
    grid-template-columns: 40% 45px 1fr;
  }

  .presentation-featured ul,
  .presentation-featured .text-link {
    grid-column: 3;
  }

  .organiser-intro,
  .resource-av {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .organiser-decision {
    grid-template-columns: 1fr;
  }

  .gallery-intro {
    grid-template-columns: 1fr 1.4fr;
  }

  .gallery-intro > p:last-child {
    grid-column: 2;
  }

  .conference-gallery {
    grid-auto-rows: 260px;
    grid-template-columns: 1fr 1fr;
  }

  .resource-topic-grid,
  .resource-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-wall {
    grid-template-columns: 1fr;
  }

  .results-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-feature {
    grid-template-columns: 1fr;
  }

  .results-feature-image {
    background-image: linear-gradient(0deg, var(--deep) 0, transparent 24%), url("gallery/15-conference-keynote.jpeg");
  }

  .testimonial-group-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .testimonial-group-heading .eyebrow {
    grid-column: auto;
  }

  .results-stage {
    grid-template-columns: 1fr;
  }

  .results-stage-image {
    background-image: linear-gradient(0deg, var(--deep) 0, transparent 22%), url("gallery/14-steve-simpson-stage.png");
    min-height: 520px;
  }

  .results-stage figure {
    padding: 30px 8vw 80px;
  }

  .newsletter-hero,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .showreel-heading,
  .about-video {
    align-items: start;
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .audience-paths,
  .case-intro,
  .case-study {
    grid-template-columns: 1fr;
  }

  .case-study:nth-child(even) .case-video {
    order: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .wordmark span {
    font-size: 22px;
  }

  .site-header .button {
    font-size: 0;
    gap: 0;
    padding: 13px;
  }

  .site-header .button span {
    font-size: 17px;
  }

  .hero {
    height: 760px;
    min-height: 760px;
  }

  .hero-image {
    background-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9,15,12,.84) 0%, rgba(9,15,12,.54) 55%, rgba(9,15,12,.08) 100%);
  }

  .hero-copy {
    left: 22px;
    max-width: calc(100% - 44px);
    right: 22px;
    top: 43%;
  }

  h1 {
    font-size: 50px;
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.55;
    margin: 24px 0 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof div {
    min-height: 74px;
    padding: 13px 18px;
  }

  .hero-proof strong {
    font-size: 22px;
  }

  .client-proof-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .audience-paths,
  .case-pathways {
    grid-template-columns: 1fr;
  }

  .audience-path {
    min-height: 420px;
    padding: 60px 22px;
  }

  .case-intro {
    gap: 25px;
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .case-study {
    gap: 35px;
    padding: 60px 0;
  }

  .case-copy dl > div {
    grid-template-columns: 1fr;
  }

  .case-pathways > div {
    min-height: 300px;
    padding: 60px 22px;
  }

  .client-track {
    gap: 22px;
  }

  .speaker-gallery {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 80px;
  }

  .speaker-photo {
    border-width: 5px;
    min-height: 260px;
  }

  .speaker-photo-two {
    min-height: 320px;
    transform: translateY(-10px);
  }

  .speaker-photo-three {
    grid-column: 1 / -1;
    min-height: 280px;
    transform: none;
  }

  .speaker-photo-one {
    transform: none;
  }

  .presentation-list {
    gap: 16px;
  }

  .presentation-card {
    grid-template-columns: 38px 1fr;
    padding: 28px 22px;
  }

  .presentation-featured {
    display: grid;
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 0 22px 30px;
  }

  .presentation-featured-image {
    grid-column: 1 / -1;
    grid-row: auto;
    margin: 0 -22px 28px;
    min-height: 330px;
  }

  .presentation-featured .presentation-number {
    padding-top: 0;
  }

  .presentation-featured .presentation-card-copy {
    padding: 0;
  }

  .presentation-featured ul,
  .presentation-featured .text-link {
    grid-column: 2;
    margin-right: 0;
  }

  .organiser-intro {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .organiser-decision {
    padding-bottom: 70px;
    padding-top: 60px;
  }

  .organiser-booking-copy {
    padding: 38px 26px;
  }

  .organiser-booking-copy li {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .organiser-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .organiser-verdict {
    padding: 70px 0;
  }

  .resource-copy,
  .resource-topic-grid,
  .resource-photo-grid,
  .resource-section-heading {
    grid-template-columns: 1fr;
  }

  .resource-copy article {
    padding: 32px 24px;
  }

  .resource-topic-grid article {
    min-height: 0;
  }

  .resource-topic-grid h3 {
    margin-top: 30px;
  }

  .gallery-intro,
  .conference-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-intro > p:last-child {
    grid-column: auto;
  }

  .conference-gallery {
    grid-auto-rows: auto;
  }

  .conference-gallery figure,
  .conference-gallery figure.gallery-featured,
  .conference-gallery figure.gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .conference-gallery img {
    aspect-ratio: 4 / 3;
  }

  .gallery-organiser-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
    padding: 65px 22px;
  }

  .gallery-lightbox {
    padding: 70px 14px 24px;
  }

  .gallery-lightbox-nav {
    bottom: 20px;
    top: auto;
  }

  .gallery-lightbox-prev {
    left: 22px;
  }

  .gallery-lightbox-next {
    right: 22px;
  }

  .gallery-lightbox img {
    height: calc(100% - 82px);
  }

  .section-shell {
    padding-left: 22px;
    padding-right: 22px;
  }

  .intro,
  .results,
  .about {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .intro-grid h2,
  .section-heading h2,
  .results h2,
  .about h2,
  .contact h2 {
    font-size: 45px;
  }

  .statement {
    font-size: 25px;
    margin: 65px 0 0;
    padding-left: 24px;
  }

  .programmes,
  .testimonial-section {
    padding: 80px 0;
  }

  .programme-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .programme-card {
    border-bottom: 1px solid rgba(255,255,255,.18);
    border-right: 1px solid rgba(255,255,255,.18);
    min-height: 330px;
  }

  .programme-card h3 {
    margin-top: 45px;
    min-height: 0;
  }

  .results-panel {
    min-height: 410px;
    padding: 32px;
  }

  .testimonial-grid figure {
    border-bottom: 1px solid rgba(255,255,255,.16);
    border-right: 1px solid rgba(255,255,255,.16);
    min-height: 290px;
    padding: 28px;
  }

  .about-portrait {
    min-height: 470px;
  }

  .contact {
    padding: 85px 22px;
  }

  .contact-actions {
    flex-direction: column;
  }

  footer {
    gap: 26px;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 40px 22px;
  }

  footer > div {
    justify-self: start;
  }

  .page-hero {
    padding: 80px 22px 70px;
  }

  .page-hero h1 {
    font-size: 50px;
  }

  .page-hero > p:last-child {
    font-size: 15px;
    margin-left: 0;
  }

  .content-shell {
    padding-left: 22px;
    padding-right: 22px;
  }

  .presentation-row {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .presentation-row ul {
    grid-column: auto;
  }

  .format-band,
  .awards-band {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .split-story,
  .service-cards,
  .book-list article {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .split-story {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .pathway-grid article {
    border-bottom: 1px solid rgba(255,255,255,.17);
    border-right: 1px solid rgba(255,255,255,.17);
    min-height: 230px;
  }

  .quote-wall {
    grid-template-columns: 1fr;
  }

  .results-proof {
    grid-template-columns: 1fr 1fr;
    padding: 0 22px;
  }

  .results-proof div {
    min-height: 130px;
    padding: 24px 16px;
  }

  .results-feature {
    padding-top: 0;
  }

  .results-feature-image {
    min-height: 360px;
  }

  .results-feature figure {
    padding: 38px 26px;
  }

  .quote-wall figure {
    min-height: 300px;
    padding: 32px 26px;
  }

  .testimonial-group {
    padding-bottom: 75px;
    padding-top: 70px;
  }

  .testimonial-group-heading {
    gap: 18px;
    margin-bottom: 35px;
  }

  .results-stage-image {
    min-height: 390px;
  }

  .results-stage figure {
    padding: 20px 26px 65px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-grid .featured-article {
    grid-column: auto;
  }

  .newsletter-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
    padding: 60px 22px;
  }

  .newsletter-hero,
  .contact-page {
    padding: 75px 22px;
  }

  .newsletter-hero h1,
  .contact-page h1 {
    font-size: 50px;
  }

  .preview-form > div {
    flex-direction: column;
  }

  .newsletter-hero aside {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
    padding-left: 0;
    padding-top: 40px;
  }

  .contact-form {
    padding: 28px;
  }

  .showreel {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .showreel-heading h2,
  .about-video h2 {
    font-size: 44px;
  }

  .about-video {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .article-page > header {
    padding: 75px 22px;
  }

  .article-page > header h1 {
    font-size: 50px;
  }

  .article-body {
    padding-bottom: 85px;
    padding-top: 75px;
  }

  .article-body .article-lede {
    font-size: 25px;
  }

  .article-body h2 {
    font-size: 36px;
  }

  .article-body blockquote {
    font-size: 25px;
  }
}

/* Homepage split hero: readable editorial panel plus an undarkened stage image. */
@media (min-width: 701px) {
  .hero {
    background: var(--deep);
  }

  .hero-image {
    background-position: 48% center;
    filter: none;
    inset: 0 0 0 47%;
    transform: none;
  }

  .hero-shade {
    background: linear-gradient(90deg, var(--deep) 0%, rgba(17, 24, 21, .72) 6%, transparent 18%);
    inset: 0 0 0 44%;
  }

  .hero-copy {
    left: 5.5vw;
    max-width: 39%;
    top: 45%;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 4.8vw, 78px);
  }

  .hero-copy .hero-lede {
    max-width: 570px;
  }

  .hero-proof {
    width: 53%;
  }
}

@media (min-width: 981px) {
  .about {
    gap: 6vw;
    grid-template-columns: 1.25fr .75fr;
  }

  .about-portrait {
    aspect-ratio: 1.25;
    background-position: center center;
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .hero {
    background: var(--deep);
    height: 980px;
    min-height: 980px;
  }

  .hero-image {
    background-position: 45% 24%;
    bottom: auto;
    filter: none;
    height: 40%;
    transform: none;
  }

  .hero-shade {
    display: none;
  }

  .hero-copy {
    left: 22px;
    max-width: calc(100% - 44px);
    right: 22px;
    top: 44%;
    transform: none;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .about-portrait {
    aspect-ratio: 1.18;
    background-position: center center;
    min-height: 360px;
  }
}

/* Direct Acumbamail newsletter signup. */
.acumbamail-form .newsletter-fields {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) auto;
}

.acumbamail-form .newsletter-fields input,
.acumbamail-form .newsletter-fields button {
  box-sizing: border-box;
  min-height: 52px;
}

.newsletter-honeypot {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.newsletter-success {
  background: rgba(255, 255, 255, .12);
  border-left: 4px solid var(--gold);
  font-size: 18px;
  line-height: 1.55;
  margin-top: 28px;
  max-width: 680px;
  padding: 20px 22px;
}

@media (max-width: 850px) {
  .acumbamail-form .newsletter-fields {
    grid-template-columns: 1fr;
  }
}
