:root {
  --ink: #162421;
  --ink-2: #20322e;
  --panel: rgba(35, 53, 49, 0.72);
  --panel-solid: #263936;
  --paper: #eef6f2;
  --white: #fbfffc;
  --muted: #9bb1aa;
  --muted-dark: #5d716b;
  --cyan: #54f0e0;
  --green: #9dff7a;
  --coral: #ff7a64;
  --gold: #ffd166;
  --line: rgba(84, 240, 224, 0.22);
  --line-strong: rgba(157, 255, 122, 0.55);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light only;
  background: #ffffff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(84, 240, 224, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 240, 224, 0.065) 1px, transparent 1px),
    linear-gradient(135deg, #1b2c28 0%, #2c403b 46%, #182622 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(26, 42, 38, 0.8);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 24px rgba(84, 240, 224, 0.12);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: 230px;
  height: auto;
  max-width: 230px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  position: relative;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(157, 255, 122, 0.82);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(84, 240, 224, 0.18), rgba(157, 255, 122, 0.08)),
    var(--ink);
  box-shadow:
    inset 0 0 18px rgba(84, 240, 224, 0.16),
    0 0 24px rgba(84, 240, 224, 0.28);
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  transform: rotate(-45deg);
}

.brand-mark::before {
  width: 20px;
  height: 20px;
  border-top: 4px solid var(--green);
  border-right: 4px solid var(--cyan);
  border-bottom: 4px solid var(--green);
  clip-path: polygon(0 0, 100% 0, 100% 26%, 34% 26%, 34% 42%, 86% 42%, 86% 58%, 34% 58%, 34% 74%, 100% 74%, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 8px rgba(84, 240, 224, 0.8));
}

.brand-mark::after {
  width: 6px;
  height: 6px;
  right: 7px;
  bottom: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255, 122, 100, 0.9);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.main-nav {
  justify-self: end;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(251, 255, 252, 0.76);
  font-size: 0.94rem;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 42, 38, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(251, 255, 252, 0.45);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.1;
}

.header-action,
.button.primary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(251, 255, 252, 0.72);
  box-shadow: 0 0 24px rgba(251, 255, 252, 0.18);
}

.button.secondary {
  background: rgba(26, 42, 38, 0.58);
  border-color: rgba(251, 255, 252, 0.22);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 108px clamp(20px, 5vw, 72px) 34px;
  isolation: isolate;
}

.hero img,
.hero-shade,
.hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(0.72);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(26, 42, 38, 0.95) 0%, rgba(26, 42, 38, 0.74) 40%, rgba(26, 42, 38, 0.2) 80%),
    linear-gradient(0deg, rgba(26, 42, 38, 0.72), rgba(26, 42, 38, 0.06) 54%, rgba(84, 240, 224, 0.12));
}

.hero::before {
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(84, 240, 224, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 240, 224, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 0%, black 45%, transparent 76%);
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding-top: 34px;
}

.hero-content > .eyebrow {
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: none;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 750px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.8vw, 3.9rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(84, 240, 224, 0.14);
}

.hero-copy {
  max-width: 660px;
  color: rgba(251, 255, 252, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-copy p {
  margin-bottom: 14px;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-copy h2 {
  margin: 24px 0 16px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.immersive-image-section {
  padding: clamp(32px, 5vw, 72px);
  background: #ffffff;
}

.immersive-image-section img {
  display: block;
  width: 100%;
  max-height: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero-followup {
  max-width: 760px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.hero-followup h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.hero-followup p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-followup p:last-child {
  margin-bottom: 0;
}

.page-hero {
  min-height: 48vh;
  display: grid;
  align-content: end;
  padding: 150px clamp(20px, 5vw, 72px) 64px;
  background:
    linear-gradient(rgba(251, 255, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 255, 252, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #243833, #1b2c28);
  background-size: 44px 44px, 44px 44px, auto;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: none;
  font-size: clamp(2.3rem, 3.7vw, 3.55rem);
}

.page-hero.sustainability-hero > .eyebrow {
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
}

.page-hero.learning-experiences-hero > .eyebrow {
  max-width: none;
  font-size: clamp(2.3rem, 3.7vw, 3.55rem);
  line-height: 1.08;
}

.page-hero.learning-experiences-hero {
  min-height: auto;
  padding-top: 140px;
  padding-bottom: 42px;
}

.page-hero > .eyebrow {
  max-width: 980px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(251, 255, 252, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.whatwedo-hero-image {
  width: min(100%, 1080px);
  max-height: 560px;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.whatwedo-content-image {
  display: block;
  width: min(100%, 1180px);
  max-height: 680px;
  margin: 40px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.page-section {
  padding-top: clamp(56px, 8vw, 96px);
}

.empty-page {
  min-height: calc(100vh - 96px);
  background: #ffffff;
}

.contact-page {
  padding-top: 96px;
  background: #ffffff;
}

.contact-cta {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #f7faf8;
}

.contact-cta h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
}

.contact-cta .button {
  flex: 0 0 auto;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(32px, 7vw, 90px);
  border-top: 1px solid var(--line);
  background: #f7faf8;
}

.contact-form-column {
  display: grid;
  gap: 20px;
}

.contact-email {
  width: fit-content;
}

.contact-or {
  width: fit-content;
  margin: -4px 0;
  color: var(--muted-dark);
  font-weight: 800;
}

.contact-success {
  display: none;
  margin: -2px 0 0;
  color: #1f6f9e;
  font-weight: 900;
}

.contact-success.is-visible,
.contact-success:target {
  display: block;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(143, 207, 130, 0.28);
  border-color: var(--button-green-border);
}

.contact-message,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form .button {
  justify-self: start;
  min-width: 180px;
}

.intro-band,
.section {
  padding-inline: clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  padding: 26px clamp(18px, 3vw, 34px);
  background: rgba(34, 52, 48, 0.9);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  color: var(--white);
}

.intro-band span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  position: relative;
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(72px, 10vw, 128px);
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.contact h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.founder {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #243833, #1b2c28);
  background-size: 54px 54px, auto;
}

.founder-lead {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.founder-lead .eyebrow {
  color: var(--white);
}

.founder-photo {
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(84, 240, 224, 0.18);
  filter: saturate(1.04) contrast(1.02);
}

.founder-lead h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.founder-name {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
}

.founder-role {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 740;
}

.founder-copy {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.founder-copy p {
  margin-bottom: 0;
  color: rgba(251, 255, 252, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.image-feature {
  display: grid;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.image-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 56vw, 620px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--panel-solid);
}

.learning-gallery {
  padding: 0 clamp(20px, 5vw, 72px) clamp(48px, 7vw, 88px);
  background: #ffffff;
}

.empty-blue-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.sustainability-blue-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.sustainability-blue-panels h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.sustainability-blue-panels p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.promise-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 0 30px 4px;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #2d78aa;
  box-shadow:
    0 0 0 3px #2d78aa,
    0 7px 18px rgba(31, 83, 119, 0.24);
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.promise-icon::before {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  content: "";
}

.promise-icon::after {
  position: absolute;
  z-index: -1;
  right: 3px;
  bottom: -19px;
  width: 22px;
  height: 28px;
  background: #2d78aa;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 50% 72%, 18% 100%);
  content: "";
  transform: rotate(-8deg);
}

.classroom-evolution {
  overflow: hidden;
  padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 104px);
  background: #ffffff;
}

.classroom-evolution-frame {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f7f6;
  box-shadow: 0 24px 64px rgba(25, 67, 96, 0.16);
}

.classroom-evolution-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.classroom-evolution-colour {
  position: absolute;
  inset: 0;
  transform: scale(1.015);
  filter: saturate(0.9) contrast(0.96);
  clip-path: inset(0 100% 0 0);
  animation: classroomColourReveal 9s ease-in-out 0.5s forwards;
}

@keyframes classroomColourReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: scale(1.015);
    filter: saturate(0.9) contrast(0.96);
  }

  45% {
    clip-path: inset(0 48% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
    filter: saturate(1.04) contrast(1);
  }
}

.blue-panel-stack {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}

.blue-panel {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  border: 1px solid #69a9d2;
  border-radius: 8px;
  background: #b9ddf4;
  padding: 28px;
}

.blue-panel-copy {
  min-height: 250px;
}

.learning-gallery .blue-panel-copy {
  min-height: 0;
  padding: 24px 28px;
}

.blue-panel-image {
  justify-content: center;
  padding: 18px;
}

.empty-blue-panels h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  line-height: 1.08;
  white-space: nowrap;
}

.empty-blue-panels p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.empty-blue-panels img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(17, 21, 20, 0.14);
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}

.slide.is-active {
  opacity: 1;
}

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

.slide figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: fit-content;
  max-width: min(680px, calc(100% - 36px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.slider-controls {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--button-green);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--ink);
}

.expereality {
  background:
    linear-gradient(rgba(84, 240, 224, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 240, 224, 0.055) 1px, transparent 1px),
    #1b2c28;
  background-size: 40px 40px;
  border-bottom: 1px solid var(--line);
}

.expereality-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  gap: 16px;
  margin-top: 42px;
}

.service-card,
.concept-card,
.approach-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-card,
.concept-card {
  padding: clamp(24px, 4vw, 42px);
}

.service-card h3,
.service-card h2,
.approach-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.18;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-card li::marker {
  color: var(--white);
}

.concept-card p,
.approach-grid p {
  color: rgba(251, 255, 252, 0.8);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.approach-grid div {
  padding: 20px;
  background: rgba(26, 42, 38, 0.74);
}

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

.workflow {
  background:
    linear-gradient(135deg, rgba(157, 255, 122, 0.08), transparent 38%),
    linear-gradient(90deg, rgba(84, 240, 224, 0.055) 1px, transparent 1px),
    #243833;
  background-size: auto, 48px 48px, auto;
  border-bottom: 1px solid var(--line);
  padding-top: clamp(36px, 5vw, 64px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.workflow-grid article {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.workflow-grid article::before {
  position: absolute;
  top: 38px;
  right: -17px;
  width: 17px;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.workflow-grid article:last-child::before {
  display: none;
}

.workflow-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--white);
  font-weight: 950;
  box-shadow: inset 0 0 16px rgba(84, 240, 224, 0.12);
}

.workflow-grid h3 {
  margin: 22px 0 12px;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.16;
}

.workflow-grid p {
  color: var(--muted);
}

.workflow-grid small {
  display: block;
  margin-top: 20px;
  border-top: 1px solid rgba(84, 240, 224, 0.14);
  padding-top: 14px;
  color: rgba(251, 255, 252, 0.7);
  font-size: 0.92rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.method-grid article,
.programme-card,
.lab-detail,
.lens-output,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.method-grid article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 24px;
}

.method-grid article::after,
.programme-card::after,
.lab-detail::after,
.lens-output::after,
.contact-box::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.78;
}

.method-grid span {
  color: var(--coral);
  font-weight: 950;
}

.method-grid h3,
.programme-card h3,
.lab-detail h3,
.lens-output h3 {
  margin: 16px 0 12px;
  color: var(--white);
  font-size: 1.34rem;
  line-height: 1.16;
}

.method-grid p,
.method-grid li,
.programme-card li,
.lab-detail p,
.lens-output p,
.contact-box p {
  color: var(--muted);
}

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

.method-expanded .method-card {
  min-height: auto;
}

.principles-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 16px;
}

.principles-feature .method-card {
  min-height: 100%;
}

.principles-feature img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.method-card ul,
.method-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.method-card li::marker {
  color: var(--white);
}

.method-card p {
  color: var(--muted);
}

.method-table-card,
.experiential-card {
  grid-column: 1 / -1;
}

.comparison-table {
  display: grid;
  overflow: hidden;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-table div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid rgba(84, 240, 224, 0.14);
}

.comparison-table div:last-child {
  border-bottom: 0;
}

.comparison-table strong,
.comparison-table span {
  padding: 14px;
}

.comparison-table strong {
  background: rgba(251, 255, 252, 0.08);
  color: var(--white);
}

.comparison-table span {
  color: var(--muted);
}

.comparison-table strong:first-child,
.comparison-table span:first-child {
  border-right: 1px solid rgba(84, 240, 224, 0.14);
}

.learning-basics {
  background:
    linear-gradient(rgba(251, 255, 252, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 255, 252, 0.045) 1px, transparent 1px),
    #1b2c28;
  background-size: 46px 46px;
  border-bottom: 1px solid var(--line);
}

.learning-foundations-image {
  display: block;
  width: 100%;
  max-height: 620px;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.basics-grid,
.reality-learning {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.basics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.cycle-card,
.basics-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cycle-card {
  min-height: 240px;
  padding: 24px;
}

.cycle-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(251, 255, 252, 0.5);
  border-radius: 8px;
  color: var(--white);
  font-weight: 950;
}

.cycle-card h3,
.basics-panel h3 {
  margin: 20px 0 12px;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.16;
}

.cycle-card p,
.basics-panel p,
.basics-panel li {
  color: var(--muted);
}

.basics-panel {
  padding: clamp(24px, 4vw, 38px);
}

.basics-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.basics-panel li::marker {
  color: var(--white);
}

.basics-grid .basics-panel {
  grid-column: span 2;
}

.xr-panel p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(84, 240, 224, 0.06) 1px, transparent 1px),
    linear-gradient(#243833, #1f312d);
  background-size: 52px 52px, auto;
  border-block: 1px solid var(--line);
}

.programme-panel {
  position: sticky;
  top: 96px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.tab,
.zone {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(26, 42, 38, 0.72);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 820;
}

.tab:hover,
.zone:hover {
  border-color: rgba(84, 240, 224, 0.62);
}

.tab.is-active,
.zone.is-active {
  background: rgba(84, 240, 224, 0.16);
  color: var(--white);
  border-color: var(--line-strong);
  box-shadow: inset 0 0 18px rgba(84, 240, 224, 0.14), 0 0 18px rgba(84, 240, 224, 0.12);
}

.programme-card {
  position: relative;
  min-height: 420px;
  padding: clamp(24px, 4vw, 42px);
}

.programme-card ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.programme-feature-image {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  max-height: 680px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.lab {
  background:
    linear-gradient(rgba(157, 255, 122, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 255, 122, 0.05) 1px, transparent 1px),
    #1b2c28;
  background-size: 36px 36px;
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 64px);
  margin-top: 42px;
}

.lab-map {
  display: grid;
  min-height: 440px;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(84, 240, 224, 0.1) 25%, transparent 25%) 0 0 / 26px 26px,
    linear-gradient(315deg, rgba(255, 209, 102, 0.1) 25%, transparent 25%) 0 0 / 26px 26px,
    rgba(13, 24, 22, 0.86);
  box-shadow: inset 0 0 40px rgba(84, 240, 224, 0.08), var(--shadow);
}

.zone {
  align-self: stretch;
  font-size: 1.1rem;
}

.lab-detail {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: clamp(26px, 5vw, 54px);
}

.lens {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(255, 122, 100, 0.06) 1px, transparent 1px),
    linear-gradient(#263936, #1b2c28);
  background-size: 58px 58px, auto;
}

.lens-form {
  display: grid;
  gap: 16px;
  align-self: start;
}

.lens-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 820;
}

.lens-form input,
.lens-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 255, 252, 0.1);
  color: var(--white);
  font: inherit;
  padding: 11px 12px;
  outline: none;
}

.lens-form input:focus,
.lens-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(157, 255, 122, 0.12);
}

.lens-form option {
  background: var(--ink-2);
  color: var(--white);
}

.lens-form input[type="range"] {
  accent-color: var(--green);
}

.lens-output {
  position: relative;
  min-height: 330px;
  padding: clamp(24px, 4vw, 40px);
  border-left: 8px solid var(--gold);
}

.lens-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.35fr);
  gap: 24px;
  width: 100%;
}

.lens-result img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  max-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.lens-output ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 21px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(84, 240, 224, 0.08), transparent 42%),
    #243833;
  border-top: 1px solid var(--line);
}

.contact-box {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
}

.contact-box .button {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #162421;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span {
  color: var(--white);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.privacy-main {
  min-height: 100vh;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
  background: #f7faf8;
}

.privacy-notice {
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.privacy-notice h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.privacy-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.privacy-date {
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-notice article {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.privacy-notice h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.privacy-notice p,
.privacy-notice li {
  color: var(--muted);
}

.privacy-notice a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.privacy-notice ul {
  padding-left: 1.2rem;
}

.privacy-notice li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .contact-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .empty-blue-panels {
    grid-template-columns: 1fr;
  }

  .sustainability-blue-panels {
    grid-template-columns: 1fr;
  }

  .empty-blue-panels h2 {
    white-space: normal;
  }

  .sustainability-blue-panels h2 {
    white-space: normal;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .main-nav {
    position: absolute;
    z-index: 30;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
    justify-self: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(26, 42, 38, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    color: var(--white);
  }

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

  .main-nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid rgba(84, 240, 224, 0.14);
    border-radius: 0;
    background: transparent;
    padding: 0 12px;
    text-align: left;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .intro-band,
  .method-grid,
  .founder,
  .expereality-layout,
  .approach-grid,
  .workflow-grid,
  .basics-grid,
  .reality-learning,
  .split,
  .lab-layout,
  .lens,
  .contact {
    grid-template-columns: 1fr;
  }

  .method-table-card,
  .experiential-card {
    grid-column: auto;
  }

  .principles-feature {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .lens-result {
    grid-template-columns: 1fr;
  }

  .comparison-table div {
    grid-template-columns: 1fr;
  }

  .comparison-table strong:first-child,
  .comparison-table span:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(84, 240, 224, 0.14);
  }

  .basics-grid .basics-panel {
    grid-column: auto;
  }

  .programme-panel {
    position: static;
  }

  .founder-lead {
    position: static;
  }

  .hero {
    padding-top: 108px;
  }

  .programme-card,
  .lab-map {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand-logo {
    width: 170px;
    max-width: 170px;
    height: auto;
  }

  .hero {
    min-height: 84vh;
    padding: 104px 18px 38px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(26, 42, 38, 0.95), rgba(26, 42, 38, 0.76) 60%, rgba(26, 42, 38, 0.36)),
      linear-gradient(90deg, rgba(26, 42, 38, 0.9), rgba(26, 42, 38, 0.56));
  }

  .hero::before {
    background-size: 42px 42px;
    mask-image: linear-gradient(0deg, black 0%, black 74%, transparent 100%);
  }

  h1 {
    font-size: 3.05rem;
  }

  .hero-actions,
  .tabs {
    display: grid;
  }

  .button,
  .tab {
    width: 100%;
  }

  .lab-map {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .hero-content {
    max-width: none;
  }

  .hero-content > h1,
  .hero-content > .eyebrow,
  .page-hero > h1,
  .page-hero.learning-experiences-hero > .eyebrow,
  .contact-cta h1,
  .privacy-notice h1 {
    max-width: none;
    font-size: clamp(2.15rem, 2.7vw, 2.65rem);
    line-height: 1.08;
    white-space: nowrap;
  }
}

.hero-content > h1 {
  background: linear-gradient(90deg, #202524 0%, #444c4a 52%, #69716f 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Light theme override */
:root {
  --ink: #111514;
  --ink-2: #f4f7f5;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-solid: #ffffff;
  --paper: #ffffff;
  --white: #ffffff;
  --muted: #4f5d59;
  --muted-dark: #2f3a37;
  --line: rgba(17, 21, 20, 0.16);
  --line-strong: rgba(17, 21, 20, 0.42);
  --shadow: 0 18px 45px rgba(17, 21, 20, 0.1);
  --button-green: #b9ddf4;
  --button-green-border: #69a9d2;
}

body {
  background:
    linear-gradient(rgba(17, 21, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 20, 0.035) 1px, transparent 1px),
    #ffffff;
  color: var(--ink);
}

.site-header,
.intro-band div,
.split,
.founder,
.image-feature,
.expereality,
.workflow,
.learning-basics,
.lens,
.contact,
.page-hero {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.site-header {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 24px rgba(17, 21, 20, 0.08);
}

.main-nav,
.intro-band strong,
.method-grid span,
.workflow-grid span,
.cycle-card span,
.lens-form label,
.lens-form input,
.lens-form select,
.hero-content,
.section-heading h2,
.contact h2,
h1,
.method-grid h3,
.programme-card h3,
.lab-detail h3,
.lens-output h3,
.service-card h3,
.service-card h2,
.approach-grid h3,
.workflow-grid h3,
.cycle-card h3,
.basics-panel h3,
.founder-lead h2,
.founder-name,
.eyebrow,
.card-kicker {
  color: var(--ink);
}

.main-nav a:hover {
  color: #000000;
}

.main-nav a.is-current {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.main-nav a.is-current::after {
  display: none;
}

.brand-mark {
  background: #ffffff;
  border-color: var(--line-strong);
  box-shadow: inset 0 0 12px rgba(17, 21, 20, 0.08);
}

.brand-mark::before {
  border-top-color: var(--ink);
  border-right-color: var(--ink);
  border-bottom-color: var(--ink);
  filter: none;
}

.brand-mark::after {
  background: var(--ink);
  box-shadow: none;
}

.hero img {
  filter: saturate(0.98) contrast(1) brightness(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.3) 82%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.06) 60%);
}

.hero::before {
  background:
    linear-gradient(rgba(17, 21, 20, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 20, 0.08) 1px, transparent 1px);
}

.hero-copy,
.page-hero p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.intro-band span,
.method-grid p,
.method-grid li,
.programme-card li,
.lab-detail p,
.lens-output p,
.contact-box p,
.founder-role,
.founder-copy p,
.concept-card p,
.approach-grid p,
.workflow-grid p,
.workflow-grid small,
.cycle-card p,
.basics-panel p,
.basics-panel li,
.comparison-table span {
  color: var(--muted);
}

.method-grid article,
.programme-card,
.lab-detail,
.lens-output,
.contact-box,
.founder-lead,
.service-card,
.concept-card,
.approach-grid div,
.workflow-grid article,
.cycle-card,
.basics-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.header-action,
.button.primary,
.button.secondary,
.tab,
.zone,
.menu-toggle {
  background: var(--button-green);
  color: var(--ink);
  border-color: var(--button-green-border);
  box-shadow: none;
}

.tab.is-active,
.zone.is-active {
  background: #8fc8eb;
  color: var(--ink);
  border-color: var(--button-green-border);
  box-shadow: none;
}

.menu-toggle span {
  background: var(--ink);
  box-shadow: none;
}

.lens-form input,
.lens-form select,
.lens-form option {
  background: #ffffff;
  color: var(--ink);
}

.comparison-table strong {
  background: #f3f5f4;
  color: var(--ink);
}

.site-footer {
  background: #ffffff;
  border-top-color: var(--line);
  color: var(--muted);
}

.site-footer span {
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero img {
    object-position: 82% center;
  }

  .main-nav {
    background: rgba(255, 255, 255, 0.98);
  }
}

@media (max-width: 560px) {
  .hero img {
    object-position: right center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86) 62%, rgba(255, 255, 255, 0.5)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.64));
  }
}

.site-header {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
}

.hero {
  align-items: start;
  min-height: auto;
  padding-top: clamp(34px, 5vw, 64px);
}

.page-hero,
.page-hero.learning-experiences-hero {
  min-height: auto;
  align-content: start;
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 56px);
}

.contact-page {
  padding-top: 0;
}

.privacy-main {
  padding-top: clamp(34px, 5vw, 64px);
}

@media (max-width: 900px) {
  .hero {
    padding-top: clamp(30px, 8vw, 48px);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-top: 30px;
  }
}

.about-page .brand-logo {
  width: 318px;
  max-width: 318px;
}

@media (max-width: 560px) {
  .about-page .brand-logo {
    width: 235px;
    max-width: 235px;
  }
}

.about-page .hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  overflow: visible;
  background: #ffffff;
  isolation: auto;
  padding-top: clamp(24px, 4vw, 46px);
  padding-bottom: clamp(24px, 4vw, 42px);
}

.about-page .about-hero-image {
  position: static;
  z-index: auto;
  width: 100%;
  max-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 20, 0.16);
  border-radius: 28px;
  clip-path: inset(0 round 28px);
  transform: translateZ(0);
}

.about-page .about-hero-image img {
  position: static;
  inset: auto;
  z-index: auto;
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.about-page .hero-content {
  display: contents;
  grid-column: 1;
  grid-row: 1;
}

.about-page .hero-content > h1 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 8px;
  font-size: clamp(1.95rem, 2.35vw, 2.35rem);
}

.about-page .hero-copy {
  grid-column: 1;
  grid-row: 2;
}

.about-page .about-hero-image {
  grid-column: 2;
  grid-row: 2;
}

.about-page .hero-shade,
.about-page .hero::before {
  display: none;
}

.about-page .hero-copy {
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
}

.about-page .hero-copy p {
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
}

.about-page {
  overflow-x: auto;
  overflow-y: scroll;
}

.about-page .hero-copy h2 {
  margin: 14px 0 10px;
}

@media (max-width: 900px) {
  .about-page .hero {
    grid-template-columns: 1fr;
  }

  .about-page .hero-content,
  .about-page .about-hero-image {
    grid-column: 1;
  }

  .about-page .hero-content {
    grid-row: 1;
  }

  .about-page .hero-content > h1 {
    grid-column: 1;
    grid-row: 1;
  }

  .about-page .hero-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .about-page .about-hero-image {
    grid-row: 3;
    max-height: 520px;
  }

  .about-page .about-hero-image img {
    max-height: 520px;
  }
}

.page-hero.sustainability-hero > .eyebrow {
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  line-height: 1;
}

.page-hero.sustainability-hero > .sustainability-title {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-style: italic;
  line-height: 1.12;
  white-space: normal;
}
