:root {
  --navy: #061827;
  --navy2: #0d2a3e;
  --ink: #10283a;
  --gold: #c89b50;
  --gold2: #dfbc78;
  --paper: #fbfaf7;
  --cream: #f5f1e8;
  --muted: #6a7680;
  --line: rgba(16, 40, 58, 0.13);
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
  --header-h: 86px;
  --pad: clamp(20px, 4vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 4px;
}

.skip-link:focus {
  top: calc(12px + env(safe-area-inset-top));
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.section {
  padding: clamp(64px, 8vw, 92px) 0;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7b858c;
}

.eyebrow:after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-left: 18px;
  vertical-align: middle;
}

.eyebrow.light,
.partner-banner .eyebrow {
  color: #fff;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  min-height: 48px;
}

.btn .round {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  transition: 0.25s;
}

.btn:hover .round {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 24, 39, 0.14);
  padding-top: env(safe-area-inset-top);
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 185px;
  max-width: min(185px, 52vw);
  max-height: 64px;
  height: auto;
  object-fit: contain;
  object-position: left;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
  font-size: 13px;
}

.nav a {
  position: relative;
  padding: 28px 0;
  white-space: nowrap;
}

.nav a:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 100%;
  height: 3px;
  background: var(--gold);
  transition: 0.25s;
}

.nav a:hover:after,
.nav a.active:after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.talk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: #fff;
  z-index: 100;
  display: none;
  place-items: center;
  padding: env(safe-area-inset-top) 24px env(safe-area-inset-bottom);
}

.mobile-drawer.open {
  display: grid;
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 36px);
  text-align: center;
}

.mobile-close {
  position: absolute;
  right: 16px;
  top: calc(12px + env(safe-area-inset-top));
  background: none;
  border: 0;
  color: #fff;
  font-size: 42px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  line-height: 1;
}

/* Home */
.hero-home {
  min-height: min(790px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  background: linear-gradient(90deg, #faf7f0 0%, #f5efe4 50%, #dde6eb 100%);
  overflow: hidden;
}

.hero-copy {
  padding: 95px 6vw 70px clamp(28px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw + 1.8rem, 8rem);
  margin: 18px 0 16px;
}

.hero-copy h1 span {
  color: #735b38;
}

.hero-copy .lead {
  font-size: clamp(18px, 2vw, 28px);
  margin: 0 0 14px;
}

.hero-copy .desc {
  font-size: 17px;
  line-height: 1.7;
  max-width: 630px;
  color: #4e5d67;
  margin: 0 0 28px;
}

.hero-media {
  position: relative;
  min-height: 790px;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-words {
  position: absolute;
  right: 28px;
  top: 125px;
  z-index: 2;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.belief {
  background: #fbfaf7;
}

.belief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: 35px;
}

.belief h2 {
  font-size: clamp(2.2rem, 3vw + 1.4rem, 5rem);
  margin: 0;
}

.belief h2 em {
  font-style: normal;
  color: #7a623e;
}

.belief-side {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 50px);
  min-width: 0;
}

.belief-side p {
  font-size: 17px;
  line-height: 1.7;
  color: #4d5b65;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #071724;
}

.approach-card {
  min-height: 470px;
  color: #fff;
  position: relative;
  padding: 250px 28px 38px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.approach-card:last-child {
  border-right: 0;
}

.approach-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 18, 28, 0.05), rgba(3, 18, 28, 0.4) 45%, rgba(3, 18, 28, 0.96));
}

.approach-card > * {
  position: relative;
  z-index: 2;
}

.approach-card .num {
  font-size: 10px;
  letter-spacing: 0.22em;
}

.approach-card h3 {
  font-size: clamp(36px, 4vw, 61px);
  margin: 8px 0 14px;
}

.approach-card.grow h3 {
  color: #dfb778;
}

.approach-card p {
  line-height: 1.55;
  color: #f2f0ec;
  margin: 0;
}

.perspective {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 0.35fr);
  align-items: center;
  min-height: 410px;
  background: #031522;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.perspective-copy {
  padding: 48px 24px 48px clamp(28px, 7vw, 100px);
  z-index: 2;
  min-width: 0;
}

.perspective h2 {
  font-size: clamp(2.4rem, 3.5vw + 1.2rem, 5.1rem);
  margin: 18px 0 10px;
}

.perspective .sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  color: #99a8b1;
}

.perspective-img {
  height: 410px;
  min-width: 0;
}

.perspective-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perspective-list {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 20px;
}

.cta-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
  background: #f7f4ed;
}

.cta-split .image {
  min-width: 0;
  min-height: 320px;
}

.cta-split .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-copy {
  padding: 76px clamp(24px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.cta-copy h2 {
  font-size: clamp(2.4rem, 3.2vw + 1.2rem, 4.9rem);
  margin: 22px 0;
}

.cta-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: #58666f;
}

/* Inner hero */
.inner-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  background: #e7eef2;
}

.inner-hero .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding:30px 0;
}

.inner-hero h1 {
  font-size: clamp(2.2rem, 1.2rem + 5vw, 5.75rem);
  margin: 20px 0;
}

.inner-hero p {
  max-width: 630px;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.inner-hero .media {
  min-width: 0;
  min-height: 320px;
  position: relative;
}

.inner-hero .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.inner-hero.dark {
  background: var(--navy);
  color: #fff;
}

.inner-hero.dark .copy p {
  color: #d7e0e6;
}

.inner-hero.contact {
  background: linear-gradient(90deg, #f8f3e9, #e3edf3);
}

.inner-hero.contact .media:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(248, 243, 233, 0.25), transparent);
}

/* About */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.two-col h2 {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 4.75rem);
  margin: 20px 0;
}

.two-col p {
  font-size: 17px;
  line-height: 1.75;
  color: #53616b;
}

.image-frame {
  overflow: hidden;
  min-width: 0;
  min-height: 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.values-section {
  padding-top: 0;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value {
  padding: 34px 26px;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.value:last-child {
  border-right: 0;
}

.value h3 {
  margin: 10px 0 6px;
  font-size: 18px;
}

.value p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #64727c;
}

.dark-band {
  background: var(--navy);
  color: #fff;
  padding: clamp(64px, 8vw, 86px) 0;
}

.dark-band .two-col p {
  color: #c7d1d7;
}

.dark-band h2 {
  color: #fff;
}

/* What we do */
.what-list {
  padding-top:30px;
  padding-bottom:30px
}

.what-row {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr) minmax(0, 1fr);
  min-height: 250px;
}

.what-row .visual {
  min-width: 0;
  min-height: 220px;
}

.what-row .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.what-row .title,
.what-row .body {
  padding: clamp(24px, 4vw, 42px);
  min-width: 0;
}

.what-row .title {
  border-right: 1px solid var(--line);
}

.what-row .title .num {
  font-size: 10px;
  letter-spacing: 0.2em;
}

.what-row h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 8px 0 10px;
}

.what-row p {
  line-height: 1.7;
  color: #58666f;
  margin: 0;
}

.what-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 320px;
  background: #0b2a3e;
  color: #fff;
}

.what-bottom .copy {
  padding: 65px clamp(24px, 7vw, 100px);
  min-width: 0;
}

.what-bottom h2 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3.5rem);
  margin: 0;
}

.what-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

/* Partnerships */
.partner-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.partner-intro h2 {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 3.9rem);
  margin: 10px 0;
}

.partner-intro p {
  line-height: 1.75;
  color: #58666f;
}

.collab-section {
  padding-top: 0;
}

.collab {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collab-item {
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--line);
  min-width: 0;
}

.collab-item:last-child {
  border-right: 0;
}

.collab-item h3 {
  font-size: 19px;
}

.collab-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #63717a;
}

.partner-banner {
  position: relative;
  min-height: 320px;
  color: #fff;
}

.partner-banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.partner-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 21, 34, 0.85), rgba(3, 21, 34, 0.15));
}

.partner-banner .content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top:20px;
  padding-bottom: 70px;
}

.partner-banner h2 {
  font-size: clamp(2.2rem, 3vw + 1.2rem, 3.9rem);
  margin: 0;
  max-width: 700px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 70px);
}

.contact-info h2 {
  font-size: clamp(2.1rem, 3vw + 1.1rem, 3.6rem);
  margin: 10px 0;
}

.contact-info p {
  font-size: 17px;
  line-height: 1.7;
  color: #59676f;
}

.contact-card {
  margin-top: 30px;
}

.contact-card strong {
  display: block;
  margin-bottom: 4px;
}

.contact-card a {
  word-break: break-word;
}

.form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

#contact-form {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.form .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field label {
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d5d7d8;
  background: #fff;
  padding: 14px 15px;
  border-radius: 6px;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.submit {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  min-height: 48px;
}

.world {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: #f2f0eb;
}

.world .copy {
  padding: 70px clamp(24px, 7vw, 100px);
  min-width: 0;
}

.world h2 {
  font-size: clamp(2.1rem, 3vw + 1.1rem, 3.6rem);
  margin: 10px 0;
}

.world img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.6);
}

/* Footer */
.footer {
  background: #031522;
  color: #fff;
  padding: 42px 0 calc(28px + env(safe-area-inset-bottom));
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 0.6fr);
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  width: min(205px, 70vw);
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 12px;
}

.footer-message {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 60px;
  font-size: 10px;
  letter-spacing: 0.24em;
  line-height: 1.8;
  text-transform: uppercase;
  justify-self: flex-end;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding-top: 20px;
  font-size: 10px;
  color: #a7b3ba;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 0.8;
  transform: translateY(-1px);
}

.social-link--x {
  font-size: 12px;
  font-weight: 800;
}

.social-link--youtube {
  width: 18px;
  height: 18px;
}

.social-link--youtube svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #fff;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Inner pages — aligned with the editorial, architectural direction of the home page. */
.inner-hero {
  min-height: clamp(560px, 51vw, 760px);
  display: block;
  position: relative;
  isolation: isolate;
  margin: 0 auto;
  background: #092339;
}

.inner-hero .copy {
  position: relative;
  z-index: 3;
  min-height: clamp(56px, 51vw, 760px);
  color: #fff;
  justify-content: center;
}

.inner-hero .copy::after {
  display: none;
}

.inner-hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 4.4vw, 6.6rem);
  margin: 20px 0 18px;
  text-shadow: 0 2px 18px rgba(2, 15, 25, .25);
}

.inner-hero p { max-width: 510px; color: rgba(255, 255, 255, .88); }
.inner-hero .media { position: absolute; inset: 0; z-index: 1; min-height: 0; }
.inner-hero .media img { position: static; width: 100%; height: 100%; object-position: center; }
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 22, 36, .86) 0%, rgba(4, 22, 36, .65) 37%, rgba(4, 22, 36, .16) 66%, rgba(4, 22, 36, 0) 100%);
}
.inner-hero.dark, .inner-hero.contact { background: #092339; color: #fff; }
.inner-hero.dark .copy p { color: rgba(255, 255, 255, .88); }

.two-col, .partner-intro { gap: clamp(48px, 8vw, 140px); }
.image-frame { box-shadow: 0 20px 45px rgba(6, 24, 39, .12); }
.image-frame img { aspect-ratio: 1 / .78; min-height: 0; }
.two-col h2, .partner-intro h2 { font-size: clamp(2.7rem, 3.3vw, 5rem); }
.values-row, .collab { background: #fffdf9; }
.value, .collab-item { padding: clamp(28px, 3vw, 48px); }
.value h3, .collab-item h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }

s
.what-row { grid-template-columns: minmax(250px, .68fr) minmax(280px, .72fr) minmax(320px, 1fr); min-height: 300px; }
.what-row .visual { min-height: 300px; }
.what-row .visual img { min-height: 300px; filter: saturate(.82) contrast(1.04); }
.what-row .title, .what-row .body { display: flex; flex-direction: column; justify-content: center; }
.what-row .title { background: #fbfaf7; }
.what-row .body { background: #fff; }
.what-row h2 { font-size: clamp(2.8rem, 3.6vw, 4.6rem); }
.what-bottom { min-height: 390px; }
.what-bottom img { min-height: 390px; filter: saturate(.75); }

.partner-banner { min-height: 750px; }
.partner-banner img { height: 750px; object-position:top}
.partner-banner h2 { font-size: clamp(3rem, 4vw, 5.7rem); }

.contact-grid { gap: clamp(50px, 9vw, 150px); align-items: start; }
.contact-info { padding-top: 16px; }
.contact-info h2 { font-size: clamp(2.8rem, 3.5vw, 5rem); }
.contact-card { border-top: 1px solid var(--line); padding-top: 22px; }
.form { position: relative; padding: clamp(26px, 4vw, 48px); background: #fff; border: 1px solid rgba(16, 40, 58, .1); box-shadow: 0 18px 48px rgba(6, 24, 39, .08); }
.field input, .field textarea { border: 1px solid rgba(16, 40, 58, .16); border-radius: 0; background: #fbfaf7; }
.submit { display: inline-flex; gap: 25px; align-items: center; justify-content: space-between; min-width: 190px; color: var(--navy); }
.form-status { grid-column: 1 / -1; margin: 0; min-height: 24px; font-size: 14px; color: #40505b; }
.form-status.error { color: #aa3333; }
.form-status.success { color: #197148; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.world { min-height: 420px; }
.world .copy { display: flex; flex-direction: column; justify-content: center; }
.world img { min-height: 420px; filter: saturate(.72); }

@media (max-width: 1024px) {
  .inner-hero { width: 100%; }
  .inner-hero .copy { min-height: clamp(500px, 68vw, 620px);}
  .inner-hero .media { height: auto; }
  .what-row { grid-template-columns: 1fr; }
  .what-row .visual, .what-row .visual img { height: 300px; min-height: 300px; }
}

@media (max-width: 768px) {
  .inner-hero .copy { min-height: 500px; max-width: 100%;}
  .inner-hero h1 { font-size: clamp(2.8rem, 11vw, 4.2rem); }
  .inner-hero::after { background: linear-gradient(90deg, rgba(4, 22, 36, .82), rgba(4, 22, 36, .34)); }
  .partner-banner, .partner-banner img { min-height: 360px; height: 360px; }
  .form-status { grid-column: 1; }
}
.hero-home{
  width: 100%;
  min-height: min(790px, calc(100svh - var(--header-h)));
  position: relative;
  isolation: isolate;
  background-image: url('assets/home-hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 20, 32, .84) 0%, rgba(4, 20, 32, .54) 42%, rgba(4, 20, 32, .08) 72%, transparent 100%);
}
.hero-home .hero-copy { position: relative; z-index: 2; color: #fff; }
.hero-home .hero-copy .eyebrow,
.hero-home .hero-copy .desc { color: rgba(255, 255, 255, .88); }
.hero-home .hero-copy h1 span { color: #e7bd7b; }
.hero-home .hero-copy .lead { color: #fff; }
.hero-home .hero-media { position: absolute; inset: 0; z-index: 1; min-height: 0; height: auto; pointer-events: none; }
.hero-home .hero-words { z-index: 3; }

.perspective{
      width: 100%;
    min-height: 500px;
    background-image: url('assets/home-globe.png');
    background-size: cover;
    background-position: 100% 20%;
    background-repeat: no-repeat;
}
/* .cta-split{
      width: 100%;
    min-height: 500px;
    background-image: url('assets/home-cta.png');
    background-size: cover;
       background-position: center center;
    background-repeat: no-repeat;
} */
/* Large tablet / small laptop — keep desktop nav until it would collide */
@media (max-width: 1180px) {
  .nav {
    gap: 8px 20px;
  }

  .approach-card {
    padding: 220px 22px 32px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 74px;
  }

  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 150px;
  }

  .nav,
  .talk {
    display: none;
  }

  .menu {
    display: block;
  }

  .hero-home,
  .inner-hero,
  .cta-split,
  .partner-intro,
  .contact-grid,
  .world,
  .two-col,
  .what-bottom {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: min(700px, calc(100svh - var(--header-h)));
  }

  .hero-home .hero-media { position: absolute; height: auto; min-height: 0; }

  .hero-media {
    min-height: 0;
    height: min(52vw, 480px);
    min-height: 280px;
  }

  .hero-copy {
    padding: 56px 24px 48px;
  }

  .hero-words {
    top: auto;
    bottom: 20px;
    right: 16px;
  }

  .belief-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .belief-side {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
  }

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

  .approach-card:nth-child(2n) {
    border-right: 0;
  }

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

  .perspective-copy {
    padding: 60px 24px;
    position: relative;
    z-index: 2;
  }

  .perspective-img {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    height: 100%;
  }

  .perspective-list {
    display: none;
  }

  .cta-split .image {
    height: 360px;
    min-height: 0;
  }

  .inner-hero {
    min-height: 0;
  }


  .inner-hero .media {
    min-height: 0;

  }

  .values-row,
  .collab {
    grid-template-columns: 1fr 1fr;
  }

  .value:nth-child(2n),
  .collab-item:nth-child(2n) {
    border-right: 0;
  }

  .what-row {
    grid-template-columns: 1fr;
  }

  .what-row .visual {
    height: 240px;
  }

  .what-row .visual img {
    min-height: 240px;
    height: 240px;
  }

  .what-row .title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .what-bottom img {
    height: 280px;
    min-height: 280px;
  }

  .partner-banner img {
    height: 320px;
  }

  .world img {
    min-height: 260px;
    height: 280px;
  }

  .image-frame img {
    min-height: 240px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin-inline: auto;
  }

  .footer-message {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0 0;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

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

  .form .full,
  .submit {
    grid-column: 1;
  }

  .cta-copy {
    padding: 48px 24px;
  }

  .cta-split .image {
    height: 280px;
  }


  .world .copy,
  .what-bottom .copy {
    padding: 48px 24px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 56px 0;
  }

  .approach-grid,
  .values-row,
  .collab {
    grid-template-columns: 1fr;
  }

  .approach-card,
  .value,
  .collab-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .value,
  .collab-item {
    border-bottom: 1px solid var(--line);
  }

  .approach-card:last-child,
  .value:last-child,
  .collab-item:last-child {
    border-bottom: 0;
  }

  .approach-card {
    min-height: 380px;
    padding: 180px 24px 32px;
  }

  .hero-media {
    height: min(70vw, 380px);
    min-height: 240px;
  }

  .hero-home { min-height: 560px; }
  .hero-home .hero-media { height: auto; min-height: 0; }
  .hero-home::after { background: linear-gradient(90deg, rgba(4, 20, 32, .82), rgba(4, 20, 32, .36)); }


  .hero-words {
    font-size: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand img {
    width: 132px;
  }


  .eyebrow:after {
    width: 28px;
    margin-left: 12px;
  }

  .approach-card {
    min-height: 340px;
    padding: 160px 20px 28px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn .round,
  .nav a:after {
    transition: none;
  }
}

/* Final home hero rules: kept last so responsive legacy rules cannot override them. */
.hero-home {
  width: 100%;
  margin: 0;
  min-height: min(790px, calc(100svh - var(--header-h)));
}

.hero-home .hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: max(24px, calc((100vw - min(calc(100vw - 48px), var(--max))) / 2));
}

@media (max-width: 1024px) {
  .hero-home { min-height: min(700px, calc(100svh - var(--header-h))); }
  .hero-home .hero-copy { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 620px) {
  .hero-home { min-height: 560px; }
  .hero-home .hero-copy { padding-left: 16px; padding-right: 16px; }
}

/* What we do — image-led vertical service list. */
.what-list {
  width: min(100%, 1440px);
  margin: 0 auto;
  display:flex;
  flex-direction: column;
  gap:30px
}

.what-list .what-row {
  display: grid;
  grid-template-columns: minmax(230px, 37%) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  min-height: clamp(240px, 23vw, 340px);
}

.what-list .what-row .visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 0;
}

.what-list .what-row .visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  height:350px;
  object-fit:cover;
}

.what-list .what-row .title,
.what-list .what-row .body {
  grid-column: 2;
  display: block;
  background: #fffdf9;
  border: 0;
}

.what-list .what-row .title {
  grid-row: 1;
  padding: clamp(24px, 3vw, 46px) clamp(24px, 4vw, 56px) 4px;
}

.what-list .what-row .body {
  grid-row: 2;
  padding: 8px clamp(24px, 4vw, 56px) clamp(24px, 3vw, 42px);
}

.what-list .what-row .num {
  color: #8a7656;
  font-size: 10px;
  letter-spacing: .18em;
}

.what-list .what-row h2 {
  margin: 7px 0 5px;
  font-size: clamp(2.1rem, 3.2vw, 4.35rem);
  line-height: .96;
}

.what-list .what-row .title p,
.what-list .what-row .body p {
  margin: 0;
  color: #53616b;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.65;
}

.what-more {
  display: inline-flex;
  gap: 9px;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.what-more span { color: #967541; font-size: 15px; line-height: .7; }

@media (max-width: 620px) {
  .what-list { width: 100%; border-inline: 0; }
  .what-list .what-row {
    grid-template-columns: minmax(88px, 38%) minmax(0, 1fr);
    min-height: 154px;
  }
  .what-list .what-row .title { padding: 15px 16px 0; }
  .what-list .what-row .body { padding: 5px 16px 15px; }
  .what-list .what-row h2 { font-size: clamp(1.75rem, 9.2vw, 2.25rem); }
  .what-list .what-row .title p,
  .what-list .what-row .body p { font-size: 11px; line-height: 1.45; }
  .what-more { margin-top: 9px; font-size: 9px; }
}

/* Contact page — compact global contact layout. */
.contact-grid { padding-bottom: clamp(18px, 3vw, 42px); }
.contact-grid .form { align-self: start; }
.contact-global { padding: clamp(12px, 3vw, 42px) 0 clamp(70px, 8vw, 120px); overflow: hidden; background: #fbfaf7; }
.contact-map { position: relative; width: min(1100px, 90%); aspect-ratio: 2.25 / 1; margin: 0 auto clamp(34px, 5vw, 76px); }
.contact-map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: .10; filter: grayscale(1) sepia(.45) contrast(.75); }
.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle, rgba(78, 100, 113, .55) 1px, transparent 1.35px) 0 0 / 5px 5px;
  -webkit-mask: url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg") center / contain no-repeat;
  mask: url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg") center / contain no-repeat;
  opacity: .48;
}
.map-pin { position: absolute; z-index: 2; width: 10px; height: 10px; border: 2px solid #c7954d; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: #fffdf9; box-shadow: 0 0 0 3px rgba(200, 155, 80, .16); }
.pin-uae { left: 59%; top: 52%; }.pin-usa { left: 27%; top: 42%; }.pin-europe { left: 50%; top: 35%; }.pin-asia { left: 76%; top: 52%; }
.global-copy { display: block;}
.global-copy h2 { margin: 0 0 14px; font-size: clamp(2.4rem, 3.5vw, 4.7rem); line-height: 1.02; }
.global-copy p {  margin: 0; color: #59676f; font-size: 16px; line-height: 1.7; }
.locations { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 680px; margin-top: clamp(28px, 4vw, 44px); }
.location { display: grid; gap: 5px; padding: 0 clamp(11px, 2vw, 24px); border-right: 1px solid var(--line); color: #59676f; font-size: 12px; }
.location:first-child { padding-left: 0; }
.location:last-child { border-right: 0; }
.location-mark { color: var(--gold); font-size: 23px; line-height: 1; }
.location strong { color: var(--ink); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* Footer — robust stacking and touch-friendly navigation on every small screen. */
@media (max-width: 1024px) {
  .footer-top { gap: 24px; }
  .footer-message { justify-self: stretch; text-align: center; }
}

@media (max-width: 620px) {
  .footer { padding: 34px 0 calc(26px + env(safe-area-inset-bottom)); }
  .footer-top { gap: 22px; }
  .footer-logo img { width: 164px; }
  .footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 4px 14px; }
  .footer-nav a { padding: 8px 4px; }
  .footer-message { font-size: 9px; letter-spacing: .18em; }
  .footer-bottom { margin-top: 18px; padding-top: 17px; gap: 15px; }
  .footer-social { gap: 18px; }
  .contact-grid { padding-bottom: 8px; }
  .contact-global { padding-bottom: 58px; }
  .contact-map { width: 116%; max-width: none; margin-left: -8%; margin-bottom: 34px; }
  .global-copy h2 { font-size: clamp(2.25rem, 10vw, 3.2rem); }
  .locations { grid-template-columns: repeat(4, minmax(68px, 1fr)); margin-top: 28px; margin-inline: 0; overflow-x: auto; }
  .location { min-width: 68px; padding: 0 9px; font-size: 10px; }
  .location:first-child { padding-left: 0; }
  .location strong { font-size: 9px; }
}

/* Partnerships — areas of collaboration. */
.collab-section { padding-top: clamp(52px, 7vw, 82px); }
.collaboration-label {
  margin: 0 0 28px;
  color: #687680;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .25em;
  text-align: center;
  text-transform: uppercase;
}
.collab {
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.collab-item { padding: clamp(28px, 3.4vw, 48px) clamp(18px, 3vw, 42px); }
.collab-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #ae7b35;
  line-height: 1;
}
.collab-icon svg { width: 19px; height: 19px; stroke-linecap: round; stroke-linejoin: round; }
.collab-item h3 { margin: 18px 0 9px; font-family: var(--sans); font-size: clamp(14px, 1.25vw, 18px); font-weight: 700; }
.collab-item p { margin: 0; font-size: clamp(12px, 1.05vw, 15px); line-height: 1.6; }
@media (max-width: 620px) {
  .collaboration-label { text-align: left; margin-bottom: 20px; }
  .collab-item { padding: 26px 18px; }
  .collab-item h3 { margin-top: 13px; }
}

/* What we do — closing capability banner. */
.what-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, .75fr);
  align-items: center;
  min-height: clamp(510px, 52vw, 670px);
  overflow: hidden;
  background: #09243a;
}
.what-bottom > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(.72) contrast(1.08);
}
.what-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3, 22, 36, .83), rgba(3, 22, 36, .42) 60%, rgba(3, 22, 36, .22));
}
.what-bottom .copy,
.what-bottom-cta { position: relative; z-index: 3; color: #fff; }
.what-bottom .copy {
  padding-top: clamp(46px, 7vw, 96px);
  padding-bottom: clamp(46px, 7vw, 96px);
  padding-left: max(24px, calc((100vw - min(calc(100vw - 48px), var(--max))) / 2));
  padding-right: 28px;
}
.what-bottom .copy .eyebrow { color: rgba(255, 255, 255, .85); }
.what-bottom h2 { max-width: 670px; margin: 16px 0 0; font-size: clamp(2.5rem, 4vw, 5.8rem); line-height: .98; }
.what-bottom-cta {
  align-self: center;
  padding-top: 42px;
  padding-bottom: 42px;
  padding-left: 20px;
  padding-right: max(24px, calc((100vw - min(calc(100vw - 48px), var(--max))) / 2));
}
.what-bottom-cta p { margin: 0 0 23px; color: rgba(255, 255, 255, .9); font-size: clamp(14px, 1.3vw, 18px); line-height: 1.6; }
.what-bottom-cta a { display: inline-flex; gap: 13px; padding-bottom: 8px; border-bottom: 1px solid rgba(223, 188, 120, .7); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.what-bottom-cta span { color: var(--gold2); font-size: 16px; line-height: .7; }
@media (max-width: 768px) {
  .what-bottom { grid-template-columns: 1fr; align-items: start; }
  .what-bottom .copy { padding: 54px 16px 18px; }
  .what-bottom-cta { padding: 18px 16px 52px; }
}

/* About — purpose, values and long-term mindset. */
.about-purpose { padding-bottom: clamp(50px, 6vw, 82px); }
.purpose-layout { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(250px, .78fr); column-gap: clamp(38px, 7vw, 125px); row-gap: clamp(28px, 4vw, 54px); align-items: start; }
.purpose-heading h2 { margin: 18px 0 0; font-size: clamp(2.7rem, 4vw, 5.6rem); }
.purpose-intro { padding-top: 34px; }
.purpose-intro p { margin: 0; color: #53616b; font-size: clamp(14px, 1.2vw, 17px); line-height: 1.7; }
.purpose-image { min-height: 0; box-shadow: none; }
.purpose-image img { display: block; width: 100%; min-height: 0; aspect-ratio: 1.18 / 1; object-fit: cover;object-position:top; }
.purpose-quote { align-self: center; max-width: 390px; margin: 0; padding: 38px 0 38px clamp(24px, 4vw, 62px); border-left: 1px solid var(--gold); color: #183247; font-size: clamp(1.55rem, 2.05vw, 2.8rem); line-height: 1.16; }
.values-label { margin: 0 0 22px; color: #6b7982; font-size: 10px; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.values-row { background: #fffdf9; }
.value { padding: clamp(24px, 3vw, 42px); }
.value-icon { display: flex; width: 31px; height: 31px; align-items: center; color: #b48038; line-height: 1; }
.value-icon svg { width: 29px; height: 29px; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { margin: 14px 0 7px; font-family: var(--sans); font-size: 15px; }

.about-longterm { position: relative; min-height: clamp(600px, 62vw, 820px); overflow: hidden; display: grid; align-items: center; padding: 0; }
.about-longterm::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(3, 21, 34, .92), rgba(3, 21, 34, .63) 48%, rgba(3, 21, 34, .1)); }
.about-longterm .container { position: static; width: min(calc(100% - 48px), var(--max)); }
.about-longterm .two-col { display: block; max-width: min(570px, 54%); }
.about-longterm .image-frame { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.about-longterm .image-frame img { width: 100%; height: 100%; min-height: 0; aspect-ratio: auto; object-fit: cover; object-position: center 58%; }
.about-longterm .eyebrow { font-size: 10px; }
.about-longterm h2 { margin: 14px 0 12px; font-size: clamp(2.8rem, 4vw, 5.5rem); line-height: .98; }
.about-longterm .two-col p { max-width: 470px; margin: 0; font-size: clamp(14px, 1.15vw, 16px); line-height: 1.58; }
.about-longterm .reveal { position: relative; z-index: 3; opacity: 1; transform: none; }
.about-story { margin-top: 23px; color: #fff; font-size: 10px; }
.about-story .round { width: 44px; height: 44px; flex-basis: 44px; color: var(--navy); }
@media (max-width: 768px) {
  .purpose-layout { grid-template-columns: 1fr; gap: 26px; }
  .purpose-intro { padding-top: 0; }
  .purpose-image img { aspect-ratio: 1.25 / 1; }
  .purpose-quote { padding: 28px 0 28px 24px; }
  .about-longterm { min-height: 560px; }
  .about-longterm .container { width: min(calc(100% - 32px), var(--max)); }
  .about-longterm .two-col { max-width: 100%; }
  .what-list .what-row .visual img{
    height: 100%;
  }
  .what-list .what-row{
    display: flex;
    flex-direction: column;
  }
}
