:root {
  --esds-green: #2f8b3d;
  --esds-green-bright: #56ad3c;
  --esds-green-dark: #0f4737;
  --esds-green-deep: #082f28;
  --esds-blue: #138bc2;
  --esds-blue-dark: #056796;
  --esds-red: #d9272e;
  --esds-ink: #14221f;
  --esds-muted: #60706b;
  --esds-soft: #f2f7f4;
  --esds-border: #dbe6e0;
  --esds-white: #ffffff;
  --esds-shadow: 0 22px 54px rgba(8, 47, 40, .12);
  --esds-radius: 24px;
  --esds-container: min(1180px, calc(100% - 40px));
  --esds-font: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body.esds-site,
body.esds-component-only,
body.esds-error-page,
body.esds-offline-page {
  margin: 0;
  color: var(--esds-ink);
  background: var(--esds-white);
  font-family: var(--esds-font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.esds-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

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

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

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.6rem);
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--esds-white);
  font-weight: 850;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 760;
}

.esds-container {
  width: var(--esds-container);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.esds-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--esds-white);
  background: var(--esds-green-dark);
}

.esds-skip-link:focus {
  transform: translateY(0);
}

.esds-topbar {
  color: var(--esds-white);
  background: linear-gradient(90deg, var(--esds-green-dark), var(--esds-blue-dark));
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .015em;
}

.esds-topbar__inner {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.esds-topbar a {
  color: var(--esds-white);
}

.esds-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(15, 71, 55, .08);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.esds-header.is-scrolled {
  box-shadow: 0 9px 30px rgba(8, 47, 40, .1);
}

.esds-header__inner {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 26px;
}

.esds-brand {
  flex: 0 0 230px;
  text-decoration: none;
}

.esds-brand__image {
  display: block;
  width: 230px;
  height: 78px;
  background-color: var(--esds-white);
  background-image: var(--esds-logo-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.esds-brand__fallback {
  display: flex;
  width: 230px;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  color: var(--esds-green-dark);
  text-decoration: none;
}

.esds-brand__fallback strong {
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -.06em;
}

.esds-brand__fallback small {
  max-width: 105px;
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.15;
}

.esds-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.esds-nav ul,
.esds-nav .mod-menu {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 30px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.esds-nav li {
  margin: 0;
}

.esds-nav a {
  position: relative;
  display: inline-block;
  color: #111816;
  font-size: .89rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.esds-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--esds-green), var(--esds-blue));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.esds-nav a:hover::after,
.esds-nav .current > a::after,
.esds-nav .active > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.esds-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  color: var(--esds-white);
  background: var(--esds-green-dark);
  cursor: pointer;
}

.esds-menu-toggle > span:not(.visually-hidden) {
  width: 23px;
  height: 2px;
  background: currentColor;
}

.esds-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 27px;
  border: 2px solid transparent;
  border-radius: 14px;
  color: var(--esds-white);
  background: linear-gradient(135deg, var(--esds-green-bright), var(--esds-green));
  box-shadow: 0 13px 25px rgba(47, 139, 61, .22);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.esds-button:hover,
.esds-button:focus-visible {
  color: var(--esds-white);
  background: linear-gradient(135deg, var(--esds-blue), var(--esds-blue-dark));
  box-shadow: 0 16px 30px rgba(5, 103, 150, .25);
  transform: translateY(-2px);
}

.esds-button--small {
  min-height: 46px;
  padding: 11px 20px;
  white-space: nowrap;
}

.esds-button--light {
  color: var(--esds-green-dark);
  background: var(--esds-white);
  box-shadow: none;
}

.esds-button--outline {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  box-shadow: none;
}

.esds-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--esds-white);
  font-weight: 800;
  text-decoration: none;
}

.esds-text-link span {
  font-size: 1.35em;
  transition: transform .2s ease;
}

.esds-text-link:hover span {
  transform: translateX(5px);
}

.esds-text-link--dark {
  color: var(--esds-green-dark);
}

.esds-messages:empty {
  display: none;
}

.esds-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 143px));
  align-items: end;
  overflow: hidden;
  color: var(--esds-white);
  background: var(--esds-green-deep);
}

.esds-hero__image,
.esds-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.esds-hero__image {
  animation: esdsHeroReveal 1s ease both;
}

.esds-hero__photo {
  background-color: var(--esds-green-deep);
  background-image:
    var(--esds-hero-image),
    radial-gradient(circle at 72% 45%, rgba(83, 173, 60, .45), transparent 18%),
    linear-gradient(145deg, transparent 52%, rgba(19, 139, 194, .34) 52% 58%, transparent 58%),
    linear-gradient(135deg, #0f4737, #0a6b6f 58%, #138bc2);
  background-position: center 51%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: normal;
}

.esds-hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 29, 25, .88) 0%, rgba(4, 29, 25, .66) 47%, rgba(4, 29, 25, .18) 78%),
    linear-gradient(0deg, rgba(4, 29, 25, .7) 0%, transparent 48%);
}

.esds-hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(90px, 11vw, 150px);
}

.esds-hero__content > p:not(.esds-kicker) {
  max-width: 680px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.esds-kicker,
.esds-eyebrow {
  margin-bottom: 17px;
  color: var(--esds-green-bright);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.esds-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--esds-white);
  letter-spacing: .08em;
}

.esds-l-plate {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 7px;
  color: var(--esds-red);
  background: var(--esds-white);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.esds-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
}

.esds-feature-strip {
  position: relative;
  z-index: 4;
  margin-top: -36px;
}

.esds-feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(15, 71, 55, .08);
  border-radius: 22px;
  background: var(--esds-white);
  box-shadow: var(--esds-shadow);
}

.esds-feature-strip article {
  display: flex;
  min-height: 120px;
  align-items: center;
  gap: 16px;
  padding: 27px 24px;
}

.esds-feature-strip article + article {
  border-left: 1px solid var(--esds-border);
}

.esds-feature-strip strong,
.esds-feature-strip span {
  display: block;
}

.esds-feature-strip strong {
  margin-bottom: 3px;
  font-size: .98rem;
  line-height: 1.25;
}

.esds-feature-strip article div span {
  color: var(--esds-muted);
  font-size: .78rem;
  line-height: 1.45;
}

.esds-feature-strip .esds-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--esds-white);
  background: linear-gradient(135deg, var(--esds-green), var(--esds-blue));
  font-weight: 900;
}

.esds-section {
  padding-block: clamp(78px, 10vw, 132px);
}

.esds-module-section > .moduletable,
.esds-module-section > div {
  margin: 0;
}

.esds-intro {
  padding-top: clamp(110px, 12vw, 165px);
}

.esds-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: clamp(50px, 9vw, 130px);
}

.esds-intro h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.esds-lead p {
  margin-bottom: 25px;
  color: var(--esds-muted);
  font-size: 1.15rem;
}

.esds-section--soft {
  background:
    radial-gradient(circle at 15% 20%, rgba(83, 173, 60, .12), transparent 32%),
    var(--esds-soft);
}

.esds-heading-row {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.esds-heading-row h2,
.esds-heading-row p {
  margin-bottom: 0;
}

.esds-heading-row > p {
  color: var(--esds-muted);
  font-size: 1.08rem;
}

.esds-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.esds-card {
  display: flex;
  min-height: 395px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--esds-border);
  border-radius: var(--esds-radius);
  background: var(--esds-white);
  box-shadow: 0 13px 40px rgba(8, 47, 40, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.esds-card:hover {
  box-shadow: var(--esds-shadow);
  transform: translateY(-7px);
}

.esds-card__number {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 65px;
  place-items: center;
  border-radius: 16px;
  color: var(--esds-green-dark);
  background: #e6f3e7;
  font-size: .84rem;
  font-weight: 850;
}

.esds-card h3 {
  margin-bottom: 15px;
}

.esds-card p {
  margin-bottom: 30px;
  color: var(--esds-muted);
  font-size: .94rem;
}

.esds-card a {
  margin-top: auto;
  color: var(--esds-green-dark);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.esds-card--blue,
.esds-card--dark {
  border-color: transparent;
  color: var(--esds-white);
}

.esds-card--blue {
  background: linear-gradient(145deg, var(--esds-blue), var(--esds-blue-dark));
}

.esds-card--dark {
  background: linear-gradient(145deg, var(--esds-green-dark), var(--esds-green-deep));
}

.esds-card--blue .esds-card__number,
.esds-card--dark .esds-card__number {
  color: var(--esds-white);
  background: rgba(255, 255, 255, .16);
}

.esds-card--blue p,
.esds-card--dark p,
.esds-card--blue a,
.esds-card--dark a {
  color: rgba(255, 255, 255, .88);
}

.esds-instructors {
  color: var(--esds-white);
  background:
    linear-gradient(135deg, rgba(19, 139, 194, .16), transparent 40%),
    var(--esds-green-deep);
}

.esds-heading-row--light > p {
  color: rgba(255, 255, 255, .68);
}

.esds-instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.esds-instructor {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--esds-radius);
  background: rgba(255, 255, 255, .07);
}

.esds-instructor__photo {
  width: 100%;
  height: 290px;
  background-color: #176c63;
  background-image: var(--esds-instructor-image), linear-gradient(135deg, rgba(83, 173, 60, .78), rgba(19, 139, 194, .72));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.esds-instructor > div {
  padding: 34px 38px 38px;
}

.esds-instructor h3 {
  margin-bottom: 12px;
  font-size: 2.1rem;
}

.esds-instructor p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .7);
}

.esds-values {
  text-align: center;
}

.esds-values h2 {
  margin-bottom: 55px;
}

.esds-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.esds-value-grid article {
  padding: 37px;
  border-top: 4px solid var(--esds-green);
  border-radius: 0 0 20px 20px;
  background: var(--esds-soft);
}

.esds-value-grid span {
  display: block;
  margin-bottom: 50px;
  color: var(--esds-blue);
  font-size: .8rem;
  font-weight: 850;
}

.esds-value-grid h3 {
  margin-bottom: 13px;
}

.esds-value-grid p {
  margin-bottom: 0;
  color: var(--esds-muted);
}

.esds-pricing {
  color: var(--esds-white);
  background: linear-gradient(115deg, var(--esds-blue-dark), var(--esds-blue) 55%, #21a1b6);
}

.esds-pricing__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.esds-pricing h2 {
  margin-bottom: 15px;
}

.esds-pricing p:not(.esds-eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.esds-pricing .esds-eyebrow {
  color: #d8ffca;
}

.esds-careers {
  background: var(--esds-soft);
}

.esds-careers__grid {
  display: grid;
  grid-template-columns: .55fr 1fr;
  align-items: center;
  gap: clamp(55px, 10vw, 150px);
}

.esds-careers__mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 38px;
  background: linear-gradient(145deg, var(--esds-white), #e7f2eb);
  box-shadow: var(--esds-shadow);
  transform: rotate(-4deg);
}

.esds-careers__mark::before,
.esds-careers__mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.esds-careers__mark::before {
  width: 30%;
  height: 30%;
  top: -6%;
  right: -6%;
  background: var(--esds-blue);
}

.esds-careers__mark::after {
  width: 19%;
  height: 19%;
  bottom: 5%;
  left: -5%;
  background: var(--esds-green-bright);
}

.esds-careers__mark span {
  color: var(--esds-red);
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 900;
  line-height: 1;
}

.esds-careers p:not(.esds-eyebrow) {
  max-width: 650px;
  color: var(--esds-muted);
}

.esds-cta {
  color: var(--esds-white);
  background:
    radial-gradient(circle at 92% 20%, rgba(83, 173, 60, .25), transparent 27%),
    var(--esds-green-dark);
}

.esds-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.esds-cta h2 {
  max-width: 720px;
  margin-bottom: 16px;
}

.esds-cta p:not(.esds-eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.esds-main {
  min-height: 60vh;
  padding-block: clamp(65px, 9vw, 115px);
  background: var(--esds-soft);
}

.esds-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
}

.esds-content-grid.has-sidebar {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.esds-component,
.esds-sidebar .moduletable,
.esds-sidebar .module,
.esds-module-card {
  padding: clamp(28px, 5vw, 60px);
  border-radius: var(--esds-radius);
  background: var(--esds-white);
  box-shadow: 0 10px 35px rgba(8, 47, 40, .07);
}

.esds-component h1,
.esds-component h2,
.esds-component h3 {
  color: var(--esds-ink);
}

.esds-footer {
  padding-top: 80px;
  color: rgba(255, 255, 255, .7);
  background: #061f1b;
}

.esds-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 70px;
  padding-bottom: 65px;
}

.esds-footer__logo {
  display: block;
  width: 245px;
  height: 84px;
  margin-bottom: 24px;
  border-radius: 8px;
  background-color: var(--esds-white);
  background-image: var(--esds-logo-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.esds-brand__fallback--footer {
  min-height: 84px;
  margin-bottom: 24px;
  padding-inline: 16px;
  border-radius: 8px;
  color: var(--esds-green-dark);
  background: var(--esds-white);
}

.esds-footer__grid > div:first-child p {
  max-width: 430px;
}

.esds-footer h2 {
  margin: 12px 0 22px;
  color: var(--esds-white);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.esds-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}

.esds-footer a:hover {
  color: var(--esds-white);
}

.esds-footer__bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
}

.esds-component-only {
  padding: 30px;
}

.esds-error-page,
.esds-offline-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background: var(--esds-soft);
}

.esds-error,
.esds-offline {
  width: min(700px, 100%);
  padding: clamp(35px, 7vw, 80px);
  border-radius: 30px;
  background: var(--esds-white);
  box-shadow: var(--esds-shadow);
}

.esds-error h1,
.esds-offline h1 {
  color: var(--esds-ink);
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.esds-offline__logo {
  margin-bottom: 30px;
}

.esds-offline form {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.esds-offline input {
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--esds-border);
  border-radius: 10px;
}

@keyframes esdsHeroReveal {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

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

@media (max-width: 1120px) {
  .esds-header__inner { gap: 18px; }
  .esds-brand { flex-basis: 196px; }
  .esds-brand__image, .esds-brand__fallback { width: 196px; height: 72px; }
  .esds-header__cta { display: none; }
  .esds-nav ul, .esds-nav .mod-menu { gap: 18px; }
  .esds-feature-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .esds-feature-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--esds-border); }
  .esds-feature-strip article:nth-child(4) { border-top: 1px solid var(--esds-border); }
}

@media (max-width: 1120px) {
  .esds-header__inner { min-height: 86px; justify-content: space-between; }
  .esds-menu-toggle { display: flex; }
  .esds-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    max-height: calc(100vh - 125px);
    overflow-y: auto;
    padding: 28px 20px 50px;
    background: var(--esds-white);
    box-shadow: 0 24px 35px rgba(8, 47, 40, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .esds-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .esds-nav ul, .esds-nav .mod-menu { display: block; width: min(620px, 100%); margin-inline: auto; }
  .esds-nav li { border-bottom: 1px solid var(--esds-border); }
  .esds-nav a { display: block; padding: 18px 4px; font-size: 1.08rem; }
  .esds-nav a::after { display: none; }
  .esds-intro__grid,
  .esds-heading-row,
  .esds-pricing__inner,
  .esds-cta__inner { grid-template-columns: 1fr; gap: 32px; }
  .esds-card-grid { grid-template-columns: 1fr; }
  .esds-card { min-height: 320px; }
  .esds-card__number { margin-bottom: 45px; }
  .esds-instructor-grid { grid-template-columns: 1fr; }
  .esds-value-grid { grid-template-columns: 1fr; }
  .esds-value-grid span { margin-bottom: 28px; }
  .esds-content-grid.has-sidebar { grid-template-columns: 1fr; }
  .esds-footer__grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 36px; }
}

@media (max-width: 720px) {
  :root { --esds-container: min(100% - 28px, 1180px); }
  body.esds-site { font-size: 16px; }
  .esds-topbar__inner { min-height: 35px; justify-content: space-between; gap: 12px; font-size: .72rem; }
  .esds-header__inner { min-height: 78px; }
  .esds-brand { flex-basis: 165px; }
  .esds-brand__image, .esds-brand__fallback { width: 165px; height: 62px; min-height: 62px; }
  .esds-brand__fallback strong { font-size: 1.65rem; }
  .esds-brand__fallback small { font-size: .63rem; }
  .esds-menu-toggle { width: 44px; height: 44px; }
  .esds-nav { max-height: calc(100vh - 113px); }
  .esds-hero { min-height: 660px; }
  .esds-hero__shade { background: linear-gradient(90deg, rgba(4, 29, 25, .82), rgba(4, 29, 25, .4)), linear-gradient(0deg, rgba(4, 29, 25, .55), transparent 66%); }
  .esds-hero__image { object-position: 63% center; }
  .esds-hero__content { padding-block: 85px 80px; }
  .esds-kicker { align-items: flex-start; font-size: .7rem; }
  .esds-feature-strip { margin-top: 0; padding: 14px 0; background: var(--esds-soft); }
  .esds-feature-strip__grid { grid-template-columns: 1fr; border-radius: 18px; }
  .esds-feature-strip article { min-height: 100px; padding: 22px; }
  .esds-feature-strip article + article,
  .esds-feature-strip article:nth-child(3) { border-top: 1px solid var(--esds-border); border-left: 0; }
  .esds-intro { padding-top: 80px; }
  .esds-heading-row { margin-bottom: 38px; }
  .esds-instructor__photo { height: 220px; }
  .esds-instructor > div { padding: 27px; }
  .esds-careers__grid { grid-template-columns: 1fr; gap: 50px; }
  .esds-careers__mark { width: min(340px, 88%); margin-inline: auto; }
  .esds-footer__grid { grid-template-columns: 1fr 1fr; }
  .esds-footer__grid > div:first-child { grid-column: 1 / -1; }
  .esds-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
}

@media (max-width: 460px) {
  .esds-topbar__inner > span { max-width: 220px; }
  .esds-topbar__inner a { display: none; }
  .esds-actions { align-items: flex-start; flex-direction: column; }
  .esds-actions .esds-button { width: 100%; }
  .esds-card { min-height: 350px; }
  .esds-footer__grid { grid-template-columns: 1fr; }
  .esds-footer__grid > div:first-child { grid-column: auto; }
}

/* ESDS Refresh 2.0 additions */
.esds-brand {
  flex-basis: 250px;
}

.esds-brand__image {
  width: 250px;
  height: 82px;
}

.esds-nav li {
  position: relative;
}

.esds-nav li > ul {
  position: absolute;
  z-index: 20;
  top: calc(100% + 14px);
  left: -18px;
  display: none;
  width: 240px;
  padding: 12px;
  border: 1px solid var(--esds-border);
  border-radius: 15px;
  background: var(--esds-white);
  box-shadow: var(--esds-shadow);
}

.esds-nav li:hover > ul,
.esds-nav li:focus-within > ul {
  display: block;
}

.esds-nav li > ul a {
  display: block;
  padding: 11px 10px;
}

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

.esds-card-grid--four .esds-card {
  min-height: 310px;
}

.esds-card-grid--four .esds-card h3 {
  margin-top: 24px;
}

.esds-card--green {
  border-color: transparent;
  color: var(--esds-white);
  background: linear-gradient(145deg, var(--esds-green), var(--esds-green-dark));
}

.esds-card--green p,
.esds-card--green a {
  color: rgba(255, 255, 255, .88);
}

.esds-testimonials {
  background: var(--esds-white);
}

.esds-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.esds-review {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 26px;
  margin: 0;
  border: 1px solid var(--esds-border);
  border-radius: 22px;
  background: var(--esds-soft);
  box-shadow: 0 12px 34px rgba(8, 47, 40, .06);
}

.esds-review__photo {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: end center;
  overflow: hidden;
  border-radius: 18px;
  background-color: var(--esds-green-dark);
  background-image: var(--esds-review-image), linear-gradient(135deg, var(--esds-green), var(--esds-blue));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.esds-review__photo span {
  width: 100%;
  padding: 5px;
  color: var(--esds-white);
  background: rgba(8, 47, 40, .78);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.esds-review p {
  margin-bottom: 0;
  color: var(--esds-muted);
  font-size: .92rem;
  line-height: 1.55;
}

.esds-review .esds-stars {
  margin-bottom: 8px;
  color: #e5a91d;
  font-size: .8rem;
  letter-spacing: .08em;
}

.esds-values .esds-value-grid article {
  padding-top: 48px;
}

.esds-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.esds-price-card,
.esds-course-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(8px);
}

.esds-price-card--offer {
  color: var(--esds-green-deep);
  background: #dff7d5;
}

.esds-price-card__label {
  margin-bottom: 28px !important;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.esds-price-card h3,
.esds-course-card h3 {
  margin-bottom: 10px;
}

.esds-price-card .esds-price {
  margin-bottom: 5px;
  color: var(--esds-white);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  font-weight: 850;
  line-height: 1;
}

.esds-price-card--offer .esds-price,
.esds-price-card--offer p {
  color: var(--esds-green-deep);
}

.esds-course-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.esds-course-card ul {
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.esds-course-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.esds-course-card .esds-button {
  margin-top: 25px;
}

.esds-payment-note {
  margin: 24px 0 0 !important;
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--esds-white) !important;
  background: rgba(4, 29, 25, .28);
  font-weight: 750;
  text-align: center;
}

.esds-booking {
  color: var(--esds-white);
  background: var(--esds-green-deep);
}

.esds-booking__layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(45px, 8vw, 110px);
}

.esds-booking__intro {
  position: sticky;
  top: 145px;
}

.esds-booking__intro > p:not(.esds-eyebrow) {
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.esds-booking__direct {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.esds-booking__direct a {
  color: var(--esds-white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.esds-booking-form {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 26px;
  color: var(--esds-ink);
  background: var(--esds-white);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .22);
}

.esds-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.esds-form-grid label {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  font-size: .82rem;
  font-weight: 800;
}

.esds-field--wide {
  grid-column: 1 / -1;
}

.esds-form-grid input,
.esds-form-grid select,
.esds-form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid #cbd9d2;
  border-radius: 11px;
  color: var(--esds-ink);
  background: #fbfdfc;
}

.esds-form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.esds-form-grid input:focus,
.esds-form-grid select:focus,
.esds-form-grid textarea:focus {
  border-color: var(--esds-blue);
  outline: 3px solid rgba(19, 139, 194, .16);
}

.esds-form-notice {
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: 10px;
  font-weight: 750;
}

.esds-form-notice.is-success {
  color: #155b2d;
  background: #e1f7e7;
}

.esds-form-notice.is-error {
  color: #842029;
  background: #f9dfe1;
}

.esds-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 1120px) {
  .esds-brand { flex-basis: 210px; }
  .esds-brand__image { width: 210px; height: 72px; }
  .esds-review-grid { grid-template-columns: repeat(2, 1fr); }
  .esds-price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1120px) {
  .esds-nav li > ul {
    position: static;
    display: block;
    width: auto;
    padding: 0 0 8px 18px;
    border: 0;
    box-shadow: none;
  }
  .esds-nav li > ul li { border-bottom: 0; }
  .esds-nav li > ul a { padding-block: 10px; font-size: .95rem; }
  .esds-booking__layout { grid-template-columns: 1fr; }
  .esds-booking__intro { position: static; }
  .esds-course-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .esds-brand { flex-basis: 170px; }
  .esds-brand__image { width: 170px; height: 62px; }
  .esds-card-grid--four,
  .esds-review-grid,
  .esds-price-grid { grid-template-columns: 1fr; }
  .esds-review { grid-template-columns: 70px 1fr; padding: 20px; }
  .esds-review__photo { width: 70px; height: 70px; }
  .esds-form-grid { grid-template-columns: 1fr; }
  .esds-field--wide { grid-column: auto; }
  .esds-booking-form { padding: 22px 18px; }
}

@media (max-width: 460px) {
  .esds-review { grid-template-columns: 1fr; }
  .esds-review__photo { width: 100%; height: 160px; }
  .esds-course-card li { align-items: flex-start; flex-direction: column; gap: 2px; }
}

/* 2.1: readable images, touch navigation and compact small-screen sections. */
.esds-brand { flex: 0 0 210px; }
.esds-brand__image { width: 210px; height: auto; max-height: 108px; object-fit: contain; background: none; }
.esds-footer__logo { width: 245px; height: auto; object-fit: contain; padding: 10px; }
.esds-header__inner { gap: 20px; }
.esds-nav { min-width: 0; }
.esds-nav ul { gap: 18px; }
.esds-nav li > ul { top: 100%; padding-top: 14px; }
.esds-header__cta { padding-inline: 15px; }
.esds-hero__photo { object-fit: cover; object-position: center; background: none; }
.esds-instructor__photo { height: auto; aspect-ratio: 1.9; object-fit: contain; background: #082f28; padding: 0; }
.esds-container > *, .esds-footer__grid > *, .esds-booking__layout > * { min-width: 0; }
.esds-footer a { max-width: 100%; overflow-wrap: anywhere; }
.esds-l-plate { flex: 0 0 40px; }
.esds-form-grid input, .esds-form-grid select, .esds-form-grid textarea { font-size: 16px; }
.esds-button { background: #247638; }
.esds-pricing .esds-price-card--offer p { color: #082f28; }
.esds-review { display: flex; flex-direction: column; gap: 16px; padding: 30px; }
.esds-review__quote { color: #247638; font-family: Georgia, serif; font-size: 64px; line-height: .7; height: 32px; }
.esds-review p { color: #344d43; font-size: 1rem; line-height: 1.7; }
.esds-review footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #cfddd4; font-size: .8rem; color: #52695e; }
:focus-visible { outline: 3px solid #138bc2; outline-offset: 4px; }
.esds-card a { min-height: 44px; display: inline-flex; align-items: center; }
.esds-menu-toggle { flex-shrink: 0; }
@media (max-width: 1120px) {
  .esds-header__inner { min-height: 96px; }
  .esds-nav { visibility: hidden; max-height: calc(100dvh - 100px); }
  .esds-nav.is-open { visibility: visible; }
  html:not(.esds-js) .esds-header__inner { flex-wrap: wrap; }
  html:not(.esds-js) .esds-nav { position: static; flex-basis: 100%; visibility: visible; opacity: 1; pointer-events: auto; transform: none; max-height: none; }
  html:not(.esds-js) .esds-menu-toggle { display: none; }
  .esds-header__cta { display: none; }
}
@media (max-width: 720px) {
  h1 { font-size: clamp(2.35rem, 9vw, 3.8rem); }
  h2 { font-size: clamp(1.95rem, 7.4vw, 3rem); overflow-wrap: break-word; }
  .esds-brand { flex-basis: 180px; }
  .esds-brand__image { width: 180px; height: auto; max-height: 90px; }
  .esds-topbar__inner { justify-content: center; }
  .esds-topbar__inner > span { display: none; }
  .esds-topbar__inner a { display: inline-block; padding: 6px; }
  .esds-hero { display: flex; flex-direction: column; align-items: stretch; min-height: 0; }
  .esds-hero__image { position: static; width: 100%; height: auto; aspect-ratio: 1762 / 893; object-fit: contain; order: 0; }
  .esds-hero__shade { display: none; }
  .esds-hero__content { padding-block: 36px 44px; }
  .esds-hero__content > p:not(.esds-kicker) { margin-bottom: 24px; }
  .esds-section { padding-block: 56px; }
  .esds-intro { padding-top: 56px; }
  .esds-card-grid--four .esds-card { min-height: 0; padding: 28px; }
  .esds-card-grid--four .esds-card h3 { margin-top: 0; }
  .esds-card p { margin-bottom: 20px; }
  .esds-instructor__photo { height: auto; }
  .esds-review { padding: 26px; }
  .esds-booking__layout { gap: 28px; }
  .esds-value-grid article { padding: 28px; }
  .esds-course-card { padding: 24px; }
  .esds-careers__mark { display: none; }
  .esds-actions { gap: 18px; }
  .esds-booking-form > .esds-button { width: 100%; }
}

/* 2.2: pupil photographs in review cards and full instructor portraits. */
.esds-review__student { width: 100%; max-width: 240px; height: auto; aspect-ratio: 3 / 4; object-fit: contain; border-radius: 14px; margin: 0 auto 10px; }
.esds-instructor__photo { aspect-ratio: auto; width: 100%; height: auto; object-fit: contain; }


/* 2.4: local-search content, FAQ and conversion sections. */
.esds-areas { background: #ffffff; }
.esds-area-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.esds-area-grid article { padding:28px; border:1px solid var(--esds-border); border-radius:18px; background:var(--esds-soft); }
.esds-area-grid h3 { margin-bottom:10px; color:var(--esds-green-dark); }
.esds-area-grid p { margin-bottom:0; color:var(--esds-muted); }
.esds-faq { background:var(--esds-soft); }
.esds-faq-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.esds-faq-grid article { padding:26px; border-radius:18px; background:#fff; box-shadow:0 10px 28px rgba(8,47,40,.06); }
.esds-faq-grid h3 { margin-bottom:10px; color:var(--esds-green-dark); }
.esds-faq-grid p { margin-bottom:0; }
.esds-recaptcha-note { margin-top:14px; color:#60706b; font-size:.78rem; line-height:1.5; }
.esds-booking-form [hidden] { display:none !important; }
@media (max-width:900px){ .esds-area-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width:720px){ .esds-area-grid,.esds-faq-grid{grid-template-columns:1fr;} }


/* 2.5: dedicated local SEO landing pages. */
.esds-inner .esds-main { padding: 56px 0 80px; background: #f5f7f6; }
.esds-inner .esds-content-grid { display: block; }
.esds-inner .esds-component { min-width: 0; }
.esds-seo-page { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 18px 55px rgba(5,38,30,.08); }
.esds-seo-hero { padding: clamp(34px,6vw,72px); background: linear-gradient(135deg,#0f4737,#0d6550); color:#fff; }
.esds-seo-hero .esds-eyebrow { color:#c9f2dc; }
.esds-seo-hero h1 { margin:.25rem 0 .8rem; max-width:900px; font-size:clamp(2rem,5vw,4rem); line-height:1.04; }
.esds-seo-hero p { max-width:850px; font-size:1.08rem; }
.esds-seo-body { padding: clamp(30px,5vw,64px); }
.esds-seo-body h2 { margin-top:2.2rem; font-size:clamp(1.55rem,3vw,2.2rem); }
.esds-seo-body h3 { margin-top:1.5rem; }
.esds-seo-body p, .esds-seo-body li { line-height:1.75; }
.esds-seo-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; margin:24px 0; }
.esds-seo-card { padding:24px; border:1px solid rgba(15,71,55,.14); border-radius:16px; background:#f8fbf9; }
.esds-seo-card h2,.esds-seo-card h3 { margin-top:0; }
.esds-seo-card a { font-weight:700; color:#0f654c; }
.esds-seo-cta { margin-top:34px; padding:28px; border-radius:18px; background:#eaf7ef; }
.esds-seo-links { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.esds-seo-links a { display:inline-block; padding:10px 14px; border-radius:999px; background:#edf4f1; color:#0f4737; font-weight:700; text-decoration:none; }
.esds-seo-instructor-photo { width:100%; height:auto; display:block; border-radius:16px; margin-bottom:18px; }
@media (max-width:760px){.esds-seo-grid{grid-template-columns:1fr}.esds-inner .esds-main{padding-top:24px}.esds-seo-page{border-radius:14px}}


/* ESDS v2.5.1: suppress Joomla article chrome on dedicated landing pages. */
.esds-component .article-info,
.esds-component .article-info-term,
.esds-component .com-content-article__info,
.esds-component .icons,
.esds-component .joomla-article-info,
.esds-component nav.mod-breadcrumbs,
.esds-component .mod-breadcrumbs,
.esds-component .breadcrumb {
  display: none !important;
}
