/* =========================================================
   NATUR
   VERSION 12
   SEO / SEMANTIC REFINEMENT
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

  --warm-white: #f7f6f1;
  --warm-white-2: #efeee8;
  --white: #ffffff;

  --charcoal: #20272b;
  --charcoal-soft: #30383b;
  --text: #263034;
  --text-soft: #596267;

  --teal: #4d8a78;
  --teal-dark: #376b5d;
  --teal-light: #dce9e3;

  --line: #d8ddd8;
  --line-dark: #bfc9c4;

  --shadow:
    0 18px 50px rgba(32, 39, 43, 0.08);

  --shadow-soft:
    0 10px 30px rgba(32, 39, 43, 0.06);

  --radius: 4px;

  --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--charcoal);
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 700;
}

h1 span {
  color: var(--teal-dark);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-top: 0;
}

.section-eyebrow,
.eyebrow {
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 54px;
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.75;
}

.large-text {
  font-family: "Manrope", sans-serif;
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.55;
  font-weight: 500;
}


/* =========================================================
   LAYOUT
========================================================= */

.container {
  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin-inline: auto;
}

.section {
  padding: 120px 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background:
    rgba(247, 246, 241, 0.94);

  border-bottom: 1px solid rgba(32, 39, 43, 0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
}

.brand-name {
  color: var(--charcoal);
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-desc {
  margin-top: 7px;
  color: var(--teal-dark);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav a {
  position: relative;

  color: var(--charcoal-soft);

  font-size: 0.84rem;
  font-weight: 600;

  transition:
    color 0.2s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--teal);

  transition:
    width 0.2s ease;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.main-nav a:hover::after {
  width: 100%;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;

  padding: 0;

  border: 1px solid var(--line);
  border-radius: 50%;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 18px;
  height: 2px;

  margin: 5px auto;

  background: var(--charcoal);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: calc(100vh - 88px);

  display: flex;
  align-items: center;

  padding:
    90px 0
    100px;

  background:
    linear-gradient(
      180deg,
      #faf9f5 0%,
      var(--warm-white) 100%
    );
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(400px, 0.98fr);

  align-items: center;

  gap: 80px;
}

.hero-copy {
  max-width: 700px;
}

.hero-text {
  max-width: 650px;

  margin-bottom: 38px;

  color: var(--text-soft);

  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;

  min-height: 52px;

  align-items: center;
  justify-content: center;

  padding:
    0 25px;

  border: 1px solid transparent;

  font-size: 0.88rem;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--charcoal);
  color: white;
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}


/* =========================================================
   HERO INTERSECTION
========================================================= */

.intersection-card {
  background: transparent;
  color: var(--charcoal);

  padding: 0;

  min-height: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: none;
}

.intersection-label {
  margin-bottom: 28px;

  color: var(--teal-dark);

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
}

.intersection-visual {
  width: 100%;
  max-width: 570px;

  margin: 0 auto;
}

.intersection-visual img {
  display: block;

  width: 100%;
  height: auto;
}

.intersection-summary {
  max-width: 500px;

  margin:
    22px auto 0;

  color: var(--text-soft);

  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 600;

  text-align: center;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.85fr);

  gap: 90px;

  align-items: start;
}

.about-copy {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.about-copy p + p {
  margin-top: 25px;
}

.principle-inline {
  max-width: 760px;

  margin-top: 70px;
  padding: 30px 35px;

  border-left: 4px solid var(--teal);

  background: var(--warm-white-2);

  color: var(--charcoal);

  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities-section {
  background: var(--warm-white);
}

.capabilities-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;
}

.capability-card {
  padding: 38px;

  background: var(--white);

  border: 1px solid var(--line);

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.capability-card:hover {
  transform: translateY(-4px);

  border-color: #b8c9c2;

  box-shadow: var(--shadow);
}

.capability-card:last-child {
  grid-column: span 2;
}

.capability-top {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-bottom: 28px;
}

.capability-number {
  color: var(--teal-dark);

  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-line {
  width: 60px;
  height: 1px;

  background: var(--teal);
}

.capability-card h3 {
  max-width: 500px;
  font-size: 1.65rem;
}

.capability-card > p {
  color: var(--text-soft);

  font-size: 1.04rem;
  line-height: 1.7;
}

.capability-card ul {
  margin:
    25px 0;

  padding-left: 20px;

  color: var(--text);

  font-size: 1rem;
  line-height: 1.75;

  columns: 2;
  column-gap: 35px;
}

.capability-card li {
  margin-bottom: 5px;
  break-inside: avoid;
}

.capability-note {
  padding-top: 20px;

  border-top: 1px solid var(--line);

  color: var(--teal-dark) !important;

  font-size: 0.94rem !important;
  font-weight: 600;
}

.capability-disclaimer {
  max-width: 900px;

  margin-top: 35px;
  padding: 25px 30px;

  border-left: 3px solid var(--teal);

  background: var(--white);
}

.capability-disclaimer strong {
  display: block;

  margin-bottom: 7px;

  color: var(--charcoal);

  font-family: "Manrope", sans-serif;
}

.capability-disclaimer p {
  margin-bottom: 0;

  color: var(--text-soft);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
  background: var(--charcoal);
  color: #eef2ef;
}

.experience-section h2 {
  color: white;
}

.experience-section .section-eyebrow {
  color: #91b8aa;
}

.experience-section .section-intro {
  color: #c6d0cc;
}

.experience-disclaimer {
  max-width: 900px;

  margin-bottom: 55px;
  padding: 25px 30px;

  border-left: 3px solid var(--teal);

  background: rgba(255, 255, 255, 0.06);
}

.experience-disclaimer strong {
  color: white;
}

.experience-disclaimer p {
  margin:
    7px 0 0;

  color: #cbd4d0;
}

.experience-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 20px;
}

.experience-card {
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.035);

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.experience-card:hover {
  background: rgba(255, 255, 255, 0.055);

  border-color:
    rgba(77, 138, 120, 0.5);
}

.experience-category {
  margin-bottom: 18px;

  color: #8fb6a8;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.experience-card h3 {
  color: white;
}

.experience-card > p:not(.experience-category) {
  color: #c8d1cd;

  font-size: 1rem;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 25px;
}

.experience-tags span {
  padding:
    5px 10px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  color: #b8c8c1;

  font-size: 0.72rem;
  font-weight: 600;
}


/* =========================================================
   LEADERSHIP
========================================================= */

.leadership-section {
  background: var(--white);
}

.leadership-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.leader-card {
  overflow: hidden;

  border: 1px solid var(--line);

  background: var(--warm-white);

  box-shadow: var(--shadow-soft);
}

.portrait-placeholder {
  height: 300px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #dfe6e2,
      #cbd7d2
    );

  display: flex;

  align-items: flex-end;
  justify-content: flex-start;

  padding: 0;
}

.portrait-placeholder img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;
}

.portrait-placeholder span {
  color: var(--teal-dark);

  font-family: "Manrope", sans-serif;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.16em;
}

.leader-content {
  padding: 32px;
}

.leader-role {
  margin-bottom: 9px;

  color: var(--teal-dark);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.leader-content h3 {
  margin-bottom: 20px;

  font-size: 1.65rem;
}

.leader-summary {
  color: var(--text-soft);

  font-size: 0.97rem;
  line-height: 1.7;
}

.leader-expertise {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;

  margin-top: 23px;
}

.leader-expertise span {
  padding:
    5px 9px;

  background: var(--teal-light);

  color: var(--teal-dark);

  font-size: 0.69rem;
  font-weight: 700;
}

.education {
  margin-top: 27px;
  padding-top: 22px;

  border-top: 1px solid var(--line);
}

.education strong {
  display: block;

  margin-bottom: 7px;

  color: var(--charcoal);

  font-family: "Manrope", sans-serif;

  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.education p {
  margin-bottom: 0;

  color: var(--text-soft);

  font-size: 0.85rem;
  line-height: 1.7;
}

.leadership-note {
  max-width: 900px;

  margin-top: 35px;
  padding: 24px 30px;

  border-left: 3px solid var(--teal);

  background: var(--warm-white-2);
}

.leadership-note strong {
  display: block;

  margin-bottom: 6px;

  color: var(--charcoal);
}

.leadership-note p {
  margin-bottom: 0;

  color: var(--text-soft);

  font-size: 0.92rem;
}


/* =========================================================
   NETWORK
========================================================= */

.network-section {
  background: var(--warm-white);
}

.network-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  gap: 90px;

  align-items: start;
}

.network-copy {
  color: var(--text-soft);

  font-size: 1.05rem;
}

.network-highlight {
  margin-top: 35px;

  color: var(--charcoal);

  font-family: "Manrope", sans-serif;

  font-size: 1.3rem;
  line-height: 1.45;
  font-weight: 700;
}

.discipline-list {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.discipline-list span {
  padding:
    10px 14px;

  border: 1px solid var(--line);

  background: var(--white);

  color: var(--charcoal);

  font-size: 0.88rem;
  font-weight: 600;
}

.network-academic {
  max-width: 900px;

  margin-top: 70px;
  padding: 32px;

  background: var(--white);

  border: 1px solid var(--line);
}

.network-academic h3 {
  font-size: 1.25rem;
}

.network-academic p {
  margin-bottom: 0;

  color: var(--text-soft);
}


/* =========================================================
   DELIVERY
========================================================= */

.delivery-section {
  background: var(--white);
}

.delivery-flow {
  max-width: 850px;

  margin:
    0 auto 55px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivery-step {
  width: min(100%, 620px);

  padding:
    22px 28px;

  border: 1px solid var(--line);

  background: var(--warm-white);

  display: grid;

  grid-template-columns:
    45px 1fr;

  column-gap: 15px;
}

.delivery-step span {
  grid-row: span 2;

  color: var(--teal-dark);

  font-family: "Manrope", sans-serif;

  font-size: 0.76rem;
  font-weight: 800;
}

.delivery-step strong {
  color: var(--charcoal);

  font-family: "Manrope", sans-serif;
}

.delivery-step small {
  color: var(--text-soft);

  font-size: 0.82rem;
}

.delivery-arrow {
  padding:
    8px 0;

  color: var(--teal);

  font-size: 1.3rem;
  font-weight: 700;
}

.delivery-final {
  width: min(100%, 620px);

  padding:
    25px 30px;

  background: var(--charcoal);

  color: white;

  font-family: "Manrope", sans-serif;

  font-size: 1.25rem;
  font-weight: 700;

  text-align: center;
}

.delivery-conclusion {
  max-width: 850px;

  margin-inline: auto;

  color: var(--text-soft);

  text-align: center;

  font-size: 1.05rem;
}


/* =========================================================
   INNOVATION
========================================================= */

.innovation-section {
  background: var(--warm-white);
}

.innovation-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 90px;
}

.innovation-grid > div:last-child {
  color: var(--text-soft);

  font-size: 1.04rem;
}


/* =========================================================
   WHY NATUR
========================================================= */

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 1px;

  background: var(--line);

  border: 1px solid var(--line);
}

.why-grid article {
  padding: 35px;

  background: var(--white);
}

.why-grid article > span {
  display: block;

  margin-bottom: 20px;

  color: var(--teal-dark);

  font-family: "Manrope", sans-serif;

  font-size: 0.75rem;
  font-weight: 800;
}

.why-grid h3 {
  font-size: 1.25rem;
}

.why-grid p {
  margin-bottom: 0;

  color: var(--text-soft);

  font-size: 0.95rem;
}


/* =========================================================
   PRINCIPLE
========================================================= */

.principle-section {
  padding: 130px 0;

  background:
    linear-gradient(
      135deg,
      var(--charcoal),
      #293438
    );

  color: white;
}

.principle-section .section-eyebrow {
  color: #91b8aa;
}

.principle-section blockquote {
  max-width: 1000px;

  margin: 0;
}

.principle-section blockquote p {
  margin-bottom: 25px;

  color: white;

  font-family: "Manrope", sans-serif;

  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.principle-section blockquote p:last-child {
  color: #a9c9bd;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background: var(--warm-white);
}

.contact-intro {
  max-width: 780px;

  margin-bottom: 65px;

  color: var(--text-soft);

  font-size: 1.12rem;
  line-height: 1.75;
}

.contact-details {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 1px;

  background: var(--line);

  border: 1px solid var(--line);
}

.contact-details > div {
  min-height: 125px;

  padding: 27px;

  background: var(--white);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details strong {
  margin-bottom: 7px;

  color: var(--charcoal);

  font-family: "Manrope", sans-serif;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details span,
.contact-details a {
  color: var(--text-soft);

  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--teal-dark);
}

.contact-brand strong {
  color: var(--charcoal);

  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.contact-brand span {
  color: var(--teal-dark);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 30px 0;

  background: var(--charcoal);

  color: #b8c3bf;
}

.footer-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
}

.footer-inner strong {
  color: white;

  font-family: "Manrope", sans-serif;

  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.footer-inner span {
  color: #8fa79f;

  font-size: 0.7rem;
}

.footer-inner p {
  margin: 0;

  font-size: 0.76rem;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero {
    padding:
      80px 0;
  }

  .leadership-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .leader-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin-inline: auto;
  }

  .why-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 820px) {

  body {
    font-size: 16px;
  }

  .container {
    width: min(
      calc(100% - 34px),
      var(--container)
    );
  }

  .section {
    padding: 82px 0;
  }


  /* HEADER */

  .nav-wrap {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;

    top: 76px;
    left: 0;
    right: 0;

    display: none;

    padding:
      20px 24px 28px;

    flex-direction: column;
    align-items: stretch;

    gap: 0;

    background: var(--warm-white);

    border-bottom:
      1px solid var(--line);

    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;

    border-bottom:
      1px solid var(--line);

    font-size: 0.9rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding:
      72px 0
      78px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  h1 {
    font-size: clamp(2.9rem, 12vw, 4.5rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-side {
    width: 100%;
  }

  .intersection-visual {
    max-width: 600px;
  }


  /* ABOUT */

  .about-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  /* CAPABILITIES */

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capability-card:last-child {
    grid-column: auto;
  }

  .capability-card {
    padding: 29px;
  }

  .capability-card h3 {
    font-size: 1.45rem;
  }

  .capability-card ul {
    columns: 1;

    font-size: 0.98rem;
  }


  /* EXPERIENCE */

  .experience-grid {
    grid-template-columns: 1fr;
  }


  /* LEADERSHIP */

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card:last-child {
    grid-column: auto;

    max-width: none;
  }


  /* NETWORK */

  .network-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  /* DELIVERY */

  .delivery-step {
    grid-template-columns:
      38px 1fr;
  }


  /* INNOVATION */

  .innovation-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  /* WHY */

  .why-grid {
    grid-template-columns: 1fr;
  }


  /* CONTACT */

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details > div {
    min-height: 105px;
  }


  /* FOOTER */

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding:
      60px 0
      65px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .intersection-label {
    font-size: 0.72rem;
  }

  .intersection-summary {
    font-size: 0.98rem;
  }

  .portrait-placeholder {
    height: 280px;
  }

  .leader-content {
    padding: 27px;
  }

  .principle-section {
    padding: 90px 0;
  }

  .principle-section blockquote p {
    font-size: 1.75rem;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

}