:root {
  --black: #000;
  --white: #fff;
  --text: #202020;
  --muted: #6a6a6a;
  --yellow: #ffdc00;
  --orange: #f8ad05;
  --soft: #f8f8f8;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.banner {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 54px 0;
  pointer-events: none;
}

.banner::before,
.banner::after,
.offcanvas-tease {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--black);
  opacity: 1;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, border-radius;
}

.banner::before {
  top: -250px;
  left: -124px;
  width: 420px;
  height: 288px;
  border-radius: 45% 55% 60% 40% / 54% 38% 62% 46%;
  transform: rotate(-11deg) scale(1.08);
  animation: heroMaskLeft 12s ease-in-out infinite;
}

.banner::after {
  top: -116px;
  right: -145px;
  width: 350px;
  height: 282px;
  border-radius: 54% 46% 42% 58% / 34% 48% 52% 66%;
  transform: rotate(-18deg) translate3d(0, 0, 0) scale(0.98);
  animation: heroMaskRight 14s ease-in-out infinite;
}

body.is-scrolled .brand-bubble,
body.is-scrolled .banner::before {
  opacity: 0;
  transform: translateY(-40px) scale(0.85);
  pointer-events: none;
  animation: none;
}

.brand,
.menu-toggle {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
}

.brand img {
  width: 136px;
  height: 64px;
  object-fit: contain;
}

.menu-toggle {
  width: 42px;
  height: 32px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 3px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transform: translateY(1px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 260ms ease, opacity 220ms ease, width 260ms ease;
}

.menu-toggle span:nth-child(2) {
  width: 29px;
}

.menu-toggle:hover {
  transform: translateY(1px) scale(1.04);
}

.offcanvas {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: background 420ms ease, opacity 260ms ease;
}

.offcanvas.is-open {
  background: rgba(0, 0, 0, 0.18);
  opacity: 1;
  pointer-events: auto;
}

.offcanvas-tease {
  z-index: 0;
  top: -112px;
  right: -142px;
  width: 372px;
  height: 294px;
  border-radius: 54% 46% 42% 58% / 34% 48% 52% 66%;
  opacity: 0;
  transform: rotate(-20deg) scale(0.96);
  animation: heroMaskMenu 10s ease-in-out infinite;
  pointer-events: none;
}

.offcanvas.is-open .offcanvas-tease {
  opacity: 1;
}

@keyframes heroMaskLeft {
  0%,
  100% {
    border-radius: 45% 55% 60% 40% / 54% 38% 62% 46%;
    transform: translate3d(0, 0, 0) rotate(-11deg) scale(1.08);
  }

  50% {
    border-radius: 55% 45% 43% 57% / 42% 58% 40% 60%;
    transform: translate3d(10px, 6px, 0) rotate(-7deg) scale(1.11);
  }
}

@keyframes heroMaskRight {
  0%,
  100% {
    border-radius: 54% 46% 42% 58% / 34% 48% 52% 66%;
    transform: translate3d(0, 0, 0) rotate(-18deg) scale(0.98);
  }

  50% {
    border-radius: 43% 57% 58% 42% / 47% 36% 64% 53%;
    transform: translate3d(-8px, 6px, 0) rotate(-14deg) scale(1.01);
  }
}

@keyframes heroMaskMenu {
  0%,
  100% {
    border-radius: 54% 46% 42% 58% / 34% 48% 52% 66%;
    transform: translate3d(0, 0, 0) rotate(-20deg) scale(1);
  }

  50% {
    border-radius: 46% 54% 60% 40% / 49% 38% 62% 51%;
    transform: translate3d(-10px, 8px, 0) rotate(-16deg) scale(1.03);
  }
}

.offcanvas-panel {
  position: relative;
  z-index: 1;
  width: min(392px, 100%);
  min-height: 100vh;
  padding: 82px 46px 42px;
  background: rgba(0, 0, 0, 0.96);
  color: var(--white);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18);
  transform: translateX(104%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.offcanvas.is-open .offcanvas-panel {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 29px;
  right: 46px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.86;
  transition: opacity 180ms ease, transform 220ms ease;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 1px;
  width: 34px;
  height: 3px;
  background: var(--white);
  border-radius: 99px;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-close:hover {
  opacity: 1;
  transform: rotate(4deg);
}

.primary-menu {
  display: grid;
  gap: 17px;
}

.mobile-menu {
  display: none;
}

.primary-menu > a,
.primary-menu summary {
  font-size: 27px;
  line-height: 1.25;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.94);
  transition: color 180ms ease, transform 220ms ease;
}

.primary-menu details a {
  display: block;
  margin: 9px 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.45;
  transition: color 180ms ease, transform 220ms ease;
}

.primary-menu > a:hover,
.primary-menu summary:hover,
.primary-menu details a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.menu-selectors {
  display: flex;
  gap: 30px;
  margin-top: 42px;
}

.menu-selectors span,
.internal-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.menu-selectors strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

.internal-note {
  margin-top: 48px;
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

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

.hero-media {
  object-fit: cover;
  z-index: 0;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.34);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5.1vw, 74px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(25px, 2.3vw, 33px);
  font-weight: 400;
  text-transform: lowercase;
}

.mobile-hero-break {
  display: none;
}

.down-arrow {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  width: 54px;
  height: 68px;
  transform: translateX(-50%);
}

.down-arrow::before,
.down-arrow::after {
  content: "";
  position: absolute;
  top: 29px;
  width: 38px;
  height: 6px;
  background: var(--white);
  border-radius: 99px;
}

.down-arrow::before {
  left: -1px;
  transform: rotate(45deg);
}

.down-arrow::after {
  right: -1px;
  transform: rotate(-45deg);
}

.section {
  padding: 115px 0;
}

.services {
  position: relative;
  overflow: hidden;
}

.pill-overlay {
  position: absolute;
  top: 245px;
  right: 17vw;
  width: 515px;
  height: 515px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 78px rgba(255, 220, 0, 0.16);
  opacity: 0.72;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 66px;
  align-items: start;
}

.services-intro {
  padding-top: 115px;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.08;
  font-weight: 700;
}

.services-intro p,
.why-content p,
.offices p,
.news p,
.contact p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  color: var(--text);
  font-weight: 800;
}

.btn-link::after {
  content: "";
  width: 56px;
  height: 2px;
  background: currentColor;
}

.btn-link.dark {
  color: var(--black);
}

.service-mosaic {
  min-height: 650px;
  position: relative;
}

.service-card {
  position: absolute;
  display: grid;
  gap: 14px;
}

.service-card.large {
  left: 0;
  top: 0;
  width: 400px;
}

.service-card:nth-child(2) {
  right: 0;
  top: 56px;
  width: 300px;
}

.service-card:nth-child(3) {
  left: 98px;
  bottom: 48px;
  width: 300px;
}

.service-card:nth-child(4) {
  right: 76px;
  bottom: 10px;
  width: 300px;
}

.service-img {
  width: 100%;
  height: 170px;
  background-position: center;
  background-size: cover;
}

.service-img.circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
}

.service-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card > p {
  display: none;
}

.slider-row {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}

.slider-row button {
  width: 30px;
  height: 37px;
  border: 0;
  background: transparent;
  position: relative;
}

.slider-row button::before {
  content: "";
  position: absolute;
  inset: 7px 5px;
  border: solid var(--black);
  border-width: 0 4px 4px 0;
  transform: rotate(135deg);
}

.slider-row button:last-child::before {
  transform: rotate(-45deg);
}

.slider-row ol {
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 700;
}

.slider-row .active {
  color: var(--yellow);
}

.why {
  position: relative;
  min-height: 895px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.why-bg,
.why-overlay {
  position: absolute;
  inset: 0;
}

.why-bg {
  background-size: cover;
  background-position: center;
}

.why-bg-one {
  background-image: url("../assets/images/why-bg-1.jpg");
  opacity: 1;
}

.why-bg-two {
  background-image: url("../assets/images/why-bg-2.jpg");
  opacity: 0.32;
  mix-blend-mode: screen;
}

.why-bg-three {
  background-image: url("../assets/images/why-bg-3.jpg");
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.why-overlay {
  background: rgba(0, 0, 0, 0.62);
}

.why-content {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin-left: calc((100vw - min(var(--max), calc(100vw - 40px))) / 2 + 95px);
  padding-top: 0;
}

.why-content article {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.why-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.why-content p {
  color: rgba(255, 255, 255, 0.75);
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.yellow-panel,
.orange-panel {
  min-height: 608px;
  padding: 86px;
}

.yellow-panel {
  background: var(--yellow);
}

.orange-panel {
  margin-top: 86px;
  min-height: 748px;
  background: var(--orange);
}

.yellow-panel h3,
.orange-panel h3 {
  margin: 0 0 28px;
  font-size: 27px;
  line-height: 1.28;
}

.yellow-panel p {
  max-width: 370px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.5;
}

.yellow-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.yellow-panel li,
.ingredient-list li {
  position: relative;
  padding-left: 20px;
}

.yellow-panel li::before,
.ingredient-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

.ingredient-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
}


.manufacturing-cards .yellow-panel,
.manufacturing-cards .orange-panel {
  opacity: 0;
  transition: none;
  will-change: opacity, transform;
}

.manufacturing-cards .yellow-panel {
  transform: translateX(-120px);
}

.manufacturing-cards .orange-panel {
  transform: translateX(120px);
}

.manufacturing-cards.is-visible .yellow-panel,
.manufacturing-cards.is-visible .orange-panel {
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.manufacturing-cards.is-visible .yellow-panel {
  animation-name: manufacturingSlideFromLeft;
}

.manufacturing-cards.is-visible .orange-panel {
  animation-name: manufacturingSlideFromRight;
}

@keyframes manufacturingSlideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes manufacturingSlideFromRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.offices {
  background: var(--soft);
}

.offices-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 70px;
  align-items: center;
}

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

.office-list div {
  padding: 34px;
  background: var(--white);
}

.office-list strong,
.office-list span {
  display: block;
}

.office-list span {
  margin-top: 10px;
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

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

.news article {
  display: grid;
  gap: 18px;
}

.news img {
  width: 100%;
  aspect-ratio: 0.68;
  object-fit: cover;
}

.news h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.news p {
  margin: 0;
}

.awards {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(0, 6fr);
  min-height: 132px;
  overflow: hidden;
}

.awards-title {
  display: grid;
  place-items: center;
  background: var(--white);
  font-size: 38px;
  font-weight: 700;
}

.awards-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 42px;
  overflow: hidden;
  background: #fff;
  white-space: nowrap;
  color: var(--muted);
}

.awards-marquee span {
  flex: 0 0 100%;
  min-width: 100%;
  animation: awardsSlide 27.5s infinite;
}

.awards-marquee span::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 33px;
  margin-right: 15px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--yellow);
}

.contact {
  background: var(--black);
  color: var(--white);
}

.contact-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-button {
  display: inline-grid;
  place-items: center;
  min-height: 58px;
  padding: 0 34px;
  border: 2px solid var(--white);
  font-weight: 800;
}

.careers {
  height: 1px;
}

.quality-page {
  background: #fff;
}

.quality-page main {
  position: relative;
  overflow: hidden;
}

.quality-page main::before,
.quality-page main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.34);
  border-radius: 999px;
  opacity: 0.72;
}

.quality-page main::before {
  top: 690px;
  right: -118px;
  width: 142px;
  height: 462px;
  transform: rotate(32deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0.08) 50% 100%);
}

.quality-page main::after {
  top: 1290px;
  left: -86px;
  width: 118px;
  height: 330px;
  transform: rotate(-31deg);
  background:
    linear-gradient(180deg, rgba(248, 173, 5, 0.12) 0 50%, rgba(255, 255, 255, 0.04) 50% 100%);
}

.quality-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.quality-hero-media,
.quality-hero-shade {
  position: absolute;
  inset: 0;
}

.quality-hero-media {
  background-image: url("../assets/images/why-bg-1.jpg");
  background-position: center 42%;
  background-size: cover;
  opacity: 0.82;
}

.quality-hero-media::after {
  content: "";
  position: absolute;
  right: -116px;
  bottom: -268px;
  width: 545px;
  height: 545px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 74px rgba(255, 220, 0, 0.13);
}

.quality-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 52%);
}

.quality-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.quality-hero-copy p,
.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quality-hero h1 {
  max-width: 820px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.quality-main {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 158px;
}

.quality-main::before {
  content: "";
  position: absolute;
  top: 56px;
  left: calc(50% - 675px);
  width: 126px;
  height: 372px;
  border: 1px solid rgba(255, 220, 0, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0) 50% 100%);
  transform: rotate(-39deg);
}

.quality-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) minmax(292px, 0.68fr);
  gap: 108px;
  align-items: start;
}

.quality-content {
  display: grid;
  gap: 104px;
}

.quality-policy {
  max-width: 760px;
  padding-left: 84px;
}

.quality-policy p,
.quality-lab p,
.quality-systems p {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.86;
}

.quality-policy h2,
.quality-lab h2,
.quality-systems h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.quality-policy p:not(.eyebrow) {
  margin: 0 0 24px;
}

.quality-feature-image,
.quality-systems figure {
  margin: 0;
}

.quality-feature-image {
  position: relative;
  width: 91%;
  margin-left: auto;
}

.quality-feature-image::before,
.quality-feature-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.36);
  border-radius: 999px;
}

.quality-feature-image::before {
  left: -56px;
  top: -72px;
  width: 92px;
  height: 266px;
  transform: rotate(-29deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.09) 0 50%, rgba(255, 255, 255, 0.02) 50% 100%);
}

.quality-feature-image::after {
  right: 38px;
  bottom: -44px;
  width: 64px;
  height: 178px;
  transform: rotate(47deg);
  border-color: rgba(255, 255, 255, 0.5);
}

.quality-feature-image img {
  width: 100%;
  height: 478px;
  object-fit: cover;
  object-position: center;
}

.quality-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(252px, 0.68fr) minmax(0, 1fr);
  gap: 82px;
  align-items: start;
  padding: 34px 0 34px 84px;
  background: transparent;
}

.quality-lab::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -42px;
  left: 0;
  width: 58%;
  height: calc(100% + 84px);
  background: #fbfbfb;
}

.quality-instruments {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-instruments li {
  position: relative;
  min-height: 35px;
  padding: 7px 0 7px 42px;
  color: #454545;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.quality-instruments li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 220, 0, 0.74);
  box-shadow: 0 0 0 8px rgba(255, 220, 0, 0.08);
}

.quality-systems {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
  min-height: 430px;
  background: transparent;
  color: var(--text);
}

.quality-systems::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 24px;
  top: 52px;
  width: 36%;
  height: calc(100% - 104px);
  background: rgba(255, 220, 0, 0.12);
}

.quality-systems-card {
  display: grid;
  align-content: center;
  padding: 74px 0 74px 84px;
}

.quality-systems h2 {
  color: var(--text);
  font-size: 32px;
}

.quality-systems p {
  color: #737373;
}

.quality-systems img {
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
}

.quality-sidebar {
  display: grid;
  gap: 56px;
  position: sticky;
  top: 138px;
  padding-top: 24px;
}

.quality-news,
.quality-enquiry {
  padding: 0;
}

.quality-news {
  color: var(--text);
}

.quality-news h2,
.quality-enquiry h2 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.quality-news a {
  display: block;
  padding: 22px 0 23px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
}

.quality-news span {
  display: block;
  margin-bottom: 9px;
  color: #8a7a1f;
  font-size: 12px;
  font-weight: 600;
}

.quality-enquiry {
  position: relative;
  padding: 44px 38px 46px;
  background: rgba(255, 220, 0, 0.78);
}

.quality-enquiry::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -76px;
  width: 74px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  transform: rotate(31deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0 50%, rgba(255, 220, 0, 0.06) 50% 100%);
}

.quality-enquiry form {
  display: grid;
  gap: 17px;
}

.quality-enquiry label {
  display: grid;
  gap: 7px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.quality-enquiry input,
.quality-enquiry select,
.quality-enquiry textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.26);
  padding: 11px 12px;
  color: var(--black);
  font: inherit;
}

.quality-enquiry textarea {
  resize: vertical;
}

.quality-enquiry button {
  justify-self: start;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 24px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-weight: 700;
  cursor: pointer;
}

.culture-page {
  background: #fff;
}

.culture-page main {
  position: relative;
  overflow: hidden;
}

.culture-page main::before,
.culture-page main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.32);
  border-radius: 999px;
  opacity: 0.74;
}

.culture-page main::before {
  top: 690px;
  right: -118px;
  width: 142px;
  height: 452px;
  transform: rotate(31deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0.06) 50% 100%);
}

.culture-page main::after {
  top: 1550px;
  left: -82px;
  width: 112px;
  height: 315px;
  transform: rotate(-32deg);
  background:
    linear-gradient(180deg, rgba(248, 173, 5, 0.1) 0 50%, rgba(255, 255, 255, 0.03) 50% 100%);
}

.culture-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.culture-hero-media,
.culture-hero-shade {
  position: absolute;
  inset: 0;
}

.culture-hero-media {
  background-image: url("../assets/images/why-bg-2.jpg");
  background-position: center 44%;
  background-size: cover;
  opacity: 0.82;
}

.culture-hero-media::after {
  content: "";
  position: absolute;
  right: -104px;
  bottom: -265px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 74px rgba(255, 220, 0, 0.13);
}

.culture-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 52%);
}

.culture-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.culture-hero-copy p {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.culture-hero h1 {
  max-width: 820px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.culture-intro {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 118px;
}

.culture-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 116px;
  align-items: start;
}

.culture-intro h2,
.culture-feature-panel h2,
.culture-values h2,
.culture-community h2,
.culture-careers h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.culture-intro-copy {
  max-width: 590px;
  padding-top: 44px;
}

.culture-intro-copy p,
.culture-feature-panel p,
.culture-values p,
.culture-community p {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.86;
}

.culture-feature {
  position: relative;
  z-index: 1;
  padding-bottom: 138px;
}

.culture-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  gap: 86px;
  align-items: center;
}

.culture-feature-image {
  position: relative;
  margin: 0;
}

.culture-feature-image::before,
.culture-feature-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
}

.culture-feature-image::before {
  left: -54px;
  top: -70px;
  width: 92px;
  height: 264px;
  border: 1px solid rgba(255, 220, 0, 0.36);
  transform: rotate(-28deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.09) 0 50%, rgba(255, 255, 255, 0.02) 50% 100%);
}

.culture-feature-image::after {
  right: -44px;
  bottom: 56px;
  width: 126px;
  height: 126px;
  box-shadow: inset 0 0 0 26px rgba(255, 220, 0, 0.13);
}

.culture-feature-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.culture-feature-panel {
  position: relative;
  padding: 74px 70px;
  background: rgba(255, 220, 0, 0.82);
}

.culture-feature-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -82px;
  width: 74px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  transform: rotate(31deg);
}

.culture-feature-panel p {
  color: rgba(0, 0, 0, 0.68);
}

.culture-values {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 138px;
  background: #fbfbfb;
}

.culture-values-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.culture-values-heading {
  max-width: 410px;
}

.culture-value-list {
  display: grid;
  gap: 0;
}

.culture-value-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.culture-value-list span {
  color: #8a7a1f;
  font-weight: 700;
}

.culture-value-list h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.culture-value-list p {
  margin: 0;
}

.culture-community {
  position: relative;
  z-index: 1;
  padding: 142px 0;
}

.culture-community-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1fr);
  gap: 92px;
  align-items: center;
}

.culture-community article {
  padding-left: 84px;
}

.culture-community figure {
  position: relative;
  margin: 0;
}

.culture-community figure::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -48px;
  top: 54px;
  width: 42%;
  height: calc(100% - 108px);
  background: rgba(255, 220, 0, 0.12);
}

.culture-community img {
  width: 100%;
  height: 455px;
  object-fit: cover;
}

.culture-careers {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--white);
}

.culture-careers-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.culture-careers h2 {
  max-width: 660px;
  color: var(--white);
}

.culture-careers .contact-button {
  flex: 0 0 auto;
}

.news-page {
  background: #fff;
}

.news-page main {
  position: relative;
  overflow: hidden;
}

.news-page main::before,
.news-page main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.32);
  border-radius: 999px;
  opacity: 0.74;
}

.news-page main::before {
  top: 700px;
  right: -116px;
  width: 142px;
  height: 452px;
  transform: rotate(32deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0.06) 50% 100%);
}

.news-page main::after {
  top: 1520px;
  left: -80px;
  width: 112px;
  height: 315px;
  transform: rotate(-32deg);
  background:
    linear-gradient(180deg, rgba(248, 173, 5, 0.1) 0 50%, rgba(255, 255, 255, 0.03) 50% 100%);
}

.news-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.news-hero-media,
.news-hero-shade {
  position: absolute;
  inset: 0;
}

.news-hero-media {
  background-image: url("../assets/images/news-warehouse.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.84;
}

.news-hero-media::after {
  content: "";
  position: absolute;
  right: -104px;
  bottom: -265px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 74px rgba(255, 220, 0, 0.13);
}

.news-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 52%);
}

.news-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.news-hero-copy p {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-hero h1 {
  max-width: 820px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.news-intro {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 112px;
}

.news-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
  gap: 118px;
  align-items: start;
}

.news-intro h2,
.news-feature-copy h2,
.news-archive-side h2,
.news-contact h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.news-intro-grid > p,
.news-feature-copy p,
.news-listing-card p {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.86;
}

.news-intro-grid > p {
  max-width: 560px;
  padding-top: 45px;
}

.news-feature {
  position: relative;
  z-index: 1;
  padding-bottom: 142px;
}

.news-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.78fr);
  gap: 86px;
  align-items: center;
}

.news-feature-image {
  position: relative;
  margin: 0;
}

.news-feature-image::before,
.news-feature-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
}

.news-feature-image::before {
  left: -54px;
  top: -70px;
  width: 92px;
  height: 264px;
  border: 1px solid rgba(255, 220, 0, 0.36);
  transform: rotate(-28deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.09) 0 50%, rgba(255, 255, 255, 0.02) 50% 100%);
}

.news-feature-image::after {
  right: -44px;
  bottom: 56px;
  width: 126px;
  height: 126px;
  box-shadow: inset 0 0 0 26px rgba(255, 220, 0, 0.13);
}

.news-feature-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.news-feature-copy {
  position: relative;
  padding: 72px 0 72px 68px;
}

.news-feature-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 34px;
  width: 74%;
  height: calc(100% - 68px);
  background: rgba(255, 220, 0, 0.14);
}

.news-feature-copy time,
.news-listing-card span {
  display: block;
  color: #8a7a1f;
  font-size: 13px;
  font-weight: 700;
}

.news-feature-copy time {
  margin-bottom: 18px;
}

.news-archive {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 150px;
  background: #fbfbfb;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: 90px;
  align-items: start;
}

.news-archive-side {
  position: sticky;
  top: 138px;
}

.news-year-list {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.news-year-list a {
  padding: 13px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  color: #5f5f5f;
  font-weight: 600;
}

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

.news-listing-card:first-child {
  grid-column: 1 / -1;
}

.news-listing-card a {
  display: grid;
  gap: 18px;
}

.news-listing-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.news-listing-card:first-child img {
  height: 455px;
}

.news-listing-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.news-listing-card p {
  margin: 0;
}

.news-contact {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--white);
}

.news-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.news-contact h2 {
  max-width: 650px;
  color: var(--white);
}

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

.careers-page {
  background: #fff;
}

.careers-page main {
  position: relative;
  overflow: hidden;
}

.careers-page main::before,
.careers-page main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.32);
  border-radius: 999px;
  opacity: 0.74;
}

.careers-page main::before {
  top: 700px;
  right: -116px;
  width: 142px;
  height: 452px;
  transform: rotate(32deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0.06) 50% 100%);
}

.careers-page main::after {
  top: 1550px;
  left: -80px;
  width: 112px;
  height: 315px;
  transform: rotate(-32deg);
  background:
    linear-gradient(180deg, rgba(248, 173, 5, 0.1) 0 50%, rgba(255, 255, 255, 0.03) 50% 100%);
}

.careers-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.careers-hero-media,
.careers-hero-shade {
  position: absolute;
  inset: 0;
}

.careers-hero-media {
  background-image: url("../assets/images/news-facility.jpg");
  background-position: center 42%;
  background-size: cover;
  opacity: 0.82;
}

.careers-hero-media::after {
  content: "";
  position: absolute;
  right: -104px;
  bottom: -265px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 74px rgba(255, 220, 0, 0.13);
}

.careers-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 52%);
}

.careers-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.careers-hero-copy p {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.careers-hero h1 {
  max-width: 820px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.careers-intro {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 112px;
}

.careers-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
  gap: 118px;
  align-items: start;
}

.careers-intro h2,
.careers-feature-panel h2,
.careers-pathways h2,
.careers-openings h2,
.careers-enquiry h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.careers-intro-copy {
  max-width: 580px;
  padding-top: 45px;
}

.careers-intro-copy p,
.careers-feature-panel p,
.careers-pathways p,
.careers-openings p,
.careers-enquiry p {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.86;
}

.careers-feature {
  position: relative;
  z-index: 1;
  padding-bottom: 142px;
}

.careers-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.78fr);
  gap: 86px;
  align-items: center;
}

.careers-feature-image {
  position: relative;
  margin: 0;
}

.careers-feature-image::before,
.careers-feature-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
}

.careers-feature-image::before {
  left: -54px;
  top: -70px;
  width: 92px;
  height: 264px;
  border: 1px solid rgba(255, 220, 0, 0.36);
  transform: rotate(-28deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.09) 0 50%, rgba(255, 255, 255, 0.02) 50% 100%);
}

.careers-feature-image::after {
  right: -44px;
  bottom: 56px;
  width: 126px;
  height: 126px;
  box-shadow: inset 0 0 0 26px rgba(255, 220, 0, 0.13);
}

.careers-feature-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.careers-feature-panel {
  position: relative;
  padding: 74px 70px;
  background: rgba(255, 220, 0, 0.82);
}

.careers-feature-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -82px;
  width: 74px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  transform: rotate(31deg);
}

.careers-feature-panel p {
  color: rgba(0, 0, 0, 0.68);
}

.careers-pathways {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 138px;
  background: #fbfbfb;
}

.careers-pathways-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.careers-pathways-heading {
  max-width: 420px;
}

.careers-pathway-list {
  display: grid;
}

.careers-pathway-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.careers-pathway-list span {
  color: #8a7a1f;
  font-weight: 700;
}

.careers-pathway-list h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.careers-pathway-list p {
  margin: 0;
}

.careers-openings {
  position: relative;
  z-index: 1;
  padding: 142px 0;
}

.careers-openings-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1fr);
  gap: 92px;
  align-items: start;
}

.careers-openings article {
  padding-left: 84px;
}

.careers-role-list {
  display: grid;
  gap: 0;
}

.careers-role-list a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 170px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.careers-role-list span,
.careers-role-list small {
  color: #777;
  font-size: 13px;
  font-weight: 600;
}

.careers-role-list strong {
  color: var(--text);
  font-size: 21px;
  font-weight: 600;
}

.careers-role-list small {
  text-align: right;
}

.careers-enquiry {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--white);
}

.careers-enquiry-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.careers-enquiry h2 {
  max-width: 650px;
  color: var(--white);
}

.careers-enquiry p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.72);
}

.careers-enquiry .contact-button {
  flex: 0 0 auto;
}

.contact-page {
  background: #fff;
}

.contact-page main {
  position: relative;
  overflow: hidden;
}

.contact-page main::before,
.contact-page main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.32);
  border-radius: 999px;
  opacity: 0.74;
}

.contact-page main::before {
  top: 700px;
  right: -116px;
  width: 142px;
  height: 452px;
  transform: rotate(32deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0.06) 50% 100%);
}

.contact-page main::after {
  top: 1480px;
  left: -80px;
  width: 112px;
  height: 315px;
  transform: rotate(-32deg);
  background:
    linear-gradient(180deg, rgba(248, 173, 5, 0.1) 0 50%, rgba(255, 255, 255, 0.03) 50% 100%);
}

.contact-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.contact-hero-media,
.contact-hero-shade {
  position: absolute;
  inset: 0;
}

.contact-hero-media {
  background-image: url("../assets/images/service-regulatory.jpg");
  background-position: center 42%;
  background-size: cover;
  opacity: 0.82;
}

.contact-hero-media::after {
  content: "";
  position: absolute;
  right: -104px;
  bottom: -265px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 74px rgba(255, 220, 0, 0.13);
}

.contact-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 52%);
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.contact-hero-copy p {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 820px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.contact-intro {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 112px;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
  gap: 118px;
  align-items: start;
}

.contact-intro h2,
.contact-form-panel h2,
.contact-details-card h2,
.contact-offices h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.contact-intro-grid > p,
.contact-details p,
.contact-offices p {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.86;
}

.contact-intro-grid > p {
  max-width: 560px;
  padding-top: 45px;
}

.contact-main {
  position: relative;
  z-index: 1;
  padding-bottom: 150px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 92px;
  align-items: start;
}

.contact-form-panel {
  position: relative;
  padding: 72px 76px;
  background: rgba(255, 220, 0, 0.82);
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  left: -56px;
  top: -76px;
  width: 92px;
  height: 266px;
  border: 1px solid rgba(255, 220, 0, 0.36);
  border-radius: 999px;
  transform: rotate(-28deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.09) 0 50%, rgba(255, 255, 255, 0.02) 50% 100%);
}

.contact-form-panel form {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

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

.contact-form-panel label {
  display: grid;
  gap: 8px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.26);
  padding: 12px 13px;
  color: var(--black);
  font: inherit;
}

.contact-form-panel textarea {
  resize: vertical;
}

.contact-form-panel button {
  justify-self: start;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 28px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-weight: 700;
  cursor: pointer;
}

.contact-details {
  display: grid;
  gap: 48px;
  padding-top: 48px;
}

.contact-details-card {
  position: relative;
  padding: 0 0 42px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-details-card address {
  margin: 24px 0;
  color: #6f6f6f;
  font-style: normal;
  line-height: 1.75;
}

.contact-details-card a {
  font-weight: 700;
}

.contact-details-list {
  display: grid;
}

.contact-details-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-details-list span {
  color: #8a7a1f;
  font-weight: 700;
}

.contact-details-list h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 600;
}

.contact-details-list p {
  grid-column: 2;
  margin: 0;
}

.contact-offices {
  position: relative;
  z-index: 1;
  padding-top: 136px;
  padding-bottom: 145px;
  background: #fbfbfb;
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  gap: 92px;
  align-items: center;
}

.contact-offices article {
  padding-left: 84px;
}

.contact-offices figure {
  position: relative;
  margin: 0;
}

.contact-offices figure::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -48px;
  top: 54px;
  width: 42%;
  height: calc(100% - 108px);
  background: rgba(255, 220, 0, 0.12);
}

.contact-offices img {
  width: 100%;
  height: 455px;
  object-fit: cover;
}

.services-page {
  background: #fff;
}

.services-page main {
  position: relative;
  overflow: hidden;
}

.services-page main::before,
.services-page main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.32);
  border-radius: 999px;
  opacity: 0.74;
}

.services-page main::before {
  top: 700px;
  right: -116px;
  width: 142px;
  height: 452px;
  transform: rotate(32deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0.06) 50% 100%);
}

.services-page main::after {
  top: 1680px;
  left: -80px;
  width: 112px;
  height: 315px;
  transform: rotate(-32deg);
  background:
    linear-gradient(180deg, rgba(248, 173, 5, 0.1) 0 50%, rgba(255, 255, 255, 0.03) 50% 100%);
}

.services-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.services-hero-media,
.services-hero-shade {
  position: absolute;
  inset: 0;
}

.services-hero-media {
  background-image: url("../assets/images/service-manufacturing.jpg");
  background-position: center 42%;
  background-size: cover;
  opacity: 0.82;
}

.services-hero-media::after {
  content: "";
  position: absolute;
  right: -104px;
  bottom: -265px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 74px rgba(255, 220, 0, 0.13);
}

.services-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 52%);
}

.services-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.services-hero-copy p {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.services-hero h1 {
  max-width: 820px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.services-page-intro {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 112px;
}

.services-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
  gap: 118px;
  align-items: start;
}

.services-page-intro h2,
.services-overview-card h2,
.service-detail-row h2,
.services-contact h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.services-page-intro-grid > p,
.service-detail-row p {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.86;
}

.services-page-intro-grid > p {
  max-width: 560px;
  padding-top: 45px;
}

.services-overview {
  position: relative;
  z-index: 1;
  padding-bottom: 138px;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.services-overview-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background: var(--black);
}

.services-overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08) 62%);
}

.services-overview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.services-overview-card span,
.services-overview-card h2 {
  position: relative;
  z-index: 1;
}

.services-overview-card span {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

.services-overview-card h2 {
  margin: 0;
  color: var(--white);
  font-size: 27px;
}

.services-detail {
  position: relative;
  z-index: 1;
  padding-top: 138px;
  padding-bottom: 150px;
  background: #fbfbfb;
}

.services-detail-stack {
  display: grid;
  gap: 118px;
}

.service-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 86px;
  align-items: center;
}

.service-detail-row.reverse {
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1.04fr);
}

.service-detail-row.reverse figure {
  order: 2;
}

.service-detail-row.reverse > div {
  order: 1;
  padding-left: 84px;
}

.service-detail-row figure {
  position: relative;
  margin: 0;
}

.service-detail-row figure::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -48px;
  top: 54px;
  width: 42%;
  height: calc(100% - 108px);
  background: rgba(255, 220, 0, 0.12);
}

.service-detail-row figure::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: 48px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 24px rgba(255, 220, 0, 0.13);
}

.service-detail-row img {
  width: 100%;
  height: 455px;
  object-fit: cover;
}

.service-detail-row > div {
  max-width: 470px;
}

.services-contact {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--white);
}

.services-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.services-contact h2 {
  max-width: 650px;
  color: var(--white);
}

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

.service-subpage {
  background: #fff;
}

.service-subpage main {
  position: relative;
  overflow: hidden;
}

.service-subpage main::before,
.service-subpage main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.32);
  border-radius: 999px;
  opacity: 0.74;
}

.service-subpage main::before {
  top: 700px;
  right: -116px;
  width: 142px;
  height: 452px;
  transform: rotate(32deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0.06) 50% 100%);
}

.service-subpage main::after {
  top: 1510px;
  left: -80px;
  width: 112px;
  height: 315px;
  transform: rotate(-32deg);
  background:
    linear-gradient(180deg, rgba(248, 173, 5, 0.1) 0 50%, rgba(255, 255, 255, 0.03) 50% 100%);
}

.service-sub-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.service-sub-hero-media,
.service-sub-hero-shade {
  position: absolute;
  inset: 0;
}

.service-sub-hero-media {
  background-image: url("../assets/images/service-rd.jpg");
  background-position: center 42%;
  background-size: cover;
  opacity: 0.82;
}

.rd-page .service-sub-hero-media {
  background-image: url("../assets/images/service-rd.jpg");
}

.regulatory-page .service-sub-hero-media {
  background-image: url("../assets/images/service-regulatory.jpg");
}

.manufacturing-page .service-sub-hero-media {
  background-image: url("../assets/images/service-manufacturing.jpg");
}

.packaging-page .service-sub-hero-media {
  background-image: url("../assets/images/service-packaging.png");
}

.service-sub-hero-media::after {
  content: "";
  position: absolute;
  right: -104px;
  bottom: -265px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 74px rgba(255, 220, 0, 0.13);
}

.service-sub-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 52%);
}

.service-sub-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.service-sub-hero-copy p {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-sub-hero h1 {
  max-width: 900px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
}

.service-sub-intro {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 112px;
}

.service-sub-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
  gap: 118px;
  align-items: start;
}

.service-sub-intro h2,
.service-sub-feature-panel h2,
.service-sub-process h2,
.service-sub-related h2,
.service-sub-contact h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.service-sub-intro-grid > p,
.service-sub-feature-panel p,
.service-sub-process p,
.service-sub-related p {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.86;
}

.service-sub-intro-grid > p {
  max-width: 560px;
  padding-top: 45px;
}

.service-sub-feature {
  position: relative;
  z-index: 1;
  padding-bottom: 142px;
}

.service-sub-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.78fr);
  gap: 86px;
  align-items: center;
}

.service-sub-feature-image {
  position: relative;
  margin: 0;
}

.service-sub-feature-image::before,
.service-sub-feature-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
}

.service-sub-feature-image::before {
  left: -54px;
  top: -70px;
  width: 92px;
  height: 264px;
  border: 1px solid rgba(255, 220, 0, 0.36);
  transform: rotate(-28deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.09) 0 50%, rgba(255, 255, 255, 0.02) 50% 100%);
}

.service-sub-feature-image::after {
  right: -44px;
  bottom: 56px;
  width: 126px;
  height: 126px;
  box-shadow: inset 0 0 0 26px rgba(255, 220, 0, 0.13);
}

.service-sub-feature-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.service-sub-feature-panel {
  position: relative;
  padding: 74px 70px;
  background: rgba(255, 220, 0, 0.82);
}

.service-sub-feature-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -82px;
  width: 74px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  transform: rotate(31deg);
}

.service-sub-feature-panel p {
  color: rgba(0, 0, 0, 0.68);
}

.service-sub-process {
  position: relative;
  z-index: 1;
  padding-top: 132px;
  padding-bottom: 138px;
  background: #fbfbfb;
}

.service-sub-process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.service-sub-process-heading {
  max-width: 430px;
}

.service-sub-process-list {
  display: grid;
}

.service-sub-process-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.service-sub-process-list span {
  color: #8a7a1f;
  font-weight: 700;
}

.service-sub-process-list h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.service-sub-process-list p {
  margin: 0;
}

.service-sub-related {
  position: relative;
  z-index: 1;
  padding: 142px 0;
}

.service-sub-related-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  gap: 92px;
  align-items: start;
}

.service-sub-related article {
  padding-left: 84px;
}

.service-sub-related-links {
  display: grid;
}

.service-sub-related-links a {
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
}

.service-sub-contact {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--white);
}

.service-sub-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.service-sub-contact h2 {
  max-width: 650px;
  color: var(--white);
}

.service-sub-contact .contact-button {
  flex: 0 0 auto;
}

.about-page main {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-page main::before,
.about-page main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 220, 0, 0.22);
  border-radius: 999px;
}

.about-page main::before {
  top: 690px;
  right: -92px;
  width: 116px;
  height: 356px;
  transform: rotate(29deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0.04) 50% 100%);
}

.about-page main::after {
  top: 1510px;
  left: -76px;
  width: 102px;
  height: 312px;
  transform: rotate(-34deg);
  background:
    linear-gradient(180deg, rgba(248, 173, 5, 0.11) 0 50%, rgba(255, 255, 255, 0.02) 50% 100%);
}

.about-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.about-hero-media,
.about-hero-shade {
  position: absolute;
  inset: 0;
}

.about-hero-media {
  background-image: url("../assets/images/figma-about-hero.png");
  background-position: center center;
  background-size: cover;
  opacity: 0.95;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(55vw, 690px);
  height: min(55vw, 690px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 68px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
}

.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 38%, rgba(0, 0, 0, 0.16)),
    rgba(0, 0, 0, 0.1);
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
}

.about-hero h1 {
  width: 100%;
  max-width: 980px;
  color: var(--white);
  font-size: clamp(58px, 6.1vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.46);
}

.about-hero h1 span {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-transform: uppercase;
}

.about-intro,
.about-story,
.about-values,
.about-network,
.about-contact {
  position: relative;
  z-index: 1;
}

.about-intro {
  padding-top: 152px;
  padding-bottom: 120px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.76fr);
  gap: 124px;
  align-items: start;
}

.about-intro-heading {
  padding-left: 84px;
}

.about-intro h2,
.about-story h2,
.about-values h2,
.about-network h2,
.about-contact h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.about-intro-copy {
  max-width: 540px;
  padding-top: 42px;
}

.about-intro-copy p,
.about-story-panel p,
.about-value-list p,
.about-network p {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.86;
}

.about-intro-copy p {
  margin: 0 0 24px;
}

.about-story {
  padding-bottom: 150px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 72px;
  align-items: center;
}

.about-story-image {
  position: relative;
  margin: 0;
}

.about-story-image::before,
.about-story-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.about-story-image::before {
  z-index: -1;
  left: -48px;
  top: 56px;
  width: 42%;
  height: calc(100% - 112px);
  background: rgba(255, 220, 0, 0.11);
}

.about-story-image::after {
  right: -36px;
  bottom: 44px;
  width: 78px;
  height: 218px;
  border: 1px solid rgba(255, 220, 0, 0.34);
  transform: rotate(36deg);
  background:
    linear-gradient(180deg, rgba(255, 220, 0, 0.1) 0 50%, rgba(255, 255, 255, 0) 50% 100%);
}

.about-story-image img {
  width: 100%;
  height: 510px;
  object-fit: cover;
}

.about-story-panel {
  position: relative;
  margin-top: 86px;
  padding: 78px 70px 82px;
  background: rgba(255, 220, 0, 0.82);
}

.about-story-panel::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -84px;
  width: 72px;
  height: 216px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  transform: rotate(31deg);
}

.about-story-panel h2 {
  font-size: 34px;
}

.about-story-panel p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(0, 0, 0, 0.68);
}

.about-values {
  padding-top: 132px;
  padding-bottom: 132px;
  background: #fbfbfb;
}

.about-values-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.about-values-heading {
  max-width: 430px;
}

.about-value-list {
  display: grid;
}

.about-value-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.about-value-list span {
  color: #8a7a1f;
  font-weight: 700;
}

.about-value-list h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.about-value-list p {
  margin: 0;
}

.about-network {
  padding: 148px 0 156px;
}

.about-network-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.08fr);
  gap: 92px;
  align-items: center;
}

.about-network article {
  max-width: 500px;
  padding-left: 84px;
}

.about-network p:not(.eyebrow) {
  margin: 28px 0 30px;
}

.about-network figure {
  position: relative;
  margin: 0;
}

.about-network figure::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -46px;
  top: 54px;
  width: 36%;
  height: calc(100% - 108px);
  background: rgba(255, 220, 0, 0.1);
}

.about-network figure::after {
  content: "";
  position: absolute;
  left: -46px;
  top: -62px;
  width: 88px;
  height: 252px;
  border: 1px solid rgba(255, 220, 0, 0.32);
  border-radius: 999px;
  transform: rotate(-31deg);
}

.about-network img {
  width: 100%;
  height: 488px;
  object-fit: cover;
}

.about-contact {
  background: var(--black);
  color: var(--white);
}

.about-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.about-contact h2 {
  max-width: 670px;
  color: var(--white);
}

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

@media (min-width: 721px) {
  html {
    scroll-padding-top: 96px;
  }

  body {
    text-rendering: optimizeLegibility;
  }

  .section {
    padding-top: 132px;
    padding-bottom: 132px;
  }

  h1 {
    font-size: clamp(46px, 4.7vw, 68px);
    font-weight: 700;
    line-height: 1.08;
  }

  h1 span {
    margin-bottom: 24px;
    font-size: clamp(24px, 2.1vw, 31px);
  }

  h2 {
    margin-bottom: 26px;
    font-size: clamp(34px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.14;
  }

  .quality-hero h1,
  .culture-hero h1,
  .news-hero h1,
  .careers-hero h1,
  .contact-hero h1,
  .services-hero h1,
  .service-sub-hero h1,
  .about-hero h1 {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.12;
  }

  .quality-hero,
  .culture-hero,
  .news-hero,
  .careers-hero,
  .contact-hero,
  .services-hero,
  .service-sub-hero,
  .about-hero {
    min-height: 540px;
    align-items: end;
  }

  .quality-hero-media,
  .culture-hero-media,
  .news-hero-media,
  .careers-hero-media,
  .contact-hero-media,
  .services-hero-media,
  .service-sub-hero-media,
  .about-hero-media {
    opacity: 0.9;
    background-position: center center;
  }

  .quality-hero-shade,
  .culture-hero-shade,
  .news-hero-shade,
  .careers-hero-shade,
  .contact-hero-shade,
  .services-hero-shade,
  .service-sub-hero-shade,
  .about-hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 64%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent 58%);
  }

  .quality-hero-copy,
  .culture-hero-copy,
  .news-hero-copy,
  .careers-hero-copy,
  .contact-hero-copy,
  .services-hero-copy,
  .service-sub-hero-copy,
  .about-hero-copy {
    padding-bottom: 82px;
  }

  .hero {
    min-height: 880px;
  }

  .hero-media {
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.16)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 46%),
      rgba(0, 0, 0, 0.22);
  }

  .hero-copy {
    transform: translateY(8px);
  }

  .btn-link,
  .contact-button,
  .contact-form-panel button,
  .quality-enquiry button {
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
  }

  .btn-link {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .btn-link::after {
    width: 48px;
    opacity: 0.78;
    transition: width 220ms ease, opacity 220ms ease;
  }

  .btn-link:hover {
    transform: translateX(3px);
  }

  .btn-link:hover::after {
    width: 62px;
    opacity: 1;
  }

  .contact-button,
  .contact-form-panel button,
  .quality-enquiry button {
    min-height: 50px;
    padding-inline: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .contact-button:hover,
  .contact-form-panel button:hover,
  .quality-enquiry button:hover {
    transform: translateY(-2px);
  }

  .quality-feature-image img,
  .quality-systems img,
  .culture-feature-image img,
  .culture-community img,
  .news-feature-image img,
  .news-listing-card img,
  .careers-feature-image img,
  .contact-offices img,
  .services-overview-card img,
  .service-detail-row img,
  .service-sub-feature-image img,
  .about-story-image img,
  .about-network img,
  .news img,
  .service-img {
    filter: saturate(0.94) contrast(0.98);
  }

  .quality-feature-image,
  .quality-systems figure,
  .culture-feature-image,
  .culture-community figure,
  .news-feature-image,
  .careers-feature-image,
  .contact-offices figure,
  .service-detail-row figure,
  .service-sub-feature-image,
  .about-story-image,
  .about-network figure {
    isolation: isolate;
  }

  .eyebrow {
    margin-bottom: 20px;
    color: #d8b900;
  }

  .quality-hero-copy p,
  .culture-hero-copy p,
  .news-hero-copy p,
  .careers-hero-copy p,
  .contact-hero-copy p,
  .services-hero-copy p,
  .service-sub-hero-copy p,
  .about-hero-copy p {
    color: var(--yellow);
  }

  .services-intro p,
  .why-content p,
  .offices p,
  .news p,
  .contact p,
  .quality-policy p,
  .quality-lab p,
  .quality-systems p,
  .culture-intro-copy p,
  .culture-feature-panel p,
  .culture-values p,
  .culture-community p,
  .news-intro-grid > p,
  .news-feature-copy p,
  .news-listing-card p,
  .careers-intro-copy p,
  .careers-feature-panel p,
  .careers-pathways p,
  .careers-openings p,
  .careers-enquiry p,
  .contact-intro-grid > p,
  .contact-details p,
  .contact-offices p,
  .services-page-intro-grid > p,
  .service-detail-row p,
  .service-sub-intro-grid > p,
  .service-sub-feature-panel p,
  .service-sub-process p,
  .service-sub-related p,
  .about-intro-copy p,
  .about-story-panel p,
  .about-value-list p,
  .about-network p {
    max-width: 640px;
    font-size: 15px;
    line-height: 1.9;
  }

  .eyebrow,
  .quality-hero-copy p,
  .culture-hero-copy p,
  .news-hero-copy p,
  .careers-hero-copy p,
  .contact-hero-copy p,
  .services-hero-copy p,
  .service-sub-hero-copy p,
  .about-hero-copy p {
    max-width: none;
    font-size: 13px;
    line-height: 1.35;
  }

  .quality-policy h2,
  .quality-lab h2,
  .quality-systems h2,
  .culture-intro h2,
  .culture-feature-panel h2,
  .culture-values h2,
  .culture-community h2,
  .culture-careers h2,
  .news-intro h2,
  .news-feature-copy h2,
  .news-archive-side h2,
  .news-contact h2,
  .careers-intro h2,
  .careers-feature-panel h2,
  .careers-pathways h2,
  .careers-openings h2,
  .careers-enquiry h2,
  .contact-intro h2,
  .contact-form-panel h2,
  .contact-details-card h2,
  .contact-offices h2,
  .services-page-intro h2,
  .service-detail-row h2,
  .services-contact h2,
  .service-sub-intro h2,
  .service-sub-feature-panel h2,
  .service-sub-process h2,
  .service-sub-related h2,
  .service-sub-contact h2,
  .about-intro h2,
  .about-story h2,
  .about-values h2,
  .about-network h2,
  .about-contact h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.22;
  }

  .about-story-panel h2,
  .quality-systems h2 {
    font-size: 31px;
  }

  .quality-main,
  .culture-intro,
  .news-intro,
  .careers-intro,
  .contact-intro,
  .services-page-intro,
  .service-sub-intro,
  .about-intro {
    padding-top: 166px;
    padding-bottom: 132px;
  }

  .quality-content,
  .services-detail-stack {
    gap: 124px;
  }

  .service-detail-row,
  .service-sub-feature-grid,
  .culture-feature-grid,
  .careers-feature-grid,
  .about-story-grid,
  .about-network-grid,
  .contact-main-grid,
  .news-feature-grid {
    column-gap: 96px;
  }

  .culture-feature,
  .careers-feature,
  .services-overview,
  .service-sub-feature,
  .about-story {
    padding-bottom: 166px;
  }

  .culture-values,
  .careers-pathways,
  .service-sub-process,
  .about-values {
    padding-top: 146px;
    padding-bottom: 150px;
  }

  .news-archive,
  .contact-main,
  .services-detail,
  .service-sub-related,
  .about-network {
    padding-top: 158px;
    padding-bottom: 164px;
  }

  .culture-intro-grid,
  .news-intro-grid,
  .careers-intro-grid,
  .contact-intro-grid,
  .services-page-intro-grid,
  .service-sub-intro-grid,
  .about-intro-grid {
    gap: 132px;
  }

  .culture-value-list article,
  .careers-pathway-list article,
  .service-sub-process-list article,
  .about-value-list article {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .quality-news,
  .quality-enquiry,
  .contact-form-panel,
  .contact-details-card,
  .office-list div {
    padding: 40px;
  }

  .news-grid,
  .services-overview-grid {
    gap: 38px;
  }

  .awards {
    min-height: 118px;
  }

  .awards-title {
    font-size: 34px;
    font-weight: 600;
  }

  .awards-marquee {
    background: #fff;
    color: #747474;
  }

  .footer {
    padding-top: 64px;
  }

  .footer nav {
    gap: 14px 38px;
    font-size: 14px;
  }
}

.footer {
  padding: 58px 0 28px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 50px;
}

.footer img {
  width: 120px;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 34px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.footer p {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .banner {
    padding: 24px 28px 0;
  }

  .services-grid,
  .capability-grid,
  .offices-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    padding-top: 40px;
  }

  .home-news-grid article {
    flex-basis: calc((100% - 32px) / 2);
  }

  .service-mosaic {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .service-card,
  .service-card.large,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    position: static;
    width: auto;
  }

  .service-img.circle {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .why-content {
    margin: 0 auto;
    width: min(var(--max), calc(100% - 40px));
  }

  .orange-panel {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .services.section {
    padding-top: 126px;
    padding-bottom: 124px;
  }

  .services-grid {
    gap: clamp(64px, 7vw, 92px);
  }

  .services-intro {
    padding-top: 104px;
  }

  .services-intro p {
    max-width: 420px;
    line-height: 1.68;
  }

  .service-card {
    gap: 16px;
  }

  .service-card h3 {
    line-height: 1.2;
  }

  .service-card p {
    line-height: 1.6;
  }

  .slider-row {
    margin-top: 12px;
  }

  .why {
    min-height: 860px;
  }

  .why-content article {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .why-content h3 {
    margin-bottom: 14px;
    line-height: 1.22;
  }

  .services-page-intro,
  .about-intro {
    padding-top: 142px;
    padding-bottom: 116px;
  }

  .services-page-intro-grid,
  .about-intro-grid {
    gap: clamp(84px, 9vw, 124px);
  }

  .services-page-intro-grid > p,
  .about-intro-copy {
    padding-top: 34px;
  }

  .about-intro-heading {
    padding-left: clamp(48px, 6vw, 84px);
  }

  .services-overview {
    padding-bottom: 142px;
  }

  .services-overview-grid {
    gap: 34px;
  }

  .services-overview-card {
    min-height: 420px;
    padding: 32px;
  }

  .services-overview-card span {
    margin-bottom: 14px;
  }

  .services-detail {
    padding-top: 142px;
    padding-bottom: 154px;
  }

  .services-detail-stack {
    gap: 110px;
  }

  .service-detail-row,
  .about-story-grid,
  .about-network-grid {
    gap: clamp(70px, 7vw, 96px);
  }

  .service-detail-row.reverse > div,
  .about-network article {
    padding-left: clamp(48px, 6vw, 84px);
  }

  .service-detail-row img {
    height: 440px;
  }

  .about-story {
    padding-bottom: 148px;
  }

  .about-story-image img {
    height: 500px;
  }

  .about-story-panel {
    margin-top: 72px;
    padding: 68px 64px 72px;
  }

  .about-values {
    padding-top: 136px;
    padding-bottom: 140px;
  }

  .about-values-grid {
    gap: clamp(72px, 8vw, 104px);
  }

  .about-value-list article {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .about-network {
    padding-top: 144px;
    padding-bottom: 150px;
  }

  .about-network img {
    height: 470px;
  }
}

@media (min-width: 768px) and (max-width: 1060px) {
  .services.section {
    padding-top: 108px;
    padding-bottom: 110px;
  }

  .services-intro {
    padding-top: 0;
  }

  .services-grid {
    gap: 54px;
  }

  .service-mosaic {
    gap: 30px;
  }

  .why {
    min-height: 780px;
  }

  .services-page-intro,
  .about-intro {
    padding-top: 118px;
    padding-bottom: 96px;
  }

  .services-page-intro-grid,
  .about-intro-grid {
    gap: 72px;
  }
}

@media (max-width: 720px) {
  .banner {
    height: 86px;
  }

  .banner::before {
    top: -224px;
    left: -162px;
    width: 385px;
    height: 270px;
  }

  .banner::after {
    top: -72px;
    right: -96px;
    width: 236px;
    height: 190px;
  }

  .brand img {
    width: 118px;
    height: auto;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    place-items: center;
  }

  .hero-media,
  .hero-shade {
    top: 0;
    height: 100%;
  }

  .hero-media {
    object-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.24)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.24));
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 420px);
    transform: translateY(-38px);
  }

  .hero h1 {
    font-size: clamp(42px, 13.2vw, 58px);
    line-height: 0.96;
    text-align: center;
  }

  .hero h1 span {
    margin-bottom: 8px;
    font-size: clamp(22px, 6.2vw, 27px);
    line-height: 1.12;
  }

  .mobile-hero-break {
    display: block;
  }

  h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .section {
    padding: 78px 0;
  }

  .offcanvas-panel {
    padding: 76px 30px 36px;
  }

  .primary-menu > a,
  .primary-menu summary {
    font-size: 26px;
  }

  .service-mosaic,
  .yellow-panel ul,
  .office-list,
  .awards,
  .footer-grid,
  .footer nav {
    grid-template-columns: 1fr;
  }

  .yellow-panel,
  .orange-panel {
    min-height: auto;
    padding: 44px 30px;
  }

  .section-heading,
  .contact-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .news img {
    aspect-ratio: 16 / 11;
  }

  .awards-title {
    min-height: 96px;
  }

  .awards-marquee {
    padding: 28px 22px;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .banner {
    z-index: 1010;
  }

  html.menu-open,
  body.menu-open {
    width: 100%;
    overscroll-behavior: none;
  }

  body.menu-open .banner::before,
  body.menu-open .banner::after {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    width: 42px;
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    width: 42px;
  }

  .offcanvas {
    z-index: 1000;
    inset: 0;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    transform: translateY(-8px);
    transition:
      opacity 340ms cubic-bezier(0.22, 1, 0.36, 1),
      background 360ms ease,
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .offcanvas.is-open {
    background: rgba(0, 0, 0, 0.985);
    transform: translateY(0);
  }

  .offcanvas-tease,
  .menu-close,
  .primary-menu,
  .internal-note {
    display: none;
  }

  .offcanvas-panel {
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    display: grid;
    align-items: start;
    justify-items: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 104px 28px 56px;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition:
      opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .offcanvas.is-open .offcanvas-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .mobile-menu {
    display: grid;
    gap: clamp(13px, 2.8vh, 22px);
    width: min(100%, 380px);
    text-align: center;
    margin: auto 0;
    transform: none;
  }

  .menu-selectors {
    display: grid;
    width: min(100%, 380px);
    gap: 18px;
    margin: 28px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .selector-group {
    justify-content: center;
    text-align: center;
  }

  .selector-group strong {
    margin-top: 0;
  }

  .mobile-menu a,
  .mobile-menu-main {
    color: var(--white);
    font-size: clamp(29px, 8.8vw, 44px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    opacity: 0;
    transform: translateY(14px);
    transition:
      color 180ms ease,
      opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .offcanvas.is-open .mobile-menu a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-group {
    display: grid;
    gap: 10px;
    min-width: 0;
  }

  .mobile-submenu {
    display: grid;
    gap: 8px;
    padding-left: clamp(18px, 8vw, 34px);
    text-align: left;
  }

  .mobile-submenu .mobile-submenu-link {
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.2;
    font-weight: 500;
  }

  .offcanvas.is-open .mobile-menu > a:nth-child(2) {
    transition-delay: 45ms;
  }

  .offcanvas.is-open .mobile-menu > .mobile-menu-group {
    transition-delay: 90ms;
  }

  .offcanvas.is-open .mobile-menu > a:nth-child(4) {
    transition-delay: 135ms;
  }

  .offcanvas.is-open .mobile-submenu a:nth-child(1) {
    transition-delay: 120ms;
  }

  .offcanvas.is-open .mobile-submenu a:nth-child(2) {
    transition-delay: 145ms;
  }

  .offcanvas.is-open .mobile-submenu a:nth-child(3) {
    transition-delay: 170ms;
  }

  .offcanvas.is-open .mobile-submenu a:nth-child(4) {
    transition-delay: 195ms;
  }

  .offcanvas.is-open .mobile-submenu a:nth-child(5) {
    transition-delay: 220ms;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: var(--yellow);
  }

  .services {
    overflow: hidden;
  }

  .services.section {
    padding: 72px 0 84px;
    scroll-margin-top: 96px;
  }

  .services .container {
    width: min(100% - 32px, 480px);
    max-width: 100%;
  }

  .pill-overlay {
    top: 160px;
    right: -168px;
    width: 340px;
    height: 340px;
    box-shadow: inset 0 0 0 52px rgba(255, 220, 0, 0.13);
    opacity: 0.58;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: stretch;
  }

  .services-intro {
    padding-top: 0;
    max-width: 100%;
  }

  .services-intro h2 {
    margin-bottom: 14px;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.05;
  }

  .services-intro p {
    max-width: 34rem;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .services .btn-link {
    margin-top: 22px;
    max-width: 100%;
    gap: 14px;
    white-space: normal;
  }

  .services .btn-link::after {
    flex: 0 0 42px;
    width: 42px;
  }

  .service-mosaic {
    min-height: 0;
    counter-reset: service-card;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .service-card,
  .service-card.large,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    position: static;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    counter-increment: service-card;
    overflow: hidden;
  }

  .service-img,
  .service-img.circle {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 10.5;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
  }

  .service-card.large .service-img.circle {
    width: 100%;
    aspect-ratio: 16 / 10.5;
    border-radius: 0;
    justify-self: stretch;
  }

  .service-card h3 {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    margin: 2px 0 0;
    max-width: 100%;
    min-width: 0;
    font-size: clamp(21px, 6.4vw, 26px);
    line-height: 1.15;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-card h3::before {
    content: counter(service-card, decimal-leading-zero);
    color: var(--yellow);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
  }

  .service-card p,
  .service-card > p {
    display: block;
    max-width: 100%;
    min-width: 0;
    font-size: 15px;
    line-height: 1.52;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-card > div:not(.service-img) {
    display: grid;
    gap: 10px;
    min-width: 0;
  }

  .services h2,
  .services h3,
  .services p {
    overflow-wrap: normal;
    word-break: normal;
  }

  .slider-row {
    display: none;
  }
}

@media (max-width: 767px) {
  .why {
    min-height: auto;
    padding: 86px 0 92px;
  }

  .why-content {
    width: min(100% - 32px, 480px);
  }

  .why-content h2 {
    margin-bottom: 28px;
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.08;
  }

  .why-content article {
    padding: 24px 0;
  }

  .why-content h3 {
    margin-bottom: 10px;
    font-size: clamp(20px, 5.7vw, 24px);
    line-height: 1.22;
  }

  .why-content p {
    font-size: 15px;
    line-height: 1.62;
  }

  .services-page-intro,
  .about-intro {
    padding-top: 86px;
    padding-bottom: 72px;
  }

  .services-page-intro-grid,
  .about-intro-grid,
  .about-story-grid,
  .about-values-grid,
  .about-network-grid,
  .service-detail-row,
  .service-detail-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-intro-heading,
  .about-network article,
  .service-detail-row.reverse > div {
    padding-left: 0;
  }

  .services-page-intro-grid > p,
  .about-intro-copy {
    max-width: none;
    padding-top: 0;
  }

  .services-page-intro h2,
  .services-overview-card h2,
  .service-detail-row h2,
  .services-contact h2,
  .about-intro h2,
  .about-story h2,
  .about-values h2,
  .about-network h2,
  .about-contact h2 {
    font-size: clamp(29px, 8.2vw, 36px);
    line-height: 1.18;
  }

  .services-page-intro-grid > p,
  .service-detail-row p,
  .about-intro-copy p,
  .about-story-panel p,
  .about-value-list p,
  .about-network p {
    font-size: 15px;
    line-height: 1.68;
  }

  .services-overview {
    padding-bottom: 80px;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-overview-card {
    min-height: 310px;
    padding: 28px;
  }

  .services-overview-card span {
    margin-bottom: 12px;
  }

  .services-detail {
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .services-detail-stack {
    gap: 72px;
  }

  .service-detail-row.reverse figure,
  .service-detail-row.reverse > div {
    order: initial;
  }

  .service-detail-row > div {
    max-width: none;
  }

  .service-detail-row figure::before,
  .service-detail-row figure::after,
  .about-story-image::before,
  .about-story-image::after,
  .about-network figure::before,
  .about-network figure::after {
    opacity: 0.62;
  }

  .service-detail-row img,
  .about-story-image img,
  .about-network img {
    height: auto;
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }

  .about-story {
    padding-bottom: 82px;
  }

  .about-story-panel {
    margin-top: 0;
    padding: 36px 30px 40px;
  }

  .about-story-panel::after {
    display: none;
  }

  .about-story-panel h2 {
    font-size: clamp(27px, 7.6vw, 33px);
  }

  .about-story-panel p:not(.eyebrow) {
    margin-top: 20px;
  }

  .about-values {
    padding-top: 82px;
    padding-bottom: 84px;
  }

  .about-values-heading {
    max-width: none;
  }

  .about-value-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 20px;
    padding: 26px 0;
  }

  .about-value-list p {
    grid-column: 2;
  }

  .about-network {
    padding: 84px 0 88px;
  }

  .about-network p:not(.eyebrow) {
    margin-top: 20px;
    margin-bottom: 24px;
  }

  .about-contact-inner,
  .services-contact-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 420px) {
  .hero-media {
    object-position: 58% center;
  }
}

@media (min-width: 721px) {
  .about-page .about-hero {
    min-height: 720px;
    place-items: center;
    align-items: center;
  }

  .about-page .about-hero-media {
    background-position: center center;
    opacity: 0.95;
  }

  .about-page .about-hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.24)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 38%, rgba(0, 0, 0, 0.16)),
      rgba(0, 0, 0, 0.1);
  }

  .about-page .about-hero-copy {
    padding: 0;
  }

  .about-page .about-hero h1 {
    max-width: 980px;
    font-size: clamp(58px, 6.1vw, 92px);
    font-weight: 800;
    line-height: 0.98;
  }
}

@media (max-width: 720px) {
  .about-page .about-hero {
    min-height: 560px;
    min-height: 72svh;
    place-items: center;
    align-items: center;
  }

  .about-page .about-hero-media {
    background-position: center center;
    opacity: 0.95;
  }

  .about-page .about-hero-media::after {
    width: min(88vw, 430px);
    height: min(88vw, 430px);
    background: rgba(255, 255, 255, 0.14);
  }

  .about-page .about-hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.34)),
      rgba(0, 0, 0, 0.16);
  }

  .about-page .about-hero-copy {
    width: min(calc(100% - 32px), 520px);
    padding: 0;
  }

  .about-page .about-hero h1 {
    font-size: clamp(22px, 6vw, 40px);
    line-height: 1.04;
  }
}

@media (max-width: 420px) {
  .about-page .about-hero {
    min-height: 520px;
    min-height: 70svh;
  }

  .about-page .about-hero h1 {
    font-size: clamp(34px, 11.5vw, 48px);
  }
}

/* AU About page - Figma import match */
.about-page {
  --about-max: 1140px;
  --about-yellow: #ffda00;
  --about-soft: #f9f9fa;
  font-family: "Inter", Arial, sans-serif;
}

.about-page main {
  overflow: visible;
  background: #fff;
}

.about-page main::before,
.about-page main::after {
  display: none;
}

.about-page .about-container {
  width: min(var(--about-max), calc(100% - 40px));
  margin: 0 auto;
}

.about-page .about-hero {
  min-height: 900px;
  height: 900px;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  text-align: center;
}

.about-page .about-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

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

.about-page .about-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1117px, calc(100% - 40px));
  padding: 0;
  transform: translateY(-2px);
}

.about-page .about-hero h1 {
  width: 100%;
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 72.8px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
}

.about-success {
  min-height: 873px;
  padding-top: 115px;
}

.about-success-inner {
  position: relative;
  width: 825px;
  margin: 0 auto;
}

.about-success-strip {
  width: 825px;
  height: 155px;
  object-fit: cover;
}

.about-success-card {
  position: relative;
  width: 825px;
  min-height: 488px;
  padding: 65px 66px 64px;
  background: #f7f7f7;
}

.about-quote {
  position: absolute;
  left: -3px;
  top: -92px;
  color: var(--about-yellow);
  font-family: Georgia, serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
}

.about-success h2,
.about-success h3,
.about-success p,
.about-commitment h2,
.about-commitment h3,
.about-commitment p,
.about-network h2,
.about-network h3,
.about-history h2,
.about-history h3,
.about-history h4,
.about-history p,
.about-enquiry h2,
.about-enquiry label,
.about-enquiry input,
.about-enquiry select,
.about-enquiry textarea {
  margin: 0;
}

.about-success h2 {
  color: #333;
  font-size: 20.8px;
  font-weight: 700;
  line-height: 27.6px;
}

.about-success h3 {
  margin-top: 10px;
  padding-top: 20px;
  color: #333;
  font-size: 13.9px;
  font-weight: 700;
  line-height: 18px;
}

.about-success p {
  margin-top: 10px;
  color: #000;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.about-commitment {
  min-height: 644px;
  padding: 114px 0 86px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    #fff;
}

.about-commitment h2,
.about-network h2,
.about-history h2,
.about-enquiry h2 {
  color: #333;
  font-size: 31.8px;
  font-weight: 700;
  line-height: 41.8px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 98px;
}

.commitment-grid article {
  width: 255px;
}

.commitment-grid h3 {
  color: #333;
  font-size: 21.2px;
  font-weight: 700;
  line-height: 27.6px;
}

.commitment-grid p {
  min-height: 0;
  height: auto;
  max-height: 176px;
  margin-top: 45px;
  overflow: hidden;
  color: #030304;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.commitment-grid a {
  display: inline-block;
  margin-top: 31px;
  color: var(--about-yellow);
  font-size: 13.9px;
  font-weight: 700;
  line-height: 18px;
}

.about-network {
  min-height: 936px;
  padding: 114px 0 0;
  background: #fff;
}

.network-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 59px;
  overflow: visible;
}

.network-track article {
  width: 100%;
  min-width: 0;
}

.network-track img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.network-track h3 {
  margin-top: 15px;
  color: #000;
  font-size: 13.9px;
  font-weight: 700;
  line-height: 18px;
}

.about-slider-arrows {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 94px;
  height: 30px;
  margin: 31px 0 0 18px;
}

.about-slider-arrows span {
  position: relative;
  flex: 0 0 37px;
  width: 37px;
  height: 30px;
}

.about-slider-arrows span::before {
  content: "";
  position: absolute;
  inset: 4px 7px;
  border: solid #030304;
  border-width: 0 4px 4px 0;
  transform: rotate(135deg);
}

.about-slider-arrows span:nth-child(2) {
  left: auto;
  top: auto;
}

.about-slider-arrows span:nth-child(2)::before {
  transform: rotate(-45deg);
}

.about-history {
  min-height: 895px;
  padding: 56px 0 57px;
  background: var(--about-soft);
}

.about-history h2 {
  padding-bottom: 30px;
}

.history-slide {
  display: grid;
  grid-template-columns: 353px 353px 1fr;
  gap: 30px;
  height: 489px;
  padding-top: 15px;
}

.history-slide img {
  width: 353px;
  height: 474px;
  object-fit: cover;
}

.history-slide article {
  grid-column: 2;
  align-self: center;
  padding-left: 0;
  transform: translateY(-10px);
}

.history-slide h3 {
  color: var(--about-yellow);
  font-size: 62.6px;
  font-weight: 700;
  line-height: 70px;
}

.history-slide h4 {
  margin-top: 5px;
  color: #333;
  font-size: 13.9px;
  font-weight: 700;
  line-height: 18px;
}

.history-slide p {
  margin-top: 30px;
  max-width: 321px;
  color: #030304;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.history-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
}

.history-controls .about-slider-arrows {
  margin: 0 0 0 -38px;
}

.history-controls ol {
  display: flex;
  gap: 40px;
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
}

.history-controls li {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #030304;
  border-radius: 50%;
}

.history-controls li.active {
  background: var(--about-yellow);
  border-color: var(--about-yellow);
}

.history-controls span {
  position: absolute;
  top: -30px;
  left: 50%;
  color: #030304;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  transform: translateX(-50%);
}

.about-enquiry {
  min-height: 600px;
  padding: 112px 0;
  background: var(--about-soft);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 207px));
  gap: 30px;
}

.enquiry-form label {
  display: grid;
  gap: 10px;
  color: #030304;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #030304;
  border-radius: 0;
  background: transparent;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  outline: 0;
}

.enquiry-form input,
.enquiry-form select {
  height: 28px;
}

.enquiry-form .wide {
  grid-column: span 2;
}

.enquiry-form .message {
  grid-row: span 2;
}

.enquiry-form textarea {
  min-height: 107px;
  resize: vertical;
}

.enquiry-form textarea::placeholder {
  color: #030304;
  opacity: 1;
}

.enquiry-form button {
  grid-column: 4;
  justify-self: end;
  align-self: end;
  width: 195px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: #ffdc00;
  color: #030304;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.about-page .awards {
  grid-template-columns: calc((100vw - var(--about-max)) / 2 + 190px) minmax(0, 1fr);
  min-height: 132px;
  background: #fff;
}

.about-page .awards-title {
  justify-content: end;
  padding-right: 15px;
  color: #030304;
  font-size: 31.3px;
  font-weight: 700;
}

.about-page .awards-marquee {
  padding-left: 48px;
  color: #030304;
  font-size: 14.8px;
}

.about-page .awards-marquee span {
  flex: 0 0 auto;
  min-width: auto;
  padding-right: 78px;
  animation: none;
}

.about-page .awards-marquee span::before {
  width: 33px;
  height: 33px;
  background: var(--about-yellow);
}

.about-page .footer {
  padding: 0;
  background: #000;
}

.about-footer-main {
  min-height: 320px;
  padding-top: 58px;
  background: #000;
}

.about-footer-grid {
  display: grid;
  grid-template-columns: 190px 570px 1fr;
  gap: 0;
}

.about-footer-grid .footer-logo {
  width: 120px;
  height: auto;
}

.about-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 190px);
}

.about-footer-nav div {
  display: grid;
  align-content: start;
}

.about-footer-nav a {
  min-height: 22px;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.about-footer-nav .strong {
  min-height: 37px;
  font-weight: 800;
}

.about-footer-social {
  padding-left: 175px;
  color: #fff;
}

.about-footer-social strong {
  display: block;
  margin-bottom: 15px;
  font-size: 15.1px;
  line-height: 18px;
}

.about-footer-social div {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.about-footer-social .linkedin {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--about-yellow);
  color: #000;
  font-size: 20px;
  font-weight: 800;
}

.about-footer-social img {
  width: 75px;
  height: 75px;
}

.about-footer-bottom {
  min-height: 52px;
  background: #fff;
}

.about-footer-bottom .about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
}

.about-footer-bottom p {
  margin: 0;
  color: #030304;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13.6px;
  line-height: 22px;
}

@media (max-width: 1060px) {
  .about-page .about-hero {
    height: 820px;
    min-height: 820px;
  }

  .about-page .about-hero h1 {
    font-size: clamp(48px, 8vw, 68px);
    line-height: 0.98;
  }

  .about-success-inner,
  .about-success-strip,
  .about-success-card {
    width: min(825px, calc(100vw - 40px));
  }

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

  .network-track {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 22px;
  }

  .network-track article,
  .network-track img,
  .commitment-grid article {
    width: 100%;
  }

  .history-slide {
    grid-template-columns: 353px 1fr;
  }

  .history-slide article {
    grid-column: 2;
  }

  .enquiry-grid,
  .about-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-footer-social {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .about-page .about-container {
    width: min(100% - 30px, 480px);
  }

  .about-page .about-hero {
    height: 620px;
    min-height: 620px;
  }

  .about-page .about-hero-media {
    object-position: center;
  }

  .about-page .about-hero-copy {
    width: calc(100% - 30px);
  }

  .about-page .about-hero h1 {
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.02;
    max-width: 330px;
  }

  .about-success {
    min-height: auto;
    padding: 70px 0;
  }

  .about-success-card {
    min-height: 0;
    padding: 42px 28px;
  }

  .about-success-strip {
    height: auto;
  }

  .about-success p br {
    display: none;
  }

  .about-commitment,
  .about-network,
  .about-history,
  .about-enquiry {
    min-height: 0;
    padding: 72px 0;
  }

  .commitment-grid,
  .history-slide,
  .enquiry-form,
  .about-footer-nav {
    grid-template-columns: 1fr;
  }

  .commitment-grid {
    margin-top: 42px;
  }

  .commitment-grid p {
    height: auto;
    margin-top: 18px;
  }

  .network-track {
    grid-template-columns: 1fr;
    margin-top: 36px;
    gap: 34px;
    overflow: visible;
  }

  .network-track img {
    height: auto;
    aspect-ratio: 330 / 470;
  }

  .history-slide {
    height: auto;
  }

  .history-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 353 / 474;
  }

  .history-slide article {
    grid-column: auto;
    transform: none;
  }

  .history-controls {
    height: 130px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .enquiry-form .wide,
  .enquiry-form button {
    grid-column: auto;
  }

  .enquiry-form button {
    justify-self: start;
  }

  .about-page .awards {
    grid-template-columns: 1fr;
  }

  .about-page .awards-title {
    justify-content: center;
    padding-right: 0;
  }

  .about-footer-nav {
    gap: 18px;
  }

  .about-footer-bottom .about-container {
    display: grid;
    gap: 6px;
    padding: 14px 0;
  }
}

/* AU English homepage simulation */
.home-au {
  --home-line: rgba(0, 0, 0, 0.12);
}

.home-au .hero {
  min-height: 880px;
}

.home-au .hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.32) 68%);
}

.home-au .hero-copy {
  transform: translateY(18px);
}

.home-au .hero-partnership {
  margin: 0 0 46px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}

.home-au .hero h1 {
  font-size: clamp(50px, 6vw, 86px);
  line-height: 1.04;
  font-weight: 700;
  text-transform: none;
}

.home-au .hero h1 span {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  text-transform: none;
}

.selector-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}

.selector-group strong {
  width: 100%;
}

.selector-group a,
.selector-strip a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.selector-group a[aria-current="page"],
.selector-strip a[aria-current="page"] {
  color: var(--yellow);
}

.home-selectors {
  background: #0a0a0a;
  color: var(--white);
}

.selector-strip {
  display: flex;
  justify-content: flex-end;
  gap: 42px;
  min-height: 64px;
  align-items: center;
}

.selector-strip div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.selector-strip span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.section-kicker {
  margin: 0 0 12px;
  color: #a48600;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-au .services.section {
  padding-top: 104px;
}

.home-au .service-card {
  position: static;
  width: auto;
  display: grid;
  gap: 14px;
  color: inherit;
  transition: transform 220ms ease;
}

.home-au .service-card.large,
.home-au .service-card:nth-child(2),
.home-au .service-card:nth-child(3),
.home-au .service-card:nth-child(4) {
  position: static;
  width: auto;
}

.home-au .service-mosaic {
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 30px;
  align-items: start;
}

.home-au .service-img,
.home-au .service-img.circle,
.home-au .service-card.large .service-img.circle {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  border-radius: 0;
}

.home-au .service-card.large {
  padding-top: 34px;
}

.home-au .service-card:nth-child(2),
.home-au .service-card:nth-child(4) {
  transform: translateY(-34px);
}

.home-au .service-card:hover {
  transform: translateY(-5px);
}

.home-au .service-card:nth-child(2):hover,
.home-au .service-card:nth-child(4):hover {
  transform: translateY(-39px);
}

.home-au .service-card h3 {
  font-weight: 600;
}

.home-au .service-card p {
  font-size: 15px;
  line-height: 1.55;
}

.home-au .why-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-au .why-content li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.62;
}

.home-au .why-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

@keyframes awardsSlide {
  0%,
  16.36% {
    transform: translateX(0);
  }

  20%,
  36.36% {
    transform: translateX(-100%);
  }

  40%,
  56.36% {
    transform: translateX(-200%);
  }

  60%,
  76.36% {
    transform: translateX(-300%);
  }

  80%,
  96.36% {
    transform: translateX(-400%);
  }

  100% {
    transform: translateX(-400%);
  }
}

.home-au .why {
  min-height: 820px;
  color: #030304;
  background: #f5f5f5;
}

.home-au .why-capsule-image {
  position: absolute;
  top: 162px;
  right: calc((100vw - min(1110px, calc(100vw - 30px))) / 2 + 54px);
  bottom: auto;
  left: auto;
  width: 300px;
  height: 610px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: rotate(31deg);
  transform-origin: center;
  transition: opacity 0.28s ease, transform 0.42s ease;
}

.home-au .why.why-active-quality .why-capsule-image,
.home-au .why.why-active-service .why-capsule-image {
  transform: rotate(31deg) scale(1.015);
}

.home-au .why-overlay {
  background: radial-gradient(circle at 72% 50%, rgba(255, 218, 0, 0.16), transparent 0 22%, rgba(0, 0, 0, 0) 23%);
}

.home-au .why-content {
  max-width: 590px;
  margin-left: calc((100vw - min(1110px, calc(100vw - 30px))) / 2);
  padding-top: 116px;
}

.home-au .why-content h2 {
  margin: 0 0 54px;
  color: #030304;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
}

.home-au .why-content article {
  position: relative;
  min-height: 132px;
  padding: 0 0 30px 88px;
  border-top: 0;
  color: #030304;
  transform: translateX(0);
  transition: transform 0.28s ease;
}

.home-au .why-content article + article {
  margin-top: 24px;
}

.home-au .why-content article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffda00;
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-au .why-content article::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 17px;
  width: 24px;
  height: 16px;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-26deg);
}

.home-au .why-content article:hover::before,
.home-au .why-content article:focus-within::before {
  background: #fdaf05;
  transform: scale(1.06);
}

.home-au .why-content article:hover,
.home-au .why-content article:focus-within {
  transform: translateX(18px);
}

.home-au .why-content h3 {
  margin: 0 0 13px;
  color: #030304;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 800;
}

.home-au .why-content ul {
  max-width: 485px;
}

.home-au .why-content li {
  padding-left: 17px;
  color: rgba(3, 3, 4, 0.76);
  font-size: 15px;
  line-height: 1.58;
}

.home-au .why-content li::before {
  top: 0.76em;
  width: 5px;
  height: 5px;
  background: #ffda00;
}

.home-au .why.why-active-experience .why-item-experience,
.home-au .why.why-active-quality .why-item-quality,
.home-au .why.why-active-service .why-item-service {
  transform: translateX(18px);
}

.home-au .yellow-panel .section-kicker,
.home-au .orange-panel .section-kicker {
  color: rgba(0, 0, 0, 0.58);
}

.office-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background:
    radial-gradient(circle at 70% 60%, rgba(255, 220, 0, 0.35) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 42%, rgba(248, 173, 5, 0.32) 0 5px, transparent 6px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 242, 0.95));
}

.office-map::before {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.office-map::after {
  content: "";
  position: absolute;
  inset: 82px 38px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  transform: rotate(22deg);
}

.office-card {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 5px;
  min-width: 150px;
  padding: 18px 20px;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.office-card strong {
  font-size: 19px;
}

.office-card span {
  color: var(--muted);
  font-size: 13px;
}

.office-card.sydney {
  right: 16%;
  bottom: 23%;
}

.office-card.auckland {
  right: 7%;
  bottom: 7%;
}

.home-au .offices {
  background: #000;
  color: #fff;
}

.home-au .offices.section {
  padding: 112px 0 116px;
}

.home-au .offices-grid {
  grid-template-columns: 0.36fr 0.64fr;
  gap: 74px;
  align-items: center;
}

.home-au .offices-grid > div:first-child {
  transform: translateY(50px);
}

.home-au .offices h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 700;
}

.home-au .offices p:not(.section-kicker) {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
}

.home-au .offices .btn-link {
  min-height: 42px;
  margin-top: 28px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 13px;
}

.home-au .offices .btn-link::before,
.home-au .offices .btn-link::after {
  display: none;
}

.home-au .offices .btn-link:hover {
  background: #fff;
  color: #000;
}

.home-au .office-map {
  min-height: 500px;
  margin-right: -76px;
  border: 0;
  background:
    url("../assets/images/office-apac-map.png") center / contain no-repeat,
    #050505;
}

.home-au .office-map > * {
  display: none !important;
}

.home-au .office-map::before {
  display: none;
}

.home-au .office-map::after {
  display: none;
}

.home-au .office-marker.sydney {
  display: none;
}

.home-au .office-label.sydney {
  display: none;
}

.home-news-grid {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.home-news-grid article {
  flex: 0 0 calc((100% - 96px) / 4);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--home-line);
}

.home-news-grid img {
  aspect-ratio: 1;
}

.home-news-grid time {
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 700;
}

.news-viewport {
  overflow: hidden;
}

.news-arrows {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 38px;
}

.news-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #030304;
  cursor: pointer;
}

.news-arrow span {
  display: block;
  color: #030304;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  transform: translateY(-2px);
}

.news-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: #030304;
}

.news-arrow::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #030304;
  border-right: 2px solid #030304;
}

.news-arrow-prev::after {
  left: 0;
  transform: rotate(-135deg);
}

.news-arrow-next::after {
  right: 0;
  transform: rotate(45deg);
}

.news-arrow:disabled {
  cursor: default;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .manufacturing-cards .yellow-panel,
  .manufacturing-cards .orange-panel,
  .manufacturing-cards.is-visible .yellow-panel,
  .manufacturing-cards.is-visible .orange-panel {
    animation: none;
    opacity: 1;
    transform: translateX(0);
  }

  .home-news-grid {
    transition: none;
  }
}

.enquiry {
  background: #f4f4f4;
  color: #030304;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  gap: 78px;
  align-items: start;
}

.enquiry-grid > div:first-child {
  transform: translateY(-40px);
}

.enquiry p:not(.section-kicker) {
  display: none;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 34px;
  align-items: end;
}

.enquiry-form label {
  display: grid;
  gap: 10px;
  color: rgba(3, 3, 4, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.enquiry-form .full {
  grid-column: auto;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(3, 3, 4, 0.3);
  border-radius: 0;
  background: transparent;
  color: #030304;
  font: inherit;
  padding: 0 0 10px;
  outline: 0;
}

.enquiry-form select option {
  color: var(--text);
}

.enquiry-form textarea {
  min-height: 78px;
  resize: vertical;
}

.enquiry-form .contact-button {
  justify-self: start;
  align-self: end;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #ffda00;
  color: #030304;
  cursor: pointer;
}

.enquiry-form .field-first {
  grid-column: 1;
  grid-row: 1;
}

.enquiry-form .field-last {
  grid-column: 2;
  grid-row: 1;
}

.enquiry-form .field-topic {
  grid-column: 3;
  grid-row: 1;
}

.enquiry-form .field-occupation {
  grid-column: 1;
  grid-row: 2;
}

.enquiry-form .field-company {
  grid-column: 2;
  grid-row: 2;
}

.enquiry-form .field-message {
  grid-column: 3;
  grid-row: 2;
}

.enquiry-form .field-email {
  grid-column: 1;
  grid-row: 3;
}

.enquiry-form .field-phone {
  grid-column: 2;
  grid-row: 3;
}

.enquiry-form .contact-button {
  grid-column: 3;
  grid-row: 3;
}

.home-au .awards {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.home-au .footer p {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1060px) {
  .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .home-au .hero {
    min-height: 100svh;
  }

  .home-au .hero-copy {
    transform: translateY(-22px);
  }

  .home-au .hero-partnership {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .home-au .hero h1 {
    max-width: 340px;
    margin: 0 auto;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.06;
  }

  .home-au .hero h1 span {
    font-size: clamp(21px, 6vw, 26px);
    line-height: 1.18;
  }

  .selector-strip {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px 0;
  }

  .selector-strip div {
    flex-wrap: wrap;
  }

  .home-au .services.section {
    padding-top: 78px;
  }

  .home-au .service-card:hover {
    transform: none;
  }

  .home-au .service-card.large,
  .home-au .service-card:nth-child(2),
  .home-au .service-card:nth-child(4) {
    padding-top: 0;
    transform: none;
  }

  .office-map {
    min-height: 340px;
  }

  .office-card.sydney {
    right: 18%;
    bottom: 28%;
  }

  .office-card.auckland {
    right: 8%;
    bottom: 9%;
  }

  .home-news-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .enquiry-form label,
  .enquiry-form .contact-button {
    grid-column: auto;
    grid-row: auto;
  }

  .home-news-grid article {
    flex-basis: 82%;
  }

  .news-arrows {
    gap: 34px;
    margin-top: 30px;
  }

  .enquiry-form .contact-button {
    width: 100%;
  }
}

/* AU English homepage reference-match pass */
body.home-au {
  font-family: "Open Sans", Arial, sans-serif;
  color: #030304;
}

.home-au .container {
  width: min(1110px, calc(100% - 30px));
}

.home-au .banner {
  height: 118px;
  padding: 30px calc((100vw - min(1110px, calc(100vw - 30px))) / 2) 0;
  align-items: flex-start;
}

.home-au .banner::before {
  top: 0;
  left: 0;
  width: 500px;
  height: 340px;
  border-radius: 200px;
  transform: translate(-27%, -155%) rotate(9deg);
  animation: none;
}

.home-au .banner::after,
.home-au .offcanvas-tease {
  top: 0;
  right: 0;
  width: 360px;
  height: 560px;
  border-radius: 200px;
  transform: translate(48%, -50%) rotate(-35deg);
  animation: none;
}

body.home-au.is-scrolled .banner::before {
  opacity: 1;
  transform: translate(-27%, -65%) rotate(29deg);
}

.home-au .brand {
  min-height: 73px;
}

.home-au .brand img {
  width: 144px;
  height: auto;
}

.home-au .menu-toggle {
  width: 45px;
  height: 39px;
  gap: 9px;
  transform: translateY(15px);
}

.home-au .menu-toggle span {
  height: 4px;
  border-radius: 0;
}

.home-au .menu-toggle span:nth-child(1),
.home-au .menu-toggle span:nth-child(3) {
  width: 41px;
  margin-left: auto;
}

.home-au .menu-toggle span:nth-child(2) {
  width: 32px;
  margin-left: auto;
}

.home-au .menu-toggle:hover span {
  width: 45px;
}

@media (min-width: 768px) {
  body.home-au .brand {
    position: absolute;
    top: 30px;
    left: 55px;
  }

  body.home-au .menu-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    transform: translateY(15px);
  }
}

.home-au .hero {
  height: 100vh;
  min-height: 690px;
  place-items: center;
}

.home-au .hero-media {
  opacity: 0.7;
}

.home-au .hero-shade {
  background: rgba(0, 0, 0, 0.18);
}

.home-au .hero-copy {
  transform: translateY(12px);
}

.home-au .hero h1 {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  font-size: clamp(50px, 5.25vw, 75px);
  line-height: 1.18;
  font-weight: 700;
  text-transform: uppercase;
}

.home-au .hero h1 span {
  margin-bottom: 2px;
  font-size: clamp(27px, 2.25vw, 32px);
  line-height: 1.18;
  font-weight: 300;
  text-transform: lowercase;
}

.home-au .down-arrow {
  bottom: 20px;
  width: 42px;
  height: 54px;
  animation: bounce 2s infinite;
}

.home-au .down-arrow::before,
.home-au .down-arrow::after {
  top: 28px;
  width: 31px;
  height: 4px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -18px);
  }

  60% {
    transform: translate(-50%, -9px);
  }
}

.home-au .home-selectors {
  display: none;
}

body.home-au.menu-open main,
body.home-au.menu-open footer {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

body.home-au.menu-open .offcanvas {
  z-index: 20;
  background: rgba(0, 0, 0, 0);
}

body.home-au.menu-open .banner {
  z-index: 60;
}

body.home-au.menu-open .banner::before,
body.home-au.menu-open .banner::after {
  opacity: 0;
}

body.home-au.menu-open .menu-toggle {
  z-index: 65;
  width: 56px;
  height: 48px;
}

body.home-au.menu-open .menu-toggle span {
  width: 56px;
  height: 5px;
  transition-delay: 0.2s;
}

body.home-au.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(14px) rotate(-45deg);
}

body.home-au.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.home-au.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-14px) rotate(45deg);
}

@media (min-width: 768px) {
  body.home-au.menu-open .menu-toggle {
    width: 45px;
    height: 39px;
  }

  body.home-au.menu-open .menu-toggle span {
    width: 45px;
    height: 4px;
  }

  body.home-au.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(13px) rotate(-45deg);
  }

  body.home-au.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-13px) rotate(45deg);
  }
}

body.home-au.menu-open .menu-close {
  display: none;
}

.home-au .offcanvas {
  align-items: flex-start;
  justify-content: flex-end;
}

.home-au .offcanvas.is-open .offcanvas-tease {
  opacity: 1;
  width: 940px;
  height: 100vh;
  border-radius: 100%;
  transform: translate(48%, 0) rotate(0) scale(1.58);
}

.home-au .offcanvas-panel {
  position: fixed;
  top: 18vh;
  right: 170px;
  left: auto;
  width: min(470px, 100%);
  min-height: auto;
  max-height: 80vh;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  background: transparent;
  box-shadow: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-au .offcanvas-panel::-webkit-scrollbar,
.home-au .offcanvas-panel *::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.home-au .primary-menu {
  gap: 0;
}

.home-au .primary-menu > a,
.home-au .primary-menu summary {
  margin-bottom: 36px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.home-au .primary-menu details a {
  display: none;
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 400;
  color: #bec3ce;
}

.home-au .primary-menu details[open] a,
.home-au .primary-menu details.is-open a {
  display: block;
}

@media (min-width: 768px) {
  .home-au .primary-menu > a,
  .home-au .primary-menu summary,
  .home-au .primary-menu details a {
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    outline: 0;
    outline-offset: 0;
    text-decoration: none;
    background-image: none;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: none;
  }

  .home-au .primary-menu > a::before,
  .home-au .primary-menu > a::after,
  .home-au .primary-menu summary::before,
  .home-au .primary-menu details a::before,
  .home-au .primary-menu details a::after {
    content: none;
    display: none;
  }

  .home-au .primary-menu > a:hover,
  .home-au .primary-menu > a:active,
  .home-au .primary-menu > a:focus,
  .home-au .primary-menu > a:focus-visible,
  .home-au .primary-menu > a[aria-current="page"],
  .home-au .primary-menu > a.is-active,
  .home-au .primary-menu > a.active,
  .home-au .primary-menu summary:hover,
  .home-au .primary-menu summary:active,
  .home-au .primary-menu summary:focus,
  .home-au .primary-menu summary:focus-visible,
  .home-au .primary-menu summary.active,
  .home-au .primary-menu details a:hover,
  .home-au .primary-menu details a:active,
  .home-au .primary-menu details a:focus,
  .home-au .primary-menu details a:focus-visible,
  .home-au .primary-menu details a[aria-current="page"],
  .home-au .primary-menu details a.is-active,
  .home-au .primary-menu details a.active {
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    outline: 0;
    outline-offset: 0;
    text-decoration: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -webkit-text-decoration: none;
  }

  .home-au .primary-menu > a:hover::before,
  .home-au .primary-menu > a:hover::after,
  .home-au .primary-menu > a:active::before,
  .home-au .primary-menu > a:active::after,
  .home-au .primary-menu > a:focus::before,
  .home-au .primary-menu > a:focus::after,
  .home-au .primary-menu > a:focus-visible::before,
  .home-au .primary-menu > a:focus-visible::after,
  .home-au .primary-menu > a[aria-current="page"]::before,
  .home-au .primary-menu > a[aria-current="page"]::after,
  .home-au .primary-menu > a.is-active::before,
  .home-au .primary-menu > a.is-active::after,
  .home-au .primary-menu > a.active::before,
  .home-au .primary-menu > a.active::after,
  .home-au .primary-menu summary:hover::before,
  .home-au .primary-menu summary:hover::after,
  .home-au .primary-menu summary:active::before,
  .home-au .primary-menu summary:active::after,
  .home-au .primary-menu summary:focus::before,
  .home-au .primary-menu summary:focus::after,
  .home-au .primary-menu summary:focus-visible::before,
  .home-au .primary-menu summary:focus-visible::after,
  .home-au .primary-menu summary.active::before,
  .home-au .primary-menu summary.active::after,
  .home-au .primary-menu details a:hover::before,
  .home-au .primary-menu details a:hover::after,
  .home-au .primary-menu details a:active::before,
  .home-au .primary-menu details a:active::after,
  .home-au .primary-menu details a:focus::before,
  .home-au .primary-menu details a:focus::after,
  .home-au .primary-menu details a:focus-visible::before,
  .home-au .primary-menu details a:focus-visible::after,
  .home-au .primary-menu details a[aria-current="page"]::before,
  .home-au .primary-menu details a[aria-current="page"]::after,
  .home-au .primary-menu details a.is-active::before,
  .home-au .primary-menu details a.is-active::after,
  .home-au .primary-menu details a.active::before,
  .home-au .primary-menu details a.active::after {
    content: none;
    display: none;
  }

  .home-au .primary-menu > a,
  .home-au .primary-menu summary,
  .home-au .primary-menu details a {
    text-underline-offset: 0;
    text-decoration-thickness: 0;
  }

  .home-au .offcanvas *,
  .home-au .offcanvas *:hover,
  .home-au .offcanvas *:active,
  .home-au .offcanvas *:focus,
  .home-au .offcanvas *:focus-visible {
    outline: 0;
    outline-offset: 0;
    box-shadow: none;
    scrollbar-width: none;
  }

  .home-au .offcanvas *::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

.home-au .primary-menu summary::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  border: 5px solid transparent;
  border-top-color: #fff;
  transform: translateY(2px);
}

.home-au .menu-selectors {
  align-items: flex-start;
  gap: 48px;
  margin-top: 18px;
  padding-top: 32px;
  border-top: 1px solid #fff;
}

.sydney-partnership {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #fff;
}

.sydney-partnership img {
  width: 180px;
  max-width: 44%;
  height: auto;
}

.sydney-partnership p {
  margin: 0 0 5px;
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 800;
}

.home-au .selector-group {
  display: block;
}

.home-au .menu-selectors span {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.home-au .menu-selectors strong {
  display: block;
  margin: 14px 0 0;
  min-width: 150px;
  padding: 9px 12px;
  border: 1px solid #fff;
  border-radius: 7px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.home-au .menu-selectors a {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.home-au .menu-selectors a + a {
  margin-left: 10px;
}

.home-au .section {
  padding: 106px 0;
}

.home-au .services {
  min-height: 790px;
  background: #fff;
}

.home-au .services.section {
  padding: 118px 0 96px;
}

.home-au .services-grid {
  display: grid;
  grid-template-columns: 315px minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.home-au .services-intro {
  position: relative;
  z-index: 2;
  padding-top: 112px;
}

.home-au .services-intro h2 {
  margin-bottom: 18px;
  font-size: 46px;
  font-weight: 700;
}

.home-au .services-intro p {
  max-width: 300px;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
}

.home-au .section-kicker {
  display: none;
}

.home-au .btn-link {
  position: relative;
  z-index: 1;
  min-height: 54px;
  margin-top: 26px;
  padding: 0 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #ffda00;
  color: #030304;
  font-size: 14px;
  font-weight: 800;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.home-au .btn-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fdaf05;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.42s ease;
}

.home-au .btn-link::after {
  display: none;
}

.home-au .btn-link:hover::before {
  transform: translate(-50%, -50%) scale(3);
}

.home-au .offices .btn-link {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: transparent;
  color: #fff;
}

.home-au .offices .btn-link::before,
.home-au .offices .btn-link::after {
  display: none;
}

.home-au .offices .btn-link:hover {
  background: #fff;
  color: #000;
}

.home-au .pill-overlay {
  top: 146px;
  right: -82px;
  width: 230px;
  height: 560px;
  border: 1px solid rgba(220, 220, 220, 0.78);
  border-radius: 999px;
  box-shadow: none;
  opacity: 0.7;
  transform: rotate(31deg);
}

.home-au .service-mosaic {
  position: relative;
  display: block;
  min-height: 590px;
  overflow: visible;
}

.home-au .service-mosaic::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 98px;
  left: 32px;
  width: 630px;
  height: 325px;
  border: 2px solid rgba(210, 210, 210, 0.86);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.home-au .service-card,
.home-au .service-card.large,
.home-au .service-card:nth-child(2),
.home-au .service-card:nth-child(3),
.home-au .service-card:nth-child(4) {
  position: absolute;
  display: block;
  width: auto;
  color: #030304;
  transform: none;
  transition: color 0.22s ease, transform 0.28s ease;
}

.home-au .service-card.large {
  top: -32px;
  left: 0;
  width: 330px;
  padding-top: 0;
}

.home-au .service-card.large .service-img.circle {
  width: 160px;
  margin: 0 auto;
}

.home-au .service-card:nth-child(2) {
  top: 28px;
  left: 410px;
  width: 235px;
}

.home-au .service-card:nth-child(3) {
  top: 302px;
  left: 350px;
  width: 260px;
}

.home-au .service-card:nth-child(4) {
  top: 358px;
  left: 70px;
  width: 225px;
}

.home-au .service-card:hover,
.home-au .service-card:nth-child(2):hover,
.home-au .service-card:nth-child(4):hover {
  color: #000;
  transform: translateY(-5px);
}

.home-au .service-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #ffda00;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: background 0.25s ease, transform 0.3s ease;
}

.home-au .service-card::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 42px;
  left: 42px;
  width: 30px;
  height: 22px;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-26deg);
  pointer-events: none;
}

.home-au .service-card:hover::before {
  background: #fdaf05;
  transform: scale(1.04);
}

.home-au .service-img,
.home-au .service-img.circle,
.home-au .service-card.large .service-img.circle {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: none;
}

.home-au .service-card:nth-child(2) .service-img,
.home-au .service-card:nth-child(3) .service-img,
.home-au .service-card:nth-child(4) .service-img {
  aspect-ratio: 1;
  border-radius: 50%;
}

.home-au .service-card h3 {
  position: relative;
  z-index: 1;
  clear: both;
  margin: 17px 0 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.home-au .service-card p {
  display: none;
}

.home-au .why {
  min-height: 820px;
}

.home-au .site-footer {
  background: #000;
  color: #fff;
}

.home-au .site-footer .footer-inner {
  width: 1180px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 78px 0 82px;
  display: grid;
  grid-template-columns: 220px 120px 220px 120px 220px;
  column-gap: 70px;
  align-items: start;
}

.home-au .site-footer .footer-logo img {
  width: 150px;
  height: auto;
}

.home-au .site-footer .footer-col {
  display: block;
  width: 100%;
  min-width: 0;
}

.home-au .site-footer .footer-col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-au .site-footer .footer-col a {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
  text-decoration: none;
}

.home-au .site-footer .footer-col a:hover {
  color: #ffda00;
}

.home-au .site-footer .footer-follow-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-au .site-footer .footer-linkedin-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffda00;
  border-radius: 50%;
  color: #ffda00;
  background: #000;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.home-au .site-footer .footer-linkedin-icon span {
  display: block;
  margin: 0;
  padding: 0;
  color: inherit;
  line-height: 1;
}

.home-au .site-footer .footer-qr-code {
  width: 78px;
  height: auto;
}

.home-au .site-footer .footer-bottom {
  background: #fff !important;
  color: #030304 !important;
  min-height: 66px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.home-au .site-footer .footer-bottom span {
  font-size: 13px;
}

.home-au .site-footer .footer-bottom span:first-child {
  margin-left: calc((100vw - min(1180px, calc(100vw - 40px))) / 2);
}

.home-au .site-footer .footer-bottom span:last-child {
  margin-right: calc((100vw - min(1180px, calc(100vw - 40px))) / 2);
  font-weight: 700;
}

@media (max-width: 1220px) {
  .home-au .site-footer .footer-inner {
    width: min(100% - 40px, 760px);
    grid-template-columns: 220px 120px 220px;
    row-gap: 42px;
  }
}

@media (max-width: 1060px) {
  .home-au .site-footer .footer-inner {
    width: min(100% - 40px, 760px);
    grid-template-columns: 220px 120px 220px;
    row-gap: 42px;
  }

  .home-au .services-grid {
    grid-template-columns: 1fr;
  }

  .home-au .services-intro {
    padding-top: 0;
  }

  .home-au .service-mosaic {
    min-height: 680px;
    max-width: 720px;
  }

  .home-au .site-footer .footer-logo,
  .home-au .site-footer .footer-col.follow {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .home-au .site-footer .footer-inner {
    width: min(100% - 30px, 480px);
    grid-template-columns: 1fr;
    row-gap: 34px;
    padding: 58px 0 62px;
  }

  .home-au .site-footer .footer-bottom {
    display: grid;
    justify-content: stretch;
    min-height: 86px;
    padding: 18px 15px;
  }

  .home-au .site-footer .footer-bottom span:first-child,
  .home-au .site-footer .footer-bottom span:last-child {
    margin: 0;
  }

  .home-au .container {
    width: min(100% - 30px, 480px);
  }

  .home-au .banner {
    height: 88px;
    padding: 20px 24px 0;
  }

  .home-au .banner::before {
    top: 0;
    left: 0;
    width: 336px;
    height: 230px;
    transform: translate(-34%, -150%) rotate(9deg);
  }

  .home-au .banner::after {
    top: 0;
    right: 0;
    width: 255px;
    height: 390px;
    transform: translate(51%, -50%) rotate(-35deg);
  }

  .home-au .brand img {
    width: 126px;
  }

  .home-au .menu-toggle {
    width: 35px;
    height: 33px;
    gap: 7px;
    transform: translateY(9px);
  }

  .home-au .menu-toggle span,
  .home-au .menu-toggle span:nth-child(2),
  .home-au .menu-toggle:hover span {
    width: 35px;
    height: 3px;
  }

  .home-au .menu-toggle span:nth-child(1),
  .home-au .menu-toggle span:nth-child(3) {
    width: 32px;
  }

  .home-au .menu-toggle span:nth-child(2) {
    width: 25px;
  }

  .home-au .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .home-au .hero-media {
    object-position: 56% center;
  }

  .home-au .hero h1 {
    max-width: 360px;
    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.15;
  }

  .home-au .hero h1 span {
    margin-bottom: 2px;
    font-size: clamp(23px, 6.3vw, 30px);
  }

  .home-au .down-arrow {
    bottom: 18px;
    width: 38px;
    height: 48px;
  }

  .home-au .offcanvas-panel {
    position: relative;
    top: auto;
    left: auto;
    padding: 96px 28px 38px;
  }

  .home-au .mobile-menu a,
  .home-au .mobile-menu-main {
    text-transform: uppercase;
  }

  .sydney-partnership {
    display: block;
    width: min(100%, 380px);
    margin: 24px auto 0;
    text-align: center;
  }

  .sydney-partnership img {
    max-width: 200px;
    margin: 0 auto 8px;
  }

  .home-au .services,
  .home-au .services.section {
    min-height: 0;
    padding: 72px 0 82px;
  }

  .home-au .services-intro h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .home-au .service-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
  }

  .home-au .service-mosaic::before {
    display: none;
  }

  .home-au .service-card,
  .home-au .service-card.large,
  .home-au .service-card:nth-child(2),
  .home-au .service-card:nth-child(3),
  .home-au .service-card:nth-child(4) {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .home-au .service-card::before {
    top: 12px;
    left: 12px;
    width: 76px;
    height: 76px;
  }

  .home-au .service-img,
  .home-au .service-img.circle,
  .home-au .service-card.large .service-img.circle,
  .home-au .service-card:nth-child(2) .service-img,
  .home-au .service-card:nth-child(3) .service-img,
  .home-au .service-card:nth-child(4) .service-img {
    aspect-ratio: 16 / 10.5;
    border-radius: 0;
  }

  .home-au .service-card h3 {
    font-size: 23px;
  }

}

/* AU Services Figma rebuild */
.services-page {
  background: #fff;
  overflow-x: hidden;
}

.services-page main {
  overflow: hidden;
}

.services-page main::before,
.services-page main::after {
  display: none;
}

.services-page .services-frame {
  width: min(1110px, calc(100% - 40px));
  margin: 0 auto;
}

.services-page .services-hero {
  min-height: 900px;
  display: grid;
  place-items: center;
  align-items: center;
  background: #000;
}

.services-page .services-hero-media {
  background-image: url("../assets/images/figma-services-hero.png");
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.services-page .services-hero-media::after,
.services-page .services-hero-shade,
.services-page .services-hero-copy {
  display: none;
}

.services-page .services-hero h1 {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
  text-shadow: none;
}

.services-page .services-showcase {
  position: relative;
  min-height: 639px;
  padding-top: 114px;
  overflow: hidden;
  background: #fff;
}

.services-page .services-pill-overlay {
  position: absolute;
  top: 62px;
  right: 43px;
  width: 693px;
  height: 693px;
  border: 1px solid rgba(255, 220, 0, 0.68);
  border-radius: 999px;
  pointer-events: none;
}

.services-page .services-pill-overlay::before {
  content: "";
  position: absolute;
  inset: 19px;
  border: 46px solid rgba(255, 220, 0, 0.15);
  border-radius: inherit;
}

.services-page .services-showcase h2,
.services-page .services-security h2,
.services-page .services-enquiry h2,
.services-page .services-awards h2 {
  margin: 0;
  color: #333;
  font-size: 31px;
  font-weight: 700;
  line-height: 40.8px;
}

.services-page .services-showcase h2 {
  font-size: 25.4px;
  line-height: 33.6px;
}

.services-page .services-orbit {
  position: relative;
  height: 460px;
}

.services-page .services-orbit-card {
  position: absolute;
  display: block;
  width: 206px;
}

.services-page .services-orbit-card img {
  width: 100%;
  max-width: none;
}

.services-page .service-rd {
  left: 11px;
  top: 130px;
}

.services-page .service-regulatory {
  left: 353px;
  top: 73px;
}

.services-page .service-manufacturing {
  left: 656px;
  top: 119px;
}

.services-page .service-packaging {
  left: 933px;
  top: 52px;
}

.services-page .services-security {
  position: relative;
  min-height: 638px;
  padding-top: 114px;
  overflow: hidden;
  background: #fff;
}

.services-page .services-security-media,
.services-page .services-security-overlay {
  position: absolute;
  inset: 0;
}

.services-page .services-security-media {
  background-image: url("../assets/images/figma-services-security.png");
  background-position: center;
  background-size: cover;
}

.services-page .services-security-overlay {
  background: rgba(255, 255, 255, 0.67);
}

.services-page .services-security .security-pill {
  top: 62px;
}

.services-page .services-security-content {
  position: relative;
  z-index: 1;
}

.services-page .services-security h2 {
  margin-left: 95px;
}

.services-page .services-security ul {
  width: min(590px, 100%);
  margin: 48px 0 0 95px;
  padding: 0;
  list-style: none;
}

.services-page .services-security li {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 136px;
  color: #333;
  font-size: 21.2px;
  font-weight: 700;
  line-height: 27.6px;
}

.services-page .services-security li span {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.services-page .services-security li + li {
  border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.services-page .services-security li img {
  flex: 0 0 40px;
  width: 40px;
  height: 29px;
  margin-right: 14px;
  object-fit: contain;
}

.services-page .services-enquiry {
  min-height: 600px;
  padding-top: 112px;
  background: #f9f9fa;
}

.services-page .services-enquiry-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: start;
}

.services-page .services-form {
  display: grid;
  grid-template-columns: 207.5px 207.5px minmax(320px, 445px);
  column-gap: 30px;
  row-gap: 38px;
  align-items: start;
  font-family: "Open Sans", Arial, sans-serif;
}

.services-page .services-form .field {
  display: grid;
  gap: 10px;
}

.services-page .services-form .tall {
  grid-column: 3;
  grid-row: 2 / span 2;
}

.services-page .services-form label {
  color: #030304;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.services-page .services-form input,
.services-page .services-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  border-radius: 0;
  background: transparent;
  color: #333;
  font: 400 14px/29px "Open Sans", Arial, sans-serif;
  outline: none;
}

.services-page .services-form input {
  height: 42px;
}

.services-page .services-form textarea {
  height: 145px;
  resize: none;
}

.services-page .services-form textarea::placeholder {
  color: #757575;
  opacity: 1;
}

.services-page .services-form button {
  grid-column: 3;
  justify-self: end;
  width: 151px;
  height: 49px;
  margin-top: 0;
  border: 1px solid #a7a7a7;
  border-radius: 0;
  background: #fff;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.services-page .services-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.services-page .services-awards-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: start;
}

.services-page .services-awards-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  overflow: visible;
}

.services-page .services-awards article {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 15px;
  align-items: start;
  min-width: 0;
}

.services-page .services-awards img {
  width: 33px;
  height: 33px;
}

.services-page .services-awards p {
  margin: -3px 0 0;
  color: #333;
  font-size: 14.8px;
  font-weight: 400;
  line-height: 18px;
}

.services-page .footer {
  padding: 0;
  background: transparent;
  color: #fff;
}

.services-page .services-footer-main {
  width: 100%;
  max-width: none;
  min-height: 320px;
  display: grid;
  grid-template-columns: 120px 160px 160px 160px 160px;
  gap: 70px;
  align-items: start;
  padding: 58px max(40px, calc((100vw - 1110px) / 2)) 0;
  background: #000;
}

.services-page .footer-logo img {
  width: 120px;
  height: auto;
}

.services-page .footer nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.services-page .footer strong,
.services-page .services-footer-follow strong {
  display: block;
  margin: 0 0 15px;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
}

.services-page .footer nav a {
  color: rgba(255, 255, 255, 0.82);
}

.services-page .services-footer-follow {
  color: #fff;
}

.services-page .services-footer-follow .linkedin {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.services-page .services-footer-bottom {
  height: 52px;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13.6px;
  line-height: 22px;
}

.services-page .services-footer-bottom .services-frame {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.services-page .footer p {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font-size: inherit;
}

@media (max-width: 1180px) {
  .services-page .services-frame {
    width: min(100% - 48px, 960px);
  }

  .services-page .services-hero {
    min-height: 760px;
  }

  .services-page .services-orbit {
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 60px;
  }

  .services-page .services-orbit-card {
    position: static;
    width: 100%;
  }

  .services-page .services-orbit-card img {
    width: min(206px, 100%);
    margin: 0 auto;
  }

  .services-page .services-showcase {
    min-height: auto;
    padding-bottom: 96px;
  }

  .services-page .services-security h2,
  .services-page .services-security ul {
    margin-left: 0;
  }

  .services-page .services-enquiry-grid,
  .services-page .services-awards-grid {
    grid-template-columns: 1fr;
  }

  .services-page .services-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .services-form .wide,
  .services-page .services-form .tall {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .services-page .services-form button {
    grid-column: 1 / -1;
  }

  .services-page .services-footer-main {
    grid-template-columns: 120px repeat(2, minmax(140px, 1fr));
    gap: 44px;
    min-height: auto;
    padding-bottom: 58px;
  }
}

@media (max-width: 760px) {
  .services-page .services-frame {
    width: calc(100% - 32px);
  }

  .services-page .services-hero {
    min-height: 620px;
  }

  .services-page .services-hero h1 {
    font-size: clamp(40px, 12.5vw, 54px);
    line-height: 0.98;
  }

  .services-page .services-showcase {
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .services-page .services-pill-overlay {
    top: 58px;
    right: -210px;
    width: 520px;
    height: 520px;
  }

  .services-page .services-orbit {
    grid-template-columns: 1fr;
    max-width: 210px;
    gap: 26px;
    margin-right: auto;
    margin-left: auto;
  }

  .services-page .services-orbit-card img {
    width: min(170px, 100%);
  }

  .services-page .services-security {
    min-height: auto;
    padding: 84px 0 72px;
  }

  .services-page .services-security-overlay {
    background: rgba(255, 255, 255, 0.78);
  }

  .services-page .services-security ul {
    margin-top: 32px;
  }

  .services-page .services-security li {
    display: grid;
    grid-template-columns: 33px minmax(0, 1fr);
    gap: 12px;
    min-height: 92px;
    font-size: 14px;
    line-height: 20px;
  }

  .services-page .services-security li img {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }

  .services-page .services-security li span {
    display: block;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .services-page .services-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .services-page .services-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .services-page .services-form .wide,
  .services-page .services-form .tall,
  .services-page .services-form button {
    grid-column: auto;
  }

  .services-page .services-form button {
    justify-self: start;
  }

  .services-page .services-awards {
    padding: 42px 0;
  }

  .services-page .services-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-page .services-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .services-page .services-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .services-page .services-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .services-page .services-footer-bottom {
    height: auto;
  }

  .services-page .services-footer-bottom .services-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU Research & Development Figma-style rebuild */
.rd-figma-page {
  background: #fff;
  overflow-x: hidden;
}

.rd-figma-page main {
  overflow: hidden;
}

.rd-figma-page .rd-frame {
  width: min(1110px, calc(100% - 40px));
  margin: 0 auto;
}

.rd-figma-page .rd-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.rd-figma-page .rd-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/figma-services-hero.png");
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.rd-figma-page .rd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.02);
}

.rd-figma-page .rd-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  text-align: center;
}

.rd-figma-page .rd-pill {
  position: absolute;
  width: 693px;
  height: 693px;
  border: 1px solid rgba(255, 220, 0, 0.68);
  border-radius: 999px;
  pointer-events: none;
}

.rd-figma-page .rd-pill::before {
  content: "";
  position: absolute;
  inset: 19px;
  border: 46px solid rgba(255, 220, 0, 0.15);
  border-radius: inherit;
}

.rd-figma-page .rd-hero-pill {
  z-index: 1;
  top: 148px;
  left: 50%;
  width: 250px;
  height: 520px;
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateX(-50%);
}

.rd-figma-page .rd-hero-pill::before {
  inset: 0;
  border: 0;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.32);
}

.rd-figma-page .rd-intro {
  position: relative;
  min-height: 639px;
  padding-top: 114px;
  overflow: hidden;
  background: #fff;
}

.rd-figma-page .rd-intro-pill {
  top: 62px;
  right: 43px;
}

.rd-figma-page .rd-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 453px 1fr;
  gap: 130px;
  align-items: center;
}

.rd-figma-page .rd-intro h2,
.rd-figma-page .rd-capability h2,
.rd-figma-page .rd-enquiry h2,
.rd-figma-page .rd-awards h2 {
  margin: 0;
  color: #333;
  font-size: 31px;
  font-weight: 700;
  line-height: 40.8px;
}

.rd-figma-page .rd-intro p {
  max-width: 453px;
  margin: 15px 0 0;
  color: #333;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.rd-figma-page .rd-intro figure {
  margin: 0;
  justify-self: center;
}

.rd-figma-page .rd-intro img {
  width: 206px;
  max-width: none;
}

.rd-figma-page .rd-capability {
  position: relative;
  min-height: 638px;
  padding-top: 114px;
  overflow: hidden;
  background: #fff;
}

.rd-figma-page .rd-capability-media,
.rd-figma-page .rd-capability-overlay {
  position: absolute;
  inset: 0;
}

.rd-figma-page .rd-capability-media {
  background-image: url("../assets/images/service-rd.jpg");
  background-position: center;
  background-size: cover;
}

.rd-figma-page .rd-capability-overlay {
  background: rgba(255, 255, 255, 0.67);
}

.rd-figma-page .rd-capability-pill {
  top: 62px;
  right: 43px;
}

.rd-figma-page .rd-capability-content {
  position: relative;
  z-index: 1;
}

.rd-figma-page .rd-capability h2 {
  margin-left: 95px;
}

.rd-figma-page .rd-capability ul {
  width: min(590px, 100%);
  margin: 48px 0 0 95px;
  padding: 0;
  list-style: none;
}

.rd-figma-page .rd-capability li {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 136px;
  color: #333;
  font-size: 21.2px;
  font-weight: 700;
  line-height: 27.6px;
}

.rd-figma-page .rd-capability li + li {
  border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.rd-figma-page .rd-capability li img {
  flex: 0 0 40px;
  width: 40px;
  height: 29px;
  margin-right: 14px;
  object-fit: contain;
}

.rd-figma-page .rd-capability li span {
  flex: 1 1 auto;
  min-width: 0;
}

.rd-figma-page .rd-enquiry {
  min-height: 600px;
  padding-top: 112px;
  background: #f9f9fa;
}

.rd-figma-page .rd-enquiry-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: start;
}

.rd-figma-page .rd-form {
  display: grid;
  grid-template-columns: 207.5px 207.5px minmax(320px, 445px);
  column-gap: 30px;
  row-gap: 38px;
  align-items: start;
  font-family: "Open Sans", Arial, sans-serif;
}

.rd-figma-page .rd-form .field {
  display: grid;
  gap: 10px;
}

.rd-figma-page .rd-form .tall {
  grid-column: 3;
  grid-row: 2 / span 2;
}

.rd-figma-page .rd-form label {
  color: #030304;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.rd-figma-page .rd-form input,
.rd-figma-page .rd-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  border-radius: 0;
  background: transparent;
  color: #333;
  font: 400 14px/29px "Open Sans", Arial, sans-serif;
  outline: none;
}

.rd-figma-page .rd-form input {
  height: 42px;
}

.rd-figma-page .rd-form textarea {
  height: 145px;
  resize: none;
}

.rd-figma-page .rd-form textarea::placeholder {
  color: #757575;
  opacity: 1;
}

.rd-figma-page .rd-form button {
  grid-column: 3;
  justify-self: end;
  width: 151px;
  height: 49px;
  border: 1px solid #a7a7a7;
  border-radius: 0;
  background: #fff;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.rd-figma-page .rd-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.rd-figma-page .rd-awards-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: start;
}

.rd-figma-page .rd-awards-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
}

.rd-figma-page .rd-awards article {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 15px;
  align-items: start;
}

.rd-figma-page .rd-awards img {
  width: 33px;
  height: 33px;
}

.rd-figma-page .rd-awards p {
  margin: -3px 0 0;
  color: #333;
  font-size: 14.8px;
  font-weight: 400;
  line-height: 18px;
}

.rd-figma-page .footer {
  padding: 0;
  background: transparent;
  color: #fff;
}

.rd-figma-page .rd-footer-main {
  min-height: 320px;
  display: grid;
  grid-template-columns: 120px 160px 160px 160px 160px;
  gap: 70px;
  align-items: start;
  padding: 58px max(40px, calc((100vw - 1110px) / 2)) 0;
  background: #000;
}

.rd-figma-page .footer-logo img {
  width: 120px;
}

.rd-figma-page .footer nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.rd-figma-page .footer strong,
.rd-figma-page .rd-footer-follow strong {
  display: block;
  margin: 0 0 15px;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
}

.rd-figma-page .footer nav a {
  color: rgba(255, 255, 255, 0.82);
}

.rd-figma-page .rd-footer-follow .linkedin {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.rd-figma-page .rd-footer-bottom {
  height: 52px;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13.6px;
  line-height: 22px;
}

.rd-figma-page .rd-footer-bottom .rd-frame {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rd-figma-page .footer p {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font-size: inherit;
}

@media (max-width: 1180px) {
  .rd-figma-page .rd-frame {
    width: min(100% - 48px, 960px);
  }

  .rd-figma-page .rd-hero {
    min-height: 760px;
  }

  .rd-figma-page .rd-intro-grid,
  .rd-figma-page .rd-enquiry-grid,
  .rd-figma-page .rd-awards-grid {
    grid-template-columns: 1fr;
  }

  .rd-figma-page .rd-intro-grid {
    gap: 54px;
  }

  .rd-figma-page .rd-capability h2,
  .rd-figma-page .rd-capability ul {
    margin-left: 0;
  }

  .rd-figma-page .rd-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rd-figma-page .rd-form .wide,
  .rd-figma-page .rd-form .tall {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .rd-figma-page .rd-form button {
    grid-column: 1 / -1;
  }

  .rd-figma-page .rd-footer-main {
    grid-template-columns: 120px repeat(2, minmax(140px, 1fr));
    gap: 44px;
    min-height: auto;
    padding-bottom: 58px;
  }
}

@media (max-width: 760px) {
  .rd-figma-page .rd-frame {
    width: calc(100% - 32px);
  }

  .rd-figma-page .rd-hero {
    min-height: 620px;
  }

  .rd-figma-page .rd-hero h1 {
    max-width: calc(100% - 32px);
    font-size: clamp(29px, 8.8vw, 38px);
    line-height: 1.05;
  }

  .rd-figma-page .rd-hero-pill {
    top: 116px;
    width: 190px;
    height: 430px;
  }

  .rd-figma-page .rd-intro {
    min-height: auto;
    padding: 84px 0 72px;
  }

  .rd-figma-page .rd-pill {
    top: 58px;
    right: -210px;
    width: 520px;
    height: 520px;
  }

  .rd-figma-page .rd-intro img {
    width: 170px;
  }

  .rd-figma-page .rd-intro h2,
  .rd-figma-page .rd-capability h2,
  .rd-figma-page .rd-enquiry h2,
  .rd-figma-page .rd-awards h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .rd-figma-page .rd-capability {
    min-height: auto;
    padding: 84px 0 72px;
  }

  .rd-figma-page .rd-capability-overlay {
    background: rgba(255, 255, 255, 0.78);
  }

  .rd-figma-page .rd-capability ul {
    margin-top: 32px;
  }

  .rd-figma-page .rd-capability li {
    display: grid;
    grid-template-columns: 33px minmax(0, 1fr);
    gap: 12px;
    min-height: 92px;
    font-size: 14px;
    line-height: 20px;
  }

  .rd-figma-page .rd-capability li img {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }

  .rd-figma-page .rd-capability li span {
    display: block;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .rd-figma-page .rd-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .rd-figma-page .rd-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .rd-figma-page .rd-form .wide,
  .rd-figma-page .rd-form .tall,
  .rd-figma-page .rd-form button {
    grid-column: auto;
  }

  .rd-figma-page .rd-form button {
    justify-self: start;
  }

  .rd-figma-page .rd-awards {
    padding: 42px 0;
  }

  .rd-figma-page .rd-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rd-figma-page .rd-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .rd-figma-page .rd-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .rd-figma-page .rd-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .rd-figma-page .rd-footer-bottom {
    height: auto;
  }

  .rd-figma-page .rd-footer-bottom .rd-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU Regulatory Figma rebuild */
.regulatory-figma-page {
  background: #fff;
  overflow-x: hidden;
}

.regulatory-figma-page main {
  overflow: hidden;
}

.regulatory-figma-page .reg-frame {
  width: min(1110px, calc(100% - 40px));
  margin: 0 auto;
}

.regulatory-figma-page .reg-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.regulatory-figma-page .reg-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/service-regulatory.jpg");
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.regulatory-figma-page .reg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.02);
}

.regulatory-figma-page .reg-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 71px;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
}

.regulatory-figma-page .reg-services {
  position: relative;
  min-height: 639px;
  padding-top: 114px;
  overflow: hidden;
  background: #fff;
}

.regulatory-figma-page .reg-pill {
  position: absolute;
  top: 62px;
  right: 43px;
  width: 693px;
  height: 693px;
  border: 1px solid rgba(255, 220, 0, 0.68);
  border-radius: 999px;
  pointer-events: none;
}

.regulatory-figma-page .reg-pill::before {
  content: "";
  position: absolute;
  inset: 19px;
  border: 46px solid rgba(255, 220, 0, 0.15);
  border-radius: inherit;
}

.regulatory-figma-page .reg-services h2 {
  margin: 0;
  color: #333;
  font-size: 25.4px;
  font-weight: 700;
  line-height: 33.6px;
}

.regulatory-figma-page .reg-orbit {
  position: relative;
  height: 460px;
}

.regulatory-figma-page .reg-orbit-card {
  position: absolute;
  display: block;
  width: 206px;
}

.regulatory-figma-page .reg-orbit-card img {
  width: 100%;
  max-width: none;
}

.regulatory-figma-page .service-rd {
  left: 11px;
  top: 130px;
}

.regulatory-figma-page .service-regulatory {
  left: 353px;
  top: 73px;
}

.regulatory-figma-page .service-manufacturing {
  left: 656px;
  top: 119px;
}

.regulatory-figma-page .service-packaging {
  left: 933px;
  top: 52px;
}

.regulatory-figma-page .reg-main {
  min-height: 1021px;
  padding-top: 115px;
  background: #fff;
}

.regulatory-figma-page .reg-main-grid {
  display: grid;
  grid-template-columns: 476px 1fr;
  gap: 84px;
  align-items: start;
}

.regulatory-figma-page .reg-copy {
  padding-left: 95px;
  padding-top: 158px;
}

.regulatory-figma-page .reg-copy h2,
.regulatory-figma-page .reg-other h2,
.regulatory-figma-page .reg-enquiry h2,
.regulatory-figma-page .reg-awards h2 {
  margin: 0;
  color: #333;
  font-size: 31px;
  font-weight: 700;
  line-height: 40.8px;
}

.regulatory-figma-page .reg-copy h2 {
  font-size: 26.1px;
  line-height: 33.6px;
}

.regulatory-figma-page .reg-copy p,
.regulatory-figma-page .reg-copy li,
.regulatory-figma-page .reg-card-grid p {
  color: #030304;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.regulatory-figma-page .reg-copy p {
  margin: 31px 0 0;
}

.regulatory-figma-page .reg-copy ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.regulatory-figma-page .reg-copy li {
  position: relative;
  padding: 15.5px 0 0 29px;
}

.regulatory-figma-page .reg-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffda00;
}

.regulatory-figma-page .reg-main figure {
  position: relative;
  margin: 152px 0 0;
}

.regulatory-figma-page .reg-main figure::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -216px;
  top: 64px;
  width: 200px;
  height: 511px;
  border-radius: 999px;
  background: rgba(255, 220, 0, 0.16);
}

.regulatory-figma-page .reg-main figure img {
  position: relative;
  z-index: 1;
  width: 445px;
  height: 597px;
  object-fit: cover;
}

.regulatory-figma-page .reg-other {
  min-height: 634px;
  padding-top: 114px;
  background: #fff;
}

.regulatory-figma-page .reg-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 97px;
}

.regulatory-figma-page .reg-card-grid article {
  min-width: 0;
}

.regulatory-figma-page .reg-card-grid h3 {
  margin: 0 0 41px;
  color: #333;
  font-size: 13.8px;
  font-weight: 700;
  line-height: 18px;
}

.regulatory-figma-page .reg-card-grid p {
  margin: 0;
}

.regulatory-figma-page .reg-card-grid a {
  display: inline-block;
  margin-top: 26px;
  color: #ffda00;
  font-size: 13.9px;
  font-weight: 700;
  line-height: 18px;
}

.regulatory-figma-page .reg-pager {
  height: 122px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-top: 0;
}

.regulatory-figma-page .reg-pager a {
  display: grid;
  color: #333;
}

.regulatory-figma-page .reg-pager .previous {
  justify-items: end;
  padding-right: 88px;
}

.regulatory-figma-page .reg-pager .next {
  justify-items: start;
  padding-left: 88px;
}

.regulatory-figma-page .reg-pager span {
  font-size: 15px;
  font-weight: 400;
}

.regulatory-figma-page .reg-pager strong {
  margin-top: 6px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 33.6px;
}

.regulatory-figma-page .reg-enquiry {
  min-height: 600px;
  padding-top: 112px;
  background: #f9f9fa;
}

.regulatory-figma-page .reg-enquiry-grid,
.regulatory-figma-page .reg-awards-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: start;
}

.regulatory-figma-page .reg-form {
  display: grid;
  grid-template-columns: 207.5px 207.5px minmax(320px, 445px);
  column-gap: 30px;
  row-gap: 38px;
  align-items: start;
  font-family: "Open Sans", Arial, sans-serif;
}

.regulatory-figma-page .reg-form .field {
  display: grid;
  gap: 10px;
}

.regulatory-figma-page .reg-form .tall {
  grid-column: 3;
  grid-row: 2 / span 2;
}

.regulatory-figma-page .reg-form label {
  color: #030304;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.regulatory-figma-page .reg-form input,
.regulatory-figma-page .reg-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  border-radius: 0;
  background: transparent;
  color: #333;
  font: 400 14px/29px "Open Sans", Arial, sans-serif;
  outline: none;
}

.regulatory-figma-page .reg-form input {
  height: 42px;
}

.regulatory-figma-page .reg-form textarea {
  height: 145px;
  resize: none;
}

.regulatory-figma-page .reg-form textarea::placeholder {
  color: #757575;
  opacity: 1;
}

.regulatory-figma-page .reg-form button {
  grid-column: 3;
  justify-self: end;
  width: 151px;
  height: 49px;
  border: 1px solid #a7a7a7;
  border-radius: 0;
  background: #fff;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.regulatory-figma-page .reg-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.regulatory-figma-page .reg-awards-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
}

.regulatory-figma-page .reg-awards article {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 15px;
  align-items: start;
}

.regulatory-figma-page .reg-awards img {
  width: 33px;
  height: 33px;
}

.regulatory-figma-page .reg-awards p {
  margin: -3px 0 0;
  color: #333;
  font-size: 14.8px;
  font-weight: 400;
  line-height: 18px;
}

.regulatory-figma-page .footer {
  padding: 0;
  background: transparent;
  color: #fff;
}

.regulatory-figma-page .reg-footer-main {
  min-height: 320px;
  display: grid;
  grid-template-columns: 120px 160px 160px 160px 160px;
  gap: 70px;
  align-items: start;
  padding: 58px max(40px, calc((100vw - 1110px) / 2)) 0;
  background: #000;
}

.regulatory-figma-page .footer-logo img {
  width: 120px;
}

.regulatory-figma-page .footer nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.regulatory-figma-page .footer strong,
.regulatory-figma-page .reg-footer-follow strong {
  display: block;
  margin: 0 0 15px;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
}

.regulatory-figma-page .footer nav a {
  color: rgba(255, 255, 255, 0.82);
}

.regulatory-figma-page .reg-footer-follow .linkedin {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.regulatory-figma-page .reg-footer-bottom {
  height: 52px;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13.6px;
  line-height: 22px;
}

.regulatory-figma-page .reg-footer-bottom .reg-frame {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.regulatory-figma-page .footer p {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font-size: inherit;
}

@media (max-width: 1180px) {
  .regulatory-figma-page .reg-frame {
    width: min(100% - 48px, 960px);
  }

  .regulatory-figma-page .reg-hero {
    min-height: 760px;
  }

  .regulatory-figma-page .reg-orbit {
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 60px;
  }

  .regulatory-figma-page .reg-orbit-card {
    position: static;
    width: 100%;
  }

  .regulatory-figma-page .reg-orbit-card img {
    width: min(206px, 100%);
    margin: 0 auto;
  }

  .regulatory-figma-page .reg-main-grid,
  .regulatory-figma-page .reg-enquiry-grid,
  .regulatory-figma-page .reg-awards-grid {
    grid-template-columns: 1fr;
  }

  .regulatory-figma-page .reg-copy {
    padding-left: 0;
    padding-top: 0;
  }

  .regulatory-figma-page .reg-main figure {
    margin-top: 40px;
  }

  .regulatory-figma-page .reg-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .regulatory-figma-page .reg-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .regulatory-figma-page .reg-form .wide,
  .regulatory-figma-page .reg-form .tall {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .regulatory-figma-page .reg-form button {
    grid-column: 1 / -1;
  }

  .regulatory-figma-page .reg-footer-main {
    grid-template-columns: 120px repeat(2, minmax(140px, 1fr));
    gap: 44px;
    min-height: auto;
    padding-bottom: 58px;
  }
}

@media (max-width: 760px) {
  .regulatory-figma-page .reg-frame {
    width: calc(100% - 32px);
  }

  .regulatory-figma-page .reg-hero {
    min-height: 620px;
  }

  .regulatory-figma-page .reg-hero h1 {
    max-width: calc(100% - 32px);
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.05;
  }

  .regulatory-figma-page .reg-services {
    min-height: auto;
    padding: 84px 0 72px;
  }

  .regulatory-figma-page .reg-pill {
    top: 58px;
    right: -210px;
    width: 520px;
    height: 520px;
  }

  .regulatory-figma-page .reg-orbit {
    grid-template-columns: 1fr;
    max-width: 210px;
    gap: 26px;
    margin-right: auto;
    margin-left: auto;
  }

  .regulatory-figma-page .reg-orbit-card img {
    width: min(170px, 100%);
  }

  .regulatory-figma-page .reg-main {
    min-height: auto;
    padding: 84px 0 72px;
  }

  .regulatory-figma-page .reg-main-grid,
  .regulatory-figma-page .reg-copy,
  .regulatory-figma-page .reg-other,
  .regulatory-figma-page .reg-card-grid,
  .regulatory-figma-page .reg-card-grid article {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 32px);
  }

  .regulatory-figma-page .reg-copy h2,
  .regulatory-figma-page .reg-other h2,
  .regulatory-figma-page .reg-enquiry h2,
  .regulatory-figma-page .reg-awards h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .regulatory-figma-page .reg-copy li {
    padding-left: 22px;
    overflow-wrap: break-word;
  }

  .regulatory-figma-page .reg-copy p,
  .regulatory-figma-page .reg-card-grid p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .regulatory-figma-page .reg-main figure::after {
    display: none;
  }

  .regulatory-figma-page .reg-main figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .regulatory-figma-page .reg-other {
    min-height: auto;
    padding: 72px 0;
  }

  .regulatory-figma-page .reg-card-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 42px;
  }

  .regulatory-figma-page .reg-card-grid h3 {
    margin-bottom: 16px;
    overflow-wrap: break-word;
  }

  .regulatory-figma-page .reg-pager {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 8px 16px 58px;
  }

  .regulatory-figma-page .reg-pager .previous,
  .regulatory-figma-page .reg-pager .next {
    justify-items: start;
    padding: 0;
  }

  .regulatory-figma-page .reg-pager strong {
    font-size: 22px;
    line-height: 28px;
  }

  .regulatory-figma-page .reg-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .regulatory-figma-page .reg-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .regulatory-figma-page .reg-form .wide,
  .regulatory-figma-page .reg-form .tall,
  .regulatory-figma-page .reg-form button {
    grid-column: auto;
  }

  .regulatory-figma-page .reg-form button {
    justify-self: start;
  }

  .regulatory-figma-page .reg-awards {
    padding: 42px 0;
  }

  .regulatory-figma-page .reg-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .regulatory-figma-page .reg-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .regulatory-figma-page .reg-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .regulatory-figma-page .reg-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .regulatory-figma-page .reg-footer-bottom {
    height: auto;
  }

  .regulatory-figma-page .reg-footer-bottom .reg-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU Manufacturing Figma rebuild */
.manufacturing-figma-page {
  color: #0a0a0a;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
}

.manufacturing-figma-page main {
  overflow: hidden;
}

.manufacturing-figma-page .mfg-frame {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.manufacturing-figma-page .mfg-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.manufacturing-figma-page .mfg-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .06)), url("../assets/images/service-manufacturing.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.manufacturing-figma-page .mfg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .08);
}

.manufacturing-figma-page .mfg-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 72.8px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.manufacturing-figma-page .mfg-down {
  position: absolute;
  left: 50%;
  bottom: 51px;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
}

.manufacturing-figma-page .mfg-down img {
  width: 31px;
  height: 24px;
}

.manufacturing-figma-page .mfg-services {
  position: relative;
  min-height: 638px;
  overflow: hidden;
  background: #fff;
}

.manufacturing-figma-page .mfg-pill {
  position: absolute;
  left: calc(50% + 3px);
  top: 62px;
  width: 693px;
  height: 693px;
  border-radius: 999px;
  background: #f7d638;
  transform: translateX(-1px);
}

.manufacturing-figma-page .mfg-pill::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  background: rgba(255, 255, 255, .15);
}

.manufacturing-figma-page .mfg-services h2 {
  position: relative;
  margin: 0;
  padding-top: 113px;
  font-size: 31.7px;
  line-height: 41px;
  font-weight: 700;
}

.manufacturing-figma-page .mfg-orbit {
  position: absolute;
  inset: 0;
}

.manufacturing-figma-page .mfg-orbit-card {
  position: absolute;
  width: 206px;
  height: 248px;
  color: #111;
  text-decoration: none;
}

.manufacturing-figma-page .mfg-orbit-card img {
  width: 206px;
  height: 248px;
  object-fit: contain;
  display: block;
}

.manufacturing-figma-page .service-rd {
  left: calc(50% - 544px);
  top: 279px;
}

.manufacturing-figma-page .service-regulatory {
  left: calc(50% - 202px);
  top: 222px;
}

.manufacturing-figma-page .service-manufacturing {
  left: calc(50% + 101px);
  top: 268px;
}

.manufacturing-figma-page .service-packaging {
  left: calc(50% + 379px);
  top: 201px;
}

.manufacturing-figma-page .mfg-main {
  position: relative;
  min-height: 1905px;
  padding-top: 115px;
  background: #fff;
}

.manufacturing-figma-page .mfg-main::before,
.manufacturing-figma-page .mfg-main::after {
  content: "";
  position: absolute;
  width: 200px;
  background: #f7d638;
  border-radius: 100px;
  z-index: 0;
}

.manufacturing-figma-page .mfg-main::before {
  right: calc(50% - 675px);
  top: 329px;
  height: 499px;
}

.manufacturing-figma-page .mfg-main::after {
  left: calc(50% - 675px);
  top: 1481px;
  height: 274px;
}

.manufacturing-figma-page .mfg-main > .mfg-frame {
  position: relative;
  z-index: 1;
}

.manufacturing-figma-page .mfg-main-grid {
  width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 441px 445px;
  gap: 34px;
  align-items: start;
}

.manufacturing-figma-page .mfg-copy {
  padding-top: 252px;
}

.manufacturing-figma-page .mfg-copy h2,
.manufacturing-figma-page .mfg-enquiry h2,
.manufacturing-figma-page .mfg-awards h2 {
  margin: 0;
  color: #0a0a0a;
  font-size: 31.7px;
  line-height: 41px;
  font-weight: 700;
}

.manufacturing-figma-page .mfg-copy p,
.manufacturing-figma-page .mfg-card p {
  margin: 16px 0 0;
  color: #0f0f0f;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.manufacturing-figma-page .mfg-main figure {
  position: relative;
  margin: 152px 0 0;
  width: 445px;
  height: 586px;
}

.manufacturing-figma-page .mfg-main figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.manufacturing-figma-page .mfg-capability-grid {
  position: relative;
  width: 960px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 286px);
  grid-auto-rows: 292px;
  column-gap: 30px;
  row-gap: 32px;
  justify-content: center;
}

.manufacturing-figma-page .mfg-card {
  position: relative;
  min-height: 260px;
  padding: 50px 26px 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .08);
}

.manufacturing-figma-page .mfg-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: #f7d638;
}

.manufacturing-figma-page .mfg-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0;
}

.manufacturing-figma-page .mfg-card p {
  margin-top: 8px;
}

.manufacturing-figma-page .mfg-card strong {
  font-weight: 700;
}

.manufacturing-figma-page .mfg-card.softgel {
  grid-column: 1;
  grid-row: 1;
  transform: translateY(-3px);
}

.manufacturing-figma-page .mfg-card.tablet {
  grid-column: 2;
  grid-row: 1;
  transform: translateY(19px);
}

.manufacturing-figma-page .mfg-card.powder {
  grid-column: 1;
  grid-row: 2;
}

.manufacturing-figma-page .mfg-card.hard-shell {
  grid-column: 2;
  grid-row: 2;
  transform: translateY(5px);
}

.manufacturing-figma-page .mfg-card.liquid {
  grid-column: 3;
  grid-row: 2;
  transform: translateY(11px);
}

.manufacturing-figma-page .mfg-card.sachet {
  grid-column: 1;
  grid-row: 3;
  transform: translateY(43px);
}

.manufacturing-figma-page .mfg-card.freeze-dry {
  grid-column: 2;
  grid-row: 3;
  transform: translateY(10px);
}

.manufacturing-figma-page .mfg-card.probiotics {
  grid-column: 3;
  grid-row: 3;
  transform: translateY(59px);
}

.manufacturing-figma-page .mfg-pager {
  height: 122px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-top: 0;
}

.manufacturing-figma-page .mfg-pager a {
  color: #0d0d0d;
  text-decoration: none;
}

.manufacturing-figma-page .mfg-pager .previous {
  display: grid;
  justify-items: end;
  padding-right: 82px;
}

.manufacturing-figma-page .mfg-pager .next {
  display: grid;
  justify-items: start;
  padding-left: 73px;
}

.manufacturing-figma-page .mfg-pager span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.manufacturing-figma-page .mfg-pager strong {
  display: block;
  margin-top: 4px;
  font-size: 33.5px;
  line-height: 41px;
  font-weight: 700;
}

.manufacturing-figma-page .mfg-enquiry {
  min-height: 600px;
  padding-top: 112px;
  background: #f9d632;
}

.manufacturing-figma-page .mfg-enquiry-grid,
.manufacturing-figma-page .mfg-awards-grid {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  column-gap: 32px;
  align-items: start;
}

.manufacturing-figma-page .mfg-form {
  display: grid;
  grid-template-columns: 166px 166px 326px 119px;
  column-gap: 16px;
  row-gap: 35px;
  align-items: start;
}

.manufacturing-figma-page .mfg-form .field {
  display: grid;
  gap: 10px;
}

.manufacturing-figma-page .mfg-form .tall {
  grid-row: span 2;
}

.manufacturing-figma-page .mfg-form label {
  color: #202020;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}

.manufacturing-figma-page .mfg-form input,
.manufacturing-figma-page .mfg-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .85);
  border-radius: 0;
  background: transparent;
  color: #111;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  outline: none;
}

.manufacturing-figma-page .mfg-form input {
  height: 26px;
}

.manufacturing-figma-page .mfg-form textarea {
  height: 132px;
  resize: vertical;
}

.manufacturing-figma-page .mfg-form textarea::placeholder {
  color: rgba(0, 0, 0, .55);
}

.manufacturing-figma-page .mfg-form button {
  grid-column: 4;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  min-width: 119px;
  height: 37px;
  border: 1px solid #111;
  border-radius: 0;
  background: #111;
  color: #f9d632;
  font: 700 13px/16px "Inter", Arial, sans-serif;
  cursor: pointer;
}

.manufacturing-figma-page .mfg-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.manufacturing-figma-page .mfg-awards-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.manufacturing-figma-page .mfg-awards article {
  display: grid;
  grid-template-columns: 37px minmax(0, 270px);
  gap: 16px;
  align-items: start;
}

.manufacturing-figma-page .mfg-awards img {
  width: 37px;
  height: 37px;
}

.manufacturing-figma-page .mfg-awards p {
  margin: 0;
  color: #151515;
  font: 400 14px/18px "Open Sans", Arial, sans-serif;
}

.manufacturing-figma-page .footer {
  position: relative;
  background: #050505;
}

.manufacturing-figma-page .mfg-footer-main {
  width: min(1110px, calc(100% - 48px));
  min-height: 289px;
  margin: 0 auto;
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: 232px 120px 213px 120px 120px;
  gap: 66px;
  align-items: start;
}

.manufacturing-figma-page .footer-logo img {
  width: 151px;
  height: auto;
}

.manufacturing-figma-page .footer nav {
  display: grid;
  gap: 10px;
}

.manufacturing-figma-page .footer strong,
.manufacturing-figma-page .mfg-footer-follow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.manufacturing-figma-page .footer nav a {
  color: #fff;
  text-decoration: none;
  font: 400 13px/20px "Open Sans", Arial, sans-serif;
}

.manufacturing-figma-page .mfg-footer-follow .linkedin {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.manufacturing-figma-page .mfg-footer-bottom {
  height: 83px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.manufacturing-figma-page .mfg-footer-bottom .mfg-frame {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.manufacturing-figma-page .footer p {
  margin: 0;
  color: #fff;
  font: 400 12px/18px "Open Sans", Arial, sans-serif;
}

.manufacturing-figma-page .footer p a {
  color: #fff;
}

@media (max-width: 1180px) {
  .manufacturing-figma-page .mfg-frame {
    width: min(960px, calc(100% - 48px));
  }

  .manufacturing-figma-page .mfg-hero {
    min-height: 760px;
  }

  .manufacturing-figma-page .mfg-orbit {
    width: min(760px, calc(100% - 48px));
    margin: 68px auto 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .manufacturing-figma-page .mfg-orbit-card,
  .manufacturing-figma-page .service-rd,
  .manufacturing-figma-page .service-regulatory,
  .manufacturing-figma-page .service-manufacturing,
  .manufacturing-figma-page .service-packaging {
    position: static;
    width: 100%;
    height: auto;
  }

  .manufacturing-figma-page .mfg-orbit-card img {
    width: 100%;
    height: auto;
  }

  .manufacturing-figma-page .mfg-main-grid {
    width: 100%;
    grid-template-columns: 1fr 420px;
  }

  .manufacturing-figma-page .mfg-copy {
    padding-top: 170px;
  }

  .manufacturing-figma-page .mfg-main figure {
    width: 420px;
    height: 553px;
  }

  .manufacturing-figma-page .mfg-capability-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .manufacturing-figma-page .mfg-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .manufacturing-figma-page .mfg-form .wide,
  .manufacturing-figma-page .mfg-form .tall {
    grid-column: span 1;
  }

  .manufacturing-figma-page .mfg-form button {
    grid-column: 3;
  }

  .manufacturing-figma-page .mfg-footer-main {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .manufacturing-figma-page .mfg-frame {
    width: calc(100% - 32px);
  }

  .manufacturing-figma-page .mfg-hero {
    min-height: 620px;
  }

  .manufacturing-figma-page .mfg-hero h1 {
    width: 100%;
    max-width: 100vw;
    padding: 0 14px;
    box-sizing: border-box;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .manufacturing-figma-page .mfg-services {
    min-height: auto;
    padding: 74px 0 86px;
  }

  .manufacturing-figma-page .mfg-pill {
    left: 50%;
    top: 96px;
    width: min(520px, 112vw);
    height: min(520px, 112vw);
    transform: translateX(-50%);
  }

  .manufacturing-figma-page .mfg-services h2 {
    padding-top: 0;
    margin-bottom: 34px;
  }

  .manufacturing-figma-page .mfg-orbit {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    overflow: hidden;
  }

  .manufacturing-figma-page .mfg-main {
    min-height: auto;
    padding: 78px 0 86px;
  }

  .manufacturing-figma-page .mfg-main::before,
  .manufacturing-figma-page .mfg-main::after {
    display: none;
  }

  .manufacturing-figma-page .mfg-main-grid,
  .manufacturing-figma-page .mfg-enquiry-grid,
  .manufacturing-figma-page .mfg-awards-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .manufacturing-figma-page .mfg-copy {
    padding-top: 0;
  }

  .manufacturing-figma-page .mfg-copy h2,
  .manufacturing-figma-page .mfg-enquiry h2,
  .manufacturing-figma-page .mfg-awards h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .manufacturing-figma-page .mfg-main figure {
    width: 100%;
    height: auto;
    aspect-ratio: 445 / 586;
    margin: 0;
  }

  .manufacturing-figma-page .mfg-capability-grid {
    margin-top: 36px;
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .manufacturing-figma-page .mfg-card,
  .manufacturing-figma-page .mfg-card.softgel,
  .manufacturing-figma-page .mfg-card.tablet,
  .manufacturing-figma-page .mfg-card.powder,
  .manufacturing-figma-page .mfg-card.hard-shell,
  .manufacturing-figma-page .mfg-card.liquid,
  .manufacturing-figma-page .mfg-card.sachet,
  .manufacturing-figma-page .mfg-card.freeze-dry,
  .manufacturing-figma-page .mfg-card.probiotics {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    transform: none;
  }

  .manufacturing-figma-page .mfg-card h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .manufacturing-figma-page .mfg-pager {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 8px 16px 58px;
  }

  .manufacturing-figma-page .mfg-pager .previous,
  .manufacturing-figma-page .mfg-pager .next {
    justify-items: start;
    padding: 0;
  }

  .manufacturing-figma-page .mfg-pager strong {
    font-size: 26px;
    line-height: 32px;
  }

  .manufacturing-figma-page .mfg-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .manufacturing-figma-page .mfg-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .manufacturing-figma-page .mfg-form .wide,
  .manufacturing-figma-page .mfg-form .tall,
  .manufacturing-figma-page .mfg-form button {
    grid-column: auto;
  }

  .manufacturing-figma-page .mfg-form button {
    justify-self: start;
  }

  .manufacturing-figma-page .mfg-awards {
    padding: 42px 0;
  }

  .manufacturing-figma-page .mfg-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .manufacturing-figma-page .mfg-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .manufacturing-figma-page .mfg-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .manufacturing-figma-page .mfg-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .manufacturing-figma-page .mfg-footer-bottom {
    height: auto;
  }

  .manufacturing-figma-page .mfg-footer-bottom .mfg-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU Packaging Figma rebuild */
.packaging-figma-page {
  color: #0a0a0a;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
}

.packaging-figma-page main {
  overflow: hidden;
}

.packaging-figma-page .pkg-frame {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.packaging-figma-page .pkg-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.packaging-figma-page .pkg-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .06)), url("../assets/images/service-packaging.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.packaging-figma-page .pkg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .30);
}

.packaging-figma-page .pkg-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 71.9px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.packaging-figma-page .pkg-down {
  position: absolute;
  left: 50%;
  bottom: 51px;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
}

.packaging-figma-page .pkg-down img {
  width: 31px;
  height: 24px;
}

.packaging-figma-page .pkg-services {
  position: relative;
  min-height: 638px;
  overflow: hidden;
  background: #fff;
}

.packaging-figma-page .pkg-pill {
  position: absolute;
  left: 703.72px;
  top: 267px;
  width: 290px;
  height: 690px;
  border-radius: 999px;
  background: rgba(249, 214, 50, .94);
}

.packaging-figma-page .pkg-pill::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: inherit;
  background: rgba(255, 255, 255, .18);
}

.packaging-figma-page .pkg-services h2 {
  position: relative;
  margin: 0;
  padding-top: 114px;
  font-size: 25.4px;
  line-height: 34px;
  font-weight: 700;
}

.packaging-figma-page .pkg-orbit {
  position: absolute;
  inset: 0;
}

.packaging-figma-page .pkg-orbit-card {
  position: absolute;
  width: 206px;
  height: 248px;
  color: #111;
  text-decoration: none;
}

.packaging-figma-page .pkg-orbit-card img {
  width: 206px;
  height: 248px;
  object-fit: contain;
  display: block;
}

.packaging-figma-page .service-packaging {
  left: 1098px;
  top: 201px;
}

.packaging-figma-page .service-manufacturing {
  left: 821px;
  top: 268px;
}

.packaging-figma-page .service-regulatory {
  left: 518px;
  top: 222px;
}

.packaging-figma-page .service-rd {
  left: 176px;
  top: 279px;
}

.packaging-figma-page .pkg-main {
  position: relative;
  min-height: 2260px;
  padding-top: 115px;
  background: #fff;
}

.packaging-figma-page .pkg-main::before,
.packaging-figma-page .pkg-main::after {
  content: "";
  position: absolute;
  width: 200px;
  background: #f7d638;
  border-radius: 100px;
  z-index: 0;
}

.packaging-figma-page .pkg-main::before {
  right: calc(50% - 675px);
  top: 331px;
  height: 508px;
}

.packaging-figma-page .pkg-main::after {
  left: calc(50% - 675px);
  top: 1493px;
  height: 274px;
}

.packaging-figma-page .pkg-main > .pkg-frame {
  position: relative;
  z-index: 1;
}

.packaging-figma-page .pkg-main-grid {
  width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 441px 445px;
  gap: 34px;
  align-items: start;
}

.packaging-figma-page .pkg-copy {
  padding-top: 236px;
}

.packaging-figma-page .pkg-copy h2,
.packaging-figma-page .pkg-enquiry h2,
.packaging-figma-page .pkg-awards h2 {
  margin: 0;
  color: #333;
  font-size: 32px;
  line-height: 41px;
  font-weight: 700;
}

.packaging-figma-page .pkg-copy p {
  margin: 16px 0 0;
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.packaging-figma-page .pkg-main figure {
  margin: 152px 0 0;
  width: 445px;
  height: 597px;
}

.packaging-figma-page .pkg-main figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.packaging-figma-page .pkg-format-grid {
  position: relative;
  width: 960px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 286px);
  grid-auto-rows: 292px;
  column-gap: 30px;
  row-gap: 51px;
  justify-content: center;
}

.packaging-figma-page .pkg-format {
  position: relative;
  min-height: 254px;
  padding: 160px 22px 28px;
  display: grid;
  place-items: start center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .08);
}

.packaging-figma-page .pkg-format span {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #f7d638;
  box-shadow: inset 0 0 0 15px rgba(255, 255, 255, .28);
}

.packaging-figma-page .pkg-format h3 {
  max-width: 220px;
  margin: 0 auto;
  color: #333;
  font-size: 14.5px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.packaging-figma-page .pkg-format.bottles {
  grid-column: 1;
  grid-row: 1;
  transform: translateY(4px);
}

.packaging-figma-page .pkg-format.jars {
  grid-column: 2;
  grid-row: 1;
  transform: translateY(-5px);
}

.packaging-figma-page .pkg-format.cans {
  grid-column: 1;
  grid-row: 2;
}

.packaging-figma-page .pkg-format.blisters {
  grid-column: 2;
  grid-row: 2;
}

.packaging-figma-page .pkg-format.sachets {
  grid-column: 3;
  grid-row: 2;
}

.packaging-figma-page .pkg-format.pillow {
  grid-column: 1;
  grid-row: 3;
}

.packaging-figma-page .pkg-format.spray {
  grid-column: 2;
  grid-row: 3;
  transform: translateY(-9px);
}

.packaging-figma-page .pkg-format.boxes {
  grid-column: 3;
  grid-row: 3;
}

.packaging-figma-page .pkg-format.custom {
  grid-column: 1;
  grid-row: 4;
}

.packaging-figma-page .pkg-format.security {
  grid-column: 2;
  grid-row: 4;
}

.packaging-figma-page .pkg-pager {
  height: 122px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.packaging-figma-page .pkg-pager a {
  color: #0d0d0d;
  text-decoration: none;
}

.packaging-figma-page .pkg-pager .previous {
  display: grid;
  justify-items: end;
  padding-right: 82px;
}

.packaging-figma-page .pkg-pager .next {
  display: grid;
  justify-items: start;
  padding-left: 73px;
}

.packaging-figma-page .pkg-pager span {
  font-size: 15.6px;
  line-height: 19px;
  font-weight: 400;
}

.packaging-figma-page .pkg-pager strong {
  display: block;
  margin-top: 6px;
  color: #000;
  font-size: 25.7px;
  line-height: 34px;
  font-weight: 700;
}

.packaging-figma-page .pkg-enquiry {
  min-height: 600px;
  padding-top: 113px;
  background: #f9f9fa;
}

.packaging-figma-page .pkg-enquiry-grid,
.packaging-figma-page .pkg-awards-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 950px);
  column-gap: 0;
  align-items: start;
}

.packaging-figma-page .pkg-form {
  display: grid;
  grid-template-columns: 207.5px 207.5px 445px;
  column-gap: 30px;
  row-gap: 32px;
}

.packaging-figma-page .pkg-form .field {
  display: grid;
  gap: 10px;
}

.packaging-figma-page .pkg-form .wide,
.packaging-figma-page .pkg-form .tall {
  grid-column: 3;
}

.packaging-figma-page .pkg-form .tall {
  grid-row: span 2;
}

.packaging-figma-page .pkg-form label {
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.packaging-figma-page .pkg-form input,
.packaging-figma-page .pkg-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .85);
  border-radius: 0;
  background: transparent;
  color: #111;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  outline: none;
}

.packaging-figma-page .pkg-form input {
  height: 26px;
}

.packaging-figma-page .pkg-form textarea {
  height: 132px;
  resize: vertical;
}

.packaging-figma-page .pkg-form textarea::placeholder {
  color: #757575;
}

.packaging-figma-page .pkg-form button {
  grid-column: 3;
  grid-row: 4;
  justify-self: end;
  min-width: 54px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.packaging-figma-page .pkg-awards {
  min-height: 132px;
  padding-top: 48px;
  background: #fff;
}

.packaging-figma-page .pkg-awards-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.packaging-figma-page .pkg-awards article {
  display: grid;
  grid-template-columns: 33px minmax(0, 270px);
  gap: 16px;
  align-items: start;
}

.packaging-figma-page .pkg-awards img {
  width: 33px;
  height: 33px;
}

.packaging-figma-page .pkg-awards p {
  margin: 0;
  color: #333;
  font: 400 14.6px/18px "Inter", Arial, sans-serif;
}

.packaging-figma-page .footer {
  position: relative;
  background: #000;
}

.packaging-figma-page .pkg-footer-main {
  width: min(1110px, calc(100% - 48px));
  min-height: 320px;
  margin: 0 auto;
  padding: 58px 0 56px;
  display: grid;
  grid-template-columns: 190px 120px 213px 120px 145px;
  gap: 70px;
  align-items: start;
}

.packaging-figma-page .footer-logo img {
  width: 120px;
  height: auto;
}

.packaging-figma-page .footer nav {
  display: grid;
  gap: 10px;
}

.packaging-figma-page .footer strong,
.packaging-figma-page .pkg-footer-follow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.packaging-figma-page .footer nav a {
  color: #fff;
  text-decoration: none;
  font: 400 13px/20px "Open Sans", Arial, sans-serif;
}

.packaging-figma-page .pkg-footer-follow .linkedin {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.packaging-figma-page .pkg-footer-bottom {
  height: 52px;
  background: #fff;
}

.packaging-figma-page .pkg-footer-bottom .pkg-frame {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.packaging-figma-page .footer p {
  margin: 0;
  color: #111;
  font: 400 12px/18px "Open Sans", Arial, sans-serif;
}

.packaging-figma-page .footer p a {
  color: #111;
}

@media (max-width: 1180px) {
  .packaging-figma-page .pkg-frame {
    width: min(960px, calc(100% - 48px));
  }

  .packaging-figma-page .pkg-hero {
    min-height: 760px;
  }

  .packaging-figma-page .pkg-pill {
    left: 50%;
    top: 96px;
    width: 520px;
    height: 520px;
    transform: translateX(-12%);
  }

  .packaging-figma-page .pkg-orbit {
    width: min(760px, calc(100% - 48px));
    margin: 68px auto 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .packaging-figma-page .pkg-orbit-card,
  .packaging-figma-page .service-rd,
  .packaging-figma-page .service-regulatory,
  .packaging-figma-page .service-manufacturing,
  .packaging-figma-page .service-packaging {
    position: static;
    width: 100%;
    height: auto;
  }

  .packaging-figma-page .pkg-orbit-card img {
    width: 100%;
    height: auto;
  }

  .packaging-figma-page .pkg-main-grid {
    width: 100%;
    grid-template-columns: 1fr 420px;
  }

  .packaging-figma-page .pkg-copy {
    padding-top: 170px;
  }

  .packaging-figma-page .pkg-main figure {
    width: 420px;
    height: 563px;
  }

  .packaging-figma-page .pkg-format-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .packaging-figma-page .pkg-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .packaging-figma-page .pkg-footer-main {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .packaging-figma-page .pkg-frame {
    width: calc(100% - 32px);
  }

  .packaging-figma-page .pkg-hero {
    min-height: 620px;
  }

  .packaging-figma-page .pkg-hero h1 {
    width: 100%;
    max-width: 100vw;
    padding: 0 14px;
    box-sizing: border-box;
    font-size: clamp(30px, 8.6vw, 42px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .packaging-figma-page .pkg-services {
    min-height: auto;
    padding: 74px 0 86px;
  }

  .packaging-figma-page .pkg-pill {
    left: 50%;
    top: 96px;
    width: min(520px, 112vw);
    height: min(520px, 112vw);
    transform: translateX(-50%);
  }

  .packaging-figma-page .pkg-services h2 {
    padding-top: 0;
    margin-bottom: 34px;
    font-size: 31px;
    line-height: 38px;
  }

  .packaging-figma-page .pkg-orbit {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    overflow: hidden;
  }

  .packaging-figma-page .pkg-main {
    min-height: auto;
    padding: 78px 0 86px;
  }

  .packaging-figma-page .pkg-main::before,
  .packaging-figma-page .pkg-main::after {
    display: none;
  }

  .packaging-figma-page .pkg-main-grid,
  .packaging-figma-page .pkg-enquiry-grid,
  .packaging-figma-page .pkg-awards-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .packaging-figma-page .pkg-copy {
    padding-top: 0;
  }

  .packaging-figma-page .pkg-copy h2,
  .packaging-figma-page .pkg-enquiry h2,
  .packaging-figma-page .pkg-awards h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .packaging-figma-page .pkg-main figure {
    width: 100%;
    height: auto;
    aspect-ratio: 445 / 597;
    margin: 0;
  }

  .packaging-figma-page .pkg-format-grid {
    margin-top: 36px;
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .packaging-figma-page .pkg-format,
  .packaging-figma-page .pkg-format.bottles,
  .packaging-figma-page .pkg-format.jars,
  .packaging-figma-page .pkg-format.cans,
  .packaging-figma-page .pkg-format.blisters,
  .packaging-figma-page .pkg-format.sachets,
  .packaging-figma-page .pkg-format.pillow,
  .packaging-figma-page .pkg-format.spray,
  .packaging-figma-page .pkg-format.boxes,
  .packaging-figma-page .pkg-format.custom,
  .packaging-figma-page .pkg-format.security {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    transform: none;
  }

  .packaging-figma-page .pkg-pager {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 8px 16px 58px;
  }

  .packaging-figma-page .pkg-pager .previous,
  .packaging-figma-page .pkg-pager .next {
    justify-items: start;
    padding: 0;
  }

  .packaging-figma-page .pkg-pager strong {
    font-size: 26px;
    line-height: 32px;
  }

  .packaging-figma-page .pkg-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .packaging-figma-page .pkg-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .packaging-figma-page .pkg-form .wide,
  .packaging-figma-page .pkg-form .tall,
  .packaging-figma-page .pkg-form button {
    grid-column: auto;
    grid-row: auto;
  }

  .packaging-figma-page .pkg-form button {
    justify-self: start;
  }

  .packaging-figma-page .pkg-awards {
    padding: 42px 0;
  }

  .packaging-figma-page .pkg-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .packaging-figma-page .pkg-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .packaging-figma-page .pkg-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .packaging-figma-page .pkg-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .packaging-figma-page .pkg-footer-bottom {
    height: auto;
  }

  .packaging-figma-page .pkg-footer-bottom .pkg-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU Quality Figma rebuild */
.quality-figma-page {
  color: #0a0a0a;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

.quality-figma-page main {
  overflow: hidden;
}

.quality-figma-page .qual-frame {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.quality-figma-page .qual-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.quality-figma-page .qual-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .05)), url("../assets/images/service-regulatory.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.quality-figma-page .qual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .20);
}

.quality-figma-page .qual-hero h1 {
  margin: 25px 0 0;
  color: #fff;
  font-size: 70.6px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.quality-figma-page .qual-down {
  position: absolute;
  left: 50%;
  bottom: 51px;
  width: 54px;
  height: 68px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
}

.quality-figma-page .qual-down img {
  width: 31px;
  height: 24px;
}

.quality-figma-page .qual-policy,
.quality-figma-page .qual-lab {
  position: relative;
  background: #fff;
}

.quality-figma-page .qual-policy {
  min-height: 984px;
  padding-top: 230px;
}

.quality-figma-page .qual-lab {
  min-height: 1020px;
  padding-top: 115px;
}

.quality-figma-page .qual-policy::before,
.quality-figma-page .qual-lab::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 510px;
  border-radius: 100px;
  background: #f7d638;
  z-index: 0;
}

.quality-figma-page .qual-policy::before {
  left: calc(50% - 675px);
  top: 194px;
}

.quality-figma-page .qual-lab::after {
  right: calc(50% - 675px);
  top: 231px;
}

.quality-figma-page .qual-two-col {
  position: relative;
  z-index: 1;
  width: min(950px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 445px 444px;
  gap: 30px;
  align-items: start;
}

.quality-figma-page .qual-lab .qual-two-col {
  grid-template-columns: 437px 445px;
  gap: 38px;
}

.quality-figma-page .qual-two-col figure {
  margin: 0;
  width: 445px;
  height: 600px;
  overflow: hidden;
}

.quality-figma-page .qual-lab figure {
  height: 597px;
  margin-top: 52px;
}

.quality-figma-page .qual-two-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quality-figma-page .qual-policy article {
  padding-top: 37px;
}

.quality-figma-page .qual-lab article {
  padding-top: 110px;
}

.quality-figma-page .qual-two-col h2,
.quality-figma-page .qual-news h2,
.quality-figma-page .qual-enquiry h2,
.quality-figma-page .qual-awards h2 {
  margin: 0;
  color: #333;
  font-size: 31.7px;
  line-height: 41px;
  font-weight: 700;
}

.quality-figma-page .qual-two-col p,
.quality-figma-page .qual-two-col li,
.quality-figma-page .qual-news p {
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  overflow-wrap: break-word;
}

.quality-figma-page .qual-two-col p {
  margin: 15px 0 0;
}

.quality-figma-page .qual-two-col ul {
  margin: 15px 0 0;
  padding-left: 27px;
}

.quality-figma-page .qual-two-col li {
  margin-bottom: 15px;
}

.quality-figma-page .qual-news {
  min-height: 822px;
  padding-top: 114px;
  background: #fff;
}

.quality-figma-page .qual-news h2 {
  margin-left: 0;
}

.quality-figma-page .qual-news-track {
  width: 1388px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(5, 245px);
  gap: 33px;
  align-items: start;
}

.quality-figma-page .qual-news article {
  width: 245px;
}

.quality-figma-page .qual-news img {
  width: 245px;
  height: 409px;
  object-fit: cover;
  display: block;
  filter: grayscale(.05);
}

.quality-figma-page .qual-news h3 {
  margin: -2px 0 0;
  min-height: 54px;
  color: #333;
  font-size: 13.9px;
  line-height: 18px;
  font-weight: 700;
}

.quality-figma-page .qual-news p {
  margin: 12px 0 0;
}

.quality-figma-page .qual-slider-arrows {
  width: 37px;
  height: 30px;
  margin-top: 110px;
  display: flex;
  gap: 8px;
}

.quality-figma-page .qual-slider-arrows span {
  width: 14px;
  height: 14px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
}

.quality-figma-page .qual-slider-arrows span:first-child {
  transform: rotate(45deg);
}

.quality-figma-page .qual-slider-arrows span:last-child {
  transform: rotate(225deg);
}

.quality-figma-page .qual-enquiry {
  min-height: 600px;
  padding-top: 113px;
  background: #f9f9fa;
}

.quality-figma-page .qual-enquiry-grid,
.quality-figma-page .qual-awards-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 950px);
  column-gap: 0;
  align-items: start;
}

.quality-figma-page .qual-form {
  display: grid;
  grid-template-columns: 207.5px 207.5px 445px;
  column-gap: 30px;
  row-gap: 32px;
}

.quality-figma-page .qual-form .field {
  display: grid;
  gap: 10px;
}

.quality-figma-page .qual-form .wide,
.quality-figma-page .qual-form .tall {
  grid-column: 3;
}

.quality-figma-page .qual-form .tall {
  grid-row: span 2;
}

.quality-figma-page .qual-form label {
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.quality-figma-page .qual-form input,
.quality-figma-page .qual-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .85);
  border-radius: 0;
  background: transparent;
  color: #111;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  outline: none;
}

.quality-figma-page .qual-form input {
  height: 26px;
}

.quality-figma-page .qual-form textarea {
  height: 132px;
  resize: vertical;
}

.quality-figma-page .qual-form textarea::placeholder {
  color: #757575;
}

.quality-figma-page .qual-form button {
  grid-column: 3;
  grid-row: 4;
  justify-self: end;
  min-width: 54px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.quality-figma-page .qual-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.quality-figma-page .qual-awards-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.quality-figma-page .qual-awards article {
  display: grid;
  grid-template-columns: 33px minmax(0, 270px);
  gap: 16px;
  align-items: start;
}

.quality-figma-page .qual-awards img {
  width: 33px;
  height: 33px;
}

.quality-figma-page .qual-awards p {
  margin: 0;
  color: #333;
  font: 400 14.8px/18px "Inter", Arial, sans-serif;
}

.quality-figma-page .footer {
  position: relative;
  background: #000;
}

.quality-figma-page .qual-footer-main {
  width: min(1110px, calc(100% - 48px));
  min-height: 320px;
  margin: 0 auto;
  padding: 58px 0 56px;
  display: grid;
  grid-template-columns: 190px 120px 213px 120px 145px;
  gap: 70px;
  align-items: start;
}

.quality-figma-page .footer-logo img {
  width: 120px;
  height: auto;
}

.quality-figma-page .footer nav {
  display: grid;
  gap: 10px;
}

.quality-figma-page .footer strong,
.quality-figma-page .qual-footer-follow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.quality-figma-page .footer nav a {
  color: #fff;
  text-decoration: none;
  font: 400 13px/20px "Open Sans", Arial, sans-serif;
}

.quality-figma-page .qual-footer-follow .linkedin {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.quality-figma-page .qual-footer-bottom {
  height: 52px;
  background: #fff;
}

.quality-figma-page .qual-footer-bottom .qual-frame {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quality-figma-page .footer p {
  margin: 0;
  color: #111;
  font: 400 12px/18px "Open Sans", Arial, sans-serif;
}

.quality-figma-page .footer p a {
  color: #111;
}

@media (max-width: 1180px) {
  .quality-figma-page .qual-frame {
    width: min(960px, calc(100% - 48px));
  }

  .quality-figma-page .qual-hero {
    min-height: 760px;
  }

  .quality-figma-page .qual-two-col,
  .quality-figma-page .qual-lab .qual-two-col {
    width: min(920px, calc(100% - 48px));
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .quality-figma-page .qual-two-col figure,
  .quality-figma-page .qual-lab figure {
    width: 100%;
  }

  .quality-figma-page .qual-news-track {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .quality-figma-page .qual-news article,
  .quality-figma-page .qual-news img {
    width: 100%;
  }

  .quality-figma-page .qual-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quality-figma-page .qual-footer-main {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .quality-figma-page .qual-frame,
  .quality-figma-page .qual-two-col,
  .quality-figma-page .qual-lab .qual-two-col {
    width: calc(100% - 48px);
  }

  .quality-figma-page .qual-hero {
    min-height: 620px;
  }

  .quality-figma-page .qual-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1.02;
  }

  .quality-figma-page .qual-policy,
  .quality-figma-page .qual-lab,
  .quality-figma-page .qual-news {
    min-height: auto;
    padding: 76px 0;
  }

  .quality-figma-page .qual-policy::before,
  .quality-figma-page .qual-lab::after {
    display: none;
  }

  .quality-figma-page .qual-two-col,
  .quality-figma-page .qual-lab .qual-two-col,
  .quality-figma-page .qual-enquiry-grid,
  .quality-figma-page .qual-awards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quality-figma-page .qual-policy .qual-two-col figure {
    order: 2;
  }

  .quality-figma-page .qual-policy article,
  .quality-figma-page .qual-lab article,
  .quality-figma-page .qual-lab figure {
    padding-top: 0;
    margin-top: 0;
  }

  .quality-figma-page .qual-two-col figure,
  .quality-figma-page .qual-lab figure {
    height: auto;
    aspect-ratio: 445 / 600;
  }

  .quality-figma-page .qual-two-col h2,
  .quality-figma-page .qual-news h2,
  .quality-figma-page .qual-enquiry h2,
  .quality-figma-page .qual-awards h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .quality-figma-page .qual-news-track {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quality-figma-page .qual-news img {
    height: auto;
    aspect-ratio: 245 / 409;
  }

  .quality-figma-page .qual-slider-arrows {
    margin-top: 32px;
  }

  .quality-figma-page .qual-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .quality-figma-page .qual-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .quality-figma-page .qual-form .wide,
  .quality-figma-page .qual-form .tall,
  .quality-figma-page .qual-form button {
    grid-column: auto;
    grid-row: auto;
  }

  .quality-figma-page .qual-form button {
    justify-self: start;
  }

  .quality-figma-page .qual-awards {
    padding: 42px 0;
  }

  .quality-figma-page .qual-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quality-figma-page .qual-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .quality-figma-page .qual-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .quality-figma-page .qual-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .quality-figma-page .qual-footer-bottom {
    height: auto;
  }

  .quality-figma-page .qual-footer-bottom .qual-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU Culture Figma rebuild */
.culture-figma-page {
  color: #0a0a0a;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

.culture-figma-page main {
  overflow: hidden;
}

.culture-figma-page .cult-frame {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.culture-figma-page .cult-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.culture-figma-page .cult-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .06)), url("../assets/images/news-facility.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.culture-figma-page .cult-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .28);
}

.culture-figma-page .cult-hero h1 {
  margin: -5px 0 0;
  color: #fff;
  font-size: 72.8px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.culture-figma-page .cult-down {
  position: absolute;
  left: 50%;
  bottom: 51px;
  width: 54px;
  height: 68px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
}

.culture-figma-page .cult-down img {
  width: 31px;
  height: 24px;
}

.culture-figma-page .cult-main {
  min-height: 1084px;
  padding-top: 114px;
  background: #f9f9fa;
}

.culture-figma-page .cult-main h2,
.culture-figma-page .cult-network h2,
.culture-figma-page .cult-enquiry h2,
.culture-figma-page .cult-awards h2 {
  margin: 0;
  color: #333;
  font-size: 31.7px;
  line-height: 41px;
  font-weight: 700;
}

.culture-figma-page .cult-values {
  width: 445px;
  margin: 23px auto 0;
}

.culture-figma-page .cult-values section + section {
  margin-top: 52px;
}

.culture-figma-page .cult-values h3 {
  margin: 0;
  color: #333;
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
}

.culture-figma-page .cult-values p {
  margin: 31px 0 0;
  color: #333;
  font: 700 13.9px/18px "Inter", Arial, sans-serif;
  overflow-wrap: break-word;
}

.culture-figma-page .cult-values .value-list {
  margin-top: 52px;
}

.culture-figma-page .cult-values .value-list h3 {
  margin-bottom: 30px;
}

.culture-figma-page .cult-values article {
  position: relative;
  min-height: 76px;
  margin-top: 15px;
  padding-left: 106px;
  display: flex;
  align-items: center;
}

.culture-figma-page .cult-values article span {
  position: absolute;
  left: 0;
  top: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f7d638;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .34);
}

.culture-figma-page .cult-values article p {
  margin: 0;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  min-width: 0;
}

.culture-figma-page .cult-values article strong {
  font-weight: 700;
}

.culture-figma-page .cult-strip {
  width: 825px;
  height: 155px;
  margin: 130px auto 0;
  overflow: hidden;
}

.culture-figma-page .cult-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.culture-figma-page .cult-network {
  min-height: 1090px;
  padding-top: 113px;
  background: #fff;
}

.culture-figma-page .cult-network-track {
  width: 1810px;
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(5, 346.5px);
  gap: 23.5px;
}

.culture-figma-page .cult-network article {
  width: 346.5px;
}

.culture-figma-page .cult-network img {
  width: 346.5px;
  height: 493.5px;
  object-fit: cover;
  display: block;
}

.culture-figma-page .cult-network h3 {
  margin: -4px 0 0;
  color: #333;
  font-size: 13.9px;
  line-height: 18px;
  font-weight: 700;
}

.culture-figma-page .cult-enquiry {
  min-height: 600px;
  padding-top: 112px;
  background: #f9f9fa;
}

.culture-figma-page .cult-enquiry-grid,
.culture-figma-page .cult-awards-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 950px);
  column-gap: 0;
  align-items: start;
}

.culture-figma-page .cult-form {
  display: grid;
  grid-template-columns: 207.5px 207.5px 445px;
  column-gap: 30px;
  row-gap: 32px;
}

.culture-figma-page .cult-form .field {
  display: grid;
  gap: 10px;
}

.culture-figma-page .cult-form .wide,
.culture-figma-page .cult-form .tall {
  grid-column: 3;
}

.culture-figma-page .cult-form .tall {
  grid-row: span 2;
}

.culture-figma-page .cult-form label {
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.culture-figma-page .cult-form input,
.culture-figma-page .cult-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .85);
  border-radius: 0;
  background: transparent;
  color: #111;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  outline: none;
}

.culture-figma-page .cult-form input {
  height: 26px;
}

.culture-figma-page .cult-form textarea {
  height: 132px;
  resize: vertical;
}

.culture-figma-page .cult-form textarea::placeholder {
  color: #757575;
}

.culture-figma-page .cult-form button {
  grid-column: 3;
  grid-row: 4;
  justify-self: end;
  min-width: 54px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.culture-figma-page .cult-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.culture-figma-page .cult-awards-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.culture-figma-page .cult-awards article {
  display: grid;
  grid-template-columns: 33px minmax(0, 270px);
  gap: 16px;
  align-items: start;
}

.culture-figma-page .cult-awards img {
  width: 33px;
  height: 33px;
}

.culture-figma-page .cult-awards p {
  margin: 0;
  color: #333;
  font: 400 14.8px/18px "Inter", Arial, sans-serif;
}

.culture-figma-page .footer {
  position: relative;
  background: #000;
}

.culture-figma-page .cult-footer-main {
  width: min(1110px, calc(100% - 48px));
  min-height: 320px;
  margin: 0 auto;
  padding: 58px 0 56px;
  display: grid;
  grid-template-columns: 190px 120px 213px 120px 145px;
  gap: 70px;
  align-items: start;
}

.culture-figma-page .footer-logo img {
  width: 120px;
  height: auto;
}

.culture-figma-page .footer nav {
  display: grid;
  gap: 10px;
}

.culture-figma-page .footer strong,
.culture-figma-page .cult-footer-follow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.culture-figma-page .footer nav a {
  color: #fff;
  text-decoration: none;
  font: 400 13px/20px "Open Sans", Arial, sans-serif;
}

.culture-figma-page .cult-footer-follow .linkedin {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.culture-figma-page .cult-footer-bottom {
  height: 52px;
  background: #fff;
}

.culture-figma-page .cult-footer-bottom .cult-frame {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.culture-figma-page .footer p {
  margin: 0;
  color: #111;
  font: 400 12px/18px "Open Sans", Arial, sans-serif;
}

.culture-figma-page .footer p a {
  color: #111;
}

@media (max-width: 1180px) {
  .culture-figma-page .cult-frame {
    width: min(960px, calc(100% - 48px));
  }

  .culture-figma-page .cult-hero {
    min-height: 760px;
  }

  .culture-figma-page .cult-network-track {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .culture-figma-page .cult-network article,
  .culture-figma-page .cult-network img {
    width: 100%;
  }

  .culture-figma-page .cult-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .culture-figma-page .cult-footer-main {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .culture-figma-page .cult-frame {
    width: calc(100% - 64px);
  }

  .culture-figma-page .cult-hero {
    min-height: 620px;
  }

  .culture-figma-page .cult-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  .culture-figma-page .cult-main,
  .culture-figma-page .cult-network {
    min-height: auto;
    padding: 74px 0;
  }

  .culture-figma-page .cult-values {
    width: min(100%, 300px);
    margin-left: 0;
    margin-right: auto;
  }

  .culture-figma-page .cult-values section + section,
  .culture-figma-page .cult-values .value-list {
    margin-top: 40px;
  }

  .culture-figma-page .cult-values article {
    padding-left: 82px;
  }

  .culture-figma-page .cult-values article span {
    width: 58px;
    height: 58px;
  }

  .culture-figma-page .cult-strip {
    width: 100%;
    height: auto;
    aspect-ratio: 825 / 155;
    margin-top: 52px;
  }

  .culture-figma-page .cult-network-track {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .culture-figma-page .cult-network img {
    height: auto;
    aspect-ratio: 346.5 / 493.5;
  }

  .culture-figma-page .cult-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .culture-figma-page .cult-enquiry-grid,
  .culture-figma-page .cult-awards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .culture-figma-page .cult-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .culture-figma-page .cult-form .wide,
  .culture-figma-page .cult-form .tall,
  .culture-figma-page .cult-form button {
    grid-column: auto;
    grid-row: auto;
  }

  .culture-figma-page .cult-form button {
    justify-self: start;
  }

  .culture-figma-page .cult-awards {
    padding: 42px 0;
  }

  .culture-figma-page .cult-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .culture-figma-page .cult-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .culture-figma-page .cult-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .culture-figma-page .cult-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .culture-figma-page .cult-footer-bottom {
    height: auto;
  }

  .culture-figma-page .cult-footer-bottom .cult-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU News Figma rebuild */
.news-figma-page {
  color: #0a0a0a;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

.news-figma-page main {
  overflow: hidden;
}

.news-figma-page .newsf-frame {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.news-figma-page .newsf-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.news-figma-page .newsf-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .05)), url("../assets/images/news-facility.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.news-figma-page .newsf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .28);
}

.news-figma-page .newsf-hero h1 {
  margin: -5px 0 0;
  color: #fff;
  font-size: 72.7px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.news-figma-page .newsf-down {
  position: absolute;
  left: 50%;
  bottom: 51px;
  width: 54px;
  height: 68px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
}

.news-figma-page .newsf-down img {
  width: 31px;
  height: 24px;
}

.news-figma-page .newsf-list {
  min-height: 4389px;
  padding-top: 0;
  background: #fff;
}

.news-figma-page .newsf-grid {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  column-gap: 30px;
  row-gap: 67px;
}

.news-figma-page .newsf-grid article {
  width: 350px;
}

.news-figma-page .newsf-grid img {
  width: 367.5px;
  height: 493.5px;
  margin-left: -1.75px;
  object-fit: cover;
  display: block;
}

.news-figma-page .newsf-grid h2 {
  min-height: 18px;
  margin: -4px 0 0;
  color: #333;
  font-size: 13.9px;
  line-height: 18px;
  font-weight: 700;
  overflow-wrap: break-word;
}

.news-figma-page .newsf-grid p {
  margin: 12px 0 0;
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.news-figma-page .newsf-load {
  width: 120px;
  height: 45px;
  margin: 66px auto 0;
  display: grid;
  place-items: center;
  color: #333;
  text-decoration: none;
  font-size: 14.5px;
  line-height: 22.5px;
  font-weight: 700;
}

.news-figma-page .newsf-enquiry {
  min-height: 650px;
  padding-top: 162px;
  background: #f9f9fa;
}

.news-figma-page .newsf-enquiry h2,
.news-figma-page .newsf-awards h2 {
  margin: 0;
  color: #333;
  font-size: 31.9px;
  line-height: 41px;
  font-weight: 700;
}

.news-figma-page .newsf-enquiry-grid,
.news-figma-page .newsf-awards-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 950px);
  column-gap: 0;
  align-items: start;
}

.news-figma-page .newsf-form {
  display: grid;
  grid-template-columns: 207.5px 207.5px 445px;
  column-gap: 30px;
  row-gap: 32px;
}

.news-figma-page .newsf-form .field {
  display: grid;
  gap: 10px;
}

.news-figma-page .newsf-form .wide,
.news-figma-page .newsf-form .tall {
  grid-column: 3;
}

.news-figma-page .newsf-form .tall {
  grid-row: span 2;
}

.news-figma-page .newsf-form label {
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.news-figma-page .newsf-form input,
.news-figma-page .newsf-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .85);
  border-radius: 0;
  background: transparent;
  color: #111;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  outline: none;
}

.news-figma-page .newsf-form input {
  height: 26px;
}

.news-figma-page .newsf-form textarea {
  height: 132px;
  resize: vertical;
}

.news-figma-page .newsf-form textarea::placeholder {
  color: #757575;
}

.news-figma-page .newsf-form button {
  grid-column: 3;
  grid-row: 4;
  justify-self: end;
  min-width: 54px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.news-figma-page .newsf-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.news-figma-page .newsf-awards-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.news-figma-page .newsf-awards article {
  display: grid;
  grid-template-columns: 33px minmax(0, 270px);
  gap: 16px;
  align-items: start;
}

.news-figma-page .newsf-awards img {
  width: 33px;
  height: 33px;
}

.news-figma-page .newsf-awards p {
  margin: 0;
  color: #333;
  font: 400 14.8px/18px "Inter", Arial, sans-serif;
}

.news-figma-page .footer {
  position: relative;
  background: #000;
}

.news-figma-page .newsf-footer-main {
  width: min(1110px, calc(100% - 48px));
  min-height: 320px;
  margin: 0 auto;
  padding: 58px 0 56px;
  display: grid;
  grid-template-columns: 190px 120px 213px 120px 145px;
  gap: 70px;
  align-items: start;
}

.news-figma-page .footer-logo img {
  width: 120px;
  height: auto;
}

.news-figma-page .footer nav {
  display: grid;
  gap: 10px;
}

.news-figma-page .footer strong,
.news-figma-page .newsf-footer-follow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.news-figma-page .footer nav a {
  color: #fff;
  text-decoration: none;
  font: 400 13px/20px "Open Sans", Arial, sans-serif;
}

.news-figma-page .newsf-footer-follow .linkedin {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.news-figma-page .newsf-footer-bottom {
  height: 52px;
  background: #fff;
}

.news-figma-page .newsf-footer-bottom .newsf-frame {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-figma-page .footer p {
  margin: 0;
  color: #111;
  font: 400 12px/18px "Open Sans", Arial, sans-serif;
}

.news-figma-page .footer p a {
  color: #111;
}

@media (max-width: 1180px) {
  .news-figma-page .newsf-frame {
    width: min(960px, calc(100% - 48px));
  }

  .news-figma-page .newsf-hero {
    min-height: 760px;
  }

  .news-figma-page .newsf-list {
    min-height: auto;
    padding-bottom: 72px;
  }

  .news-figma-page .newsf-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-figma-page .newsf-grid article,
  .news-figma-page .newsf-grid img {
    width: 100%;
  }

  .news-figma-page .newsf-grid img {
    margin-left: 0;
  }

  .news-figma-page .newsf-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-figma-page .newsf-footer-main {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .news-figma-page .newsf-frame {
    width: calc(100% - 48px);
  }

  .news-figma-page .newsf-hero {
    min-height: 620px;
  }

  .news-figma-page .newsf-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  .news-figma-page .newsf-list {
    padding: 72px 0;
  }

  .news-figma-page .newsf-grid {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .news-figma-page .newsf-grid img {
    height: auto;
    aspect-ratio: 367.5 / 493.5;
  }

  .news-figma-page .newsf-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .news-figma-page .newsf-enquiry-grid,
  .news-figma-page .newsf-awards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-figma-page .newsf-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .news-figma-page .newsf-form .wide,
  .news-figma-page .newsf-form .tall,
  .news-figma-page .newsf-form button {
    grid-column: auto;
    grid-row: auto;
  }

  .news-figma-page .newsf-form button {
    justify-self: start;
  }

  .news-figma-page .newsf-awards {
    padding: 42px 0;
  }

  .news-figma-page .newsf-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-figma-page .newsf-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .news-figma-page .newsf-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .news-figma-page .newsf-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .news-figma-page .newsf-footer-bottom {
    height: auto;
  }

  .news-figma-page .newsf-footer-bottom .newsf-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU Careers Figma rebuild */
.careers-figma-page {
  color: #0a0a0a;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

.careers-figma-page main {
  overflow: hidden;
}

.careers-figma-page .car-frame {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.careers-figma-page .car-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.careers-figma-page .car-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .05)), url("../assets/images/service-manufacturing.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.careers-figma-page .car-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .28);
}

.careers-figma-page .car-hero h1 {
  margin: -5px 0 0;
  color: #fff;
  font-size: 72.2px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.careers-figma-page .car-down {
  position: absolute;
  left: 50%;
  bottom: 51px;
  width: 54px;
  height: 68px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
}

.careers-figma-page .car-down img {
  width: 31px;
  height: 24px;
}

.careers-figma-page .car-culture {
  min-height: 652px;
  padding-top: 114px;
  background: #f9f9fa;
}

.careers-figma-page .car-culture h2,
.careers-figma-page .car-positions h2,
.careers-figma-page .car-interest h2,
.careers-figma-page .car-enquiry h2,
.careers-figma-page .car-awards h2 {
  margin: 0;
  color: #333;
  font-size: 31.7px;
  line-height: 41px;
  font-weight: 700;
}

.careers-figma-page .car-pillars {
  margin-top: 192px;
  display: grid;
  grid-template-columns: repeat(4, 255px);
  gap: 30px;
}

.careers-figma-page .car-pillars h3 {
  margin: 0;
  color: #333;
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
}

.careers-figma-page .car-pillars p,
.careers-figma-page .car-interest p {
  margin: 45px 0 0;
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  overflow-wrap: break-word;
}

.careers-figma-page .car-positions {
  min-height: 224px;
  padding-top: 56px;
  background: #ffd900;
}

.careers-figma-page .car-positions-grid {
  display: grid;
  gap: 26px;
}

.careers-figma-page .car-apply {
  width: 135px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #333;
  text-decoration: none;
  font-size: 14.3px;
  line-height: 22.5px;
  font-weight: 700;
}

.careers-figma-page .car-interest {
  min-height: 340px;
  padding-top: 114px;
  background: #fff;
}

.careers-figma-page .car-interest-grid {
  display: grid;
  grid-template-columns: 804px 194px;
  gap: 112px;
  align-items: start;
}

.careers-figma-page .car-interest p {
  margin-top: 16px;
}

.careers-figma-page .car-follow {
  padding-top: 6px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.careers-figma-page .car-follow strong {
  color: #333;
  font-size: 15.6px;
  line-height: 19px;
  font-weight: 700;
}

.careers-figma-page .car-follow a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.careers-figma-page .car-enquiry {
  min-height: 600px;
  padding-top: 112px;
  background: #f9f9fa;
}

.careers-figma-page .car-enquiry-grid,
.careers-figma-page .car-awards-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 950px);
  column-gap: 0;
  align-items: start;
}

.careers-figma-page .car-form {
  display: grid;
  grid-template-columns: 207.5px 207.5px 445px;
  column-gap: 30px;
  row-gap: 32px;
}

.careers-figma-page .car-form .field {
  display: grid;
  gap: 10px;
}

.careers-figma-page .car-form .wide,
.careers-figma-page .car-form .tall {
  grid-column: 3;
}

.careers-figma-page .car-form .tall {
  grid-row: span 2;
}

.careers-figma-page .car-form label {
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.careers-figma-page .car-form input,
.careers-figma-page .car-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .85);
  border-radius: 0;
  background: transparent;
  color: #111;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  outline: none;
}

.careers-figma-page .car-form input {
  height: 26px;
}

.careers-figma-page .car-form textarea {
  height: 132px;
  resize: vertical;
}

.careers-figma-page .car-form textarea::placeholder {
  color: #757575;
}

.careers-figma-page .car-form button {
  grid-column: 3;
  grid-row: 4;
  justify-self: end;
  min-width: 54px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.careers-figma-page .car-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.careers-figma-page .car-awards-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.careers-figma-page .car-awards article {
  display: grid;
  grid-template-columns: 33px minmax(0, 270px);
  gap: 16px;
  align-items: start;
}

.careers-figma-page .car-awards img {
  width: 33px;
  height: 33px;
}

.careers-figma-page .car-awards p {
  margin: 0;
  color: #333;
  font: 400 14.8px/18px "Inter", Arial, sans-serif;
}

.careers-figma-page .footer {
  position: relative;
  background: #000;
}

.careers-figma-page .car-footer-main {
  width: min(1110px, calc(100% - 48px));
  min-height: 320px;
  margin: 0 auto;
  padding: 58px 0 56px;
  display: grid;
  grid-template-columns: 190px 120px 213px 120px 145px;
  gap: 70px;
  align-items: start;
}

.careers-figma-page .footer-logo img {
  width: 120px;
  height: auto;
}

.careers-figma-page .footer nav {
  display: grid;
  gap: 10px;
}

.careers-figma-page .footer strong,
.careers-figma-page .car-footer-follow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.careers-figma-page .footer nav a {
  color: #fff;
  text-decoration: none;
  font: 400 13px/20px "Open Sans", Arial, sans-serif;
}

.careers-figma-page .car-footer-follow .linkedin {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.careers-figma-page .car-footer-bottom {
  height: 52px;
  background: #fff;
}

.careers-figma-page .car-footer-bottom .car-frame {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.careers-figma-page .footer p {
  margin: 0;
  color: #111;
  font: 400 12px/18px "Open Sans", Arial, sans-serif;
}

.careers-figma-page .footer p a {
  color: #111;
}

@media (max-width: 1180px) {
  .careers-figma-page .car-frame {
    width: min(960px, calc(100% - 48px));
  }

  .careers-figma-page .car-hero {
    min-height: 760px;
  }

  .careers-figma-page .car-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .careers-figma-page .car-interest-grid {
    grid-template-columns: 1fr 200px;
    gap: 40px;
  }

  .careers-figma-page .car-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .careers-figma-page .car-footer-main {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .careers-figma-page .car-frame {
    width: calc(100% - 48px);
  }

  .careers-figma-page .car-hero {
    min-height: 620px;
  }

  .careers-figma-page .car-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1.02;
  }

  .careers-figma-page .car-culture,
  .careers-figma-page .car-interest {
    min-height: auto;
    padding: 72px 0;
  }

  .careers-figma-page .car-pillars {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .careers-figma-page .car-pillars p {
    margin-top: 18px;
  }

  .careers-figma-page .car-positions {
    min-height: auto;
    padding: 48px 0;
  }

  .careers-figma-page .car-interest-grid,
  .careers-figma-page .car-enquiry-grid,
  .careers-figma-page .car-awards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .careers-figma-page .car-follow {
    padding-top: 0;
  }

  .careers-figma-page .car-enquiry {
    min-height: auto;
    padding: 72px 0;
  }

  .careers-figma-page .car-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .careers-figma-page .car-form .wide,
  .careers-figma-page .car-form .tall,
  .careers-figma-page .car-form button {
    grid-column: auto;
    grid-row: auto;
  }

  .careers-figma-page .car-form button {
    justify-self: start;
  }

  .careers-figma-page .car-awards {
    padding: 42px 0;
  }

  .careers-figma-page .car-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .careers-figma-page .car-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .careers-figma-page .car-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .careers-figma-page .car-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .careers-figma-page .car-footer-bottom {
    height: auto;
  }

  .careers-figma-page .car-footer-bottom .car-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

/* AU Contact Figma rebuild */
.contact-figma-page {
  color: #0a0a0a;
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

.contact-figma-page main {
  overflow: hidden;
}

.contact-figma-page .contactf-frame {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-figma-page .contactf-hero {
  position: relative;
  min-height: 1776px;
  background: #fff;
  padding-top: 282px;
}

.contact-figma-page .contactf-hero-grid {
  display: grid;
  grid-template-columns: 445px 424px;
  gap: 242px;
  align-items: start;
}

.contact-figma-page .contactf-intro h1 {
  margin: 0;
  color: #fff;
  -webkit-text-stroke: 1.4px #1f1f1f;
  text-shadow: none;
  font-size: 71.3px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-figma-page .contactf-intro p,
.contact-figma-page .contactf-office p,
.contact-figma-page .contactf-office address {
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  overflow-wrap: break-word;
}

.contact-figma-page .contactf-intro p {
  margin: 30px 0 0;
}

.contact-figma-page .contactf-intro a,
.contact-figma-page .contactf-office a {
  color: #111;
  text-decoration: none;
}

.contact-figma-page .contactf-intro,
.contact-figma-page .contactf-office {
  min-width: 0;
}

.contact-figma-page .contactf-office {
  padding-top: 123px;
}

.contact-figma-page .contactf-office h2,
.contact-figma-page .contactf-form-panel h2,
.contact-figma-page .contactf-awards h2 {
  margin: 0;
  color: #333;
  font-size: 31.1px;
  line-height: 41px;
  font-weight: 700;
}

.contact-figma-page .contactf-office p {
  margin: 30px 0 0;
}

.contact-figma-page .contactf-office h3 {
  margin: 20px 0 8px;
  color: #333;
  font-size: 13.9px;
  line-height: 18px;
  font-weight: 700;
}

.contact-figma-page .contactf-office address {
  margin: 0 0 10px 22px;
  font-style: normal;
}

.contact-figma-page .contactf-office span {
  color: #030304;
}

.contact-figma-page .contactf-tabs {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  gap: 50px;
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.contact-figma-page .contactf-form-wrap {
  width: 484px;
  margin-left: calc(50% - 472px);
  margin-top: 267px;
}

.contact-figma-page .contactf-form-panel h2 {
  margin-bottom: 39px;
}

.contact-figma-page .contactf-form {
  display: grid;
  grid-template-columns: 227px 227px;
  column-gap: 30px;
  row-gap: 32px;
}

.contact-figma-page .contactf-form .field {
  display: grid;
  gap: 10px;
}

.contact-figma-page .contactf-form .wide,
.contact-figma-page .contactf-form .tall {
  grid-column: 1 / -1;
}

.contact-figma-page .contactf-form label {
  color: #030304;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
}

.contact-figma-page .contactf-form input,
.contact-figma-page .contactf-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .85);
  border-radius: 0;
  background: transparent;
  color: #111;
  font: 400 14px/22px "Open Sans", Arial, sans-serif;
  outline: none;
}

.contact-figma-page .contactf-form input {
  height: 26px;
}

.contact-figma-page .contactf-form textarea {
  height: 132px;
  resize: vertical;
}

.contact-figma-page .contactf-form textarea::placeholder {
  color: #757575;
}

.contact-figma-page .contactf-form button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 54px;
  height: 30px;
  margin-top: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #212529;
  font: 700 15px/22.5px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}

.contact-figma-page .contactf-awards {
  min-height: 132px;
  padding-top: 44px;
  background: #fff;
}

.contact-figma-page .contactf-awards-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 950px);
  column-gap: 0;
  align-items: start;
}

.contact-figma-page .contactf-awards-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.contact-figma-page .contactf-awards article {
  display: grid;
  grid-template-columns: 33px minmax(0, 270px);
  gap: 16px;
  align-items: start;
}

.contact-figma-page .contactf-awards img {
  width: 33px;
  height: 33px;
}

.contact-figma-page .contactf-awards p {
  margin: 0;
  color: #333;
  font: 400 14.8px/18px "Inter", Arial, sans-serif;
}

.contact-figma-page .footer {
  position: relative;
  background: #000;
}

.contact-figma-page .contactf-footer-main {
  width: min(1110px, calc(100% - 48px));
  min-height: 320px;
  margin: 0 auto;
  padding: 58px 0 56px;
  display: grid;
  grid-template-columns: 190px 120px 213px 120px 145px;
  gap: 70px;
  align-items: start;
}

.contact-figma-page .footer-logo img {
  width: 120px;
  height: auto;
}

.contact-figma-page .footer nav {
  display: grid;
  gap: 10px;
}

.contact-figma-page .footer strong,
.contact-figma-page .contactf-footer-follow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.contact-figma-page .footer nav a {
  color: #fff;
  text-decoration: none;
  font: 400 13px/20px "Open Sans", Arial, sans-serif;
}

.contact-figma-page .contactf-footer-follow .linkedin {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.contact-figma-page .contactf-footer-bottom {
  height: 52px;
  background: #fff;
}

.contact-figma-page .contactf-footer-bottom .contactf-frame {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-figma-page .footer p {
  margin: 0;
  color: #111;
  font: 400 12px/18px "Open Sans", Arial, sans-serif;
}

.contact-figma-page .footer p a {
  color: #111;
}

@media (max-width: 1180px) {
  .contact-figma-page .contactf-frame {
    width: min(960px, calc(100% - 48px));
  }

  .contact-figma-page .contactf-hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 90px;
  }

  .contact-figma-page .contactf-form-wrap {
    margin-left: calc(50% - 456px);
  }

  .contact-figma-page .contactf-footer-main {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .contact-figma-page .contactf-frame {
    width: calc(100% - 84px);
  }

  .contact-figma-page .contactf-hero {
    min-height: auto;
    padding: 150px 0 78px;
  }

  .contact-figma-page .contactf-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-figma-page .contactf-intro h1 {
    max-width: 310px;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
  }

  .contact-figma-page .contactf-office {
    padding-top: 0;
  }

  .contact-figma-page .contactf-intro,
  .contact-figma-page .contactf-office,
  .contact-figma-page .contactf-intro p,
  .contact-figma-page .contactf-office p,
  .contact-figma-page .contactf-office address {
    width: 100%;
    max-width: 285px;
  }

  .contact-figma-page .contactf-form-wrap {
    width: calc(100% - 84px);
    margin: 64px auto 0;
  }

  .contact-figma-page .contactf-form {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .contact-figma-page .contactf-form .wide,
  .contact-figma-page .contactf-form .tall,
  .contact-figma-page .contactf-form button {
    grid-column: auto;
  }

  .contact-figma-page .contactf-form button {
    justify-self: start;
  }

  .contact-figma-page .contactf-awards {
    padding: 42px 0;
  }

  .contact-figma-page .contactf-awards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-figma-page .contactf-awards-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-figma-page .contactf-awards article {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .contact-figma-page .contactf-awards p {
    max-width: 280px;
    font-size: 12px;
    line-height: 16px;
    overflow-wrap: break-word;
  }

  .contact-figma-page .contactf-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px;
  }

  .contact-figma-page .contactf-footer-bottom {
    height: auto;
  }

  .contact-figma-page .contactf-footer-bottom .contactf-frame {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}
