:root {
  --coral: rgb(240, 84, 57);
  --ink: rgb(28, 28, 28);
  --petrol: rgb(0, 53, 63);
  --teal-dark: rgb(18, 96, 113);
  --teal: rgb(69, 185, 192);
  --paper: rgb(235, 235, 235);
  --muted: rgb(102, 102, 102);
  --white: rgb(255, 255, 255);
  --green: rgb(202, 248, 128);
  --line: rgba(220, 222, 225, 1);
  --shadow: 0 16px 36px rgba(20, 38, 40, 0.13);
  --font-heading: "Overpass", "Maven Pro", sans-serif;
  --font-body: "Overpass", "Maven Pro", sans-serif;
  --font-ui: "Maven Pro", "Segoe UI", Arial, sans-serif;
  --fs-h2: clamp(31px, 3.2vw, 48px);
  --fs-h2-compact: clamp(31px, 2.35vw, 42px);
  --fs-h3: clamp(24px, 2vw, 32px);
  --fs-body-lg: clamp(17px, 1.32vw, 23px);
  --fs-body: clamp(16px, 1.12vw, 20px);
  --fs-small: clamp(13px, 0.82vw, 16px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-ui);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 120px;
  padding: 20px clamp(18px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.logo-link img {
  width: clamp(182px, 23vw, 245px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  color: #273d40;
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--teal);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.language-switch a {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  color: var(--ink);
}

.language-switch a.is-active {
  color: var(--white);
  background: var(--teal-dark);
}

.language-switch a:not(.is-active):hover {
  color: var(--teal-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--teal-dark);
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(12, 24, 30, 0.26), rgba(12, 24, 30, 0.18)),
    linear-gradient(180deg, rgba(12, 24, 30, 0.1), rgba(12, 24, 30, 0.42)),
    url("assets/original/hero-top.jpg") center center / cover;
}

.hero-inner {
  width: min(910px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 120px;
  text-align: left;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(56px, 6vw, 78px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  margin: 16px 0 0 18%;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.1;
}

.brand-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 84px;
  position: relative;
  z-index: 2;
}

.intro-line {
  width: min(1900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 126px) 0 clamp(34px, 4vw, 58px);
  text-align: center;
}

.intro-line p {
  margin: 0 auto;
  max-width: 1840px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(30px, 2.8vw, 58px);
  font-weight: 800;
  line-height: 1.2;
}

.intro-line span {
  display: block;
}

@media (min-width: 1100px) {
  .intro-line span:first-child {
    white-space: nowrap;
  }
}

.brand-links a {
  min-height: clamp(126px, 11vw, 190px);
  display: grid;
  grid-template-columns: clamp(86px, 7.7vw, 140px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  padding: clamp(18px, 2vw, 28px);
  color: var(--white);
  background: var(--petrol);
  border-radius: 32px;
  box-shadow: none;
}

.service-symbol {
  display: grid;
  place-items: center;
  width: clamp(86px, 7.7vw, 140px);
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--paper);
}

.service-symbol img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.brand-links a > span:last-child {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0;
  border-bottom: 1px solid var(--line);
}

.consulting-section {
  width: min(1840px, calc(100% - 40px));
  grid-template-columns: minmax(560px, 0.98fr) minmax(520px, 0.82fr);
  gap: clamp(74px, 5.8vw, 118px);
  align-items: stretch;
  padding-top: clamp(58px, 6vw, 96px);
  padding-bottom: clamp(48px, 5vw, 82px);
  overflow: hidden;
  border-bottom: 0;
  z-index: 0;
}

.consulting-section::before,
.consulting-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(48px, 4.4vw, 78px);
  border-radius: 999px;
  background: rgba(0, 53, 63, 0.14);
}

.consulting-section::before {
  top: -86px;
  right: 26%;
  height: 360px;
}

.consulting-section::after {
  right: 22%;
  bottom: -62px;
  height: 260px;
  background: rgba(0, 53, 63, 0.16);
}

.consulting-section > * {
  position: relative;
  z-index: 1;
}

.consulting-section .split-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
  padding-top: clamp(10px, 2vw, 34px);
}

.consulting-section .split-copy h2 {
  max-width: 100%;
  color: var(--ink);
  margin-bottom: clamp(28px, 2.6vw, 42px);
  font-size: var(--fs-h2-compact);
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.consulting-section .split-copy p {
  max-width: 760px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  text-align: right;
}

.consulting-section .ci-statements {
  max-width: 820px;
  margin: clamp(30px, 2.8vw, 48px) 0 clamp(22px, 2vw, 34px);
}

.consulting-section .ci-statements li {
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.85;
  padding-left: 0;
  text-align: right;
}

.consulting-section .ci-statements li::before {
  display: none;
}

.consulting-section .typical-topics {
  color: var(--ink);
  max-width: 760px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  line-height: 1.65;
  text-align: right;
}

.consulting-section .typical-topics strong {
  color: var(--ink);
}

.consulting-photo {
  position: relative;
  order: 2;
  display: grid;
  align-items: stretch;
  min-height: 760px;
}

.consulting-photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 34%;
  left: -58px;
  width: 30px;
  height: 280px;
  border-radius: 999px;
  background: rgba(0, 53, 63, 0.22);
}

.consulting-section .consulting-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 18px;
}

.training-section {
  width: min(1840px, calc(100% - 40px));
  grid-template-columns: minmax(520px, 0.88fr) minmax(520px, 0.9fr);
  gap: clamp(66px, 5.4vw, 110px);
  align-items: start;
  padding-top: clamp(82px, 7vw, 126px);
  padding-bottom: clamp(72px, 6vw, 112px);
  border-bottom: 0;
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
  overflow: hidden;
}

.training-section::before,
.training-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(46px, 4vw, 74px);
  border-radius: 999px;
  background: rgba(0, 53, 63, 0.12);
}

.training-section::before {
  top: -64px;
  bottom: clamp(104px, 8vw, 154px);
  left: 19.5%;
}

.training-section::after {
  top: -42px;
  bottom: clamp(132px, 10vw, 194px);
  left: 40.5%;
  opacity: 0.38;
}

.training-section > * {
  position: relative;
  z-index: 1;
}

.training-photo {
  position: relative;
  display: grid;
  align-items: start;
}

.training-photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 32%;
  left: -58px;
  width: 30px;
  height: 300px;
  border-radius: 999px;
  background: rgba(0, 53, 63, 0.2);
}

.training-section .training-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: none;
  aspect-ratio: 499 / 764;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.training-section .split-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(4px, 1vw, 18px);
  text-align: left;
}

.training-section .section-logo {
  width: clamp(168px, 13vw, 230px);
  margin: 0 0 clamp(34px, 3vw, 52px) clamp(70px, 7vw, 142px);
}

.training-section .split-copy h2 {
  color: var(--ink);
  margin-bottom: clamp(28px, 2.6vw, 42px);
  font-size: var(--fs-h2-compact);
  line-height: 1.12;
  white-space: nowrap;
}

.training-section .split-copy p {
  max-width: 760px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: 1.9;
  text-align: left;
}

.training-section .ci-statements {
  max-width: 820px;
  margin: clamp(30px, 2.8vw, 48px) 0 clamp(22px, 2vw, 34px);
}

.training-section .ci-statements li {
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.85;
  padding-left: 0;
  text-align: left;
}

.training-section .ci-statements li::before {
  display: none;
}

.training-section .typical-topics {
  max-width: 760px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  line-height: 1.65;
  text-align: justify;
}

.training-section .typical-topics strong {
  color: var(--ink);
}

.coach-section {
  width: min(1840px, calc(100% - 40px));
  grid-template-columns: minmax(560px, 0.92fr) minmax(480px, 0.78fr);
  gap: clamp(92px, 7vw, 148px);
  align-items: stretch;
  padding-top: clamp(80px, 7vw, 124px);
  padding-bottom: clamp(78px, 7vw, 126px);
  border-bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.coach-section::before,
.coach-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(46px, 4vw, 74px);
  border-radius: 999px;
  background: rgba(0, 53, 63, 0.12);
}

.coach-section::before {
  display: none;
}

.coach-section::after {
  top: 24%;
  right: calc(42% + clamp(22px, 2vw, 42px));
  width: 30px;
  height: 300px;
  background: rgba(0, 53, 63, 0.2);
}

.coach-section > * {
  position: relative;
  z-index: 1;
}

.coach-section .split-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: clamp(4px, 1vw, 18px);
  text-align: right;
}

.coach-section .section-logo {
  width: clamp(168px, 13vw, 230px);
  margin: 0 0 clamp(34px, 3vw, 52px);
}

.coach-section .split-copy h2 {
  max-width: 780px;
  color: var(--ink);
  margin-bottom: clamp(28px, 2.6vw, 42px);
  font-size: var(--fs-h2-compact);
  line-height: 1.12;
  text-align: right;
}

.coach-section .split-copy p {
  max-width: 760px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: 1.9;
  text-align: right;
}

.coach-section .ci-statements {
  max-width: 820px;
  margin: clamp(30px, 2.8vw, 48px) 0 clamp(22px, 2vw, 34px);
}

.coach-section .ci-statements li {
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.85;
  padding-left: 0;
  text-align: right;
}

.coach-section .ci-statements li::before {
  display: none;
}

.coach-section .typical-topics {
  max-width: 760px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  line-height: 1.65;
  text-align: right;
}

.coach-section .typical-topics strong {
  color: var(--ink);
}

.coach-photo {
  position: relative;
  display: grid;
  align-items: start;
  padding: 5px 30px 5px 5px;
  min-height: 100%;
}

.coach-photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -96px 0 0 0;
  background: url("assets/original/vertical-stripes.png") 0% 49% / cover no-repeat;
  filter: grayscale(1);
  opacity: 0.24;
}

.coach-photo::after {
  display: none;
}

.coach-section .coach-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: none;
  aspect-ratio: 1040 / 1386;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

.split-reverse .split-media {
  order: 2;
}

.split-media img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  border-radius: 2px;
}

.photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.photo-pair img {
  height: 560px;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

.portrait-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: center;
}

.portrait-strip img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.section-logo {
  width: 185px;
  margin-bottom: 22px;
}

h2 {
  margin: 0 0 24px;
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  line-height: 1.15;
}

p {
  margin: 0 0 18px;
}

.split-copy p,
.team-intro p,
.contact-details p {
  color: var(--muted);
  font-size: 17px;
}

.split-copy ul,
.team-grid ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.split-copy li,
.team-grid li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  color: #425357;
}

.split-copy li::before,
.team-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.references {
  padding: clamp(86px, 8vw, 130px) clamp(20px, 5vw, 76px);
  background: var(--paper);
}

.reference-carousel {
  position: relative;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 0 clamp(44px, 5vw, 70px) 44px;
}

.reference-viewport {
  overflow: hidden;
}

.reference-track {
  display: flex;
  transition: transform 360ms ease;
  will-change: transform;
}

.reference-slide {
  flex: 0 0 calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  padding: 0 clamp(18px, 2.5vw, 34px);
  text-align: center;
}

.reference-slide img {
  width: min(100%, 260px);
  height: 104px;
  margin: 0 auto clamp(30px, 3vw, 44px);
  object-fit: contain;
}

.reference-slide p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.9;
}

.reference-slide strong {
  display: block;
  margin-top: 12px;
  color: var(--petrol);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 700;
  line-height: 1.6;
}

.reference-arrow {
  position: absolute;
  top: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 44px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.reference-arrow-prev {
  left: 0;
}

.reference-arrow-next {
  right: 0;
}

.reference-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.reference-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.reference-dots button.is-active {
  background: var(--ink);
}

.team-section {
  background: var(--white);
}

.team-intro {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 8.4vw, 124px) 0 clamp(48px, 5vw, 72px);
  text-align: center;
}

.team-intro h2 {
  color: var(--ink);
  margin-bottom: clamp(28px, 3.2vw, 46px);
  font-size: var(--fs-h2);
  line-height: 1.08;
}

.team-intro p {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: 1.78;
}

.team-intro p + p {
  margin-top: clamp(18px, 2vw, 30px);
}

.team-intro strong {
  color: var(--ink);
  font-weight: 800;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 44px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: clamp(78px, 9vw, 130px);
}

.team-grid article {
  background: transparent;
  box-shadow: none;
}

.team-grid img {
  width: 100%;
  aspect-ratio: 860 / 496;
  object-fit: cover;
  object-position: center;
}

.team-grid article:nth-child(1) img,
.team-grid article:nth-child(2) img {
  aspect-ratio: 860 / 496;
}

.team-grid div {
  margin-top: 26px;
  padding: 0;
}

.team-grid div::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 20px;
  background: var(--teal-dark);
}

.team-grid p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.team-grid h3 {
  color: var(--ink);
  font-size: var(--fs-h3);
  text-align: left;
}

.team-grid ul {
  margin: 22px 0 0;
  text-align: left;
}

.team-grid li {
  margin-bottom: 16px;
  padding-left: 22px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.58;
}

.team-grid li::before {
  display: block;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--teal-dark);
}

.contact {
  padding: 75px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: var(--petrol);
}

.contact h2 {
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 86px);
  width: min(1170px, 100%);
  margin: 0 auto 34px;
}

.contact-info p {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  width: min(1170px, 100%);
  margin: 0 auto;
}

.contact-map {
  min-height: 468px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 468px;
  border: 0;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 0 -7.5px -15px;
}

.contact-form label {
  display: block;
  width: 100%;
  padding: 0 7.5px 15px;
}

.contact-form span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
}

.contact-form textarea {
  min-height: 174px;
  resize: vertical;
}

.contact-form button {
  margin: 0 7.5px 15px auto;
  border: 2px solid var(--teal);
  border-radius: 0;
  padding: 14px 42px;
  color: var(--white);
  background: var(--teal);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(320px, 460px);
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(78px, 8vw, 118px) clamp(24px, 6vw, 90px);
  background: rgba(235, 235, 235, 0.48);
  border-top: 1px solid rgba(69, 185, 192, 0.28);
  border-bottom: 1px solid rgba(69, 185, 192, 0.28);
  scroll-margin-top: 130px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.booking-copy h2 {
  color: var(--ink);
}

.booking-copy p:not(.eyebrow),
.booking-panel p {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.85;
}

.booking-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.25vw, 18px);
  font-weight: 700;
}

.booking-panel {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.booking-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
}

.booking-panel p {
  margin-bottom: 0;
}

.booking-kicker {
  color: var(--teal-dark) !important;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1.5 !important;
  text-transform: uppercase;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 24px;
  border: 2px solid var(--teal);
  border-radius: 3px;
  color: #08363a;
  background: var(--teal);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.booking-note {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 15px !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 58px);
  padding: 42px clamp(20px, 5vw, 76px);
  background: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 290px;
}

.footer-brand img {
  width: 122px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 122px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-social a:hover {
  color: var(--teal-dark);
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
}

.consulting-section .split-copy .typical-topics,
.training-section .split-copy .typical-topics,
.coach-section .split-copy .typical-topics {
  font-size: var(--fs-small);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .brand-links,
  .team-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reference-slide {
    flex-basis: 50%;
  }

  .reference-carousel {
    padding-inline: 0;
  }

  .reference-arrow {
    display: none;
  }

  .split-section,
  .split-reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-media {
    order: 0;
  }

  .consulting-section {
    width: min(1180px, calc(100% - 40px));
    gap: 36px;
  }

  .training-section {
    width: min(1180px, calc(100% - 40px));
    gap: 36px;
  }

  .coach-section {
    width: min(1180px, calc(100% - 40px));
    gap: 36px;
  }

  .coach-photo::before {
    display: block;
    inset: -70px 0 0 0;
    width: auto;
    height: auto;
  }

  .coach-photo::after {
    display: none;
  }

  .training-section::before {
    top: -38px;
    bottom: 42%;
    left: 22%;
  }

  .training-section::after {
    top: -24px;
    bottom: 48%;
    left: 54%;
  }

  .consulting-section .split-copy h2 {
    white-space: normal;
  }

  .training-section .split-copy h2 {
    white-space: normal;
  }

  .coach-section .split-copy {
    align-items: flex-start;
    text-align: left;
  }

  .coach-section .split-copy h2,
  .coach-section .split-copy p,
  .coach-section .ci-statements li,
  .coach-section .typical-topics {
    text-align: left;
  }

  .consulting-photo {
    order: 0;
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
  }

  .logo-link {
    order: 1;
  }

  .language-switch {
    order: 2;
    margin-left: auto;
  }

  .menu-button {
    display: block;
    order: 3;
  }

  .main-nav {
    order: 4;
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(12, 24, 30, 0.06), rgba(12, 24, 30, 0.3)),
      url("assets/original/hero-top.jpg") center / cover;
  }

  .hero-inner {
    text-align: center;
  }

  .brand-links {
    margin-top: -36px;
  }

  .split-section {
    padding: 62px 0;
  }

  .consulting-section .split-copy {
    align-items: flex-start;
    text-align: left;
  }

  .consulting-section .split-copy p,
  .consulting-section .ci-statements li,
  .consulting-section .typical-topics {
    text-align: left;
  }

  .coach-photo::before,
  .coach-photo::after {
    display: none;
  }

  .training-section .section-logo {
    margin-left: 0;
  }

  .training-section .typical-topics {
    text-align: left;
  }

  .consulting-photo {
    min-height: 420px;
  }

  .reference-slide {
    flex-basis: 100%;
  }

  .team-intro {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    min-width: 0;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
    min-width: 0;
  }
}
