:root {
  --ink: #182326;
  --muted: #637075;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --teal: #0d3e43;
  --teal-hover: #16545a;
  --line: rgba(255, 255, 255, 0.16);
  --content: 1140px;
  --gutter: clamp(24px, 5.8vw, 92px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  min-height: 76px;
  background: #fff;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

.brand__mark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand__name {
  max-width: 205px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.7vw, 58px);
}

.desktop-nav a {
  position: relative;
  padding-block: 28px 25px;
  color: #354145;
  font-size: 11px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
}

.hero {
  color: #fff;
  background: var(--teal);
}

.hero__inner {
  min-height: 438px;
  padding-top: 118px;
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 25px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.contact-section {
  padding-block: 104px 126px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(420px, 1.35fr);
  gap: clamp(80px, 13vw, 210px);
}

.contact-section h2 {
  margin: 0 0 36px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.contact-info dl,
.contact-info dd {
  margin: 0;
}

.contact-info dl > div {
  margin-bottom: 30px;
}

.contact-info dt,
.socials > p,
.contact-form label > span {
  display: block;
  margin: 0 0 8px;
  color: #6a7477;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info dd {
  color: #2b373a;
  font-size: 12px;
  line-height: 1.65;
}

.contact-info dd a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.socials {
  margin-top: 50px;
}

.socials__links {
  display: flex;
  gap: 18px;
}

.socials__links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #dce2e4;
  transition: 160ms ease;
}

.socials__links a:hover {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.socials svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.socials svg .fill {
  fill: currentColor;
  stroke: none;
}

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

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

.contact-form label {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: var(--soft);
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form input {
  height: 50px;
  padding: 10px 14px;
}

.contact-form textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  background: #fff;
}

.contact-form button {
  width: max-content;
  min-width: 142px;
  margin-top: 4px;
  padding: 16px 24px;
  border: 0;
  color: #fff;
  background: var(--teal);
  cursor: pointer;
  font: 600 9px/1 Inter, Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-form button:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
}

.site-footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 0.75fr 1fr 0.75fr;
  gap: clamp(38px, 6.5vw, 98px);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.footer-intro p {
  max-width: 320px;
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-bottom {
  font-size: 10px;
}

.footer-grid nav a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 78px;
  padding-top: 23px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
}

[data-include]:empty {
  display: block;
  min-height: 76px;
  background: #fff;
}

[data-include="partials/footer.html"]:empty {
  min-height: 320px;
  background: var(--teal);
}

.event-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

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

.event-hero__image {
  object-fit: cover;
}

.event-hero__shade {
  background: linear-gradient(90deg, rgba(5, 42, 46, 0.9) 0%, rgba(5, 42, 46, 0.68) 46%, rgba(5, 42, 46, 0.36) 100%);
}

.event-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 610px;
  padding-top: 132px;
  padding-bottom: 78px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}

.event-hero .eyebrow {
  margin-bottom: 20px;
}

.event-type {
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-hero h1,
.events-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5.1vw, 76px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
}

.event-meta--hero {
  margin-top: 30px;
  font-size: 11px;
}

.event-meta--hero span + span::before {
  margin-right: 32px;
  color: rgba(255, 255, 255, 0.5);
  content: "•";
}

.event-body {
  padding-block: 100px 118px;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.event-copy > section + section {
  margin-top: 70px;
}

.event-copy h2,
.registration-card h2,
.related-events h2 {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.event-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.event-copy .event-lead {
  color: var(--ink);
  font-size: 15px;
}

.programme__row {
  min-height: 64px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 24px;
  border-bottom: 1px solid #e6eaeb;
}

.programme__row:first-child {
  border-top: 1px solid #e6eaeb;
}

.programme__row time {
  font-size: 11px;
  font-weight: 600;
}

.programme__row p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
}

.faq details {
  padding: 19px 0;
  border-bottom: 1px solid #e6eaeb;
}

.faq details:first-child {
  border-top: 1px solid #e6eaeb;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  list-style: none;
}

.faq summary::after {
  content: "+";
  font-size: 17px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 15px 40px 0 0;
}

.registration-card {
  padding: 30px;
  border: 1px solid #e6eaeb;
}

.registration-card dl,
.registration-card dd {
  margin: 0;
}

.registration-card dl > div {
  margin-bottom: 24px;
}

.registration-card dt,
.registration-card label > span {
  display: block;
  margin-bottom: 7px;
  color: #6a7477;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.registration-card dd {
  font-size: 12px;
  font-weight: 500;
}

.registration-card h2 {
  margin-top: 38px;
}

.registration-card form {
  display: grid;
  gap: 18px;
}

.registration-card input,
.registration-card textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 0;
  outline: none;
  background: var(--soft);
  font: inherit;
}

.registration-card input:focus,
.registration-card textarea:focus {
  border-color: var(--teal);
  background: #fff;
}

.registration-card button,
.text-button {
  width: max-content;
  padding: 14px 19px;
  border: 1px solid var(--teal);
  color: #fff;
  background: var(--teal);
  cursor: pointer;
  font: 600 8px/1 Inter, Arial, sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.registration-card button {
  width: 100%;
}

.registration-card form > p {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.related-events,
.events-index {
  padding-block: 74px 108px;
  background: #f3f7f8;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.event-cards--index {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card {
  padding-bottom: 26px;
  background: #fff;
}

.event-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.55;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.025);
}

.event-card__image span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.92);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card > :not(.event-card__image) {
  margin-right: 22px;
  margin-left: 22px;
}

.event-card__meta {
  margin-top: 18px;
  margin-bottom: 10px;
  color: #778185;
  font-size: 8px;
  text-transform: uppercase;
}

.event-card h3 {
  margin-top: 0;
  margin-bottom: 11px;
  font-size: 16px;
  line-height: 1.3;
}

.event-card__summary {
  min-height: 64px;
  margin-top: 0;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.event-card .text-button {
  display: inline-block;
  color: var(--teal);
  background: transparent;
}

.event-card .text-button:hover {
  color: #fff;
  background: var(--teal);
}

.events-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(rgba(7, 48, 53, 0.76), rgba(7, 48, 53, 0.76)), url("https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1800&q=85") center 42% / cover;
}

.events-hero__inner {
  min-height: 430px;
  padding-top: 110px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.events-hero__inner > p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.event-filters {
  margin-bottom: 42px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
}

.event-filters button {
  padding: 9px 15px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: 600 9px/1 Inter, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-filters button.is-active {
  color: #fff;
  background: var(--teal);
}

.page-shell {
  min-height: 55vh;
  padding-block: 110px;
}

.page-shell h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.05em;
}

.about-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

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

.about-hero__image {
  object-fit: cover;
}

.about-hero__shade {
  background: linear-gradient(90deg, rgba(7, 48, 53, 0.94) 0%, rgba(7, 48, 53, 0.76) 47%, rgba(7, 48, 53, 0.34) 100%);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 660px;
  padding-top: 128px;
  padding-bottom: 90px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}

.about-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.about-hero__inner > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.split-section {
  padding-block: 110px;
}

.split-section--peach {
  background: #ffd9b8;
}

.split-section--reverse {
  background: #fff;
}

.split-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(70px, 9vw, 138px);
  align-items: center;
}

.split-section--reverse .split-section__copy {
  order: 2;
}

.split-section--reverse .media-stat {
  order: 1;
}

.section-kicker {
  margin: 0 0 21px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.split-section h2,
.section-heading h2,
.about-cta h2 {
  margin: 0 0 30px;
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.split-section__copy > p:not(.section-kicker),
.section-heading > p:not(.section-kicker) {
  max-width: 540px;
  margin: 0 0 20px;
  color: #556267;
  font-size: 13px;
  line-height: 1.8;
}

.inline-link {
  display: inline-flex;
  gap: 18px;
  margin-top: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
}

.media-stat {
  position: relative;
  min-height: 420px;
  padding-bottom: 26px;
}

.media-stat img {
  width: 100%;
  height: 420px;
  display: block;
  filter: grayscale(1);
  object-fit: cover;
}

.media-stat__card {
  position: absolute;
  bottom: 0;
  left: -34px;
  width: 205px;
  min-height: 126px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: var(--teal);
}

.media-stat--left .media-stat__card {
  right: -34px;
  left: auto;
}

.media-stat__card strong {
  margin-bottom: 10px;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.media-stat__card span {
  font-size: 9px;
  line-height: 1.55;
}

.principles {
  padding-block: 116px 128px;
  background: #f3f7f8;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 64px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d9e0e2;
}

.principle-card {
  min-height: 300px;
  padding: 34px clamp(22px, 3.2vw, 48px) 34px 0;
}

.principle-card + .principle-card {
  padding-left: clamp(22px, 3.2vw, 48px);
  border-left: 1px solid #d9e0e2;
}

.principle-card > span,
.area-list > a > span {
  color: #7b8689;
  font-size: 9px;
}

.principle-card h3 {
  margin: 64px 0 18px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.learning-areas {
  padding-block: 120px 132px;
}

.learning-areas__grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(80px, 12vw, 175px);
  align-items: start;
}

.learning-areas .section-heading {
  margin: 0;
}

.area-list {
  border-top: 1px solid #d9e0e2;
}

.area-list > a {
  min-height: 74px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #d9e0e2;
}

.area-list strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.area-list em {
  color: var(--teal);
  font-size: 17px;
  font-style: normal;
  transition: transform 160ms ease;
}

.area-list > a:hover em {
  transform: translateX(5px);
}

.about-cta {
  padding-block: 110px;
  text-align: center;
  color: #fff;
  background: #181927;
}

.about-cta .section-kicker {
  color: rgba(255, 255, 255, 0.6);
}

.about-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
}

.about-cta p:not(.section-kicker) {
  max-width: 520px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.light-button {
  display: inline-block;
  padding: 15px 22px;
  color: #181927;
  background: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    width: 36px;
    height: 36px;
    padding: 9px 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    height: 1px;
    background: var(--ink);
  }

  .mobile-nav nav {
    position: absolute;
    z-index: 2;
    top: 48px;
    right: 0;
    width: 210px;
    padding: 12px;
    display: grid;
    border: 1px solid #e6e9ea;
    background: #fff;
    box-shadow: 0 20px 50px rgba(19, 42, 45, 0.14);
  }

  .mobile-nav nav a {
    padding: 12px;
    font-size: 12px;
  }

  .hero__inner {
    min-height: 370px;
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .contact-section {
    padding-block: 74px 90px;
  }

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

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

  .contact-info h2 {
    grid-column: 1 / -1;
  }

  .socials {
    margin-top: 0;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .event-hero,
  .event-hero__inner {
    min-height: 520px;
  }

  .event-layout {
    grid-template-columns: 1fr;
  }

  .registration-card {
    width: min(100%, 520px);
  }

  .event-cards,
  .event-cards--index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero,
  .about-hero__inner {
    min-height: 560px;
  }

  .split-section__grid,
  .learning-areas__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .split-section--reverse .split-section__copy,
  .split-section--reverse .media-stat {
    order: initial;
  }

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

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

  .principle-card {
    min-height: 0;
    padding: 30px 0 38px;
  }

  .principle-card + .principle-card {
    padding-left: 0;
    border-top: 1px solid #d9e0e2;
    border-left: 0;
  }

  .principle-card h3 {
    margin-top: 34px;
  }
}

@media (max-width: 540px) {
  :root {
    --gutter: 22px;
  }

  .brand__name {
    display: none;
  }

  .hero__inner {
    min-height: 350px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .contact-info,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-info h2,
  .footer-intro {
    grid-column: auto;
  }

  .socials {
    margin-top: 22px;
  }

  .footer-grid {
    gap: 38px;
  }

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

  .event-hero,
  .event-hero__inner {
    min-height: 470px;
  }

  .event-body {
    padding-block: 72px 88px;
  }

  .event-layout {
    gap: 60px;
  }

  .programme__row {
    grid-template-columns: 72px 1fr;
  }

  .event-cards,
  .event-cards--index {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-hero__inner {
    min-height: 500px;
  }

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

  .split-section,
  .principles,
  .learning-areas,
  .about-cta {
    padding-block: 78px;
  }

  .media-stat,
  .media-stat img {
    min-height: 320px;
    height: 320px;
  }

  .media-stat {
    padding-bottom: 60px;
  }

  .media-stat__card,
  .media-stat--left .media-stat__card {
    right: 0;
    bottom: 0;
    left: 0;
  }
}

/* Home page - Figma frame: Home page V2 */
.home-page {
  background: #fff;
}

.home-page .container {
  width: min(100%, 1370px);
  padding-inline: 85px;
}

.home-kicker {
  margin: 0 0 32px;
  color: #3769b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 904px;
  overflow: hidden;
  color: #fff;
  background: #123d42;
}

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

.home-hero__image {
  object-fit: cover;
  object-position: center;
}

.home-hero__overlay {
  background: rgba(7, 52, 57, 0.76);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 904px;
  padding-top: 180px;
  padding-right: 85px;
  padding-bottom: 82px;
  padding-left: 285px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.home-hero__locations {
  margin: 0 0 44px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(64px, 6.25vw, 96px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.home-hero__copy {
  margin: 39px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 16px;
  line-height: 2.08;
}

.home-hero__actions {
  margin-top: 49px;
  display: flex;
  gap: 14px;
}

.home-button {
  min-width: 158px;
  min-height: 56px;
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: 160ms ease;
}

.home-button--light {
  color: #17363b;
  background: #fff;
}

.home-button--light:hover {
  background: #eaf0f1;
}

.home-button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.home-button--outline:hover {
  color: var(--teal);
  background: #fff;
}

.home-button--dark-outline {
  min-width: 132px;
  min-height: 48px;
  padding: 14px 21px;
  color: #12373c;
  border-color: #12373c;
}

.home-button--dark-outline:hover {
  color: #fff;
  background: #12373c;
}

.home-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.home-scroll i {
  width: 1px;
  height: 46px;
  margin-top: 13px;
  background: rgba(255, 255, 255, 0.38);
}

.home-mission {
  padding-block: 126px 120px;
}

.home-mission__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 552px;
  gap: 85px;
  align-items: center;
}

.home-section-copy h2,
.home-why h2,
.home-curriculum h2,
.home-events h2,
.home-newsletter h2 {
  margin: 0;
  color: #191b2b;
  font-size: clamp(38px, 3.55vw, 52px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.home-section-copy > div,
.home-why__heading > p,
.home-curriculum__intro,
.home-newsletter__grid > div > p:last-child {
  color: #707989;
  font-size: 14px;
  line-height: 2;
}

.home-section-copy > div {
  margin-top: 41px;
}

.home-section-copy > div p {
  margin: 0 0 28px;
}

.home-section-copy > div p:last-child {
  margin-bottom: 0;
}

.home-media-stat {
  position: relative;
  margin: 0;
  padding-bottom: 26px;
}

.home-media-stat img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
}

.home-media-stat figcaption {
  position: absolute;
  bottom: 0;
  left: -24px;
  width: 220px;
  min-height: 145px;
  padding: 34px 29px;
  color: rgba(255, 255, 255, 0.7);
  background: #123d42;
}

.home-media-stat figcaption strong,
.home-media-stat figcaption span {
  display: block;
}

.home-media-stat figcaption strong {
  margin-bottom: 15px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.home-media-stat figcaption span {
  font-size: 11px;
  line-height: 1.75;
}

.home-question {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.home-question::before {
  position: absolute;
  inset: 0;
  background: rgba(11, 57, 62, 0.53);
  content: "";
}

.home-question--intelligence {
  background-image: url("assets/home-quote-intelligence.jpg");
}

.home-question--body {
  background-image: url("assets/home-quote-body.jpg");
}

.home-question .container {
  position: relative;
  z-index: 1;
}

.home-question blockquote {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 45px 60px;
  color: #fff;
  background: #123d42;
  font-size: clamp(24px, 2.5vw, 36px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
  text-align: center;
}

.home-why {
  padding-block: 123px 119px;
}

.home-why__heading {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 90px;
  align-items: start;
}

.home-why__heading > p {
  margin: 40px 0 0;
}

.home-why__body {
  margin-top: 86px;
  display: grid;
  grid-template-columns: minmax(0, 800px) 384px;
  gap: 18px;
  align-items: start;
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-principles article {
  min-height: 224px;
  padding: 40px 36px 34px;
  border-bottom: 1px solid #dce4e7;
}

.home-principles article:nth-child(even) {
  border-left: 1px solid #dce4e7;
}

.home-principles article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.home-principles article > span {
  display: block;
  margin-bottom: 28px;
  color: #3769b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.home-principles h3,
.home-curriculum__grid h3,
.home-event-card h3 {
  margin: 0 0 17px;
  color: #191b2b;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.home-principles p,
.home-curriculum__grid p {
  margin: 0;
  color: #707989;
  font-size: 12px;
  line-height: 1.85;
}

.home-media-stat--tall {
  padding-bottom: 47px;
}

.home-media-stat--tall img {
  height: 640px;
}

.home-media-stat--tall figcaption {
  left: -18px;
}

.home-curriculum {
  padding-block: 122px 124px;
}

.home-curriculum__intro {
  margin: 26px 0 61px;
}

.home-curriculum__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #dce4e7;
  border-left: 1px solid #dce4e7;
}

.home-curriculum__grid article {
  min-height: 168px;
  padding: 42px 40px 35px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border-right: 1px solid #dce4e7;
  border-bottom: 1px solid #dce4e7;
  scroll-margin-top: 25px;
}

.home-curriculum__grid article > div {
  max-width: 420px;
}

.home-curriculum__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.home-events {
  position: relative;
  padding-block: 107px 120px;
  background: linear-gradient(rgba(13, 62, 66, 0.79), rgba(13, 62, 66, 0.79)), url("assets/home-events-background.jpg") center / cover no-repeat;
}

.home-events .home-kicker,
.home-events h2 {
  color: #fff;
}

.home-events > .container > .home-section-heading > .home-button {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.home-section-heading {
  margin-bottom: 67px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.home-section-heading .home-kicker {
  margin-bottom: 27px;
}

.home-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-event-card {
  min-height: 548px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.home-event-card__image {
  position: relative;
  height: 222px;
  display: block;
  overflow: hidden;
}

.home-event-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease;
}

.home-event-card:hover .home-event-card__image img {
  transform: scale(1.025);
}

.home-event-card__image > span {
  position: absolute;
  top: 17px;
  left: 16px;
  padding: 9px 12px;
  color: #123d42;
  background: rgba(255, 255, 255, 0.93);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-event-card__body {
  min-height: 326px;
  padding: 18px 16px 17px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.home-event-card__meta {
  width: 100%;
  margin: 0 0 15px;
  display: grid;
  grid-template-columns: auto 1fr auto 1.25fr;
  gap: 7px;
  color: #697484;
  font-size: 10px;
  line-height: 1.45;
}

.home-event-card__meta span {
  color: #315c64;
}

.home-event-card__meta .calendar-icon,
.home-event-card__meta .location-icon {
  position: relative;
  width: 12px;
  height: 12px;
  display: block;
}

.home-event-card__meta .calendar-icon {
  border: 1px solid currentColor;
  border-radius: 1px;
}

.home-event-card__meta .calendar-icon::before {
  position: absolute;
  top: 2px;
  right: -1px;
  left: -1px;
  border-top: 1px solid currentColor;
  content: "";
}

.home-event-card__meta .location-icon {
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.home-event-card__meta .location-icon::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 3px;
  height: 3px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.home-event-card__meta b {
  font-weight: 400;
}

.home-event-card h3 {
  margin-bottom: 11px;
  font-size: 18px;
}

.home-event-card__body > p:not(.home-event-card__meta) {
  margin: 0 0 22px;
  color: #687384;
  font-size: 11px;
  line-height: 1.75;
}

.home-event-card .home-button {
  margin-top: auto;
}

.home-team {
  padding-block: 122px 120px;
}

.home-team h2 {
  margin: 0;
  color: #191b2b;
  font-size: clamp(38px, 3.55vw, 52px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.home-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-team-card img {
  width: 100%;
  aspect-ratio: 0.77;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.home-team-card h3 {
  margin: 24px 0 7px;
  color: #191b2b;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.home-team-card__role {
  min-height: 30px;
  margin: 0 0 18px;
  color: #3769b0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-team-card__bio {
  margin: 0;
  color: #707989;
  font-size: 12px;
  line-height: 1.85;
}

.home-founder {
  padding-block: 122px 120px;
}

.home-founder__grid {
  display: grid;
  grid-template-columns: 552px minmax(0, 1fr);
  gap: 95px;
  align-items: center;
}

.home-founder figure {
  position: relative;
  margin: 0;
  padding-bottom: 46px;
}

.home-founder figure img {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-founder figcaption {
  position: absolute;
  right: -32px;
  bottom: 0;
  width: 200px;
  padding: 24px;
  background: #e8eaf4;
}

.home-founder figcaption strong,
.home-founder figcaption span {
  display: block;
}

.home-founder figcaption strong {
  margin-bottom: 9px;
  color: #416db1;
  font-size: 12px;
}

.home-founder figcaption span {
  color: #687384;
  font-size: 10px;
}

.home-founder .home-section-copy > div {
  margin-top: 37px;
}

.home-text-link {
  margin-top: 25px;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 1px solid #123d42;
  color: #123d42;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-newsletter {
  padding-block: 78px 75px;
  background: #f5f7f8;
}

.home-newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 80px;
  align-items: center;
}

.home-newsletter h2 {
  font-size: 37px;
}

.home-newsletter .home-kicker {
  margin-bottom: 24px;
}

.home-newsletter__grid > div > p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.home-newsletter__form label {
  display: block;
  margin-bottom: 12px;
  color: #667181;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-newsletter__form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.home-newsletter__form input,
.home-newsletter__form button {
  height: 54px;
  border-radius: 0;
  font: inherit;
}

.home-newsletter__form input {
  min-width: 0;
  padding: 14px 19px;
  border: 1px solid #dce4e7;
  outline: none;
  color: var(--ink);
  background: transparent;
}

.home-newsletter__form input:focus {
  border-color: #123d42;
  background: #fff;
}

.home-newsletter__form button {
  min-width: 126px;
  padding: 0 22px;
  border: 1px solid #123d42;
  color: #fff;
  background: #123d42;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-cta {
  position: relative;
  min-height: 605px;
  padding-block: 95px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(rgba(16, 25, 38, 0.76), rgba(16, 25, 38, 0.76)), url("assets/home-hero.jpg") center / cover no-repeat;
  text-align: center;
}

.home-cta h2 {
  margin: 0;
  font-size: clamp(48px, 4.6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.home-cta p {
  margin: 40px 0 48px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.home-cta .home-button {
  min-width: 246px;
}

@media (max-width: 1100px) {
  .home-page .container {
    padding-inline: var(--gutter);
  }

  .home-hero__inner {
    padding-right: var(--gutter);
    padding-left: clamp(120px, 18vw, 220px);
  }

  .home-mission__grid,
  .home-founder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
  }

  .home-why__body {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  }

  .home-newsletter__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .home-hero,
  .home-hero__inner {
    min-height: 700px;
  }

  .home-hero__inner {
    padding-top: 115px;
    padding-bottom: 80px;
    padding-left: var(--gutter);
  }

  .home-scroll {
    display: none;
  }

  .home-mission__grid,
  .home-founder__grid,
  .home-why__body,
  .home-newsletter__grid {
    grid-template-columns: 1fr;
  }

  .home-mission,
  .home-why,
  .home-curriculum,
  .home-founder,
  .home-team {
    padding-block: 88px;
  }

  .home-media-stat {
    width: min(100%, 560px);
    margin-left: 24px;
  }

  .home-why__heading {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .home-why__body {
    gap: 60px;
  }

  .home-media-stat--tall {
    margin-left: auto;
    margin-right: 18px;
  }

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

  .home-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 60px;
  }

  .home-event-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
  }

  .home-founder figure {
    width: min(100%, 552px);
  }

  .home-newsletter__grid {
    gap: 45px;
  }
}

@media (max-width: 540px) {
  .home-page .container {
    padding-inline: 22px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 640px;
  }

  .home-hero__inner {
    padding: 84px 22px 68px;
  }

  .home-hero__locations {
    margin-bottom: 30px;
    font-size: 8px;
  }

  .home-hero h1 {
    font-size: 52px;
  }

  .home-hero__copy {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.75;
  }

  .home-hero__actions {
    width: 100%;
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-button {
    min-width: 0;
    padding-inline: 16px;
  }

  .home-section-copy h2,
  .home-why h2,
  .home-curriculum h2,
  .home-events h2,
  .home-team h2,
  .home-newsletter h2 {
    font-size: 36px;
  }

  .home-media-stat {
    width: calc(100% - 18px);
    margin-left: 18px;
  }

  .home-media-stat img {
    height: 310px;
  }

  .home-media-stat figcaption {
    left: -18px;
    width: 190px;
  }

  .home-question {
    min-height: 350px;
  }

  .home-question blockquote {
    padding: 34px 24px;
    font-size: 23px;
  }

  .home-why__heading,
  .home-principles,
  .home-curriculum__grid,
  .home-event-grid,
  .home-team-grid {
    grid-template-columns: 1fr;
  }

  .home-why__heading {
    gap: 8px;
  }

  .home-why__heading > p {
    margin-top: 28px;
  }

  .home-why__body {
    margin-top: 48px;
  }

  .home-principles article,
  .home-principles article:nth-child(even) {
    min-height: 0;
    padding: 34px 0;
    border-left: 0;
    border-bottom: 1px solid #dce4e7;
  }

  .home-principles article:last-child {
    border-bottom: 0;
  }

  .home-media-stat--tall {
    margin-right: 0;
  }

  .home-media-stat--tall img {
    height: 470px;
  }

  .home-curriculum__intro br {
    display: none;
  }

  .home-curriculum__grid article {
    min-height: 0;
    padding: 34px 28px;
  }

  .home-events {
    padding-block: 78px;
  }

  .home-section-heading {
    margin-bottom: 45px;
    align-items: flex-start;
    flex-direction: column;
  }

  .home-event-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .home-event-card__image {
    height: 230px;
  }

  .home-founder figure img {
    height: 440px;
  }

  .home-founder figcaption {
    right: -10px;
  }

  .home-newsletter {
    padding-block: 68px;
  }

  .home-newsletter__form > div {
    grid-template-columns: 1fr;
  }

  .home-newsletter__form button {
    width: 100%;
  }

  .home-cta {
    min-height: 520px;
    padding-block: 78px;
  }

  .home-cta h2 {
    font-size: 42px;
  }

  .home-cta p {
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* About page — Figma frame: Website Design Implementation */
.about-story {
  background: #fff;
}

.story-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

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

.story-hero__image {
  filter: grayscale(1);
  object-fit: cover;
  object-position: center 52%;
}

.story-hero__overlay {
  background: rgba(4, 54, 59, 0.82);
}

.story-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 610px;
  padding-top: 116px;
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-kicker {
  margin: 0;
  color: #376ea8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.4;
  text-transform: uppercase;
}

.story-kicker--light {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
}

.story-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 5.25vw, 76px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.story-hero blockquote {
  max-width: 690px;
  margin: 46px 0 0;
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-style: normal;
  line-height: 1.75;
}

.story-section {
  padding-block: 126px 136px;
}

.story-section--mission {
  padding-block: 128px 145px;
}

.story-section--soft {
  background: #f3f6fa;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(170px, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: start;
}

.story-copy h2 {
  margin: -8px 0 38px;
  font-size: clamp(34px, 3.1vw, 47px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.story-prose,
.story-intro {
  color: #6f797d;
  font-size: 13px;
  line-height: 1.84;
}

.story-prose p,
.story-intro {
  margin: 0 0 24px;
}

.story-prose p:last-child {
  margin-bottom: 0;
}

.freedom-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.freedom-card {
  min-height: 264px;
  padding: 46px 48px;
  color: #5f6b6f;
  background: #fff;
}

.freedom-card--dark {
  color: rgba(255, 255, 255, 0.72);
  background: var(--teal);
}

.freedom-card h3,
.chapter-card h3,
.philosophy-item h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.freedom-card--dark h3 {
  color: #fff;
}

.freedom-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}

.story-section--vision {
  padding-block: 129px 143px;
}

.chapter-card {
  margin: 42px 0 36px;
  padding: 36px 42px;
  background: #f3f6fa;
}

.chapter-card h3 {
  margin-bottom: 13px;
}

.chapter-card p {
  margin: 0;
  color: #5e696d;
  font-size: 12px;
  line-height: 1.7;
}

.story-section--principles {
  padding-block: 126px 134px;
}

.philosophy-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(56px, 7vw, 112px);
  row-gap: 55px;
}

.philosophy-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
}

.philosophy-item > span {
  padding-top: 2px;
  color: #376ea8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.philosophy-item h3 {
  margin-bottom: 14px;
}

.philosophy-item p {
  margin: 0;
  color: #727c80;
  font-size: 12px;
  line-height: 1.75;
}

.story-section--founder {
  padding-block: 126px 145px;
}

.story-layout--founder-heading {
  margin-bottom: 68px;
}

.story-layout--founder-heading h2 {
  margin-bottom: 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: start;
}

.founder-portrait {
  margin: 0;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 0.77;
  display: block;
  object-fit: cover;
  object-position: 51% center;
}

.founder-portrait figcaption {
  margin-top: 25px;
  padding-left: 18px;
  border-left: 2px solid #37777e;
  color: #7a8488;
  font-size: 9px;
  line-height: 2;
}

.founder-copy blockquote {
  margin: 0 0 42px;
  padding: 4px 0 4px 26px;
  border-left: 2px solid #37777e;
  color: #344145;
  font-size: 16px;
  line-height: 1.72;
}

.story-cta {
  min-height: 505px;
  padding-block: 95px 88px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background: #171927;
}

.story-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-cta__statement {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.story-cta__rule {
  width: 28px;
  height: 1px;
  margin: 31px 0 28px;
  background: rgba(255, 255, 255, 0.52);
}

.story-cta h2 {
  margin: 0 0 19px;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.story-cta p:not(.story-cta__statement) {
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.story-cta .light-button {
  min-width: 156px;
  padding: 16px 24px;
}

@media (max-width: 820px) {
  .story-layout,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .story-section {
    padding-block: 88px 98px;
  }

  .story-copy h2 {
    margin-top: 0;
  }

  .freedom-grid {
    margin-top: 48px;
  }

  .philosophy-grid {
    margin-top: 52px;
  }

  .story-layout--founder-heading {
    margin-bottom: 44px;
  }

  .founder-grid {
    gap: 52px;
  }

  .founder-portrait {
    max-width: 430px;
  }
}

@media (max-width: 540px) {
  .story-hero,
  .story-hero__inner {
    min-height: 530px;
  }

  .story-hero__inner {
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .story-hero h1 {
    font-size: 48px;
  }

  .story-hero blockquote {
    margin-top: 36px;
  }

  .desktop-break {
    display: none;
  }

  .freedom-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .freedom-card {
    min-height: 0;
    padding: 36px 30px;
  }

  .philosophy-grid {
    row-gap: 38px;
  }

  .founder-copy blockquote {
    font-size: 15px;
  }

  .story-cta {
    min-height: 470px;
    padding-block: 76px;
  }

  .story-cta__statement {
    font-size: 17px;
  }
}

/* Journal detail — Figma frame: Journal entry */
.journal-entry-hero {
  position: relative;
  min-height: 495px;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

.journal-entry-hero > img,
.journal-entry-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journal-entry-hero > img {
  object-fit: cover;
  object-position: center 48%;
}

.journal-entry-hero__overlay {
  background: linear-gradient(90deg, rgba(7, 54, 58, 0.86), rgba(7, 54, 58, 0.53) 62%, rgba(7, 54, 58, 0.38));
}

.journal-entry-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 495px;
  padding-top: 112px;
  padding-bottom: 72px;
  padding-left: calc(var(--gutter) + 170px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-entry-hero__section {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.journal-entry-hero__section > span:first-child {
  margin-right: 9px;
  font-size: 7px;
}

.journal-entry-hero__meta {
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.journal-entry-hero__meta > span {
  padding: 8px 13px;
  color: #2a454a;
  background: rgba(255, 255, 255, 0.82);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.journal-entry-hero h1 {
  margin: 0;
  font-size: clamp(37px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.journal-entry-hero__summary {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.journal-entry {
  padding-block: 86px 105px;
}

.journal-entry__content {
  width: min(calc(100% - 44px), 720px);
  margin-inline: auto;
}

.journal-entry__lead {
  margin: 0 0 63px;
  padding-bottom: 47px;
  border-bottom: 1px solid #e0e5e7;
  color: #303c40;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.journal-rich-text {
  color: #7b8589;
  font-size: 13px;
  line-height: 1.85;
}

.journal-rich-text h2,
.journal-rich-text h3,
.journal-rich-text h4 {
  margin: 68px 0 28px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.journal-rich-text h2:first-child {
  margin-top: 0;
}

.journal-rich-text h2 {
  font-size: 27px;
}

.journal-rich-text h3 {
  font-size: 22px;
}

.journal-rich-text h4 {
  font-size: 18px;
}

.journal-rich-text p {
  margin: 0 0 27px;
  white-space: pre-line;
}

.journal-rich-text blockquote {
  margin: 47px 0 54px;
  padding: 3px 0 3px 27px;
  border-left: 2px solid #3f757a;
  color: #354347;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
}

.journal-rich-text blockquote strong,
.journal-rich-text blockquote em {
  font: inherit;
}

.journal-rich-text ul,
.journal-rich-text ol {
  margin: 0 0 30px;
  padding-left: 24px;
}

.journal-rich-text li + li {
  margin-top: 8px;
}

.journal-rich-text a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.journal-rich-text hr {
  margin: 52px 0;
  border: 0;
  border-top: 1px solid #e0e5e7;
}

.journal-author {
  margin-top: 67px;
  padding-top: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #e0e5e7;
}

.journal-author__avatar {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.journal-author strong {
  display: block;
  margin-bottom: 5px;
  color: #2f3b3f;
  font-size: 12px;
}

.journal-author p {
  margin: 0;
  color: #8a9396;
  font-size: 9px;
}

@media (max-width: 820px) {
  .journal-entry-hero__inner {
    padding-left: var(--gutter);
  }
}

@media (max-width: 540px) {
  .journal-entry-hero,
  .journal-entry-hero__inner {
    min-height: 465px;
  }

  .journal-entry-hero__inner {
    padding-top: 82px;
    padding-bottom: 64px;
  }

  .journal-entry-hero h1 {
    font-size: 40px;
  }

  .journal-entry-hero__summary {
    line-height: 1.65;
  }

  .journal-entry {
    padding-block: 70px 84px;
  }

  .journal-entry__content {
    width: min(calc(100% - 44px), 720px);
  }

  .journal-entry__lead {
    margin-bottom: 50px;
    padding-bottom: 38px;
    font-size: 16px;
  }

  .journal-rich-text h2 {
    font-size: 24px;
  }

  .journal-rich-text blockquote {
    font-size: 17px;
  }
}

/* Journal overview — Figma frame: Journal */
.journal-index-hero {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

.journal-index-hero > img,
.journal-index-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journal-index-hero > img {
  object-fit: cover;
  object-position: center 57%;
}

.journal-index-hero__overlay {
  background: rgba(5, 55, 59, 0.79);
}

.journal-index-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 445px;
  padding-top: 104px;
  padding-bottom: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-index-hero .story-kicker {
  margin-bottom: 32px;
}

.journal-index-hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.journal-index-hero__inner > p:last-child {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.72;
}

.journal-index {
  padding-block: 82px 118px;
  background: #fff;
}

.journal-index__list {
  display: grid;
  gap: 46px;
}

.journal-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journal-card__image {
  display: block;
  min-height: 430px;
  overflow: hidden;
  background: #dce3e5;
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms ease;
}

.journal-card__image:hover img {
  transform: scale(1.02);
}

.journal-card__body {
  min-height: 430px;
  padding: 61px 58px 54px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #f3f6fa;
}

.journal-card__meta {
  margin-bottom: 33px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #838d90;
  font-size: 9px;
}

.journal-card__meta span {
  color: #36717a;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journal-card h2 {
  margin: 0 0 25px;
  color: var(--ink);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.journal-card h2 a:hover {
  color: var(--teal);
}

.journal-card__body > p {
  max-width: 520px;
  margin: 0 0 34px;
  color: #727d81;
  font-size: 12px;
  line-height: 1.75;
}

.journal-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #253336;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-card__link b {
  font-size: 14px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.journal-card__link:hover b {
  transform: translateX(4px);
}

.journal-index__empty {
  margin: 0;
  padding: 70px;
  text-align: center;
  color: var(--muted);
  background: #f3f6fa;
}

@media (max-width: 820px) {
  .journal-card {
    grid-template-columns: 1fr;
  }

  .journal-card__image {
    min-height: 360px;
  }

  .journal-card__body {
    min-height: 360px;
  }
}

@media (max-width: 540px) {
  .journal-index-hero,
  .journal-index-hero__inner {
    min-height: 410px;
  }

  .journal-index-hero__inner {
    padding-top: 78px;
    padding-bottom: 62px;
  }

  .journal-index-hero h1 {
    font-size: 52px;
  }

  .journal-index {
    padding-block: 58px 78px;
  }

  .journal-card__image {
    min-height: 260px;
  }

  .journal-card__body {
    min-height: 380px;
    padding: 40px 30px;
  }
}

/* Shared legal pages */
.legal-hero {
  color: #fff;
  background: var(--teal);
}

.legal-hero__inner {
  min-height: 360px;
  padding-top: 88px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legal-hero .eyebrow {
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.68);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-hero__inner > p:last-child {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.legal-content {
  padding-block: 112px 132px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(62px, 10vw, 150px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 42px;
}

.legal-summary > p {
  margin: 0 0 31px;
  color: #4e5c60;
  font-size: 16px;
  line-height: 1.72;
}

.legal-summary > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
}

.legal-prose {
  color: #667277;
  font-size: 13px;
  line-height: 1.84;
}

.legal-prose > section {
  padding-bottom: 48px;
  scroll-margin-top: 28px;
}

.legal-prose > section + section {
  padding-top: 48px;
  border-top: 1px solid #e1e6e7;
}

.legal-prose > section:last-child {
  padding-bottom: 0;
}

.legal-prose h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.legal-prose p,
.legal-prose ul,
.legal-prose address {
  margin: 0 0 20px;
}

.legal-prose p:last-child,
.legal-prose ul:last-child,
.legal-prose address:last-child {
  margin-bottom: 0;
}

.legal-prose ul {
  padding-left: 22px;
}

.legal-prose li + li {
  margin-top: 8px;
}

.legal-prose address {
  padding: 24px 27px;
  border-left: 2px solid #3e777c;
  color: #536166;
  background: #f3f6f8;
  font-style: normal;
}

.legal-prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  margin: 31px 0;
  overflow-x: auto;
  border: 1px solid #dde4e6;
}

.legal-prose table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: #fff;
}

.legal-prose th,
.legal-prose td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #dde4e6;
}

.legal-prose tr:last-child td {
  border-bottom: 0;
}

.legal-prose th {
  color: #fff;
  background: var(--teal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-prose td {
  font-size: 12px;
  line-height: 1.65;
}

.legal-prose td:first-child {
  color: #334145;
  font-weight: 600;
}

@media (max-width: 820px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .legal-summary {
    position: static;
    max-width: 560px;
  }
}

@media (max-width: 540px) {
  .legal-hero__inner {
    min-height: 320px;
    padding-top: 72px;
    padding-bottom: 58px;
  }

  .legal-hero h1 {
    font-size: 48px;
  }

  .legal-content {
    padding-block: 76px 92px;
  }

  .legal-layout {
    gap: 58px;
  }

  .legal-prose h2 {
    font-size: 22px;
  }
}
