/* Design tokens */
:root {
  --color-primary: #231f20;
  --color-primary-soft: #2d282a;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-muted: #d7d3d4;
  --color-border: rgba(255, 255, 255, 0.7);
  --color-header-border: #dddddd;
  --color-secondary: #F1601E;
  --color-financial-accent: #F1601E;

  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;

  --container-width: 75rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius-sm: 0.125rem;
  --radius-pill: 999px;

  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --shadow-header: 0 1px 0 rgba(0, 0, 0, 0.08);
  --transition: 180ms ease;
}

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


@font-face {
  font-family: 'micons';
  src: url('../font/micons.eot?21699104');
  src: url('../font/micons.eot?21699104#iefix') format('embedded-opentype'),
       url('../font/micons.woff2?21699104') format('woff2'),
       url('../font/micons.woff?21699104') format('woff'),
       url('../font/micons.ttf?21699104') format('truetype'),
       url('../font/micons.svg?21699104#micons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'micons';
    src: url('../font/micons.svg?21699104#micons') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "micons";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-arrow-4:before { content: '\e800'; } /* '' */


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* background: var(--color-primary); */
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

/**
 * Allow full-width Cover blocks to break out of a constrained container.
 */
.wp-block-cover.alignfull {
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
  padding: 60px 0;
}

/**
 * Keep the Cover block's text aligned with the site's normal content width.
 */
.wp-block-cover.alignfull > .wp-block-cover__inner-container {
	/* width: min(calc(100% - 40px), 1200px); */
	margin-right: auto;
	margin-left: auto;
}



/* =========================================================
   Site container and full-width Cover alignment
   ========================================================= */

:root {
	--site-container-width: 1200px;
	--site-container-gutter: clamp(1.25rem, 4vw, 3.75rem);
}

/*
 * Use the same dimensions for normal containers and
 * full-width Cover inner content.
 */
.container,
.wp-block-cover.alignfull
	> .wp-block-cover__inner-container {
	width: min(
		var(--site-container-width),
		calc(
			100% -
			(2 * var(--site-container-gutter))
		)
	);

	max-width: none;
	margin-inline: auto;
	box-sizing: border-box;
}

/*
 * The Cover background remains full width, while its
 * horizontal spacing is controlled by the inner container.
 */
.wp-block-cover.alignfull {
	padding-right: 0;
	padding-left: 0;
}

/*
 * Prevent WordPress constrained-layout rules from applying
 * a second, narrower width inside the Cover container.
 */
.wp-block-cover.alignfull
	> .wp-block-cover__inner-container.is-layout-constrained
	> :where(
		:not(.alignleft)
		:not(.alignright)
		:not(.alignfull)
	) {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  min-height: 4.1rem;
  background: var(--color-white);
  color: var(--color-black);
  border-top: 2px solid var(--color-primary);
  box-shadow: var(--shadow-header);
  padding: 8px 0;
}

.header__inner {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

a.brand img {
    width: 260px;
}

.brand__mark {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  overflow: hidden;
  border-radius: 50%;
  background: #242124;
}

.brand__mark span {
  position: absolute;
  background: #777477;
}

.brand__mark span:nth-child(1) {
  width: 2.2rem;
  height: 1.15rem;
  top: -0.2rem;
  left: -0.35rem;
  border-radius: 60% 30% 70% 30%;
  transform: rotate(15deg);
}

.brand__mark span:nth-child(2) {
  width: 1.5rem;
  height: 1.55rem;
  right: -0.2rem;
  bottom: -0.35rem;
  border-radius: 60% 40% 30% 70%;
  background: #111111;
}

.brand__mark span:nth-child(3) {
  width: 1.25rem;
  height: 0.85rem;
  right: -0.1rem;
  top: 0.35rem;
  border-radius: 50%;
  transform: rotate(-25deg);
  background: #efefef;
}

.brand__text {
  display: grid;
  gap: 0.12rem;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.3vw, 0.95rem);
  line-height: 1.15;
  white-space: nowrap;
}

.brand__text small {
  font-family: var(--font-display);
  font-size: 0.48rem;
  font-weight: 700;
  text-align: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex: 1;
}

.primary-nav__links,
.primary-nav__actions {
  display: flex;
  align-items: center;
}

.primary-nav__links {
  gap: clamp(1rem, 2.2vw, 2rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav__links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: var(--color-secondary);
  transition: right var(--transition);
}

.primary-nav__links a:hover::after,
.primary-nav__links a:focus-visible::after {
  right: 0;
}

.primary-nav__actions {
  gap: 0.75rem;
}

.search-button {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.search-button svg {
  width: 1.15rem;
  fill: none;
  stroke: var(--color-white);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin-block: 0.28rem;
  background: var(--color-primary);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

/* Buttons */
.button {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: clamp(0.68rem, 0.9vw, 0.8rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--compact {
  min-height: 2.5rem;
  padding-inline: 1.45rem;
  font-size: 13px;
}

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

.button--dark:hover,
.button--dark:focus-visible {
  background: #3b3537;
}

.button--light {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
}

.button--light:hover,
.button--light:focus-visible {
  background: #ece9ea;
}

.button--outline {
  border-color: var(--color-border);
  background: rgba(35, 31, 32, 0.18);
  color: var(--color-white);
  backdrop-filter: blur(2px);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--color-white);
  color: var(--color-primary);
}

/* About */
.about {
  background: var(--color-primary);
  padding-block: clamp(2.5rem, 6vw, 4.75rem);
  position: relative;
}

section#about::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, rgba(35, 31, 32, 0.00) 0%, rgba(35, 31, 32, 0.19) 14.42%, rgba(35, 31, 32, 0.37) 27.4%, rgba(35, 31, 32, 0.68) 50.96%, rgba(35, 31, 32, 0.82) 65.38%, #231F20 100%);
    top: -50px;
}

.about__grid {
  /* display: grid;
  grid-template-columns: minmax(14rem, 0.75fr) minmax(0, 1.6fr);
  gap: clamp(2rem, 7vw, 6rem); */
  align-items: start;
}

.about__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  color: var(--color-white);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.about__copy {
  display: grid;
  grid-template-columns: clamp(3.5rem, 8vw, 6.5rem) 1fr;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
  padding-top: 1.5rem;
}

.about__rule {
  width: 100%;
  height: 2px;
  margin-top: 0.3rem;
  background: rgba(255, 255, 255, 0.58);
}

.about__copy p {
  margin: 0;
  /* max-width: 49rem; */
  color: var(--color-white);
  font-size: clamp(0.93rem, 1.55vw, 1.12rem);
  line-height: 1.25;
}

/* Responsive navigation */
@media (max-width: 62rem) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 30;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.42rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.42rem) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem var(--gutter) 2rem;
    background: var(--color-white);
    border-top: 1px solid var(--color-header-border);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.5rem);
    pointer-events: none;
    transition:
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
    justify-content: flex-start;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav__links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav__links a {
    display: block;
    padding-block: 0.75rem;
    font-size: 0.9rem;
  }

  .primary-nav__actions {
    justify-content: flex-start;
  }

  .button--compact {
    font-size: 0.78rem;
  }
}

@media (max-width: 47.99rem) {
  .site-header,
  .header__inner {
    min-height: 4.5rem;
  }

  .brand__mark {
    width: 2rem;
    height: 2rem;
  }

  .brand__text strong {
    font-size: 0.76rem;
  }


  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__copy {
    grid-template-columns: 4rem 1fr;
    gap: 1.25rem;
    padding-top: 0;
  }
}

@media (max-width: 30rem) {
  .brand__text small {
    text-align: left;
  }

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

  .about__rule {
    width: 4.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}



/* =========================================================
   Operations and Projects
   ========================================================= */

.operations-projects {
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-primary);
  /* padding-block: clamp(4rem, 8vw, 7rem); */
}

.operations-projects__header {
  display: grid;
  grid-template-columns: minmax(13rem, 0.65fr) minmax(0, 1.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.operations-projects__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.operations-projects__heading-line {
    display: block;
    width: clamp(5rem, 10vw, 7.5rem);
    height: 0.2rem;
    margin-top: clamp(1.25rem, 2vw, 1.75rem);
    background: #F1601E;
}

.operations-projects__intro {
  max-width: 56rem;
  margin: 0 0 0.25rem;
  color: var(--color-primary);
  font-size: clamp(0.95rem, 1.55vw, 1.15rem);
  font-weight: 400;
  line-height: 1.35;
}

.operations-slider-wrapper {
  position: relative;
  overflow-x: hidden;
}

.operations-carousel {
  position: relative;
}

/*
 * Allows the centre slide to become taller without being
 * cropped by Owl Carousel's default stage container.
 */
.operations-carousel .owl-stage-outer {
  overflow: visible;
}

.operations-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.operations-carousel .owl-item {
  display: flex;
  align-items: center;
}

.operation-card {
  width: 100%;
  height: clamp(18rem, 31vw, 24rem);
  transition:
    height 350ms ease,
    transform 350ms ease,
    opacity 350ms ease;
}

.operation-card__link {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  background: var(--color-primary);
}

.operation-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.operation-card__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(
      180deg,
      rgba(35, 31, 32, 0) 45%,
      rgba(35, 31, 32, 0.9) 100%
    );
  transition: opacity 350ms ease;
}

.operation-card__content {
  position: absolute;
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  left: clamp(1rem, 2vw, 1.75rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 350ms ease,
    transform 350ms ease,
    visibility 350ms ease;
}

.operation-card__content h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.operation-card__button {
  position: relative;
  width: clamp(2.5rem, 4vw, 3rem);
  height: clamp(2.5rem, 4vw, 3rem);
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--color-white);
}

.operation-card__button span {
  position: absolute;
  width: 0.9rem;
  height: 0.1rem;
  background: var(--color-primary);
}

.operation-card__button span:last-child {
  transform: rotate(90deg);
}

/* Active centre slide */
.operations-carousel .owl-item.center .operation-card {
  height: clamp(25rem, 43vw, 32rem);
}

.operations-carousel .owl-item.center .operation-card__overlay {
  opacity: 1;
}

.operations-carousel .owl-item.center .operation-card__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.operation-card__link:hover .operation-card__image,
.operation-card__link:focus-visible .operation-card__image {
  transform: scale(1.045);
}

/* Bottom navigation */
.operations-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(1.25rem, 2vw, 2rem);
}

.operations-slider__navigation {
  display: flex;
  gap: 0.55rem;
}

.operations-slider__arrow {
  width: clamp(2.6rem, 4vw, 3rem);
  height: clamp(2.6rem, 4vw, 3rem);
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition);
}

.operations-slider__arrow:hover,
.operations-slider__arrow:focus-visible {
  background: var(--color-white);
  color: var(--color-primary);
}

.operations-slider__arrow svg {
  width: 1.25rem;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Custom Owl dots */
.operations-slider__dots {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 6rem;
}

.operations-slider__dots .owl-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.operations-slider__dots .owl-dot {
  width: 0.75rem;
  height: 0.75rem;
  display: block;
  padding: 0;
  border: 1px solid #F1601E;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    width 250ms ease,
    border-radius 250ms ease,
    background-color 250ms ease;
  margin: 0 2px;
}

.operations-slider__dots .owl-dot.active {
  width: 1.85rem;
  border-radius: 999px;
  background: #F1601E;
}

.operations-slider__dots .owl-dot span {
  display: none;
}

/*
 * Owl creates empty spaces beyond the container while centre mode
 * is active. These fades soften the extreme outer edges.
 */
.operations-slider-wrapper::before,
.operations-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 4.5rem;
  z-index: 5;
  width: max(1rem, calc((100vw - var(--container-width)) / 2));
  pointer-events: none;
}

.operations-slider-wrapper::before {
  right: 100%;
  background: linear-gradient(
    90deg,
    var(--color-white),
    rgba(255, 255, 255, 0)
  );
}

.operations-slider-wrapper::after {
  left: 100%;
  background: linear-gradient(
    270deg,
    var(--color-white),
    rgba(255, 255, 255, 0)
  );
}

/* Tablet */
@media (max-width: 62rem) {
  .operations-projects__header {
    grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1.5fr);
    gap: 3rem;
  }

  .operation-card {
    height: clamp(18rem, 42vw, 23rem);
  }

  .operations-carousel .owl-item.center .operation-card {
    height: clamp(23rem, 54vw, 29rem);
  }
}

/* Mobile */
@media (max-width: 47.99rem) {
  .operations-projects__header {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.75rem;
  }

  .operations-projects__intro {
    max-width: 34rem;
  }

  .operations-carousel .owl-stage {
    align-items: stretch;
  }

  .operation-card,
  .operations-carousel .owl-item.center .operation-card {
    height: clamp(26rem, 120vw, 34rem);
  }

  .operation-card__overlay {
    opacity: 1;
  }

  .operation-card__content {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .operations-slider__controls {
    margin-top: 1.25rem;
  }
}

@media (max-width: 30rem) {
  .operations-slider__controls {
    gap: 1rem;
  }

  .operations-slider__arrow {
    width: 2.65rem;
    height: 2.65rem;
  }

  .operation-card,
  .operations-carousel .owl-item.center .operation-card {
    height: 27rem;
  }
}

/* =========================================================
   Discover More
   ========================================================= */

.discover {
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-primary);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.discover__container {
  position: relative;
}

.discover__showcase {
  position: relative;
  min-height: clamp(35rem, 61vw, 45rem);
}

.discover__media {
  position: relative;
  width: min(74%, 54rem);
  margin-left: auto;
  overflow: hidden;
  background: #e9e9e9;
}

.discover__image {
  width: 100%;
  height: clamp(28rem, 44vw, 35rem);
  object-fit: cover;
  transition:
    opacity 250ms ease,
    transform 700ms ease;
}

.discover__showcase.is-changing .discover__image {
  opacity: 0.35;
  transform: scale(1.02);
}

.discover__panel {
  position: absolute;
  top: clamp(3rem, 6vw, 4.5rem);
  left: 0;
  z-index: 3;
  width: min(61%, 44rem);
  min-height: clamp(21rem, 34vw, 27rem);
  padding:
    clamp(2rem, 4vw, 3rem)
    clamp(2rem, 4vw, 3.25rem);
  border-bottom-right-radius: clamp(4rem, 9vw, 8rem);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0.75rem 2rem rgba(35, 31, 32, 0.06);
  backdrop-filter: blur(0.3rem);
  -webkit-backdrop-filter: blur(0.3rem);
}

.discover__panel h2 {
    margin: 0;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: clamp(1rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.discover__line {
  display: block;
  width: clamp(5rem, 10vw, 7.5rem);
  height: 0.2rem;
  margin-block: clamp(1.25rem, 2.4vw, 1.75rem) 1rem;
  background: #F1601E;
}

.discover__tabs {
  width: min(100%, 35rem);
  display: grid;
}

.discover__tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  color: rgba(35, 31, 32, 0.3);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--transition),
    transform var(--transition);
}

.discover__tab:hover,
.discover__tab:focus-visible {
  color: rgba(35, 31, 32, 0.7);
}

.discover__tab.is-active {
  color: var(--color-black);
}

.discover__tab.is-active .discover__arrow {
  transform: translate(0.15rem, -0.15rem);
}

.discover__arrow {
  flex: 0 0 auto;
  font-size: 1.55em;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition);
}

.discover__details {
  width: min(74%, 54rem);
  display: grid;
  grid-template-columns: minmax(12rem, 0.75fr) 1px minmax(0, 1.8fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
  margin-top: 1.4rem;
  margin-left: auto;
}

.discover__detail-title {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.45vw, 1.05rem);
  font-weight: 700;
  line-height: 1.18;
}

.discover__divider {
  width: 1px;
  min-height: 2.5rem;
  background: #F1601E;
}

.discover__description {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 400;
  line-height: 1.25;
}

/* Tablet */
@media (max-width: 62rem) {
  .discover__showcase {
    min-height: 41rem;
  }

  .discover__media {
    width: 78%;
  }

  .discover__panel {
    width: 68%;
  }

  .discover__details {
    width: 78%;
    grid-template-columns: minmax(10rem, 0.8fr) 1px minmax(0, 1.5fr);
  }
}

/* Mobile */
@media (max-width: 47.99rem) {
  .discover {
    padding-block: 4rem;
  }

  .discover__showcase {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .discover__panel {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
    width: calc(100% - 1rem);
    min-height: auto;
    margin-bottom: -3rem;
    padding: 2rem 1.5rem 4.5rem;
    border-bottom-right-radius: 4.5rem;
  }

  .discover__panel h2 br {
    display: none;
  }

  .discover__media {
    order: 2;
    width: calc(100% - 1.5rem);
    margin-left: auto;
  }

  .discover__image {
    height: clamp(24rem, 115vw, 34rem);
  }

  .discover__details {
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .discover__divider {
    width: 4rem;
    min-height: 1px;
    height: 1px;
  }

  .discover__detail-title br {
    display: none;
  }

  .discover__description {
    max-width: 36rem;
  }
}

@media (max-width: 30rem) {
  .discover__panel {
    width: 100%;
    margin-bottom: -2rem;
    border-bottom-right-radius: 3.5rem;
  }

  .discover__media {
    width: 100%;
  }

  .discover__image {
    height: 25rem;
  }
}



/* =========================================================
   Investors and Shareholders
   =========================================================*/

.investors {
  background: var(--color-white);
  color: var(--color-primary);
  padding-block:
    clamp(4rem, 7vw, 6rem)
    clamp(4.5rem, 8vw, 7rem);
  padding-bottom: 0;
}

/* Section heading */
.investors__header {
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.investors__header h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.investors__heading-line {
  display: block;
  width: clamp(5rem, 10vw, 7.5rem);
  height: 0.2rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-secondary);
}

/* Three-column resource layout */
.investors__navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 7.5rem);
  align-items: start;
}

.investors__list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.investors__item {
  margin: 0;
}

/* Individual resource link */
.investors__link {
  position: relative;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(35, 31, 32, 0.75);
  color: var(--color-primary);
  font-size: clamp(0.9rem, 1.35vw, 1.05rem);
  font-weight: 600;
  line-height: 1.2;
  transition:
    color var(--transition),
    padding-left var(--transition);
}

/* Animated underline on hover */
.investors__link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  transition: right 280ms ease;
}

.investors__link:hover,
.investors__link:focus-visible {
  padding-left: 0.3rem;
}

.investors__link:hover::after,
.investors__link:focus-visible::after {
  right: 0;
}

/* Link arrow icon */
.investors__link svg {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.investors__link:hover svg,
.investors__link:focus-visible svg {
  transform: translate(0.2rem, -0.2rem);
}

/* Download icons move vertically instead of diagonally */
.investors__link--download:hover svg,
.investors__link--download:focus-visible svg {
  transform: translateY(0.2rem);
}

/* Tablet layout */
@media (max-width: 62rem) {
  .investors__navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .investors__list:last-child {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}

/* Mobile layout */
@media (max-width: 47.99rem) {
  .investors {
    padding-block: 4rem;
  }

  .investors__header {
    margin-bottom: 2.75rem;
  }

  .investors__navigation {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .investors__list:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Add spacing between the three mobile groups */
  .investors__list + .investors__list {
    margin-top: 1.75rem;
  }

  .investors__link {
    min-height: 3.5rem;
    font-size: 1rem;
  }
}

/* Small mobile adjustments */
@media (max-width: 30rem) {
  .investors__header h2 br {
    display: none;
  }

  .investors__link {
    gap: 0.75rem;
  }

  .investors__link svg {
    width: 1.4rem;
    height: 1.4rem;
  }
}

/* =========================================================
   Site Footer
   ========================================================= */

.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding-block:
    clamp(4rem, 7vw, 6rem)
    clamp(2.5rem, 5vw, 4rem);
  margin-top: 60px;
}

.site-footer__container {
  display: grid;
  gap: clamp(4rem, 8vw, 6.5rem);
}

/* Main footer row */
.site-footer__top {
  display: grid;
  grid-template-columns:
    minmax(15rem, 1fr)
    minmax(24rem, 1.5fr)
    minmax(18rem, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

/* Footer logo */
.footer-brand {
  display: inline-block;
  width: min(100%, 18rem);
}

.footer-brand__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*
 * Use this fallback width if the supplied logo includes
 * excessive transparent space around the artwork.
 */
.site-footer__brand {
  max-width: 19rem;
}

/* Navigation columns */
.site-footer__navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.site-footer__menu {
  display: grid;
  gap: clamp(1.4rem, 2.5vw, 2rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__menu a {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  font-size: clamp(1rem, 1.55vw, 1rem);
  font-weight: 600;
  line-height: 1.2;
  transition: opacity var(--transition);
}

.site-footer__menu a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--color-white);
  transition: right var(--transition);
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
  opacity: 0.75;
}

.site-footer__menu a:hover::after,
.site-footer__menu a:focus-visible::after {
  right: 0;
}

/* Newsletter area */
.site-footer__newsletter {
  min-height: 11.5rem;
  padding-left: clamp(2rem, 5vw, 5.5rem);
  border-left: 2px solid rgba(255, 255, 255, 0.75);
}

.site-footer__newsletter-text {
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(1rem, 1.65vw, 1rem);
  line-height: normal;
}

/* Subscription button */
.footer-subscribe {

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-white);
  background: var(--color-white);
  color: var(--color-primary);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  font-weight: 600;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
    cursor: pointer;
}

.footer-subscribe svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.footer-subscribe:hover,
.footer-subscribe:focus-visible {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-subscribe:hover svg,
.footer-subscribe:focus-visible svg {
  transform: translate(0.2rem, -0.2rem);
}

/* Lower footer row */
.site-footer__bottom {
  display: grid;
  grid-template-columns:
    minmax(20rem, 1.25fr)
    minmax(14rem, 1fr)
    minmax(17rem, auto);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.site-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 1.4;
}

/* Privacy and terms links */
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  transition: color var(--transition);
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--color-white);
}

.site-footer__legal-divider {
  width: 1px;
  height: 1.1rem;
  background: rgba(255, 255, 255, 0.55);
}

/* Social media area */
.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.site-footer__social-label {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  white-space: nowrap;
}

.site-footer__social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-footer__social-links a {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  background: var(--color-white);
  color: var(--color-primary);
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.site-footer__social-links a:hover,
.site-footer__social-links a:focus-visible {
  background: transparent;
  color: var(--color-white);
  outline: 1px solid var(--color-white);
  transform: translateY(-2px);
}

.site-footer__social-links svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Facebook icon uses a filled path */
.site-footer__social-links a:first-child svg {
  fill: var(--color-secondary);
  stroke: none;
}

.social-icon-fill {
  fill: var(--color-secondary);
  stroke: none;
}

/* Tablet layout */
@media (max-width: 68rem) {
  .site-footer__top {
    grid-template-columns: minmax(13rem, 0.7fr) minmax(22rem, 1.3fr);
  }

  .site-footer__newsletter {
    grid-column: 1 / -1;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    border-left: 0;
  }

  .site-footer__newsletter-text {
    margin: 0;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__social {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

/* Mobile layout */
@media (max-width: 47.99rem) {
  .site-footer {
    padding-block: 4rem 2.5rem;
  }

  .site-footer__container {
    gap: 3.5rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .site-footer__brand {
    max-width: 17rem;
  }

  .site-footer__navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .site-footer__newsletter {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__newsletter-text br {
    display: none;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__social {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Small mobile layout */
@media (max-width: 30rem) {
  .site-footer__navigation {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer__menu {
    gap: 1.25rem;
  }

  .site-footer__menu + .site-footer__menu {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .footer-subscribe {
    width: 100%;
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-footer__legal-divider {
    display: none;
  }

  .site-footer__social-links {
    flex-wrap: wrap;
  }
}


/* =========================================================
   About Page Hero
   ========================================================= */

.about-hero {
  position: relative;
  min-height: clamp(42rem, 69vw, 52rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--color-primary);
  color: var(--color-white);
  height: 100vh;
}

.hero-banner {
  position: relative;
  /* min-height: clamp(42rem, 69vw, 52rem); */
  overflow: hidden;
  isolation: isolate;
  background: var(--color-primary);
  color: var(--color-white);
  height: auto;
  margin-bottom: clamp(3rem, 5vw, 6rem);
}

/* Full-width tunnel background */
.hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/hero-image.png");
  background-position: center 47%;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Dark overlay with a strong fade at the bottom */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(12, 8, 5, 0.14) 0%,
      rgba(21, 15, 11, 0.25) 38%,
      rgba(35, 31, 32, 0.77) 72%,
      var(--color-primary) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 7, 5, 0.34) 0%,
      rgba(10, 7, 5, 0.08) 55%,
      rgba(10, 7, 5, 0.24) 100%
    );
}

/* Main section layout */
.about-hero__container {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

/* Introductory content */
.about-hero__content {
  width: min(100%, 40rem);
}

.about-hero__content h1 {
    margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -6px;
    text-transform: uppercase;
}

.about-hero__content p {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  line-height: 1.22;
}

/* Statistics panel */
.about-hero__statistics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: auto;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
}

/* Individual statistic */
.about-hero__stat {
  min-height: clamp(10rem, 17vw, 13rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding:
    clamp(1.75rem, 3vw, 2.5rem)
    clamp(1.4rem, 3vw, 2.25rem);
}

/* Vertical separators between desktop items */
.about-hero__stat:not(:last-child) {
  border-right: 1px solid rgba(35, 31, 32, 0.55);
}

/* Large numeric value */
.about-hero__number {
  display: block;
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

/* Small line below the number */
.about-hero__number-line {
  display: block;
  width: clamp(2.25rem, 4vw, 3rem);
  height: 0.12rem;
  margin-block: 0.75rem 0.8rem;
  background: var(--color-secondary);
}

/* Statistic description */
.about-hero__stat h2 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.65vw, 1.2rem);
  font-weight: 700;
  line-height: 1.16;
}

/* =========================================================
   About Hero — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .about-hero {
    min-height: 50rem;
  }

  .about-hero__container {
    padding-top: 5rem;
  }

  .about-hero__content {
    width: min(100%, 32rem);
  }

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

  /* Remove the separator at the end of each row */
  .about-hero__stat:nth-child(2) {
    border-right: 0;
  }

  /* Add horizontal separators between rows */
  .about-hero__stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(35, 31, 32, 0.35);
  }
}

/* =========================================================
   About Hero — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .about-hero {
    min-height: auto;
  }

  .about-hero__background {
    background-position: 58% center;
  }

  .about-hero__container {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .about-hero__content {
    margin-bottom: clamp(4rem, 18vw, 7rem);
  }

  .about-hero__content h1 {
    font-size: clamp(2.2rem, 13vw, 3rem);
  }

  .about-hero__content p {
    max-width: 29rem;
  }

  .about-hero__statistics {
    margin-top: 0;
  }

  .about-hero__stat {
    min-height: 10rem;
  }
}

/* =========================================================
   About Hero — Small Mobile
   ========================================================= */

@media (max-width: 35rem) {
  .about-hero__statistics {
    grid-template-columns: 1fr;
  }

  .about-hero__stat {
    min-height: auto;
    padding: 1.75rem 1.5rem;
  }

  /* Use horizontal separators for the stacked layout */
  .about-hero__stat:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.35);
  }

  .about-hero__number {
    font-size: clamp(3.25rem, 15vw, 4.25rem);
  }

  .about-hero__stat h2 br {
    display: none;
  }
}

/* =========================================================
   Who We Are Section
   ========================================================= */

.who-we-are {
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-primary);
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* Section heading and introduction */
.who-we-are__header {
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.who-we-are__heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.who-we-are__heading-line {
  display: block;
  width: clamp(5rem, 10vw, 7.5rem);
  height: 0.2rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-secondary);
}

.who-we-are__intro {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 400;
    line-height: 1.32;
    margin-left: 150px;
}

/* Image and overlapping panel */
.who-we-are__showcase {
  position: relative;
  min-height: clamp(30rem, 49vw, 38rem);
}

.who-we-are__media {
  width: min(68%, 47rem);
  height: clamp(26rem, 43vw, 34rem);
  margin-left: auto;
  overflow: hidden;
  background: #e6e6e6;
}

.who-we-are__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 700ms ease,
    opacity 300ms ease;
}

.who-we-are__showcase:hover .who-we-are__image {
  transform: scale(1.025);
}

/* Frosted glass information panel */
.who-we-are__panel {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  left: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  width: min(58%, 40rem);
  min-height: clamp(21rem, 35vw, 27rem);
  padding:
    clamp(2rem, 4vw, 3rem)
    clamp(2rem, 4vw, 3.25rem);
  border-bottom-right-radius: clamp(4.5rem, 10vw, 8rem);
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 0.75rem 2.5rem rgba(35, 31, 32, 0.08);
  backdrop-filter: blur(0.3rem);
  -webkit-backdrop-filter: blur(0.3rem);
}

/* Tab group */
.who-we-are__tabs {
  display: grid;
  width: 100%;
}

/* Individual tab buttons */
.who-we-are__tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
  border: 0;
  background: transparent;
  color: rgba(35, 31, 32, 0.3);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--transition),
    padding-left var(--transition);
}

.who-we-are__tab:hover,
.who-we-are__tab:focus-visible {
  color: rgba(35, 31, 32, 0.7);
}

.who-we-are__tab.is-active {
  color: var(--color-black);
}

.who-we-are__tab.is-active:hover,
.who-we-are__tab.is-active:focus-visible {
  padding-left: 0;
}

/* Diagonal arrow */
.who-we-are__arrow {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
}

.who-we-are__arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.who-we-are__tab.is-active .who-we-are__arrow svg {
  transform: translate(0.15rem, -0.15rem);
}

/* Expandable tab content */
.who-we-are__tab-content {
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-0.5rem);
  transition:
    max-height 450ms ease,
    opacity 300ms ease,
    transform 300ms ease,
    visibility 300ms ease;
}

.who-we-are__tab-content.is-active {
  max-height: 20rem;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.who-we-are__tab-line {
  display: block;
  width: 2.5rem;
  height: 0.13rem;
  margin-bottom: 0.85rem;
  background: var(--color-secondary);
}

.who-we-are__tab-content p {
  max-width: 31rem;
  margin: 0 0 0.85rem;
  color: var(--color-primary);
  font-size: clamp(0.82rem, 1.25vw, 0.98rem);
  font-weight: 400;
  line-height: 1.22;
}

/* =========================================================
   Who We Are — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .who-we-are__header {
    grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1.5fr);
    gap: 3rem;
  }

  .who-we-are__showcase {
    min-height: 37rem;
  }

  .who-we-are__media {
    width: 76%;
  }

  .who-we-are__panel {
    width: 67%;
    left: 0;
  }
}

/* =========================================================
   Who We Are — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .who-we-are {
    padding-block: 4rem;
  }

  .who-we-are__header {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }

  .who-we-are__showcase {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .who-we-are__panel {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
    width: calc(100% - 1rem);
    min-height: auto;
    margin-bottom: -3.5rem;
    padding: 2rem 1.5rem 5rem;
    border-bottom-right-radius: 4.5rem;
  }

  .who-we-are__media {
    order: 2;
    width: calc(100% - 1.5rem);
    height: clamp(25rem, 110vw, 34rem);
    margin-left: auto;
  }

  .who-we-are__tab-content.is-active {
    max-height: 24rem;
  }
}

/* =========================================================
   Who We Are — Small Mobile
   ========================================================= */

@media (max-width: 30rem) {
  .who-we-are__panel {
    width: 100%;
    margin-bottom: -2rem;
    padding-bottom: 4rem;
    border-bottom-right-radius: 3.5rem;
  }

  .who-we-are__media {
    width: 100%;
    height: 25rem;
  }

  .who-we-are__tab {
    font-size: 1.05rem;
  }

  .who-we-are__tab-content p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   Sustainability and Impact
   ========================================================= */

.responsibility {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Shared feature section */
.responsibility-feature {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* Grey background used by the first feature */
.responsibility-feature--sustainability {
  background: #929190;
  color: var(--color-white);
}

/* White background used by the second feature */
.responsibility-feature--impact {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Two-column content layout */
.responsibility-feature__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(18rem, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Reverse layout for the second feature */
.responsibility-feature__grid--reverse {
  grid-template-columns: minmax(18rem, 1.2fr) minmax(18rem, 0.95fr);
}

/* Feature image */
.responsibility-feature__media {
  width: 100%;
  overflow: hidden;
  background: #d6d6d6;
}

.responsibility-feature__image {
  width: 100%;
  height: clamp(23rem, 39vw, 32rem);
  object-fit: cover;
  transition: transform 650ms ease;
}

/* Subtle image zoom on interaction */
.responsibility-feature:hover .responsibility-feature__image {
  transform: scale(1.025);
}

/* Content column */
.responsibility-feature__content {
  max-width: 32rem;
}

/* Keep the first feature content visually compact */
.responsibility-feature--sustainability
  .responsibility-feature__content {
  max-width: 29rem;
}

/* Align the second image to the right like the design */
.responsibility-feature__grid--reverse
  .responsibility-feature__media {
  justify-self: end;
}

/* Heading */
.responsibility-feature__content h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

/* Decorative line below the heading */
.responsibility-feature__line {
  display: block;
  width: clamp(4rem, 8vw, 6rem);
  height: 0.16rem;
  margin-block: clamp(1rem, 2vw, 1.4rem)
    clamp(1.2rem, 2.5vw, 1.8rem);
  background: var(--color-secondary);
  opacity: 0.65;
}

/* Supporting copy */
.responsibility-feature__content p {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  color: inherit;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.25;
}

/* Shared call-to-action button */
.responsibility-feature__button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 600;
  line-height: 1;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

/* Diagonal arrow icon */
.responsibility-feature__button svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

/* Light button used on the grey section */
.responsibility-feature__button--light {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Dark button used on the white section */
.responsibility-feature__button--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Button hover and keyboard focus */
.responsibility-feature__button:hover,
.responsibility-feature__button:focus-visible {
  transform: translateY(-2px);
}

.responsibility-feature__button:hover svg,
.responsibility-feature__button:focus-visible svg {
  transform: translate(0.18rem, -0.18rem);
}

.responsibility-feature__button--light:hover,
.responsibility-feature__button--light:focus-visible {
  border-color: var(--color-white);
  background: transparent;
  color: var(--color-white);
}

.responsibility-feature__button--dark:hover,
.responsibility-feature__button--dark:focus-visible {
  border-color: var(--color-primary);
  background: var(--color-white);
  color: var(--color-primary);
}

/* =========================================================
   Sustainability and Impact — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .responsibility-feature__grid,
  .responsibility-feature__grid--reverse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .responsibility-feature__image {
    height: clamp(23rem, 48vw, 29rem);
  }
}

/* =========================================================
   Sustainability and Impact — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .responsibility-feature {
    padding-block: 4rem;
  }

  .responsibility-feature__grid,
  .responsibility-feature__grid--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .responsibility-feature__content {
    max-width: 36rem;
  }

  .responsibility-feature__media,
  .responsibility-feature__grid--reverse
    .responsibility-feature__media {
    width: 100%;
    justify-self: stretch;
  }

  .responsibility-feature__image {
    height: clamp(24rem, 105vw, 34rem);
  }

  /*
   * Place the image first on mobile for the Sustainability
   * feature and keep the Impact content first.
   */
  .responsibility-feature--sustainability
    .responsibility-feature__media {
    order: 1;
  }

  .responsibility-feature--sustainability
    .responsibility-feature__content {
    order: 2;
  }
}

/* =========================================================
   Sustainability and Impact — Small Mobile
   ========================================================= */

@media (max-width: 30rem) {
  .responsibility-feature__image {
    height: 24rem;
  }

  .responsibility-feature__button {
    min-height: 3.3rem;
  }
}

/* =========================================================
   Leadership Section
   ========================================================= */

.leadership {
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-primary);
  padding-top: clamp(4rem, 8vw, 7rem);
}

/* Section heading and call-to-action */
.leadership__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.leadership__heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.leadership__heading-line {
  display: block;
  width: clamp(5rem, 10vw, 7.5rem);
  height: 0.2rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-secondary);
}

/* Link to the full leadership page */
.leadership__page-link {
  min-height: clamp(3.5rem, 5vw, 4.25rem);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 600;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.leadership__page-link svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.leadership__page-link:hover,
.leadership__page-link:focus-visible {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.leadership__page-link:hover svg,
.leadership__page-link:focus-visible svg {
  transform: translate(0.2rem, -0.2rem);
}

/* Carousel wrapper */
.leadership__carousel-wrapper {
  position: relative;
}

.leadership-carousel .owl-stage {
  display: flex;
}

.leadership-carousel .owl-item {
  display: flex;
}

/* Leadership card */
.leadership-card {
  width: 100%;
  height: 100%;
  border: 0.35rem solid #929190;
  background: #929190;
}

.leadership-card__button {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.leadership-card__image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(21rem, 35vw, 29rem);
  overflow: hidden;
  background: #eeeeec;
}

.leadership-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 650ms ease;
}

/* Dark overlay displayed during hover */
.leadership-card__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(35, 31, 32, 0.02) 30%,
    rgba(35, 31, 32, 0.72) 100%
  );
  transition: opacity 350ms ease;
}

/* View Profile label */
.leadership-card__view {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 350ms ease,
    transform 350ms ease;
}

.leadership-card__button:hover .leadership-card__image,
.leadership-card__button:focus-visible .leadership-card__image {
  transform: scale(1.035);
}

.leadership-card__button:hover .leadership-card__overlay,
.leadership-card__button:focus-visible .leadership-card__overlay {
  opacity: 1;
}

.leadership-card__button:hover .leadership-card__view,
.leadership-card__button:focus-visible .leadership-card__view {
  opacity: 1;
  transform: translateY(0);
}

/* Name and role panel */
.leadership-card__content {
  min-height: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem;
  background: #929190;
  color: var(--color-white);
  text-align: center;
}

.leadership-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.leadership-card__role {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(0.62rem, 0.9vw, 0.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Custom Owl Carousel dots */
.leadership__dots {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.leadership__dots .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.leadership__dots .owl-dot {
  width: 0.75rem;
  height: 0.75rem;
  display: block;
  padding: 0;
  border: 1px solid var(--color-secondary);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    width 250ms ease,
    background-color 250ms ease;
    margin: 0 2px;
}

.leadership__dots .owl-dot.active {
  width: 1.9rem;
  background: var(--color-secondary);
}

.leadership__dots .owl-dot span {
  display: none;
}

/* =========================================================
   Leadership Profile Modal
   ========================================================= */

.leadership-modal {
  width: min(64rem, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 0;
  overflow: visible;
  background: transparent;
  color: var(--color-primary);
}

/* Darkened page background */
.leadership-modal::backdrop {
  background: rgba(15, 12, 13, 0.78);
  backdrop-filter: blur(0.35rem);
  -webkit-backdrop-filter: blur(0.35rem);
  animation: leadership-backdrop-in 350ms ease forwards;
}

/* Modal panel */
.leadership-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(20rem, 1.2fr);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  background: var(--color-white);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.35);
  animation: leadership-modal-in 450ms cubic-bezier(0.2, 0.8, 0.2, 1)
    forwards;
}

/* Closing animation */
.leadership-modal.is-closing .leadership-modal__panel {
  animation: leadership-modal-out 260ms ease forwards;
}

.leadership-modal.is-closing::backdrop {
  animation: leadership-backdrop-out 260ms ease forwards;
}

/* Modal photograph */
.leadership-modal__media {
  min-height: 35rem;
  overflow: hidden;
  background: #ececea;
}

.leadership-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Modal text content */
.leadership-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.leadership-modal__eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: rgba(35, 31, 32, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-modal__content h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.leadership-modal__role {
  margin: 0.75rem 0 0;
  color: rgba(35, 31, 32, 0.66);
  font-size: clamp(0.85rem, 1.25vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
}

.leadership-modal__line {
  display: block;
  width: 5rem;
  height: 0.15rem;
  margin-block: 1.5rem;
  background: rgba(35, 31, 32, 0.55);
}

.leadership-modal__bio {
  color: var(--color-primary);
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.5;
}

.leadership-modal__bio p {
  margin: 0 0 1rem;
}

.leadership-modal__bio p:last-child {
  margin-bottom: 0;
}

/* Full profile link */
.leadership-modal__link {
  width: fit-content;
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  transition:
    background-color var(--transition),
    color var(--transition);
}

.leadership-modal__link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leadership-modal__link:hover,
.leadership-modal__link:focus-visible {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Modal close button */
.leadership-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.leadership-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 0.1rem;
  background: var(--color-secondary);
}

.leadership-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.leadership-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Opening and closing animations */
@keyframes leadership-modal-in {
  from {
    opacity: 0;
    transform: translateY(2.5rem) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes leadership-modal-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.97);
  }
}

@keyframes leadership-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes leadership-backdrop-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* =========================================================
   Leadership — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .leadership-card__image-wrapper {
    height: clamp(22rem, 48vw, 28rem);
  }

  .leadership-modal__panel {
    grid-template-columns: minmax(15rem, 0.8fr) minmax(19rem, 1.2fr);
  }
}

/* =========================================================
   Leadership — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .leadership {
    padding-block: 4rem;
  }

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

  .leadership-card__image-wrapper {
    height: clamp(25rem, 115vw, 34rem);
  }

  .leadership-modal {
    width: min(36rem, calc(100% - 1rem));
    max-height: calc(100dvh - 1rem);
  }

  .leadership-modal__panel {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 1rem);
  }

  .leadership-modal__media {
    min-height: 24rem;
    max-height: 48dvh;
  }

  .leadership-modal__content {
    padding: 2rem 1.5rem 2.5rem;
  }
}

/* =========================================================
   Leadership — Small Mobile
   ========================================================= */

@media (max-width: 30rem) {
  .leadership__page-link {
    width: 100%;
  }

  .leadership-card__image-wrapper {
    height: 27rem;
  }

  .leadership-modal__media {
    min-height: 20rem;
  }
}

/* Respect reduced-motion browser preferences */
@media (prefers-reduced-motion: reduce) {
  .leadership-modal__panel,
  .leadership-modal::backdrop,
  .leadership-modal.is-closing .leadership-modal__panel,
  .leadership-modal.is-closing::backdrop {
    animation-duration: 0.01ms;
  }
}

/* =========================================================
   Leadership Directory Page
   ========================================================= */

   /* Prevent background scrolling while a profile is open */
body.leadership-modal-open {
  overflow: hidden;
}

.leadership-directory {
  background: var(--color-white);
  color: var(--color-primary);
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* Directory heading */
.leadership-directory__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.leadership-directory__header h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.leadership-directory__heading-line {
  display: block;
  width: clamp(4rem, 8vw, 6rem);
  height: 0.16rem;
  margin-top: clamp(1.1rem, 2vw, 1.5rem);
  background: var(--color-secondary);
}

/* Three-column leadership grid */
.leadership-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem)
    clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

/*
 * Centre the seventh member in the middle column,
 * matching the supplied desktop design.
 */
.leadership-directory__item:last-child {
  grid-column: 2;
}

/* Full card button */
.leadership-profile-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0.3rem solid #929190;
  background: #929190;
  color: var(--color-white);
  text-align: center;
  cursor: pointer;
  transition:
    box-shadow 300ms ease,
    transform 300ms ease;
}

/* Portrait area */
.leadership-profile-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 0.92 / 1;
  overflow: hidden;
  background: #efefed;
}

.leadership-profile-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 600ms ease,
    filter 350ms ease;
}

/* Subtle hover overlay */
.leadership-profile-card__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(35, 31, 32, 0) 45%,
    rgba(35, 31, 32, 0.32) 100%
  );
  transition: opacity 350ms ease;
}

/* Member name and position */
.leadership-profile-card__content {
  min-height: clamp(5.5rem, 8vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background: #929190;
}

.leadership-profile-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.1;
}

.leadership-profile-card__role {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(0.55rem, 0.8vw, 0.7rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

/* Card hover and keyboard interaction */
.leadership-profile-card:hover,
.leadership-profile-card:focus-visible {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.25rem 2.75rem rgba(35, 31, 32, 0.16);
}

.leadership-profile-card:hover
  .leadership-profile-card__image,
.leadership-profile-card:focus-visible
  .leadership-profile-card__image {
  transform: scale(1.035);
}

.leadership-profile-card:hover
  .leadership-profile-card__overlay,
.leadership-profile-card:focus-visible
  .leadership-profile-card__overlay {
  opacity: 1;
}

/* =========================================================
   Leadership Directory — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .leadership-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /*
   * Reset the desktop centring rule because the seventh
   * member naturally occupies the first tablet column.
   */
  .leadership-directory__item:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   Leadership Directory — Mobile
   ========================================================= */

@media (max-width: 40rem) {
  .leadership-directory {
    padding-block: 4rem;
  }

  .leadership-directory__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leadership-directory__item {
    width: min(100%, 25rem);
    margin-inline: auto;
  }

  .leadership-profile-card__media {
    aspect-ratio: 0.9 / 1;
  }

  .leadership-profile-card__content {
    min-height: 5.75rem;
  }

  .leadership-profile-card__name {
    font-size: 1.2rem;
  }

  .leadership-profile-card__role {
    font-size: 0.65rem;
  }
}


/* =========================================================
   Leadership hierarchy structure
   ========================================================= */

/*
 * This CSS controls only the hierarchy layout.
 *
 * Card images, colours, typography, overlays, content and
 * dimensions continue to come from the existing
 * .leadership-card styles.
 */
.leadership-hierarchy {
	--leadership-hierarchy-gap: 14px;
	--leadership-hierarchy-three-column-gap: 28px;

	width: 100%;
}

.leadership-hierarchy__tiers {
	display: flex;
	flex-direction: column;
	gap: var(--leadership-hierarchy-gap);

	width: 100%;
}

/*
 * Every leadership tier is a centred flex row.
 *
 * Flex wrapping lets the hierarchy support any number of
 * members without requiring tier-specific CSS classes.
 */
.leadership-hierarchy__tier {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	gap: var(--leadership-hierarchy-gap);

	width: 100%;
	margin: 0;
	padding: 0;
}

/*
 * Desktop card width matches the three-card Owl Carousel
 * layout with a 14px gap between cards.
 *
 * One member:
 * - One card centred at the normal carousel card width.
 *
 * Two members:
 * - Two normal-width cards centred.
 *
 * Three members:
 * - Three normal-width cards across.
 */
.leadership-hierarchy__tier > .leadership-card {
	flex: 0 1
		calc(
			(
				100% -
				var(--leadership-hierarchy-three-column-gap)
			) / 3
		);

	width:
		calc(
			(
				100% -
				var(--leadership-hierarchy-three-column-gap)
			) / 3
		);

	min-width: 0;
	margin: 0;
}

/*
 * Tablet layout matches the carousel's two-card breakpoint.
 */
@media (max-width: 1023px) {
	.leadership-hierarchy__tier > .leadership-card {
		flex-basis:
			calc(
				(
					100% -
						var(--leadership-hierarchy-gap)
				) / 2
			);

		width:
			calc(
				(
					100% -
						var(--leadership-hierarchy-gap)
				) / 2
			);
	}
}

/*
 * Mobile layout matches the carousel's single-card breakpoint.
 */
@media (max-width: 599px) {
	.leadership-hierarchy__tier > .leadership-card {
		flex-basis: 100%;
		width: 100%;
	}
}


/* =========================================================
   Contact Form and Map
   ========================================================= */

.find-us {
  background: var(--color-white);
  color: var(--color-primary);
  /* padding-block: clamp(4rem, 8vw, 7rem); */
}

/* Section heading */
.find-us__header {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.find-us__header h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.find-us__heading-line {
  display: block;
  width: clamp(5rem, 10vw, 7.5rem);
  height: 0.18rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-secondary);
}

/* Form and map columns */
.find-us__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

/* Shared panel styling */
.find-us__panel {
  min-height: clamp(26rem, 43vw, 32rem);
  background: var(--color-white);
  box-shadow:
    0 0.35rem 1.5rem rgba(35, 31, 32, 0.08),
    0 0 0.25rem rgba(35, 31, 32, 0.08);
}

/* Form panel spacing */
.find-us__form-panel {
  display: flex;
  align-items: stretch;
  padding:
    clamp(2rem, 4vw, 3.5rem)
    clamp(1.75rem, 4vw, 3rem);
}

/* Contact form layout */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Two fields displayed side-by-side */
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 4.5rem);
}

/* Individual form field */
.contact-form__field {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.contact-form__field label {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.15vw, 0.95rem);
  font-weight: 400;
  line-height: 1.2;
}

/* Underlined inputs matching the supplied design */
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.35rem 0 0.7rem;
  border: 0;
  border-bottom: 0.13rem solid var(--color-primary);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.contact-form__field textarea {
  min-height: clamp(6rem, 12vw, 8rem);
  resize: vertical;
}

/* Accessible input focus state */
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--color-black);
  box-shadow: 0 0.18rem 0 var(--color-primary);
}

/* Message field takes the available vertical space */
.contact-form__field--message {
  flex: 1;
}

/* Submit button */
.contact-form__submit, .forminator-ui.forminator-custom-form[data-design=material] .forminator-button {
  width: fit-content;
  min-height: clamp(3.4rem, 5vw, 4rem) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center !important;
  margin-top: auto;
  padding: 1rem clamp(1.25rem, 3vw, 1.75rem) !important;
  border: 1px solid var(--color-primary) !important;
  border-radius: 0;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body) !important;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem) !important;
  font-weight: 600 !important;
  line-height: 1;
  cursor: pointer !important;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible, .forminator-ui.forminator-custom-form[data-design=material] .forminator-button:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-0.15rem);
}

/* Map panel */
.find-us__map-panel {
  overflow: hidden;
  padding: clamp(0.75rem, 1.5vw, 1rem);
}

/* Embedded map */
.find-us__map {
  width: 100%;
  height: 100%;
  min-height: clamp(24.5rem, 40vw, 30rem);
  display: block;
  border: 0;
}

/* =========================================================
   Contact Form and Map — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .find-us__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .find-us__panel {
    min-height: auto;
  }

  .find-us__form-panel {
    min-height: 30rem;
  }

  .find-us__map {
    min-height: 29rem;
  }
}

/* =========================================================
   Contact Form and Map — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .find-us {
    padding-block: 4rem;
  }

  .find-us__header {
    margin-bottom: 3rem;
  }

  .find-us__form-panel {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form__submit {
    margin-top: 0.5rem;
  }

  .find-us__map {
    min-height: 25rem;
  }
}

/* =========================================================
   Contact Form and Map — Small Mobile
   ========================================================= */

@media (max-width: 30rem) {
  .find-us__form-panel {
    padding: 1.75rem 1.25rem;
  }

  .contact-form__submit {
    width: 100%;
  }

  .find-us__map-panel {
    padding: 0.5rem;
  }

  .find-us__map {
    min-height: 22rem;
  }
}

.forminator-ui.forminator-custom-form[data-design=material] .forminator-input, .forminator-textarea {

    line-height: 3.5em !important;
    outline: none !important;
  
}

/* =========================================================
   Project Overview
   ========================================================= */

.project-overview {
  background: var(--color-white);
  color: var(--color-primary);
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* Overview heading and introduction */
.project-overview__header {
  display: grid;
  grid-template-columns: minmax(11rem, 0.55fr) minmax(0, 2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: clamp(4rem, 9vw, 7rem);
}

.project-overview__heading h2,
.project-glance__header h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

/* Shared decorative heading line */
.project-overview__heading-line,
.project-glance__heading-line {
  display: block;
  width: clamp(4.5rem, 9vw, 6.5rem);
  height: 0.18rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-secondary);
}

.project-overview__description {
  max-width: 52rem;
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 400;
  line-height: 1.3;
}

/* =========================================================
   Project at a Glance
   ========================================================= */

.project-glance {
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.project-glance__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Four-column statistics panel */
.project-glance__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--color-white);
  box-shadow:
    0 0.75rem 2rem rgba(35, 31, 32, 0.07),
    0 0.1rem 0.4rem rgba(35, 31, 32, 0.08);
}

/* Individual project statistic */
.project-stat {
  min-height: clamp(10rem, 17vw, 12.5rem);
  padding:
    clamp(1.75rem, 3vw, 2.5rem)
    clamp(1.25rem, 2.5vw, 2rem);
}

/* Vertical dividers between desktop statistics */
.project-stat:not(:last-child) {
  border-right: 1px solid rgba(35, 31, 32, 0.55);
}

/* Main numerical value */
.project-stat__value {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--color-black);
  font-family: var(--font-display);
  line-height: 0.9;
  white-space: nowrap;
}

.project-stat__value strong {
  font-size: clamp(3rem, 5.8vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.project-stat__value span {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
}

/* Short underline beneath each statistic */
.project-stat__line {
  display: block;
  width: clamp(2.25rem, 4vw, 3rem);
  height: 0.13rem;
  margin-block: 0.8rem 1.25rem;
  background: var(--color-secondary);
}

/* Statistic description */
.project-stat h3 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 500;
  line-height: 1.2;
}

/* =========================================================
   Project Location and References
   ========================================================= */

.project-location {
  display: grid;
  grid-template-columns: minmax(18rem, 1.05fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

/* Project map */
.project-location__map {
  width: 100%;
  margin: 0;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: var(--color-white);
  box-shadow:
    0 0.4rem 1.5rem rgba(35, 31, 32, 0.07),
    0 0 0.2rem rgba(35, 31, 32, 0.08);
}

.project-location__map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Supporting references */
.project-location__references {
  padding-top: 0.25rem;
}

.project-location__references ol {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: project-reference;
}

.project-location__references li {
  position: relative;
  padding-left: 2rem;
  color: var(--color-primary);
  font-size: clamp(0.78rem, 1.15vw, 0.95rem);
  font-weight: 400;
  line-height: 1.3;
  counter-increment: project-reference;
}

/* Parenthesised reference numbering */
.project-location__references li::before {
  content: "(" counter(project-reference) ")";
  position: absolute;
  top: 0;
  left: 0;
}

/* Visually hidden accessibility utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

/* =========================================================
   Project Overview — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .project-overview__header {
    grid-template-columns: minmax(10rem, 0.7fr) minmax(0, 1.5fr);
    gap: 3rem;
  }

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

  /* Remove the divider after the second statistic */
  .project-stat:nth-child(2) {
    border-right: 0;
  }

  /* Add a divider between the two rows */
  .project-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(35, 31, 32, 0.35);
  }

  .project-location {
    grid-template-columns: minmax(17rem, 1fr) minmax(15rem, 0.9fr);
  }
}

/* =========================================================
   Project Overview — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .project-overview {
    padding-block: 4rem;
  }

  .project-overview__header {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 4rem;
  }

  .project-overview__description {
    max-width: 36rem;
  }

  .project-location {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .project-location__references {
    padding-top: 0;
  }
}

/* =========================================================
   Project Overview — Small Mobile
   ========================================================= */

@media (max-width: 35rem) {
  .project-glance__grid {
    grid-template-columns: 1fr;
  }

  .project-stat {
    min-height: auto;
    padding: 1.75rem 1.5rem;
  }

  /* Convert all separators to horizontal dividers */
  .project-stat:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.35);
  }

  .project-stat__value strong {
    font-size: clamp(3.25rem, 15vw, 4.25rem);
  }

  .project-stat h3 br {
    display: none;
  }
}

/* =========================================================
   Shared Project Section Heading
   Used by Geology and Exploration sections
   ========================================================= */

.project-section-header {
  /* display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 2fr);
  gap: clamp(2rem, 6vw, 5rem); */
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.project-section-header__heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.project-section-header__line {
  display: block;
  width: clamp(4.5rem, 9vw, 6.5rem);
  height: 0.18rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-secondary);
}

.project-section-header__description {
  /* max-width: 53rem; */
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 400;
  line-height: 1.3;
  margin-left: 150px;
}

/* =========================================================
   Geology and Resource Base
   ========================================================= */

.project-geology {
  background: var(--color-white);
  color: var(--color-primary);
  /* padding-block: clamp(4rem, 8vw, 7rem); */
}

/* Three-column animated statistics panel */
.geology-statistics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--color-white);
  box-shadow:
    0 0.75rem 2rem rgba(35, 31, 32, 0.07),
    0 0.1rem 0.4rem rgba(35, 31, 32, 0.07);
}

/* Individual geology statistic */
.geology-statistic {
  min-height: clamp(11rem, 19vw, 14rem);
  padding:
    clamp(2rem, 4vw, 3rem)
    clamp(1.5rem, 3vw, 2.5rem);
}

/* Vertical divider between desktop statistics */
.geology-statistic:not(:last-child) {
  border-right: 1px solid rgba(35, 31, 32, 0.55);
}

/* Number and unit displayed on one line */
.geology-statistic__value {
  display: flex;
  align-items: baseline;
  gap: clamp(0.45rem, 1vw, 0.75rem);
  color: var(--color-black);
  font-family: var(--font-display);
  line-height: 0.9;
  white-space: nowrap;
}

.geology-statistic__value strong {
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.geology-statistic__value span {
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 700;
}

/* Short line below each number */
.geology-statistic__line {
  display: block;
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: 0.13rem;
  margin-block: 0.85rem 1.45rem;
  background: var(--color-secondary);
}

/* Statistic description */
.geology-statistic h3 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.65vw, 1.25rem);
  font-weight: 500;
  line-height: 1.15;
}

/* =========================================================
   Exploration Upside
   ========================================================= */

.exploration-upside {
  background: var(--color-white);
  color: var(--color-primary);
  padding-block:
    clamp(3rem, 6vw, 5rem)
    clamp(4rem, 8vw, 7rem);
}

/* Two supporting project images */
.exploration-upside__media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: stretch;
}

/* Image card */
.exploration-upside__figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--color-white);
  box-shadow:
    0 0.35rem 1.5rem rgba(35, 31, 32, 0.07),
    0 0 0.2rem rgba(35, 31, 32, 0.08);
}

.exploration-upside__figure img {
  width: 100%;
  height: clamp(19rem, 32vw, 26rem);
  display: block;
  object-fit: contain;
  background: var(--color-white);
  transition: transform 500ms ease;
}

/* Slight enlargement when the image is hovered */
.exploration-upside__figure:hover img {
  transform: scale(1.015);
}

/* Optional source caption on the chart */
.exploration-upside__figure figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.5rem;
  left: 0.75rem;
  color: rgba(35, 31, 32, 0.6);
  font-size: clamp(0.55rem, 0.75vw, 0.7rem);
  font-style: italic;
  line-height: 1.2;
}

/* =========================================================
   Geology and Exploration — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .project-section-header {
    grid-template-columns: minmax(11rem, 0.75fr) minmax(0, 1.5fr);
    gap: 3rem;
  }

  .geology-statistic {
    padding-inline: 1.5rem;
  }

  .exploration-upside__figure img {
    height: clamp(18rem, 38vw, 24rem);
  }
}

/* =========================================================
   Geology and Exploration — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .project-geology,
  .exploration-upside {
    padding-block: 4rem;
  }

  .project-section-header {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }

  .project-section-header__heading h2 br {
    display: none;
  }

  .geology-statistics {
    grid-template-columns: 1fr;
  }

  /* Convert desktop vertical dividers into horizontal dividers */
  .geology-statistic:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.35);
  }

  .geology-statistic {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .geology-statistic h3 br {
    display: none;
  }

  .exploration-upside__media-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .exploration-upside__figure img {
    height: auto;
    min-height: 18rem;
  }
}

/* =========================================================
   Geology and Exploration — Small Mobile
   ========================================================= */

@media (max-width: 30rem) {
  .geology-statistic__value strong {
    font-size: clamp(3.25rem, 16vw, 4.5rem);
  }

  .exploration-upside__figure img {
    min-height: 15rem;
  }
}

/* =========================================================
   From Ore to Metal
   ========================================================= */

.ore-to-metal {
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-primary);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* Heading and introductory text layout */
.ore-to-metal__header {
  /* display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 2fr);
  gap: clamp(2rem, 6vw, 5rem); */
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Main section heading */
.ore-to-metal__heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

/* Decorative line below the heading */
.ore-to-metal__heading-line {
  display: block;
  width: clamp(4.5rem, 9vw, 6.5rem);
  height: 0.18rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-secondary);
}

/* Introductory paragraphs */
.ore-to-metal__intro {
    margin-left: 150px;
}

.ore-to-metal__intro p {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 400;
  line-height: 1.28;
}

.ore-to-metal__intro p + p {
  margin-top: 0.15rem;
}

/* Process diagram container */
.ore-to-metal__diagram {
  width: 100%;
  margin: 0;
  padding: clamp(0.75rem, 1.5vw, 1.15rem);
  overflow: hidden;
  /* background: var(--color-white);
  box-shadow:
    0 0.6rem 2rem rgba(35, 31, 32, 0.07),
    0 0 0.25rem rgba(35, 31, 32, 0.1); */
}

/* Responsive process diagram */
.ore-to-metal__diagram-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--color-white);
  transition: transform 500ms ease;
}

/* Subtle interaction without affecting readability */
.ore-to-metal__diagram:hover .ore-to-metal__diagram-image {
  transform: scale(1.008);
}

/* =========================================================
   From Ore to Metal — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .ore-to-metal__header {
    grid-template-columns: minmax(11rem, 0.75fr) minmax(0, 1.5fr);
    gap: 3rem;
  }
}

/* =========================================================
   From Ore to Metal — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .ore-to-metal {
    padding-block: 4rem;
  }

  .ore-to-metal__header {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }

  /* Allow the title to wrap naturally on mobile */
  .ore-to-metal__heading h2 br {
    display: none;
  }

  .ore-to-metal__intro {
    max-width: 36rem;
  }

  /*
   * Allow horizontal scrolling when diagram labels become
   * too small to read on narrow screens.
   */
  .ore-to-metal__diagram {
    overflow-x: auto;
    padding: 0.75rem;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .ore-to-metal__diagram-image {
    width: max(100%, 47rem);
    max-width: none;
  }
}

/* =========================================================
   From Ore to Metal — Small Mobile
   ========================================================= */

@media (max-width: 30rem) {
  .ore-to-metal__diagram {
    margin-inline: calc(var(--gutter) * -0.35);
    width: calc(100% + (var(--gutter) * 0.7));
  }

  .ore-to-metal__diagram-image {
    width: 44rem;
  }
}

/* =========================================================
   Reusable Project Detail Sections
   Used for project sections that contain a heading,
   supporting image and optional explanatory content
   ========================================================= */

.project-detail-section {
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-primary);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/*
 * Use this modifier when the project section has a heading
 * but no introductory paragraph beside it.
 */
.project-section-header--compact {
  grid-template-columns: 1fr;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.project-section-header--compact
  .project-section-header__heading {
  width: fit-content;
}

/* =========================================================
   Reusable Project Image Card
   This can be reused for future diagrams, plans and tables
   ========================================================= */

.project-image-card {
  width: 100%;
  margin: 0;
  padding: clamp(0.5rem, 1vw, 0.8rem);
  overflow: hidden;
  /* background: var(--color-white);
  box-shadow:
    0 0.55rem 1.8rem rgba(35, 31, 32, 0.07),
    0 0 0.25rem rgba(35, 31, 32, 0.1); */
}

.project-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--color-white);
  transition: transform 500ms ease;
}

/* Keep the interaction subtle so diagram labels remain clear */
.project-image-card:hover img {
  transform: scale(1.006);
}

/* =========================================================
   Phased Development
   ========================================================= */

.development-phases {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin:
    clamp(2rem, 4vw, 3rem)
    0
    0;
  padding: 0;
  list-style: none;
}

/* Phase label and description row */
.development-phases__item {
  display: grid;
  grid-template-columns: clamp(4.5rem, 9vw, 6rem) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.development-phases__label {
  color: var(--color-black);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
}

.development-phases__item p {
  max-width: 58rem;
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(0.85rem, 1.25vw, 1rem);
  font-weight: 400;
  line-height: 1.35;
}

/* =========================================================
   Phase 1 Project Costs
   ========================================================= */

/*
 * Reduce the gap between these two closely related sections,
 * matching the supplied design.
 */
.phased-development {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.project-costs {
  padding-top: clamp(2rem, 5vw, 4rem);
}

/* The table image should use the full available width */
.project-image-card--table {
  padding: 0;
}

.project-image-card--table img {
  width: 100%;
}

/* Budget note beneath the table */
.project-costs__note {
  margin:
    clamp(1rem, 2vw, 1.5rem)
    0
    0;
  color: var(--color-primary);
  font-size: clamp(0.78rem, 1.15vw, 0.92rem);
  font-weight: 400;
  line-height: 1.35;
}

/* =========================================================
   Project Detail Sections — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .project-detail-section {
    padding-block: 4rem;
  }

  /* Allow project headings to wrap naturally on mobile */
  .project-section-header--compact
    .project-section-header__heading
    h2 br {
    display: none;
  }

  .development-phases__item {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  /*
   * Large diagrams remain horizontally scrollable rather
   * than becoming too small to read.
   */
  .project-image-card {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .phased-development .project-image-card img {
    width: max(100%, 45rem);
    max-width: none;
  }

  .project-image-card--table img {
    width: max(100%, 45rem);
    max-width: none;
  }
}

/* =========================================================
   Project Detail Sections — Small Mobile
   ========================================================= */

@media (max-width: 30rem) {
  .development-phases__item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .development-phases__label {
    font-size: 0.95rem;
  }

  .project-image-card {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
  }

  .phased-development .project-image-card img,
  .project-image-card--table img {
    width: 42rem;
  }
}

/* =========================================================
   Financial Evaluation Results
   ========================================================= */

.financial-results {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* Table and supporting summary layout */
.financial-results__layout {
  display: grid;
  grid-template-columns: minmax(28rem, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Allows the financial table to scroll on narrow screens */
.financial-results__table-wrapper {
  min-width: 0;
  overflow-x: auto;
  box-shadow:
    0 0.5rem 1.75rem rgba(35, 31, 32, 0.06),
    0 0 0.2rem rgba(35, 31, 32, 0.06);
}

/* Financial indicators table */
.financial-results__table {
  width: 100%;
  min-width: 35rem;
  border-collapse: collapse;
  background: #eeeeed;
  color: var(--color-primary);
  font-family: var(--font-body);
}

/* Orange table heading */
.financial-results__table thead {
  background: var(--color-financial-accent);
  color: var(--color-white);
}

.financial-results__table thead th {
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  line-height: 1.15;
  text-align: left;
  vertical-align: middle;
}

.financial-results__table thead th:first-child {
  width: 66%;
}

.financial-results__table thead th:last-child {
  border-right: 0;
}

.financial-results__table thead small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78em;
  font-style: italic;
  font-weight: 400;
}

/* Financial table rows */
.financial-results__table tbody tr {
  border-bottom: 1px solid rgba(35, 31, 32, 0.06);
}

.financial-results__table tbody tr:nth-child(even) {
  background: #e5e5e4;
}

.financial-results__table tbody th,
.financial-results__table tbody td {
  padding: clamp(0.85rem, 1.5vw, 1.15rem) 1.25rem;
  text-align: left;
  vertical-align: middle;
}

.financial-results__table tbody th {
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
  font-weight: 700;
}

.financial-results__table tbody td {
  border-left: 1px solid rgba(35, 31, 32, 0.05);
  text-align: center;
}

.financial-results__table tbody th > span {
  display: block;
  margin-bottom: 0.65rem;
}

.financial-results__table tbody th small {
  display: block;
  padding-left: 0.75rem;
  color: rgba(35, 31, 32, 0.42);
  font-size: 0.78em;
  font-weight: 400;
  line-height: 1.6;
}

.financial-results__table tbody th small::before {
  content: "•";
  margin-right: 0.4rem;
}

/* Dashed orange result boxes */
.financial-results__highlight {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border: 0.12rem dashed var(--color-financial-accent);
  border-radius: 0.35rem;
  color: var(--color-black);
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
}

.financial-results__highlight--stacked,
.financial-results__values {
  display: inline-grid;
  gap: 0.85rem;
}

.financial-results__values strong {
  display: block;
  font-size: clamp(0.78rem, 1.05vw, 0.92rem);
}

/* Supporting summary beside the table */
.financial-results__summary {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.financial-results__summary h3 {
  max-width: 27rem;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  font-weight: 700;
  line-height: 1.2;
}

.financial-results__summary-list {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0;
}

.financial-results__summary-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.financial-results__summary-list dt,
.financial-results__summary-list dd {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  line-height: 1.35;
}

.financial-results__summary-list dt {
  font-weight: 700;
}

.financial-results__summary-list dd {
  font-weight: 400;
}

/* =========================================================
   Financial Evaluation Conclusion
   ========================================================= */

.financial-conclusion {
  padding-top: clamp(3rem, 6vw, 5rem);
}

/* Heading above the conclusion card */
.project-returns__title {
  margin: 0 0 1.5rem;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Main conclusion panel */
.project-returns__card {
  overflow: hidden;
  background: #eeeeed;
}

/* Orange card heading */
.project-returns__card-header {
  padding: 0.85rem 1.25rem;
  background: var(--color-financial-accent);
  color: var(--color-white);
}

.project-returns__card-header h4 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 700;
}

/* Alternating conclusion blocks */
.project-returns__block {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #e6e6e5;
}

.project-returns__block--light {
  background: #f7f7f6;
}

.project-returns__block p {
  max-width: 67rem;
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  font-weight: 400;
  line-height: 1.45;
}

/* Financial conclusion bullet list */
.project-returns__list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.project-returns__list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-primary);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 1.35;
}

.project-returns__list li::before {
  content: "›";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-financial-accent);
  font-weight: 700;
}

/* =========================================================
   Financial Sections — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .financial-results__layout {
    grid-template-columns: 1fr;
  }

  .financial-results__summary {
    max-width: 45rem;
    padding-top: 0;
  }

  .financial-results__summary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   Financial Sections — Mobile
   ========================================================= */

@media (max-width: 47.99rem) {
  .financial-results,
  .financial-conclusion {
    padding-block: 4rem;
  }

  .financial-results__summary-list {
    grid-template-columns: 1fr;
  }

  /* Preserve table readability through horizontal scrolling */
  .financial-results__table-wrapper {
    margin-inline: calc(var(--gutter) * -0.35);
    padding-bottom: 0.5rem;
  }

  .financial-results__table {
    min-width: 38rem;
  }

  .project-returns__block {
    padding: 1.5rem;
  }
}

/* =========================================================
   Investment Summary
   Reuses the existing project section heading classes
   ========================================================= */

.investment-summary {
  background: var(--color-white);
}

/* Three-column benefits layout */
.investment-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  row-gap: clamp(3rem, 6vw, 5rem);
}

/* Individual investment benefit */
.investment-benefit {
  min-width: 0;
}

/* Benefit icon and heading */
.investment-benefit__header {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(35, 31, 32, 0.2);
}

.investment-benefit__header h3 {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.35vw, 1.1rem);
  font-weight: 700;
  line-height: 1.1;
}

/* Shared circular icon */
.investment-benefit__icon {
  width: clamp(2.75rem, 4.5vw, 3.5rem);
  height: clamp(2.75rem, 4.5vw, 3.5rem);
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--color-financial-accent);
}

.investment-benefit__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Solid orange icon treatment */
.investment-benefit__icon--filled {
  background: var(--color-financial-accent);
  color: var(--color-white);
}

.investment-benefit__icon--filled svg {
  width: 72%;
  height: 72%;
}

/* Outlined orange icon treatment */
.investment-benefit__icon--outline {
  background: transparent;
  color: var(--color-financial-accent);
}

/* Benefit descriptions */
.investment-benefit__list {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.investment-benefit__list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--color-primary);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 400;
  line-height: 1.32;
}

/* Orange checkmark beside each benefit */
.investment-benefit__list li::before {
  content: "";
  position: absolute;
  top: 0.16rem;
  left: 0.15rem;
  width: 0.55rem;
  height: 0.95rem;
  border-right: 0.12rem solid var(--color-financial-accent);
  border-bottom: 0.12rem solid var(--color-financial-accent);
  transform: rotate(42deg);
}

/* Supporting source note */
.investment-benefit__reference {
  margin: 1rem 0 0;
  color: rgba(35, 31, 32, 0.42);
  font-size: clamp(0.65rem, 0.85vw, 0.76rem);
  font-style: italic;
  line-height: 1.3;
}

/* =========================================================
   Investment Summary — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .investment-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   Investment Summary — Mobile
   ========================================================= */

@media (max-width: 40rem) {
  .investment-summary__grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .investment-benefit {
    max-width: 32rem;
  }

  .investment-benefit__header {
    min-height: auto;
  }

  .investment-benefit__header h3 br {
    display: none;
  }

  .investment-benefit__list li {
    font-size: 0.9rem;
  }
}



/* =========================================================
   Global WordPress Section Headings
   Applies to every H2 Heading block across the website
   ========================================================= */

h2.wp-block-heading {
  position: relative;
  /* width: fit-content; */
  /* max-width: 100%; */
  /* margin: 0 0 clamp(1.75rem, 3vw, 2.5rem); */
  padding-bottom: clamp(1.1rem, 2vw, 1.5rem);
  color: #231f20;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

/* Decorative line beneath every section heading */
h2.wp-block-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(4.5rem, 9vw, 6.5rem);
  height: 0.2rem;
  background: #f4511e;
}
/* =========================================================
   Global WordPress Buttons
   Applies to every core Button block across the website
   ========================================================= */

.wp-block-button__link,
.wp-element-button {
  min-height: 3.75rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.3rem !important;
  border: 1px solid #231f20 !important;
  border-radius: 0 !important;
  background: #231f20 !important;
  color: #ffffff !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

/* Diagonal arrow added to every button */
.wp-block-button__link::after,
.wp-element-button::after {
  content: "\e800";
  font-family: "micons";
  flex: 0 0 auto;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

/* Global button interaction */
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.wp-element-button:hover,
.wp-element-button:focus-visible {
  border-color: #231f20 !important;
  background: #ffffff !important;
  color: #231f20 !important;
  transform: translateY(-0.15rem);
}

.wp-block-button__link:hover::after,
.wp-block-button__link:focus-visible::after,
.wp-element-button:hover::after,
.wp-element-button:focus-visible::after {
  transform: translate(0.15rem, -0.15rem);
}

/* =========================================================
   Buttons Inside Cover Blocks
   White style used on image backgrounds
   ========================================================= */

.wp-block-cover .wp-block-button__link,
.wp-block-cover .wp-element-button {
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #231f20 !important;
}

/* Orange arrow used on image-background buttons */
.wp-block-cover .wp-block-button__link::after,
.wp-block-cover .wp-element-button::after, .wp-block-button__link.wp-element-button::after{
  color: #f4511e;
}

/* Cover button hover treatment */
.wp-block-cover .wp-block-button__link:hover,
.wp-block-cover .wp-block-button__link:focus-visible,
.wp-block-cover .wp-element-button:hover,
.wp-block-cover .wp-element-button:focus-visible {
  border-color: #ffffff !important;
  background: #231f20 !important;
  color: #ffffff !important;
}

.wp-block-cover .wp-block-button__link:hover::after,
.wp-block-cover .wp-block-button__link:focus-visible::after,
.wp-block-cover .wp-element-button:hover::after,
.wp-block-cover .wp-element-button:focus-visible::after {
  color: #ffffff;
}

/* =========================================================
   Optional Button Variations
   Add "button-no-arrow" to remove the arrow from a button
   ========================================================= */

.button-no-arrow .wp-block-button__link::after,
.wp-block-button.button-no-arrow .wp-element-button::after {
  display: none;
}

/* =========================================================
   Mobile Adjustments
   ========================================================= */

@media (max-width: 47.99rem) {
  h2.wp-block-heading {
    font-size: clamp(1.8rem, 9vw, 2.75rem);
  }

  .wp-block-button__link,
  .wp-element-button {
    min-height: 3.5rem;
    padding: 0.9rem 1.15rem !important;
  }
}


/* Mineral/product list */
.wp-block-list.mineral-list {
	counter-reset: mineral-counter;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f26522;
}

.wp-block-list.mineral-list > li {
	counter-increment: mineral-counter;

	display: grid;
	grid-template-columns: 2.5rem minmax(240px, 300px) minmax(0, 1fr);
	align-items: center;
	column-gap: clamp(1.5rem, 4vw, 3rem);

	min-height: 80px;
	margin: 0;
	padding: 1.1rem 0;

	border-top: 1px solid #f26522;

	color: #373536;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.3rem);
	font-weight: 400;
	line-height: 1.4;
}

/* Automatic 01, 02, 03 numbering */
.wp-block-list.mineral-list > li::before {
	content: counter(mineral-counter, decimal-leading-zero);

	color: #373536;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1;
}

/* Mineral name */
.wp-block-list.mineral-list > li > strong {
	display: block;

	color: #231f20;
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
}

/* Tablet */
@media (max-width: 782px) {
	.wp-block-list.mineral-list > li {
		grid-template-columns: 2rem minmax(0, 1fr);
		column-gap: 1rem;
		row-gap: 0.6rem;
		padding: 1.25rem 0;
	}

	.wp-block-list.mineral-list > li::before {
		grid-column: 1;
		grid-row: 1;
	}

	.wp-block-list.mineral-list > li > strong {
		grid-column: 2;
		grid-row: 1;
	}

	/*
	 * The description is an anonymous grid item because it is plain text
	 * after the strong element.
	 */
	.wp-block-list.mineral-list > li {
		align-items: start;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.wp-block-list.mineral-list > li {
		display: block;
	}

	.wp-block-list.mineral-list > li::before {
		display: block;
		margin-bottom: 0.65rem;
	}

	.wp-block-list.mineral-list > li > strong {
		margin-bottom: 0.65rem;
	}
}

.wp-block-list.mineral-list > li > span {
	display: block;
	min-width: 0;
}

@media (max-width: 782px) {
	.wp-block-list.mineral-list > li > span {
		grid-column: 2;
		grid-row: 2;
	}
}

/* This is BlockQuote */

.wp-block-quote {
	margin: 0;
	padding-left: 1.5rem;
	border-left: 4px solid #231f20;
}

.wp-block-quote cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
}

/* Top and bottom spacing for top-level page blocks */
.page-content > * {
	margin-top: clamp(3rem, 5vw, 5rem) !important;
	margin-bottom: clamp(3rem, 5vw, 5rem) !important;
}

/* No unnecessary spacing at the beginning and end */
.page-content > :first-child {
	margin-top: 0 !important;
}

.page-content > :last-child {
	margin-bottom: 0 !important;
}

/* Hide empty paragraph blocks */
.page-content > p:empty {
	display: none;
}


/* =========================================================
   Full-screen search overlay
   ========================================================= */

html.has-search-overlay-open {
	overflow: hidden;
}

.site-search-overlay {
	--search-overlay-background: #231f20;
	--search-overlay-text: #ffffff;
	--search-overlay-muted: rgba(255, 255, 255, 0.68);
	--search-overlay-accent: #f4511e;

	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;

	margin: 0;
	padding: 0;

	border: 0;

	color: var(--search-overlay-text);
	background:
		linear-gradient(
			135deg,
			rgba(35, 31, 32, 0.98),
			rgba(55, 52, 53, 0.97)
		);

	overflow-x: hidden;
	overflow-y: auto;

	opacity: 0;
	transform: scale(1.015);

	transition:
		opacity 240ms ease,
		transform 320ms
			cubic-bezier(0.22, 1, 0.36, 1);
}

.site-search-overlay[open].is-open {
	opacity: 1;
	transform: scale(1);
}

.site-search-overlay::backdrop {
	background-color: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(5px);
}

.site-search-overlay__inner {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	min-height: 100%;

	padding:
		clamp(6rem, 12vw, 10rem)
		var(--site-container-gutter, clamp(1.25rem, 4vw, 3.75rem));

	box-sizing: border-box;
}

/*
 * Optional topographic pattern.
 */
.site-search-overlay__inner::before {
	content: "";

	position: absolute;
	inset: 0;

	background-image:
		url("../images/BG.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	opacity: 0.08;

	pointer-events: none;
}

.site-search-overlay__content {
	position: relative;
	z-index: 1;

	width: min(100%, 920px);
}

.site-search-overlay__eyebrow {
	display: block;
	margin-bottom: 1.25rem;

	color: var(--search-overlay-accent);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.site-search-overlay__title {
	max-width: 820px;
	margin: 0;

	color: var(--search-overlay-text);

	font-family:
		"Libre Baskerville",
		Georgia,
		serif;

	font-size:
		clamp(2.4rem, 6vw, 5.25rem);

	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.035em;
}

.site-search-overlay__description {
	max-width: 730px;
	margin:
		clamp(1.5rem, 3vw, 2rem)
		0
		clamp(2.5rem, 5vw, 4rem);

	color: var(--search-overlay-muted);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size:
		clamp(1rem, 1.8vw, 1.25rem);

	line-height: 1.55;
}

.site-search-overlay__close {
	position: fixed;
	z-index: 3;
	top: clamp(1.25rem, 3vw, 2.5rem);
	right: clamp(1.25rem, 3vw, 2.5rem);

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 54px;
	height: 54px;

	padding: 0;

	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;

	color: #ffffff;
	background: transparent;

	cursor: pointer;

	transition:
		color 200ms ease,
		background-color 200ms ease,
		border-color 200ms ease,
		transform 250ms ease;
}

.site-search-overlay__close svg {
	width: 23px;
	height: 23px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
}

.site-search-overlay__close:hover,
.site-search-overlay__close:focus-visible {
	border-color: var(--search-overlay-accent);
	background-color: var(--search-overlay-accent);
	transform: rotate(90deg);
}

.site-search-overlay__close:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 4px;
}

/* =========================================================
   Search form
   ========================================================= */

.site-search-form {
	--search-form-color: #231f20;
	--search-form-muted: rgba(35, 31, 32, 0.55);
	--search-form-line: rgba(35, 31, 32, 0.35);
	--search-form-accent: #f4511e;

	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(1rem, 3vw, 2rem);

	width: 100%;

	border-bottom:
		2px solid
		var(--search-form-line);

	color: var(--search-form-color);

	transition:
		border-color 200ms ease;
}

.site-search-form:focus-within {
	border-color:
		var(--search-form-accent);
}

.site-search-overlay .site-search-form {
	--search-form-color: #ffffff;
	--search-form-muted: rgba(255, 255, 255, 0.5);
	--search-form-line: rgba(255, 255, 255, 0.45);
}

.site-search-form__input {
	width: 100%;
	min-width: 0;

	padding: 1rem 0 1.25rem;

	border: 0;
	border-radius: 0;
	outline: 0;

	color: var(--search-form-color);
	background: transparent;

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size:
		clamp(1.4rem, 3.5vw, 2.4rem);

	font-weight: 400;
	line-height: 1.2;

	appearance: none;
	box-shadow: none;
}

.site-search-form__input::placeholder {
	color: var(--search-form-muted);
	opacity: 1;
}

.site-search-form__input::-webkit-search-decoration,
.site-search-form__input::-webkit-search-cancel-button {
	appearance: none;
}

.site-search-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;

	padding: 0.9rem 0 1.15rem;

	border: 0;

	color: var(--search-form-color);
	background: transparent;

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.95rem;
	font-weight: 600;

	cursor: pointer;

	transition:
		color 200ms ease,
		transform 200ms ease;
}

.site-search-form__submit svg {
	width: 23px;
	height: 23px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-search-form__submit:hover,
.site-search-form__submit:focus-visible {
	color: var(--search-form-accent);
	transform: translateX(4px);
}

.site-search-form__submit:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 5px;
}

/* =========================================================
   Mobile overlay
   ========================================================= */

@media (max-width: 600px) {
	.site-search-form {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.75rem;
	}

	.site-search-form__submit span {
		position: absolute;

		width: 1px;
		height: 1px;

		padding: 0;
		margin: -1px;

		overflow: hidden;
		clip: rect(0, 0, 0, 0);

		white-space: nowrap;
		border: 0;
	}

	.site-search-overlay__close {
		width: 46px;
		height: 46px;
	}
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.site-search-overlay,
	.site-search-overlay *,
	.site-search-overlay *::before,
	.site-search-overlay *::after {
		animation: none !important;
		transition: none !important;
	}
}

/* =========================================================
   Search page
   ========================================================= */

.search-page {
	--search-ink: #231f20;
	--search-paper: #ffffff;
	--search-accent: #f4511e;
	--search-muted: #625d5e;
	--search-border: rgba(35, 31, 32, 0.2);
	--search-surface: #f5f4f3;

	color: var(--search-ink);
	background-color: var(--search-paper);
}

/* =========================================================
   Search page header
   ========================================================= */

.search-page__header {
	padding-block:
		clamp(4rem, 8vw, 7rem);

	border-bottom:
		1px solid var(--search-border);

	background-color:
		var(--search-surface);
}

.search-page__eyebrow {
	display: block;
	margin-bottom: 1rem;

	color: var(--search-accent);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.search-page__title {
	max-width: 1000px;
	margin: 0;

	color: var(--search-ink);

	font-family:
		"Libre Baskerville",
		Georgia,
		serif;

	font-size:
		clamp(2.25rem, 5vw, 4.5rem);

	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.search-page__query {
	display: block;
	margin-top: 0.3em;

	color: var(--search-accent);
}

.search-page__result-count {
	margin:
		clamp(1.25rem, 3vw, 1.75rem)
		0 0;

	color: var(--search-muted);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 1rem;
	line-height: 1.5;
}

.search-page__form {
	max-width: 850px;
	margin-top:
		clamp(2rem, 5vw, 3.5rem);
}

/* =========================================================
   Main search layout
   ========================================================= */

.search-page__layout {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(250px, 310px);

	align-items: start;
	gap: clamp(3rem, 7vw, 6rem);

	padding-block:
		clamp(4rem, 8vw, 7rem);
}

.search-page__results {
	min-width: 0;
}

/* =========================================================
   Results list
   ========================================================= */

.search-results-list {
	border-top:
		1px solid var(--search-accent);
}

.search-result-card {
	display: grid;
	grid-template-columns:
		minmax(190px, 270px)
		minmax(0, 1fr);

	align-items: stretch;
	gap: clamp(1.75rem, 4vw, 3.5rem);

	margin: 0;
	padding:
		clamp(2rem, 4vw, 3rem)
		0;

	border-bottom:
		1px solid var(--search-accent);
}

.search-result-card--no-image {
	grid-template-columns: minmax(0, 1fr);
}

.search-result-card__image-link {
	display: block;
	min-height: 230px;

	overflow: hidden;
	background-color: #e9e8e7;
}

.search-result-card__image {
	display: block;

	width: 100%;
	height: 100%;
	min-height: 230px;

	object-fit: cover;
	object-position: center;

	transition:
		transform 550ms
			cubic-bezier(0.22, 1, 0.36, 1);
}

.search-result-card__image-link:hover
	.search-result-card__image,
.search-result-card__image-link:focus-visible
	.search-result-card__image {
	transform: scale(1.045);
}

.search-result-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;

	min-width: 0;
}

/* =========================================================
   Result metadata
   ========================================================= */

.search-result-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;

	margin-bottom: 1rem;

	color: var(--search-muted);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.78rem;
	line-height: 1.4;
}

.search-result-card__type {
	color: var(--search-accent);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.search-result-card__separator {
	opacity: 0.55;
}

/* =========================================================
   Result title and excerpt
   ========================================================= */

.search-result-card__title {
	max-width: 780px;
	margin: 0;

	color: var(--search-ink);

	font-family:
		"Libre Baskerville",
		Georgia,
		serif;

	font-size:
		clamp(1.35rem, 2.5vw, 2rem);

	font-weight: 700;
	line-height: 1.2;
}

.search-result-card__title a {
	color: inherit;
	text-decoration: none;

	transition: color 200ms ease;
}

.search-result-card__title a:hover,
.search-result-card__title a:focus-visible {
	color: var(--search-accent);
}

.search-result-card__excerpt {
	max-width: 760px;
	margin: 1.25rem 0 0;

	color: #4d4849;

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.98rem;
	line-height: 1.6;
}

/* =========================================================
   Highlighted search terms
   ========================================================= */

.search-highlight {
	padding: 0.05em 0.14em;

	border-radius: 0.08em;

	color: inherit;
	background-color:
		rgba(244, 81, 30, 0.18);

	box-shadow:
		inset 0 -0.12em 0
		rgba(244, 81, 30, 0.32);
}

.search-page__title .search-highlight {
	padding: 0;

	color: inherit;
	background: transparent;
	box-shadow: none;
}

/* =========================================================
   Result link
   ========================================================= */

.search-result-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;

	margin-top: 1.5rem;

	color: var(--search-ink);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;

	transition:
		color 200ms ease,
		gap 200ms ease;
}

.search-result-card__link svg {
	width: 18px;
	height: 18px;

	fill: none;
	stroke: var(--search-accent);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.search-result-card__link:hover,
.search-result-card__link:focus-visible {
	gap: 0.95rem;
	color: var(--search-accent);
}

/* =========================================================
   Sidebar
   ========================================================= */

.search-page__sidebar {
	min-width: 0;
}

.search-page__sidebar > * + * {
	margin-top: 2rem;
}

.search-page__sidebar
	.widget {
	padding:
		clamp(1.5rem, 3vw, 2rem);

	background-color:
		var(--search-surface);
}

.search-page__sidebar
	.widget-title {
	margin: 0 0 1.25rem;

	color: var(--search-ink);

	font-family:
		"Libre Baskerville",
		Georgia,
		serif;

	font-size: 1.3rem;
	line-height: 1.2;
}

.search-page__sidebar
	ul {
	margin: 0;
	padding: 0;

	list-style: none;
}

.search-page__sidebar
	li + li {
	margin-top: 0.75rem;
}

.search-page__sidebar
	a {
	color: var(--search-ink);
	text-decoration: none;
}

.search-page__sidebar
	a:hover,
.search-page__sidebar
	a:focus-visible {
	color: var(--search-accent);
}

/* =========================================================
   No results
   ========================================================= */

.search-page__empty {
	padding:
		clamp(2rem, 5vw, 4rem);

	border-left:
		6px solid var(--search-accent);

	background-color:
		var(--search-surface);
}

.search-page__empty h2 {
	margin: 0 0 1.25rem;

	color: var(--search-ink);

	font-family:
		"Libre Baskerville",
		Georgia,
		serif;

	font-size:
		clamp(1.75rem, 3vw, 2.5rem);

	line-height: 1.15;
}

.search-page__empty p {
	max-width: 680px;
	margin: 0;

	color: var(--search-muted);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	line-height: 1.6;
}

.search-page__empty p + p {
	margin-top: 1rem;
}

.search-page__empty-form {
	margin-top: 2rem;
}

/* =========================================================
   Pagination
   ========================================================= */

.search-page__pagination {
	margin-top:
		clamp(3rem, 6vw, 5rem);
}

.search-page__pagination
	.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
}

.search-page__pagination
	.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 44px;
	min-height: 44px;

	padding: 0.65rem 0.9rem;

	border:
		1px solid var(--search-ink);

	color: var(--search-ink);
	background-color: transparent;

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;

	transition:
		color 200ms ease,
		border-color 200ms ease,
		background-color 200ms ease;
}

.search-page__pagination
	.page-numbers:hover,
.search-page__pagination
	.page-numbers:focus-visible,
.search-page__pagination
	.page-numbers.current {
	border-color: var(--search-accent);

	color: #ffffff;
	background-color:
		var(--search-accent);
}

/* =========================================================
   Responsive search layout
   ========================================================= */

@media (max-width: 900px) {
	.search-page__layout {
		grid-template-columns: 1fr;
	}

	.search-page__sidebar {
		padding-top: 3rem;

		border-top:
			1px solid var(--search-border);
	}
}

@media (max-width: 650px) {
	.search-result-card {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.search-result-card__image-link,
	.search-result-card__image {
		height: 280px;
		min-height: 0;
	}

	.search-result-card__content {
		justify-content: flex-start;
	}
}



/* =========================================================
   Dynamic footer navigation
   ========================================================= */

.site-footer__navigation {
	min-width: 0;
}

/*
 * WordPress now generates one menu list. This layout fills
 * the first column vertically before continuing into the
 * second column.
 */
.site-footer__navigation
	.site-footer__menu {
	display: grid;
	grid-template-rows:
		repeat(
			var(--footer-menu-rows, 4),
			auto
		);
	grid-auto-flow: column;
	grid-auto-columns:
		minmax(140px, 1fr);

	gap: 0.9rem clamp(2rem, 5vw, 5rem);

	margin: 0;
	padding: 0;

	list-style: none;
}

.site-footer__menu
	.menu-item {
	margin: 0;
	padding: 0;
}

.site-footer__menu
	a {
	display: inline-block;

	color: inherit;
	text-decoration: none;

	transition:
		color 200ms ease,
		transform 220ms ease;
}

.site-footer__menu
	a:hover,
.site-footer__menu
	a:focus-visible,
.site-footer__menu
	.current-menu-item > a {
	color: var(--primary, #f4511e);
	transform: translateX(4px);
}


/* =========================================================
   Newsletter dialog
   ========================================================= */

html.has-newsletter-dialog-open {
	overflow: hidden;
}

.newsletter-dialog {
	--newsletter-ink: #231f20;
	--newsletter-muted: #5e595a;
	--newsletter-paper: #ffffff;
	--newsletter-accent: #f4511e;

	width: min(
		calc(100% - 2rem),
		760px
	);

	max-width: 760px;
	max-height: min(90vh, 800px);

	margin: auto;
	padding: 0;

	border: 0;
	border-radius: 0;

	color: var(--newsletter-ink);
	background: transparent;

	overflow: visible;

	opacity: 0;
	transform:
		translateY(24px)
		scale(0.975);

	transition:
		opacity 220ms ease,
		transform 280ms
			cubic-bezier(
				0.22,
				1,
				0.36,
				1
			);
}

.newsletter-dialog[open] {
	display: block;
}

.newsletter-dialog.is-open {
	opacity: 1;
	transform:
		translateY(0)
		scale(1);
}

.newsletter-dialog.is-closing {
	opacity: 0;
	transform:
		translateY(16px)
		scale(0.985);
}

.newsletter-dialog::backdrop {
	background-color:
		rgba(17, 15, 16, 0.82);

	-webkit-backdrop-filter:
		blur(7px);
	backdrop-filter:
		blur(7px);
}

.newsletter-dialog__panel {
	position: relative;

	max-height: min(90vh, 800px);

	padding:
		clamp(2rem, 6vw, 4.5rem);

	overflow-x: hidden;
	overflow-y: auto;

	background-color:
		var(--newsletter-paper);

	box-shadow:
		0 30px 90px
		rgba(0, 0, 0, 0.32);

	box-sizing: border-box;
}

/*
 * Decorative shape.
 */
.newsletter-dialog__panel::before {
	content: "";

	position: absolute;
	top: 0;
	right: 0;

	width: clamp(110px, 22vw, 190px);
	aspect-ratio: 1;

	background-color:
		var(--newsletter-accent);

	border-radius: 0 0 0 100%;

	opacity: 0.1;

	pointer-events: none;
}

.newsletter-dialog__content {
	position: relative;
	z-index: 1;
}

.newsletter-dialog__eyebrow {
	display: block;

	margin-bottom: 1rem;

	color:
		var(--newsletter-accent);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.newsletter-dialog__title {
	max-width: 620px;

	margin: 0;

	color: var(--newsletter-ink);

	font-family:
		"Libre Baskerville",
		Georgia,
		serif;

	font-size:
		clamp(2rem, 5vw, 3.6rem);

	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.035em;
}

.newsletter-dialog__description {
	max-width: 590px;

	margin:
		clamp(1.25rem, 3vw, 1.75rem)
		0 0;

	color: var(--newsletter-muted);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 1rem;
	line-height: 1.6;
}

.newsletter-dialog__close {
	position: absolute;
	z-index: 3;
	top: clamp(1rem, 3vw, 1.75rem);
	right: clamp(1rem, 3vw, 1.75rem);

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 48px;
	height: 48px;

	padding: 0;

	border:
		1px solid
		rgba(35, 31, 32, 0.25);

	border-radius: 50%;

	color: var(--newsletter-ink);
	background-color:
		rgba(255, 255, 255, 0.9);

	cursor: pointer;

	transition:
		color 200ms ease,
		border-color 200ms ease,
		background-color 200ms ease,
		transform 280ms ease;
}

.newsletter-dialog__close svg {
	width: 21px;
	height: 21px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
}

.newsletter-dialog__close:hover,
.newsletter-dialog__close:focus-visible {
	border-color:
		var(--newsletter-accent);

	color: #ffffff;
	background-color:
		var(--newsletter-accent);

	transform: rotate(90deg);
}

.newsletter-dialog__close:focus-visible {
	outline:
		2px solid
		var(--newsletter-accent);

	outline-offset: 4px;
}

/* =========================================================
   Mailchimp form
   ========================================================= */

.newsletter-dialog__form {
	margin-top:
		clamp(2rem, 5vw, 3.5rem);
}

.newsletter-dialog__form form,
.newsletter-dialog__form
	.mc4wp-form-fields {
	display: grid;
	gap: 1rem;
}

.newsletter-dialog__form p {
	margin: 0;
}

.newsletter-dialog__form label {
	display: block;

	margin-bottom: 0.5rem;

	color: var(--newsletter-ink);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.85rem;
	font-weight: 700;
}

.newsletter-dialog__form
	input[type="text"],
.newsletter-dialog__form
	input[type="email"],
.newsletter-dialog__form
	input[type="tel"],
.newsletter-dialog__form
	select,
.newsletter-dialog__form
	textarea {
	display: block;

	width: 100%;
	min-height: 56px;

	padding: 0.9rem 1rem;

	border:
		1px solid
		rgba(35, 31, 32, 0.3);

	border-radius: 0;

	color: var(--newsletter-ink);
	background-color: #ffffff;

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 1rem;

	box-sizing: border-box;

	transition:
		border-color 200ms ease,
		box-shadow 200ms ease;
}

.newsletter-dialog__form
	textarea {
	min-height: 130px;
	resize: vertical;
}

.newsletter-dialog__form
	input:focus,
.newsletter-dialog__form
	select:focus,
.newsletter-dialog__form
	textarea:focus {
	border-color:
		var(--newsletter-accent);

	outline: 0;

	box-shadow:
		0 0 0 3px
		rgba(244, 81, 30, 0.14);
}

.newsletter-dialog__form
	input[type="submit"],
.newsletter-dialog__form
	button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: fit-content;
	min-height: 52px;

	padding: 0.85rem 1.75rem;

	border:
		1px solid
		var(--newsletter-accent);

	color: #ffffff;
	background-color:
		var(--newsletter-accent);

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	font-size: 0.9rem;
	font-weight: 700;

	cursor: pointer;

	transition:
		color 200ms ease,
		background-color 200ms ease,
		transform 220ms ease;
}

.newsletter-dialog__form
	input[type="submit"]:hover,
.newsletter-dialog__form
	input[type="submit"]:focus-visible,
.newsletter-dialog__form
	button[type="submit"]:hover,
.newsletter-dialog__form
	button[type="submit"]:focus-visible {
	color:
		var(--newsletter-accent);

	background-color: transparent;

	transform: translateY(-2px);
}

.newsletter-dialog__form
	.mc4wp-response {
	margin-top: 1rem;

	font-family:
		"Montserrat",
		Arial,
		sans-serif;

	line-height: 1.5;
}

/* =========================================================
   Responsive footer and dialog
   ========================================================= */

@media (max-width: 700px) {
	.site-footer__navigation
		.site-footer__menu {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		grid-auto-flow: row;
		grid-auto-columns: auto;
	}

	.newsletter-dialog__panel {
		padding:
			4.75rem 1.5rem 2rem;
	}

	.newsletter-dialog__close {
		width: 43px;
		height: 43px;
	}
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.newsletter-dialog,
	.newsletter-dialog *,
	.newsletter-dialog *::before,
	.newsletter-dialog *::after,
	.footer-subscribe,
	.footer-subscribe svg {
		animation: none !important;
		transition: none !important;
	}
}

/* =========================================================
   Page hero statistics
   ========================================================= */

.hero-banner {
	position: relative;
	isolation: isolate;

	overflow: hidden;
}

.hero-banner__background {
	position: absolute;
	inset: 0;
	z-index: -2;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	transform: scale(1.01);

	animation:
		page-hero-background-zoom
		14s ease-out both;
}

@keyframes page-hero-background-zoom {
	from {
		transform: scale(1.01);
	}

	to {
		transform: scale(1.07);
	}
}

/*
 * Add enough space below the hero content for the statistics
 * bar when it is enabled.
 */
.hero-banner--has-statistics {
	min-height:
		clamp(42rem, 70vw, 52rem);

	overflow: hidden;
}

/*
 * Place the statistics bar at the bottom of the background.
 */
.hero-banner__statistics-wrap {
	position: absolute;
	z-index: 5;

	right: 0;
	bottom:
		clamp(2rem, 4vw, 4rem);
	left: 0;

	width: 100%;
}

.hero-banner__statistics {
	width: 100%;

	margin: 0;
}

/*
 * The reference design uses four equal columns.
 */
.hero-banner__statistics
	.statistics-counters__grid {
	grid-template-columns:
		repeat(4, minmax(0, 1fr));
}

/*
 * The cards are slightly shorter inside the page hero than
 * they are when the standalone counter block is used.
 */
.hero-banner__statistics
	.statistic-card {
	min-height:
		clamp(12rem, 16vw, 13.5rem);

	padding:
		clamp(1.75rem, 3vw, 2.5rem)
		clamp(1.5rem, 2.5vw, 2rem);
}

.hero-banner__statistics
	.statistic-card__number {
	font-size:
		clamp(3.5rem, 5.5vw, 4.7rem);
}

/* =========================================================
   Tablet hero statistics
   ========================================================= */

@media (max-width: 900px) {
	.hero-banner--has-statistics {
		min-height: auto;

		padding-bottom:
			clamp(2.5rem, 6vw, 4rem);

		overflow: hidden;
	}

	.hero-banner__statistics-wrap {
		position: relative;

		right: auto;
		bottom: auto;
		left: auto;

		margin-top:
			clamp(3rem, 8vw, 5rem);
	}

	.hero-banner__statistics
		.statistics-counters__grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

	.hero-banner__statistics
		.statistic-card {
		min-height: 12rem;
	}
}

/* =========================================================
   Mobile hero statistics
   ========================================================= */

@media (max-width: 560px) {
	.hero-banner__statistics
		.statistics-counters__grid {
		grid-template-columns: 1fr;
	}

	.hero-banner__statistics
		.statistic-card {
		min-height: auto;
	}

	.hero-banner__statistics
		.statistic-card__number {
		font-size:
			clamp(3.2rem, 16vw, 4.4rem);
	}
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.hero-banner__background {
		transform: none;
		animation: none;
	}
}


/* =========================================================
   Scroll-controlled Media & Text video
   ========================================================= */

.scroll-play-video
	.wp-block-media-text__media {
	position: relative;

	overflow: hidden;

	background-color:
		var(--color-primary, #231f20);
}

.scroll-play-video
	.wp-block-media-text__media video {
	display: block;

	width: 100%;
	height: 100%;

	min-height:
		clamp(22rem, 42vw, 38rem);

	border: 0;

	background-color:
		var(--color-primary, #231f20);

	object-fit: cover;
	object-position: center;

	transform: scale(1);

	transition:
		transform 900ms
			cubic-bezier(
				0.22,
				1,
				0.36,
				1
			),
		filter 500ms ease;
}

/*
 * Subtle visual transition as the section enters view.
 */
.scroll-play-video.is-video-in-view
	.wp-block-media-text__media video {
	transform: scale(1.015);
}

.scroll-play-video.is-video-playing
	.wp-block-media-text__media video {
	filter:
		brightness(1.03)
		saturate(1.03);
}

@media (max-width: 600px) {
	.scroll-play-video
		.wp-block-media-text__media video {
		min-height: 15rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.scroll-play-video
		.wp-block-media-text__media video {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}
}

/* =========================================================
   News page
   ========================================================= */

.news-page {
	--news-primary:
		var(--color-primary, #231f20);

	--news-secondary:
		var(--color-secondary, #f4511e);

	--news-white:
		var(--color-white, #ffffff);

	--news-muted: #625d5e;
	--news-surface: #f5f4f3;
	--news-border:
		rgba(35, 31, 32, 0.18);

	color: var(--news-primary);
	background-color: var(--news-white);
}

/* =========================================================
   Optional page introduction
   ========================================================= */

.news-page__introduction {
	padding-block:
		clamp(3rem, 6vw, 5rem);

	border-bottom:
		1px solid var(--news-border);
}

.news-page__introduction-content {
	max-width: 850px;

	color: var(--news-primary);

	font-family:
		var(
			--font-body,
			"Montserrat",
			Arial,
			sans-serif
		);

	font-size:
		clamp(1rem, 1.7vw, 1.2rem);

	line-height: 1.65;
}

.news-page__introduction-content
	> :first-child {
	margin-top: 0;
}

.news-page__introduction-content
	> :last-child {
	margin-bottom: 0;
}

/* =========================================================
   News archive heading
   ========================================================= */

.news-archive__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

	gap: 2rem;

	margin-bottom:
		clamp(3rem, 6vw, 5rem);
}

.news-archive__eyebrow {
	display: block;

	margin-bottom: 0.8rem;

	color: var(--news-secondary);

	font-family:
		var(
			--font-body,
			"Montserrat",
			Arial,
			sans-serif
		);

	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.news-archive__title {
	margin: 0;

	color: var(--news-primary);

	font-family:
		var(
			--font-display,
			"Libre Baskerville",
			Georgia,
			serif
		);

	font-size:
		clamp(2.3rem, 5vw, 4rem);

	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

.news-archive__heading-line {
	display: block;

	width:
		clamp(5rem, 10vw, 7.5rem);

	height: 0.18rem;

	margin-top:
		clamp(1.25rem, 2vw, 1.75rem);

	background-color:
		var(--news-secondary);
}

.news-archive__count {
	margin: 0 0 0.25rem;

	color: var(--news-muted);

	font-family:
		var(
			--font-body,
			"Montserrat",
			Arial,
			sans-serif
		);

	font-size: 0.9rem;
	line-height: 1.4;
}

/* =========================================================
   News grid
   ========================================================= */

.news-archive__grid {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap:
		clamp(2rem, 4vw, 3rem)
		clamp(1.5rem, 3vw, 2.25rem);
}

/* =========================================================
   News card
   ========================================================= */

.news-card {
	position: relative;

	display: flex;
	flex-direction: column;

	min-width: 0;
	height: 100%;

	margin: 0;

	background-color: var(--news-white);

	box-shadow:
		0 8px 26px
		rgba(35, 31, 32, 0.07);

	overflow: hidden;

	transition:
		transform 450ms
			cubic-bezier(
				0.22,
				1,
				0.36,
				1
			),
		box-shadow 400ms ease;
}

/* =========================================================
   News card image
   ========================================================= */

.news-card__image-link {
	position: relative;

	display: block;

	aspect-ratio: 16 / 10;

	overflow: hidden;

	background-color:
		var(--news-surface);
}

.news-card__image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	transform: scale(1);

	transition:
		transform 700ms
			cubic-bezier(
				0.22,
				1,
				0.36,
				1
			),
		filter 450ms ease;
}

.news-card__image-overlay {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(35, 31, 32, 0) 40%,
			rgba(35, 31, 32, 0.25) 100%
		);

	opacity: 0;

	pointer-events: none;

	transition: opacity 400ms ease;
}

/* =========================================================
   News card content
   ========================================================= */

.news-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;

	padding:
		clamp(1.5rem, 3vw, 2rem);
}

/* =========================================================
   News metadata
   ========================================================= */

.news-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	gap: 0.65rem;

	margin-bottom: 1rem;

	color: var(--news-muted);

	font-family:
		var(
			--font-body,
			"Montserrat",
			Arial,
			sans-serif
		);

	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.news-card__date {
	color: var(--news-secondary);
}

.news-card__meta-divider {
	display: inline-block;

	width: 1px;
	height: 0.85rem;

	background-color:
		var(--news-border);
}

.news-card__category {
	color: var(--news-muted);
}

/* =========================================================
   News title
   ========================================================= */

.news-card__title {
	margin: 0;

	color: var(--news-primary);

	font-family:
		var(
			--font-display,
			"Libre Baskerville",
			Georgia,
			serif
		);

	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.025em;
}

.news-card__title a {
	color: inherit;
	text-decoration: none;

	transition: color 220ms ease;
}

.news-card__title a:hover,
.news-card__title a:focus-visible {
	color: var(--news-secondary);
}

/* =========================================================
   News excerpt
   ========================================================= */

.news-card__excerpt {
	margin: 1.15rem 0 0;

	color: var(--news-muted);

	font-family:
		var(
			--font-body,
			"Montserrat",
			Arial,
			sans-serif
		);

	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.6;
}

/* =========================================================
   Read-more link
   ========================================================= */

.news-card__read-more {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 1rem;

	width: 100%;

	margin-top: auto;
	padding-top: 1.75rem;
	padding-bottom: 0.65rem;

	color: var(--news-primary);

	font-family:
		var(
			--font-body,
			"Montserrat",
			Arial,
			sans-serif
		);

	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

/*
 * Static line.
 */
.news-card__read-more::after {
	content: "";

	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	height: 1px;

	background-color:
		var(--news-border);
}

/*
 * Animated orange line.
 */
.news-card__read-more::before {
	content: "";

	position: absolute;
	z-index: 1;

	right: 100%;
	bottom: 0;
	left: 0;

	height: 2px;

	background-color:
		var(--news-secondary);

	transition:
		right 350ms
			cubic-bezier(
				0.22,
				1,
				0.36,
				1
			);
}

.news-card__read-more svg {
	width: 1.35rem;
	height: 1.35rem;

	flex: 0 0 auto;

	fill: none;
	stroke: var(--news-secondary);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;

	transition:
		transform 300ms
			cubic-bezier(
				0.22,
				1,
				0.36,
				1
			);
}

.news-card__read-more:hover,
.news-card__read-more:focus-visible {
	color: var(--news-secondary);
}

.news-card__read-more:hover::before,
.news-card__read-more:focus-visible::before {
	right: 0;
}

.news-card__read-more:hover svg,
.news-card__read-more:focus-visible svg {
	transform:
		translate(0.25rem, -0.25rem);
}

.news-card__read-more:focus-visible {
	outline: 2px solid var(--news-secondary);
	outline-offset: 5px;
}

/* =========================================================
   Card hover
   ========================================================= */

@media (hover: hover) and (pointer: fine) {
	.news-card:hover {
		transform: translateY(-0.5rem);

		box-shadow:
			0 20px 45px
			rgba(35, 31, 32, 0.13);
	}

	.news-card:hover
		.news-card__image {
		transform: scale(1.055);

		filter:
			saturate(1.05)
			brightness(0.96);
	}

	.news-card:hover
		.news-card__image-overlay {
		opacity: 1;
	}
}

/* =========================================================
   No articles
   ========================================================= */

.news-archive__empty {
	display: flex;
	align-items: center;

	gap:
		clamp(1.5rem, 4vw, 3rem);

	padding:
		clamp(2rem, 5vw, 4rem);

	border-left:
		0.35rem solid
		var(--news-secondary);

	background-color:
		var(--news-surface);
}

.news-archive__empty-icon {
	display: grid;
	place-items: center;

	flex: 0 0 auto;

	width:
		clamp(4rem, 8vw, 5.5rem);

	aspect-ratio: 1;

	border-radius: 50%;

	color: var(--news-white);
	background-color: var(--news-primary);
}

.news-archive__empty-icon svg {
	width: 52%;
	height: 52%;

	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.news-archive__empty h3 {
	margin: 0 0 0.75rem;

	color: var(--news-primary);

	font-family:
		var(
			--font-display,
			"Libre Baskerville",
			Georgia,
			serif
		);

	font-size:
		clamp(1.4rem, 3vw, 2rem);

	line-height: 1.2;
}

.news-archive__empty p {
	max-width: 620px;

	margin: 0;

	color: var(--news-muted);

	font-family:
		var(
			--font-body,
			"Montserrat",
			Arial,
			sans-serif
		);

	line-height: 1.6;
}

/* =========================================================
   News pagination
   ========================================================= */

.news-pagination {
	margin-top:
		clamp(3.5rem, 7vw, 6rem);
}

.news-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	gap: 0.65rem;

	margin: 0;
	padding: 0;

	list-style: none;
}

.news-pagination
	.page-numbers li {
	margin: 0;
	padding: 0;
}

.news-pagination
	a.page-numbers,
.news-pagination
	span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 0.5rem;

	min-width: 46px;
	min-height: 46px;

	padding: 0.7rem 0.95rem;

	border:
		1px solid
		var(--news-primary);

	color: var(--news-primary);
	background-color: transparent;

	font-family:
		var(
			--font-body,
			"Montserrat",
			Arial,
			sans-serif
		);

	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;

	box-sizing: border-box;

	transition:
		color 220ms ease,
		border-color 220ms ease,
		background-color 220ms ease,
		transform 220ms ease;
}

.news-pagination
	a.page-numbers:hover,
.news-pagination
	a.page-numbers:focus-visible,
.news-pagination
	span.page-numbers.current {
	border-color: var(--news-secondary);

	color: var(--news-white);
	background-color:
		var(--news-secondary);

	transform: translateY(-2px);
}

.news-pagination
	a.page-numbers:focus-visible {
	outline: 2px solid var(--news-secondary);
	outline-offset: 4px;
}

/* =========================================================
   News page tablet
   ========================================================= */

@media (max-width: 62rem) {
	.news-archive__grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}
}

/* =========================================================
   News page mobile
   ========================================================= */

@media (max-width: 47.99rem) {
	.news-archive {
		padding-block: 4rem;
	}

	.news-archive__header {
		flex-direction: column;
		align-items: flex-start;

		margin-bottom: 3rem;
	}

	.news-archive__grid {
		grid-template-columns: 1fr;
	}

	.news-card__image-link {
		aspect-ratio: 16 / 9;
	}
}

/* =========================================================
   Small mobile
   ========================================================= */

@media (max-width: 30rem) {
	.news-card__content {
		padding: 1.4rem 1.25rem;
	}

	.news-archive__empty {
		align-items: flex-start;
		flex-direction: column;
	}

	.news-pagination
		.page-numbers {
		gap: 0.45rem;
	}

	.news-pagination
		a.page-numbers,
	.news-pagination
		span.page-numbers {
		min-width: 42px;
		min-height: 42px;

		padding: 0.6rem 0.75rem;
	}
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.news-card,
	.news-card *,
	.news-card *::before,
	.news-card *::after,
	.news-pagination *,
	.news-pagination *::before,
	.news-pagination *::after {
		animation: none !important;
		transition: none !important;
	}

	.news-card,
	.news-card__image,
	.news-card__read-more svg,
	.news-pagination
		.page-numbers {
		transform: none !important;
	}
}