/* 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;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* background: var(--color-primary); */
  color: var(--color-white);
  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;
}

/* 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);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(36rem, 72vw, 48rem);
  isolation: isolate;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  background:
    url("./assets/hero-image.png")
    center 45% / cover no-repeat;
  transform: scale(1.01);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(24, 17, 12, 0.12) 0%,
      rgba(24, 17, 12, 0.12) 48%,
      rgba(35, 31, 32, 0.82) 84%,
      var(--color-primary) 100%
    ),
    linear-gradient(
      90deg,
      rgba(17, 10, 7, 0.25) 0%,
      rgba(17, 10, 7, 0.02) 50%,
      rgba(17, 10, 7, 0.18) 100%
    );
}

.hero__inner {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(2.8rem, 6vw, 4.75rem);
}

.hero__heading-wrap {
  width: 100%;
}

.hero__title {
  position: relative;
  width: min(100%, 66rem);
  min-height: clamp(15rem, 30vw, 21rem);
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.12);
}

.hero__title strong {
  display: block;
  padding-top: clamp(2.75rem, 5.5vw, 4rem);
  font-size: clamp(5.2rem, 13vw, 10.5rem);
  line-height: 0.78;
}

.hero__title-intro,
.hero__title-outro {
  position: absolute;
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero__title-intro {
  top: 0;
  left: 0;
}

.hero__title-outro {
  left: clamp(21rem, 55vw, 37rem);
  top: clamp(11rem, 23vw, 15.5rem);
  width: min(24rem, 35vw);
}

.hero__content {
  width: min(28rem, 48%);
  margin-top: auto;
}

.hero__content p {
  margin: 0 0 2.35rem;
  color: var(--color-white);
  font-size: clamp(0.92rem, 1.5vw, 1.12rem);
  font-weight: 500;
  line-height: 1.18;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* 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);
  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);
  }

  .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;
  }

  .hero {
    min-height: 42rem;
  }

  .hero__media {
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(24, 17, 12, 0.18) 0%,
        rgba(24, 17, 12, 0.24) 50%,
        rgba(35, 31, 32, 0.9) 82%,
        var(--color-primary) 100%
      );
  }

  .hero__inner {
    padding-top: 3.25rem;
  }

  .hero__title {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero__title-intro,
  .hero__title-outro {
    position: static;
    width: auto;
  }

  .hero__title-intro {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .hero__title strong {
    padding: 0;
    font-size: clamp(4.6rem, 23vw, 7.8rem);
    line-height: 0.9;
  }

  .hero__title-outro {
    align-self: flex-end;
    max-width: 15rem;
    font-size: clamp(1.25rem, 5.2vw, 1.8rem);
  }

  .hero__content {
    width: min(100%, 27rem);
    margin-top: auto;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    flex: 1 1 11rem;
  }

  .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;
  }

  .hero {
    min-height: 40rem;
  }

  .hero__title strong {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .hero__title-outro {
    align-self: flex-start;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
    flex: initial;
  }

  .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;
  }
}


/* =========================================================
   Corrected layered hero
   Background image -> Future text -> workers -> tagline/content
   ========================================================= */

.hero {
  position: relative;
  min-height: clamp(42rem, 78vw, 53rem);
  overflow: hidden;
  isolation: isolate;
  /* background: var(--color-primary); */
}

.hero__background,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__background {
  z-index: 0;
  background-image: url("./assets/hero-image.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(15, 10, 7, 0.05) 0%,
      rgba(20, 14, 10, 0.10) 40%,
      rgba(35, 31, 32, 0.68) 78%,
      var(--color-primary) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 7, 5, 0.22) 0%,
      rgba(10, 7, 5, 0.02) 52%,
      rgba(10, 7, 5, 0.14) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: block;
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-bottom: 0;
}

.hero__stage {
  position: relative;
  min-height: inherit;
}

.hero__eyebrow {
  position: absolute;
  top: clamp(0.4rem, 1vw, 1rem);
  left: 0;
  z-index: 5;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__future {
  position: absolute;
  top: clamp(3.3rem, 7vw, 5rem);
  left: 0;
  z-index: 2;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.hero__workers {
  position: absolute;
  left: clamp(1rem, 8vw, 6rem);
  bottom: 0;
  z-index: 3;
  width: min(61rem, 82%);
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero__tagline {
  position: absolute;
  top: clamp(12.5rem, 24vw, 17rem);
  right: clamp(0rem, 3vw, 2.5rem);
  z-index: 4;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero__content {
  position: absolute;
  left: 0;
  bottom: clamp(4rem, 8vw, 6.5rem);
  z-index: 4;
  width: min(24rem, 42%);
  margin: 0;
}

.hero__summary,
.hero__content p {
  margin: 0 0 2rem;
  color: var(--color-white);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 600;
  line-height: 1.16;
}

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

  .hero__future {
    top: 4.25rem;
    font-size: clamp(6rem, 21vw, 9rem);
  }

  .hero__workers {
    left: 50%;
    width: min(54rem, 96%);
    transform: translateX(-50%);
  }

  .hero__tagline {
    top: clamp(13rem, 27vw, 17rem);
    right: 0;
    font-size: clamp(1.45rem, 3.7vw, 2.3rem);
  }

  .hero__content {
    bottom: 3.75rem;
    width: min(22rem, 55%);
  }
}

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

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

  .hero__inner {
    padding-top: 2.1rem;
  }

  .hero__eyebrow {
    position: static;
    max-width: 15rem;
    margin-bottom: 0.65rem;
    font-size: clamp(1.5rem, 6vw, 2.1rem);
  }

  .hero__future {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    margin: 0;
    font-size: clamp(4.9rem, 23vw, 7.2rem);
    line-height: 0.88;
  }

  .hero__workers {
    left: 50%;
    bottom: 10.75rem;
    width: min(31rem, 122%);
    transform: translateX(-50%);
  }

  .hero__tagline {
    top: auto;
    right: 0;
    bottom: 15.4rem;
    width: min(12rem, 47%);
    font-size: clamp(1.2rem, 5vw, 1.75rem);
  }

  .hero__content {
    left: 0;
    bottom: 2.5rem;
    width: min(100%, 25rem);
  }

  .hero__summary,
  .hero__content p {
    max-width: 18rem;
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 30rem) {
  .hero {
    min-height: 44rem;
  }

  .hero__future {
    font-size: clamp(4.1rem, 22vw, 5.8rem);
  }

  .hero__workers {
    bottom: 13rem;
    width: min(28rem, 132%);
  }

  .hero__tagline {
    bottom: 16.4rem;
    width: 10.5rem;
  }

  .hero__content {
    bottom: 2rem;
  }
}

/* Statistics */
.statistics {
  background: var(--color-white);
  color: var(--color-primary);
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.statistics__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.statistics__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.statistics__heading-line {
    display: block;
    width: clamp(5rem, 10vw, 7.5rem);
    height: 0.2rem;
    margin-top: 1.5rem;
    background: #F1601E;
}

.statistics__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.08),
    0 0.15rem 0.5rem rgba(35, 31, 32, 0.05);
}

.statistic {
  position: relative;
  min-height: clamp(11rem, 18vw, 13.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2rem, 4vw, 2.75rem)
    clamp(1.5rem, 3vw, 2.25rem);
}

.statistic:not(:last-child) {
  border-right: 1px solid rgba(35, 31, 32, 0.55);
}

.statistic__number {
  position: relative;
  width: fit-content;
  display: block;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6vw, 4.75rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--color-black);
}

.statistic__number::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: clamp(2.75rem, 5vw, 3.75rem);
    height: 0.15rem;
    background: #F1601E;
}

.statistic__label {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
}

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

  .statistic:nth-child(2) {
    border-right: 0;
  }

  .statistic:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(35, 31, 32, 0.25);
  }
}

/* Mobile */
@media (max-width: 35rem) {
  .statistics {
    padding-block: 3.5rem;
  }

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

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

  .statistic:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.25);
  }

  .statistic__number {
    font-size: clamp(3.25rem, 16vw, 4.5rem);
  }
}

/* =========================================================
   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;
  }
}

/* =========================================================
   Latest News
   ========================================================= */

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

/* Heading area */
.latest-news__header {
  display: grid;
  grid-template-columns: minmax(6rem, 0.85fr) minmax(0, 1.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.latest-news__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;
}

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

.latest-news__intro {
  max-width: 56rem;
  margin: 0 0 0.25rem;
  color: var(--color-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.35;
}

/* Two-column news layout */
.latest-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 1fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

/* Featured article */
.featured-news {
  position: relative;
  min-height: clamp(24rem, 39vw, 30rem);
}

.featured-news__image-wrapper {
  position: relative;
  z-index: 2;
  width: 50%;
  height: clamp(21rem, 35vw, 27rem);
  overflow: hidden;
}

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

.featured-news:hover .featured-news__image {
  transform: scale(1.04);
}

.featured-news__content {
  position: absolute;
  top: clamp(2rem, 4vw, 3rem);
  right: 0;
  bottom: 0;
  left: 6%;
  display: flex;
  flex-direction: column;
  padding:
    clamp(2rem, 4vw, 3rem)
    clamp(1.75rem, 3vw, 2.5rem)
    clamp(1.75rem, 3vw, 2.5rem)
    55%;
  background: var(--color-primary);
  color: var(--color-white);
}

.featured-news__date {
  display: block;
  margin-bottom: 1.4rem;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.3;
}

.featured-news__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 700;
  line-height: 1.15;
}

.featured-news__title a {
  transition: opacity var(--transition);
}

.featured-news__title a:hover,
.featured-news__title a:focus-visible {
  opacity: 0.72;
}

/* Shared arrow buttons */
.news-link {
  min-height: 3.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  padding: 1rem 1.35rem;
  border: 1px solid transparent;
  font-size: clamp(0.9rem, 1.25vw, 1.05rem);
  font-weight: 500;
  line-height: 1;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.news-link:hover,
.news-link:focus-visible {
  transform: translateY(-2px);
}

.news-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-link--light {
  margin-top: auto;
  margin-left: auto;
  background: var(--color-white);
  color: var(--color-primary);
}

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

.news-link--dark {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--color-primary);
  color: var(--color-white);
}

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

/* Additional news items */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-list__item {
  padding-block: clamp(1.25rem, 2.4vw, 1.75rem);
  border-top: 1px solid var(--color-secondary);
}

.news-list__item:last-of-type {
  border-bottom: 1px solid var(--color-secondary);
}

.news-list__date {
  display: block;
  margin-bottom: 1rem;
  color: rgba(35, 31, 32, 0.8);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.3;
}

.news-list__title {
  max-width: 28rem;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.15;
}

.news-list__title a {
  transition: opacity var(--transition);
}

.news-list__title a:hover,
.news-list__title a:focus-visible {
  opacity: 0.58;
}

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

  .latest-news__layout {
    grid-template-columns: 1fr;
  }

  .featured-news {
    max-width: 48rem;
  }

  .news-list {
    max-width: 48rem;
  }
}

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

  .latest-news__header {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.75rem;
  }

  .latest-news__layout {
    gap: 3rem;
  }

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

  .featured-news__image-wrapper {
    width: calc(100% - 2rem);
    height: clamp(20rem, 88vw, 29rem);
  }

  .featured-news__content {
    position: relative;
    inset: auto;
    width: calc(100% - 1.5rem);
    min-height: 18rem;
    margin-top: -2rem;
    margin-left: auto;
    padding: 3.5rem 1.5rem 1.5rem;
  }

  .featured-news__title {
    max-width: 22rem;
  }

  .news-link--light {
    margin-top: 2.5rem;
  }
}

/* Small mobile layout */
@media (max-width: 30rem) {
  .featured-news__image-wrapper,
  .featured-news__content {
    width: 100%;
  }

  .featured-news__content {
    margin-top: 0;
  }

  .news-link {
    min-height: 3.4rem;
  }
}

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

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

/* 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);
}

.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);
}

.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: 100vh;
}

/* Full-width tunnel background */
.hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("./assets/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(3.2rem, 16vw, 5rem);
  }

  .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-block: 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;
  }
}


/* =========================================================
   Contact Information
   ========================================================= */

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

/* Section heading */
.contact-information__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-information__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;
}

.contact-information__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);
}

/* Contact rows */
.contact-information__list {
  display: grid;
  gap: clamp(3.75rem, 8vw, 7rem);
}

.contact-information__item {
  display: grid;
  grid-template-columns: clamp(5rem, 10vw, 7.5rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Circular contact icon */
.contact-information__icon {
  width: clamp(5rem, 10vw, 6.5rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
}

.contact-information__icon svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Text, action and divider area */
.contact-information__body {
  position: relative;
  min-height: clamp(7rem, 13vw, 10rem);
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) minmax(12rem, 0.45fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-information__details h3 {
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.15;
}

.contact-information__details p,
.contact-information__details address {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}

.contact-information__details a {
  transition: opacity var(--transition);
}

.contact-information__details a:hover,
.contact-information__details a:focus-visible {
  opacity: 0.6;
}

/* Keeps multiple phone numbers spaced vertically */
.contact-information__phone-list {
  display: grid;
  gap: 1.15rem;
}

/* Right-side contact action */
.contact-information__action {
  position: relative;
  align-self: end;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  color: var(--color-black);
  font-size: clamp(0.9rem, 1.35vw, 1.05rem);
  font-weight: 600;
  line-height: 1;
}

/* Thin line beneath each action */
.contact-information__action::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--color-primary);
}

/* Animated line over the default action line */
.contact-information__action::before {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 2px;
  background: var(--color-primary);
  transition: right 280ms ease;
}

.contact-information__action:hover::before,
.contact-information__action:focus-visible::before {
  right: 0;
}

/* Diagonal action arrow */
.contact-information__action 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);
}

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

/* Long horizontal divider beneath the row */
.contact-information__divider {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.18rem;
  background: rgba(35, 31, 32, 0.5);
}

/* =========================================================
   Contact Information — Tablet
   ========================================================= */

@media (max-width: 62rem) {
  .contact-information__body {
    grid-template-columns: minmax(14rem, 1fr) minmax(10rem, 0.55fr);
    gap: 2.5rem;
  }
}

/* =========================================================
   Contact Information — Mobile
   ========================================================= */

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

  .contact-information__header {
    margin-bottom: 3rem;
  }

  .contact-information__list {
    gap: 3rem;
  }

  .contact-information__item {
    grid-template-columns: 4.75rem minmax(0, 1fr);
    gap: 1.5rem;
  }

  .contact-information__icon {
    width: 4.75rem;
  }

  .contact-information__body {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .contact-information__action {
    width: min(100%, 15rem);
    align-self: start;
  }
}

/* =========================================================
   Contact Information — Small Mobile
   ========================================================= */

@media (max-width: 32rem) {
  .contact-information__item {
    grid-template-columns: 1fr;
  }

  .contact-information__icon {
    width: 4.5rem;
  }

  .contact-information__details h3 {
    margin-bottom: 0.9rem;
  }

  .contact-information__action {
    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 {
  width: fit-content;
  min-height: clamp(3.4rem, 5vw, 4rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 1rem clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--color-primary);
  border-radius: 0;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  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;
  }
}

/* =========================================================
   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;
  }
}