:root {
  --navy: #0b1524;
  --navy-2: #111e31;
  --charcoal: #252525;
  --muted: #6f716c;
  --sand: #d6c3a1;
  --bronze: #a9824a;
  --bronze-dark: #7c5c31;
  --off-white: #f8f4ec;
  --stone: #e9e5dc;
  --line: rgba(19, 29, 43, 0.14);
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(11, 21, 36, 0.18);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--off-white);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 21, 36, 0.88), rgba(11, 21, 36, 0.28));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(11, 21, 36, 0.96);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--sand);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--sand);
}

.language-switch,
.nav-toggle {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-switch {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 11px 15px;
  font-size: 13px;
}

.button-bronze {
  color: var(--white);
  background: var(--bronze);
  box-shadow: 0 14px 35px rgba(124, 92, 49, 0.24);
}

.button-bronze:hover {
  background: var(--bronze-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button-navy,
.button-outline {
  color: var(--navy);
  border-color: rgba(11, 21, 36, 0.28);
  background: transparent;
}

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

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

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=86");
  background-position: center;
  background-size: cover;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 21, 36, 0.94) 0%, rgba(11, 21, 36, 0.75) 42%, rgba(11, 21, 36, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 21, 36, 0.9) 0%, rgba(11, 21, 36, 0.1) 36%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 190px 0 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow {
  color: var(--sand);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 920px;
  font-size: clamp(54px, 8vw, 108px);
}

h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 26px;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 700px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-copy p + p {
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.private-note {
  margin-top: 20px;
  padding-inline-start: 18px;
  color: rgba(255, 255, 255, 0.72);
  border-inline-start: 2px solid var(--sand);
  font-size: 14px;
}

.principles {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principles-grid div {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 24px;
  border-inline-start: 1px solid var(--line);
  font-weight: 700;
}

.principles-grid div:last-child {
  border-inline-end: 1px solid var(--line);
}

.principles svg,
.service-card svg,
.contact-details svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--bronze);
  stroke-width: 1.7;
}

.section {
  padding: clamp(76px, 11vw, 132px) 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 46px;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.split-heading h2 {
  max-width: none;
}

.split-heading p:last-child,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 315px;
  padding: 28px;
  border-inline-start: 1px solid var(--line);
  transition: background 180ms ease;
}

.service-card:first-child {
  border-inline-start: 0;
}

.service-card:hover {
  background: #fbfaf6;
}

.service-card h3 {
  margin-top: 38px;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.dark-section {
  color: var(--white);
  background: var(--navy);
}

.dark-section .split-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
}

.sector-grid span {
  min-height: 132px;
  display: flex;
  align-items: end;
  padding: 20px;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-inline-end: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  transition: background 180ms ease, color 180ms ease;
}

.sector-grid span:hover {
  color: var(--white);
  background: rgba(214, 195, 161, 0.08);
}

.criteria-section {
  background: var(--white);
}

.criteria-layout,
.opportunities-layout,
.about-layout,
.transparency-layout,
.contact-layout,
.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.criteria-layout .lead,
.opportunities-layout .lead,
.contact-layout .lead {
  margin-top: 24px;
}

.criteria-list {
  border-top: 1px solid var(--line);
}

.criteria-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.criteria-list span {
  color: var(--bronze);
  font-weight: 800;
}

.criteria-list p {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
}

.image-band {
  padding-top: 0;
  background: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.media-grid figure {
  margin: 0;
  background: var(--navy);
  overflow: hidden;
}

.media-grid img {
  height: 420px;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.75);
  transition: transform 420ms ease, opacity 220ms ease;
}

.media-grid figure:hover img {
  opacity: 0.96;
  transform: scale(1.025);
}

.media-grid figcaption {
  min-height: 86px;
  padding: 22px;
  color: var(--white);
  font-weight: 700;
}

.process-section {
  background: #f0ece4;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(11, 21, 36, 0.24);
}

.process-step {
  position: relative;
  min-height: 290px;
  padding: 34px 24px 0 0;
  border-inline-end: 1px solid rgba(11, 21, 36, 0.24);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 58px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.process-step h3 {
  font-size: 31px;
}

.process-step p {
  margin-top: 14px;
  color: var(--muted);
}

.opportunities-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 21, 36, 0.98), rgba(11, 21, 36, 0.92)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.opportunities-section .lead {
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 22px;
  color: inherit;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--bronze);
}

.check-list.compact {
  grid-template-columns: 1fr;
  color: var(--muted);
}

.document-stack {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.brief-card {
  position: absolute;
  inset: 52px 40px auto auto;
  width: min(390px, 90%);
  min-height: 390px;
  padding: 34px;
  background: rgba(248, 244, 236, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  filter: blur(1.3px);
  opacity: 0.7;
  transform: rotate(3deg);
}

.brief-card:nth-child(2) {
  inset: 82px auto auto 42px;
  transform: rotate(-6deg);
  opacity: 0.36;
}

.brief-card:nth-child(3) {
  inset: 0 92px auto auto;
  transform: rotate(0deg);
  opacity: 0.58;
}

.brief-card span {
  display: block;
  height: 12px;
  margin-bottom: 22px;
  background: rgba(11, 21, 36, 0.2);
}

.brief-card span:first-child {
  width: 48%;
  height: 18px;
  background: rgba(169, 130, 74, 0.42);
}

.brief-card span:nth-child(2) {
  width: 88%;
}

.brief-card span:nth-child(3) {
  width: 74%;
}

.brief-card span:nth-child(4) {
  width: 63%;
}

.investor-section,
.about-section {
  background: var(--off-white);
}

.two-column p:not(.eyebrow) + p {
  margin-top: 16px;
}

.two-column .button {
  margin-top: 28px;
}

.tag-panel,
.compliance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.tag-panel span,
.compliance-grid span {
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 700;
}

.owners-section {
  background: var(--white);
}

.owners-layout {
  max-width: 900px;
}

.about-layout p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.transparency-section {
  background: #e7e4dd;
}

.disclaimer {
  margin-top: 28px;
  padding: 22px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.58);
  border-inline-start: 3px solid var(--bronze);
}

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

.contact-section .lead {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details p {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--charcoal);
  background: var(--off-white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.26);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(11, 21, 36, 0.18);
  padding: 11px 12px;
  color: var(--charcoal);
  background: var(--white);
  font: 500 15px var(--sans);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(169, 130, 74, 0.14);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  color: var(--bronze-dark);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #07101c;
}

.footer-grid {
  display: block;
}

.site-footer .brand {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 520px;
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--sand);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[dir="rtl"] body {
  font-family: var(--sans);
}

[dir="rtl"] .site-header {
  grid-template-columns: auto 1fr auto;
}

[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(11, 21, 36, 0.94) 0%, rgba(11, 21, 36, 0.75) 42%, rgba(11, 21, 36, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 21, 36, 0.9) 0%, rgba(11, 21, 36, 0.1) 36%);
}

[dir="rtl"] .main-nav,
[dir="rtl"] .header-actions,
[dir="rtl"] .hero-actions,
[dir="rtl"] .contact-details p {
  flex-direction: row-reverse;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    justify-content: flex-start;
    background: rgba(11, 21, 36, 0.98);
  }

  .main-nav {
    top: 86px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 16px;
  }

  .header-actions {
    top: 430px;
    padding: 0 22px 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    display: flex;
  }

  .principles-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-card:nth-child(odd) {
    border-inline-start: 0;
  }

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

  .split-heading,
  .criteria-layout,
  .opportunities-layout,
  .about-layout,
  .transparency-layout,
  .contact-layout,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .media-grid img {
    height: 320px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    transform: none;
  }

  .hero-inner {
    padding-top: 150px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-actions,
  .button,
  .hero-actions .button {
    width: 100%;
  }

  .principles-grid,
  .service-grid,
  .sector-grid,
  .process-grid,
  .check-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .principles-grid div,
  .principles-grid div:last-child,
  .service-card,
  .service-card:first-child,
  .service-card:nth-child(odd) {
    border-inline: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: auto;
  }

  .process-step {
    min-height: auto;
    padding: 26px 0;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(11, 21, 36, 0.24);
  }

  .process-step span {
    margin-bottom: 28px;
  }

  .criteria-list div {
    grid-template-columns: 52px 1fr;
  }

  .criteria-list p {
    font-size: 24px;
  }

  .document-stack {
    min-height: 360px;
  }

  .brief-card {
    inset-inline-end: 12px;
    width: 82%;
    min-height: 300px;
  }

  .brief-card:nth-child(2) {
    inset-inline-start: 10px;
  }

  .contact-form .wide {
    grid-column: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
