:root {

  --navy: #091522;
  --navy-2: #0e1e30;
  --navy-3: #162c43;

  --cream: #f5f3ed;
  --white: #ffffff;

  --ink: #17212c;
  --muted: #697580;

  --gold: #c6a66a;
  --gold-light: #ddc58f;

  --line: #dce1e4;
  --dark-line: rgba(255,255,255,.12);

  --green: #56846c;

  --container: 1200px;

  --ease:
    cubic-bezier(.22,1,.36,1);
}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--cream);

  color: var(--ink);

  font-family:
    "DM Sans",
    system-ui,
    sans-serif;

  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =====================================================
   GLOBAL
===================================================== */

.container {
  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  margin-inline: auto;
}

.section {
  padding: 130px 0;
}

.section-white {
  background: var(--white);
}

h1,
h2,
h3 {
  margin-top: 0;

  font-family:
    "Manrope",
    sans-serif;

  letter-spacing: -.05em;
}

h1 {
  font-size:
    clamp(3.6rem, 7vw, 7.4rem);

  line-height: .93;

  font-weight: 700;
}

h2 {
  font-size:
    clamp(2.6rem, 5vw, 5rem);

  line-height: .98;

  font-weight: 700;
}

h3 {
  font-size: 1.6rem;

  line-height: 1.1;
}

.eyebrow {
  margin: 28px 0;

  color: var(--gold);

  font-size: .68rem;

  font-weight: 700;

  letter-spacing: .18em;
}

.section-marker {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 30px;

  color: var(--gold);

  font-size: .62rem;

  font-weight: 700;

  letter-spacing: .15em;
}

.section-marker span:first-child {
  display: grid;

  width: 30px;
  height: 30px;

  place-items: center;

  border:
    1px solid currentColor;

  font-size: .58rem;
}

.section-marker.light {
  color: var(--gold-light);
}

.section-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, .65fr);

  gap: 90px;

  align-items: end;

  margin-bottom: 85px;
}

.section-header h2 {
  margin-bottom: 0;
}

.section-header > p {
  max-width: 440px;

  margin: 0;

  color: var(--muted);

  font-size: 1rem;
}

.section-header.compact {
  margin-bottom: 65px;
}


/* =====================================================
   BUTTONS
===================================================== */

.button {
  min-height: 54px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  padding: 0 23px;

  border: 1px solid transparent;

  font-size: .75rem;

  font-weight: 700;

  transition:
    transform .3s var(--ease),
    background .3s ease,
    border-color .3s ease,
    color .3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-gold {
  background: var(--gold);

  color: var(--navy);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-outline {
  border-color:
    rgba(255,255,255,.22);

  color: white;
}

.button-outline:hover {
  border-color:
    rgba(255,255,255,.6);
}


/* =====================================================
   PROGRESS
===================================================== */

.scroll-progress {
  position: fixed;

  z-index: 2000;

  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background:
    rgba(255,255,255,.08);
}

.scroll-progress span {
  display: block;

  width: 0;
  height: 100%;

  background: var(--gold);
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: fixed;

  z-index: 1000;

  top: 0;
  left: 0;

  width: 100%;

  background:
    rgba(9,21,34,.78);

  border-bottom:
    1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(18px);

  transition:
    background .3s ease,
    box-shadow .3s ease;
}

.site-header.scrolled {
  background:
    rgba(9,21,34,.96);

  box-shadow:
    0 12px 40px rgba(0,0,0,.18);
}

.nav-wrapper {
  min-height: 84px;

  display: flex;

  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: white;
}

.brand-symbol {
  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  border:
    1px solid rgba(200,166,106,.8);

  color: var(--gold-light);

  font-size: .68rem;

  font-weight: 800;
}

.brand-copy {
  display: flex;

  flex-direction: column;

  line-height: 1;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;

  font-size: .75rem;

  letter-spacing: .08em;
}

.brand-copy small {
  margin-top: 5px;

  color: var(--gold);

  font-size: .55rem;

  letter-spacing: .15em;
}

.main-nav {
  display: flex;

  align-items: center;

  gap: 30px;
}

.main-nav a {
  position: relative;

  color:
    rgba(255,255,255,.62);

  font-size: .75rem;

  font-weight: 600;

  transition:
    color .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
}

.main-nav a:not(.nav-button)::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: -8px;
  left: 0;

  height: 1px;

  background: var(--gold);

  transform:
    scaleX(0);

  transform-origin: right;

  transition:
    transform .35s var(--ease);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform:
    scaleX(1);

  transform-origin: left;
}

.main-nav .nav-button {
  padding: 10px 17px;

  border:
    1px solid rgba(200,166,106,.7);

  color: var(--gold-light);
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 8px;

  border: 0;

  background: transparent;
}

.menu-toggle span {
  display: block;

  width: 100%;
  height: 1px;

  margin: 6px 0;

  background: white;

  transition:
    transform .3s ease,
    opacity .3s ease;
}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  background: var(--navy);

  color: white;
}

.hero-pattern {
  position: absolute;

  inset: 0;

  opacity: .1;

  background-image:
    linear-gradient(
      45deg,
      transparent 44%,
      var(--gold) 45%,
      var(--gold) 55%,
      transparent 56%
    );

  background-size: 46px 46px;

  mask-image:
    linear-gradient(
      90deg,
      transparent,
      black 70%
    );
}

.hero-grid {
  position: relative;

  flex: 1;

  display: grid;

  grid-template-columns:
    1.05fr .95fr;

  gap: 70px;

  align-items: center;

  padding-top: 145px;
  padding-bottom: 110px;
}

.hero-content {
  position: relative;

  z-index: 2;
}

.hero h1 {
  max-width: 850px;

  margin-bottom: 35px;
}

.hero h1 em {
  display: block;

  color: var(--gold-light);

  font-style: normal;
}

.hero-description {
  max-width: 620px;

  color:
    rgba(255,255,255,.58);

  font-size:
    clamp(1rem, 1.4vw, 1.12rem);
}

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 42px;
}

.hero-facts {
  display: flex;

  flex-wrap: wrap;

  gap: 40px;

  margin-top: 70px;

  padding-top: 24px;

  border-top:
    1px solid rgba(255,255,255,.12);
}

.hero-facts div {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.hero-facts strong {
  color: var(--gold-light);

  font-family: "Manrope", sans-serif;

  font-size: 1.05rem;
}

.hero-facts span {
  max-width: 140px;

  color:
    rgba(255,255,255,.4);

  font-size: .63rem;

  line-height: 1.4;
}


/* =====================================================
   HERO ART
===================================================== */

.hero-art {
  position: relative;

  min-height: 600px;
}

.art-ring {
  position: absolute;

  top: 50%;
  left: 50%;

  border:
    1px solid rgba(200,166,106,.18);

  border-radius: 50%;
}

.ring-large {
  width: 560px;
  height: 560px;

  transform:
    translate(-50%,-50%)
    rotate(-22deg);

  border-left-color:
    rgba(200,166,106,.7);
}

.ring-small {
  width: 390px;
  height: 390px;

  transform:
    translate(-50%,-50%)
    rotate(28deg);

  border-right-color:
    rgba(200,166,106,.6);
}

.report-sheet {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 360px;
  height: 455px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 32px;

  transform:
    translate(-50%,-50%)
    rotate(-5deg);

  background:
    linear-gradient(
      145deg,
      #19314c,
      #0b1727
    );

  border:
    1px solid rgba(255,255,255,.13);

  box-shadow:
    0 45px 100px rgba(0,0,0,.38);
}

.report-header,
.report-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  color: var(--gold-light);

  font-size: .6rem;

  font-weight: 700;

  letter-spacing: .13em;
}

.report-title {
  font-family: "Manrope", sans-serif;

  font-size: 2.3rem;

  line-height: .95;

  font-weight: 700;

  letter-spacing: -.05em;
}

.report-chart {
  height: 190px;

  display: flex;

  align-items: end;
  justify-content: center;

  gap: 13px;

  border-bottom:
    1px solid rgba(255,255,255,.12);
}

.report-chart span {
  width: 30px;
  height: var(--h);

  background:
    linear-gradient(
      to top,
      var(--gold),
      rgba(200,166,106,.18)
    );
}

.report-status {
  display: flex;

  align-items: center;

  gap: 7px;

  color:
    rgba(255,255,255,.65);
}

.report-status i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #74a98b;

  box-shadow:
    0 0 0 4px rgba(116,169,139,.1);
}

.art-label {
  position: absolute;

  width: 125px;

  padding: 15px;

  background:
    rgba(247,245,239,.96);

  color: var(--navy);

  font-size: .67rem;

  line-height: 1.35;

  box-shadow:
    0 20px 50px rgba(0,0,0,.2);
}

.art-label small {
  display: block;

  margin-bottom: 7px;

  color: var(--gold);

  font-size: .55rem;

  font-weight: 800;

  letter-spacing: .12em;
}

.label-top {
  top: 15%;
  right: 0;
}

.label-bottom {
  bottom: 11%;
  left: 0;
}

.art-cross {
  position: absolute;

  width: 55px;
  height: 55px;
}

.art-cross::before,
.art-cross::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 1px;

  background: var(--gold);

  transform:
    translate(-50%,-50%);
}

.art-cross::after {
  transform:
    translate(-50%,-50%)
    rotate(90deg);
}

.cross-one {
  top: 9%;
  left: 13%;
}

.cross-two {
  right: 10%;
  bottom: 9%;
}

.malaysia-motif {
  position: absolute;

  right: 4%;
  bottom: 0;

  width: 100px;
  height: 100px;

  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 8px;

  opacity: .3;
}

.malaysia-motif span {
  border:
    1px solid var(--gold);

  transform:
    rotate(45deg);
}


/* =====================================================
   HERO FOOTER
===================================================== */

.hero-footer-line {
  border-top:
    1px solid rgba(255,255,255,.1);
}

.hero-footer-inner {
  min-height: 60px;

  display: flex;

  align-items: center;

  gap: 20px;

  color:
    rgba(255,255,255,.35);

  font-size: .58rem;

  font-weight: 700;

  letter-spacing: .15em;
}

.hero-footer-inner div {
  width: 70px;
  height: 1px;

  background: var(--gold);
}


/* =====================================================
   ABOUT
===================================================== */

.about-layout {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 100px;
}

.statement-card {
  position: relative;

  min-height: 400px;

  display: flex;

  align-items: flex-end;

  padding: 45px;

  overflow: hidden;

  background: var(--navy);

  color: white;
}

.statement-number {
  position: absolute;

  top: -40px;
  right: 15px;

  color:
    rgba(255,255,255,.04);

  font-family: "Manrope", sans-serif;

  font-size: 16rem;

  line-height: 1;
}

.statement-card p {
  position: relative;

  max-width: 500px;

  margin: 0;

  font-family: "Manrope", sans-serif;

  font-size: 1.45rem;

  line-height: 1.3;
}

.statement-pattern {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 180px;
  height: 180px;

  opacity: .12;

  background:
    repeating-linear-gradient(
      45deg,
      var(--gold) 0 1px,
      transparent 1px 16px
    );
}

.about-details {
  color: var(--muted);
}

.about-details p {
  max-width: 570px;
}

.office-card {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 50px;

  padding-top: 25px;

  border-top:
    1px solid var(--line);
}

.office-icon {
  width: 48px;
  height: 48px;

  display: grid;

  flex: 0 0 auto;

  place-items: center;

  background: var(--navy);

  color: var(--gold-light);

  font-size: .68rem;

  font-weight: 800;
}

.office-card > div:last-child {
  display: flex;

  flex-direction: column;
}

.office-card small,
.contact-block small {
  margin-bottom: 6px;

  color: var(--gold);

  font-size: .58rem;

  font-weight: 800;

  letter-spacing: .13em;
}

.office-card strong {
  color: var(--ink);

  font-size: .9rem;
}

.office-card span {
  font-size: .78rem;
}


/* =====================================================
   WHY
===================================================== */

.why-section {
  background: #ebe9e3;
}

.principles-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  border-top:
    1px solid #cfd5d9;

  border-left:
    1px solid #cfd5d9;
}

.principle {
  min-height: 320px;

  padding: 28px;

  border-right:
    1px solid #cfd5d9;

  border-bottom:
    1px solid #cfd5d9;

  transition:
    background .35s ease,
    color .35s ease;
}

.principle > span {
  color: var(--gold);

  font-size: .62rem;

  font-weight: 800;
}

.principle h3 {
  margin-top: 80px;

  font-size: 1.35rem;
}

.principle p {
  color: var(--muted);

  font-size: .8rem;
}

.principle:hover {
  background: var(--navy);

  color: white;
}

.principle:hover p {
  color:
    rgba(255,255,255,.5);
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
  background: var(--white);
}

.service-interface {
  display: grid;

  grid-template-columns:
    .7fr 1.3fr;

  min-height: 550px;

  border:
    1px solid var(--line);
}

.service-navigation {
  border-right:
    1px solid var(--line);
}

.service-tab {
  width: 100%;

  min-height: 135px;

  display: grid;

  grid-template-columns: 45px 1fr 30px;

  gap: 15px;

  align-items: center;

  padding: 25px;

  border: 0;

  border-bottom:
    1px solid var(--line);

  background: transparent;

  text-align: left;

  color: var(--muted);

  transition:
    background .35s ease,
    color .35s ease;
}

.service-tab span {
  align-self: start;

  color: var(--gold);

  font-size: .62rem;

  font-weight: 800;
}

.service-tab strong {
  font-family: "Manrope", sans-serif;

  font-size: 1rem;
}

.service-tab i {
  color: var(--gold);

  font-size: 1.2rem;

  font-style: normal;

  transition:
    transform .35s var(--ease);
}

.service-tab:hover,
.service-tab.active {
  background: var(--navy);

  color: white;
}

.service-tab.active i {
  transform:
    translate(4px,-4px);
}

.service-content {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #f8f7f3,
      #eeece6
    );
}

.service-panel {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 65px;

  opacity: 0;

  visibility: hidden;

  transform:
    translateY(20px);

  transition:
    opacity .4s ease,
    transform .4s var(--ease),
    visibility .4s ease;
}

.service-panel.active {
  opacity: 1;

  visibility: visible;

  transform:
    translateY(0);
}

.service-kicker {
  margin-bottom: 18px;

  color: var(--gold);

  font-size: .6rem;

  font-weight: 800;

  letter-spacing: .14em;
}

.service-panel h3 {
  margin-bottom: 20px;

  font-size: 3rem;
}

.service-panel > p:not(.service-kicker) {
  max-width: 620px;

  color: var(--muted);
}

.service-points {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 35px;
}

.service-points span {
  padding: 9px 12px;

  border:
    1px solid #d5d9dc;

  color: var(--muted);

  font-size: .64rem;
}


/* =====================================================
   APPROACH
===================================================== */

.approach-section {
  background: var(--navy);

  color: white;
}

.approach-layout {
  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 130px;
}

.approach-intro h2 {
  margin-bottom: 35px;
}

.approach-intro > p:last-child {
  max-width: 460px;

  color:
    rgba(255,255,255,.53);
}

.methodology {
  position: relative;
}

.method-line {
  position: absolute;

  top: 35px;
  bottom: 35px;
  left: 20px;

  width: 1px;

  background:
    rgba(255,255,255,.12);
}

.method-line span {
  position: absolute;

  top: 0;
  left: 0;

  width: 1px;
  height: 0;

  background: var(--gold);

  transition:
    height 1s var(--ease);
}

.method-step {
  position: relative;

  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 25px;

  padding: 25px 0;

  opacity: .4;

  transition:
    opacity .35s ease;
}

.method-step.active {
  opacity: 1;
}

.method-index {
  position: relative;

  z-index: 2;

  width: 41px;
  height: 41px;

  display: grid;

  place-items: center;

  border:
    1px solid rgba(255,255,255,.15);

  background: var(--navy);

  color: var(--gold);

  font-size: .62rem;

  font-weight: 800;
}

.method-step h3 {
  margin-bottom: 5px;

  font-size: 1.1rem;

  letter-spacing: -.02em;
}

.method-step p {
  margin: 0;

  color:
    rgba(255,255,255,.45);

  font-size: .8rem;
}


/* =====================================================
   STANDARDS
===================================================== */

.standards-section {
  padding: 100px 0;

  background: var(--cream);
}

.standards-layout {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 100px;

  align-items: start;
}

.standards-layout h2 {
  max-width: 600px;
}

.standards-copy > p {
  max-width: 530px;

  color: var(--muted);
}

.standards-list {
  margin-top: 40px;

  border-top:
    1px solid var(--line);
}

.standards-list span {
  display: block;

  padding: 15px 0;

  border-bottom:
    1px solid var(--line);

  color: var(--ink);

  font-size: .76rem;
}


/* =====================================================
   INDUSTRIES
===================================================== */

.industries-section {
  background: white;
}

.industry-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  border-top:
    1px solid var(--line);

  border-left:
    1px solid var(--line);
}

.industry-grid > div {
  min-height: 145px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 23px;

  border-right:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  font-family: "Manrope", sans-serif;

  font-size: .95rem;

  font-weight: 600;

  transition:
    background .3s ease,
    color .3s ease;
}

.industry-grid span {
  color: var(--gold);

  font-size: .6rem;

  font-weight: 800;
}

.industry-grid > div:hover {
  background: var(--navy);

  color: white;
}


/* =====================================================
   LEADERSHIP
===================================================== */

.leadership-section {
  background: #e9e7e1;
}

.leadership-layout {
  display: grid;

  grid-template-columns:
    .75fr 1.25fr;

  gap: 110px;

  align-items: center;
}

.leader-image {
  position: relative;

  min-height: 560px;

  background:
    linear-gradient(
      145deg,
      #18304a,
      #091522
    );

  overflow: hidden;
}

.leader-placeholder {
  position: absolute;

  inset: 0;

  display: grid;

  place-items: center;
}

.leader-placeholder::before {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  border:
    1px solid rgba(200,166,106,.45);

  border-radius: 50%;
}

.leader-placeholder span {
  color:
    rgba(255,255,255,.08);

  font-family: "Manrope", sans-serif;

  font-size: 10rem;

  font-weight: 800;
}

.leader-caption {
  position: absolute;

  right: 25px;
  bottom: 25px;
  left: 25px;

  display: flex;

  flex-direction: column;
}

.leader-caption small {
  margin-bottom: 5px;

  color: var(--gold);

  font-size: .58rem;

  font-weight: 800;

  letter-spacing: .13em;
}

.leader-caption strong {
  color: white;

  font-family: "Manrope", sans-serif;

  font-size: 1rem;
}

.leader-content h2 {
  margin-bottom: 12px;
}

.leader-role {
  color: var(--gold);

  font-weight: 700;
}

.leader-content > p:not(.leader-role) {
  max-width: 650px;

  color: var(--muted);
}

.credentials {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 1px;

  margin-top: 45px;

  background: var(--line);

  border:
    1px solid var(--line);
}

.credentials div {
  min-height: 100px;

  display: flex;

  flex-direction: column;

  gap: 5px;

  padding: 20px;

  background: #f2f0eb;
}

.credentials strong {
  color: var(--navy);

  font-family: "Manrope", sans-serif;

  font-size: .95rem;
}

.credentials span {
  color: var(--muted);

  font-size: .68rem;

  line-height: 1.45;
}


/* =====================================================
   TAX
===================================================== */

.tax-section {
  padding: 115px 0;

  background: var(--navy);

  color: white;
}

.tax-layout {
  display: grid;

  grid-template-columns:
    .85fr 1.15fr;

  gap: 120px;
}

.tax-layout h2 {
  margin-bottom: 30px;
}

.tax-layout > div:first-child > p:last-child {
  max-width: 430px;

  color:
    rgba(255,255,255,.52);
}

.tax-list {
  border-top:
    1px solid rgba(255,255,255,.13);
}

.tax-list div {
  display: grid;

  grid-template-columns:
    50px 1fr;

  gap: 20px;

  padding: 19px 0;

  border-bottom:
    1px solid rgba(255,255,255,.13);

  font-family: "Manrope", sans-serif;

  font-size: .92rem;
}

.tax-list span {
  color: var(--gold);

  font-size: .6rem;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
  background: var(--navy-2);

  color: white;
}

.contact-layout {
  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 100px;
}

.contact-copy h2 {
  margin-bottom: 30px;
}

.contact-copy > p {
  max-width: 430px;

  color:
    rgba(255,255,255,.5);
}

.contact-block {
  margin-top: 45px;
}

.contact-block p {
  color:
    rgba(255,255,255,.68);

  font-size: .82rem;
}

.contact-form {
  padding: 45px;

  background: #f4f2ed;

  color: var(--ink);

  box-shadow:
    0 35px 90px rgba(0,0,0,.22);
}

.form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 20px;
}

.contact-form label {
  display: block;

  margin-bottom: 22px;

  font-size: .68rem;

  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  margin-top: 8px;

  padding: 14px;

  border:
    1px solid #d4d9dc;

  outline: none;

  background: white;

  color: var(--ink);

  font-size: .8rem;

  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);

  box-shadow:
    0 0 0 3px rgba(198,166,106,.12);
}

.submit-button {
  border: 0;
}

.form-status {
  min-height: 22px;

  margin: 15px 0 0;

  color: var(--green);

  font-size: .7rem;
}

.form-disclaimer {
  margin: 12px 0 0;

  color: var(--muted);

  font-size: .62rem;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
  padding-top: 75px;

  background: #06101b;

  color: white;
}

.footer-main {
  display: grid;

  grid-template-columns:
    1fr .5fr .8fr;

  gap: 80px;

  padding-bottom: 60px;
}

.footer-main > div:first-child > p {
  max-width: 330px;

  margin-top: 25px;

  color:
    rgba(255,255,255,.38);

  font-size: .75rem;
}

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 9px;
}

.footer-column small {
  margin-bottom: 12px;

  color: var(--gold);

  font-size: .58rem;

  font-weight: 800;

  letter-spacing: .13em;
}

.footer-column a,
.footer-column span {
  color:
    rgba(255,255,255,.45);

  font-size: .7rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  min-height: 70px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border-top:
    1px solid rgba(255,255,255,.08);

  color:
    rgba(255,255,255,.28);

  font-size: .58rem;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

  .hero-grid {
    grid-template-columns: 1fr;

    padding-top: 150px;
  }

  .hero-art {
    min-height: 500px;
  }

  .section-header {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .principles-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .about-layout,
  .approach-layout,
  .standards-layout,
  .leadership-layout,
  .tax-layout,
  .contact-layout {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .service-interface {
    grid-template-columns: 1fr;
  }

  .service-navigation {
    display: grid;

    grid-template-columns:
      repeat(4,1fr);

    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }

  .service-tab {
    min-height: 100px;

    grid-template-columns:
      30px 1fr;

    padding: 18px;
  }

  .service-tab i {
    display: none;
  }

  .service-content {
    min-height: 450px;
  }

  .footer-main {
    grid-template-columns:
      1fr 1fr;
  }
}


@media (max-width: 760px) {

  .container {
    width:
      min(
        calc(100% - 32px),
        var(--container)
      );
  }

  .section {
    padding: 85px 0;
  }

  h1 {
    font-size:
      clamp(3.1rem, 15vw, 5rem);
  }

  h2 {
    font-size:
      clamp(2.35rem, 12vw, 3.7rem);
  }


  /* Navigation */

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;

    top: 84px;
    left: 16px;
    right: 16px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px;

    background: var(--navy);

    border:
      1px solid rgba(255,255,255,.1);

    box-shadow:
      0 25px 60px rgba(0,0,0,.3);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 15px;

    border-bottom:
      1px solid rgba(255,255,255,.07);
  }

  .main-nav .nav-button {
    margin-top: 8px;

    text-align: center;

    border:
      1px solid var(--gold);
  }


  /* Hero */

  .hero-grid {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .hero-art {
    min-height: 380px;
  }

  .ring-large {
    width: 350px;
    height: 350px;
  }

  .ring-small {
    width: 260px;
    height: 260px;
  }

  .report-sheet {
    width: 245px;
    height: 315px;

    padding: 22px;
  }

  .report-title {
    font-size: 1.65rem;
  }

  .report-chart {
    height: 130px;

    gap: 8px;
  }

  .report-chart span {
    width: 20px;
  }

  .art-label {
    width: 105px;

    padding: 11px;

    font-size: .6rem;
  }

  .hero-facts {
    gap: 20px;

    margin-top: 45px;
  }

  .hero-facts div {
    width:
      calc(50% - 10px);
  }


  /* About */

  .statement-card {
    min-height: 330px;

    padding: 30px;
  }

  .statement-card p {
    font-size: 1.2rem;
  }


  /* Principles */

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 240px;
  }

  .principle h3 {
    margin-top: 55px;
  }


  /* Services */

  .service-navigation {
    display: block;
  }

  .service-tab {
    min-height: 78px;

    grid-template-columns:
      35px 1fr 20px;

    border-bottom:
      1px solid var(--line);
  }

  .service-tab i {
    display: block;
  }

  .service-content {
    min-height: 500px;
  }

  .service-panel {
    padding: 35px 25px;
  }

  .service-panel h3 {
    font-size: 2.4rem;
  }


  /* Industries */

  .industry-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .industry-grid > div {
    min-height: 120px;

    padding: 18px;

    font-size: .8rem;
  }


  /* Leadership */

  .leader-image {
    min-height: 380px;
  }

  .leader-placeholder span {
    font-size: 7rem;
  }

  .credentials {
    grid-template-columns: 1fr;
  }


  /* Contact */

  .form-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .contact-form {
    padding: 27px;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .footer-bottom {
    min-height: auto;

    padding: 20px 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
  }

}


@media (max-width: 430px) {

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts div {
    width: 100%;
  }

  .hero-art {
    min-height: 330px;
  }

  .art-label {
    width: 90px;

    font-size: .56rem;
  }

  .label-top {
    right: -4px;
  }

  .label-bottom {
    left: -4px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

}