:root {
  --ivory: #f3efe5;
  --ivory-soft: #faf8f2;
  --charcoal: #11110f;
  --charcoal-soft: #1b1a17;
  --white: #ffffff;
  --gold: #c7a252;
  --gold-light: #dfc477;
  --ink-muted: #5d5a52;
  --line: rgba(17, 17, 15, .17);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivory-soft);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 1rem;
  transform: translateY(-120%);
  padding: .8rem 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(.75rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 88px;
  padding: 0 clamp(1.25rem, 4vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 15, .97);
  border-bottom: 1px solid rgba(199, 162, 82, .28);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--white);
  text-decoration: none;
  font-size: .75rem;
  line-height: 1.35;
  letter-spacing: .14em;
  font-weight: 700;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.5rem); }
.site-nav a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .115em;
  transition: color .18s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-light); }
.site-nav .language-link {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, .25);
  color: var(--gold-light);
}
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  background: var(--charcoal);
  color: var(--white);
}
.hero-copy {
  min-width: 0;
  padding: clamp(4.5rem, 7vw, 7.5rem) clamp(2rem, 6vw, 7.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background:
    linear-gradient(90deg, rgba(199, 162, 82, .055) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--charcoal);
}
.breadcrumb {
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  color: rgba(255, 255, 255, .48);
  font-size: .75rem;
}
.breadcrumb a { text-underline-offset: 3px; }
.eyebrow {
  margin: 0 0 1.8rem;
  color: var(--gold-light);
  font-size: .75rem;
  line-height: 1.4;
  letter-spacing: .21em;
  font-weight: 700;
}
.eyebrow-dark { color: #836526; }
.hero h1, h2, .process-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  line-height: 1.01;
}
.hero-intro {
  max-width: 720px;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.7;
}
.trust-line {
  max-width: 780px;
  margin: 1.7rem 0 0;
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .63);
  font-size: .78rem;
  line-height: 1.45;
}
.trust-line strong { color: var(--gold-light); font-weight: 700; }
.trust-line span::before {
  content: "";
  width: 3px;
  height: 3px;
  margin: 0 .65rem .15rem;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 255, 255, .44);
}
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.3rem; }
.button {
  min-height: 54px;
  padding: .85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  line-height: 1.35;
  font-weight: 700;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.button-gold { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-light); border-color: var(--gold-light); }
.button-outline-light { border-color: rgba(255, 255, 255, .38); color: var(--white); }
.button-outline-light:hover, .button-outline-light:focus-visible { border-color: var(--white); }
.button-dark { background: var(--charcoal); color: var(--white); }
.button-dark:hover, .button-dark:focus-visible { background: #2a2925; }
.hero-image {
  position: relative;
  min-height: 670px;
  margin: 0;
  overflow: hidden;
  background: #363a3b;
}
.hero-image > img {
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(.9) contrast(1.02);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 17, 15, .86) 100%);
  pointer-events: none;
}
.hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.4rem, 3vw, 3rem);
  bottom: 2.4rem;
  left: clamp(1.4rem, 3vw, 3rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .4);
}
.hero-image figcaption span {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
}
.hero-image figcaption strong {
  display: block;
  margin-top: .3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.section { padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 5vw, 5rem); }
.section-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .5fr 1.15fr 1.15fr;
  column-gap: clamp(2rem, 5vw, 6rem);
}
.section-label { grid-column: 1; grid-row: 1 / span 2; }
.section-label .rule {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1.25rem;
  background: var(--gold);
}
.about-heading { grid-column: 2 / 4; }
.about-heading h2 {
  max-width: 940px;
  margin: 0 0 clamp(3.5rem, 7vw, 6.5rem);
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
  line-height: 1.02;
}
.about-image {
  grid-column: 2;
  height: 640px;
  margin: 0;
  overflow: hidden;
  background: #d8d0bf;
}
.about-image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 49%;
}
.about-copy { grid-column: 3; align-self: end; }
.about-copy > p { margin: 0 0 1.25rem; color: var(--ink-muted); font-size: 1.05rem; }
.about-copy .leadership {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}
.credentials { margin: 1.7rem 0 0; }
.credentials div {
  padding: .8rem 0;
  display: grid;
  grid-template-columns: minmax(130px, .8fr) 1.2fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
}
.credentials dt {
  color: #795d25;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .75rem;
  font-weight: 700;
}
.credentials dd { margin: 0; font-size: .9rem; }

.expertise { background: var(--charcoal-soft); color: var(--white); }
.expertise-head {
  max-width: var(--max);
  margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: .5fr 2.3fr;
  gap: clamp(2rem, 5vw, 6rem);
}
.expertise-head h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.03;
}
.expertise-head div > p {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 1.05rem;
}
.expertise-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
}
.expertise-list li {
  min-height: 240px;
  padding: clamp(2rem, 3.5vw, 3.25rem);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: .8rem;
  border-top: 1px solid rgba(255, 255, 255, .17);
}
.expertise-list li:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid rgba(255, 255, 255, .17);
}
.service-number {
  padding-top: .35rem;
  color: var(--gold-light);
  letter-spacing: .13em;
  font-size: .75rem;
}
.expertise-list h3 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  font-weight: 400;
  line-height: 1.2;
}
.expertise-list p { max-width: 500px; margin: 0; color: rgba(255, 255, 255, .61); }

.international {
  max-width: calc(var(--max) + 10vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .75fr;
  gap: clamp(3rem, 7vw, 8rem);
}
.international-intro h2 {
  max-width: 910px;
  margin: 0;
  font-size: clamp(2.75rem, 5.25vw, 5.4rem);
  line-height: 1.03;
}
.international-intro > p:last-child {
  max-width: 820px;
  margin: 2rem 0 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
}
.audience-panel { align-self: end; padding: 2rem; border: 1px solid var(--line); background: var(--white); }
.audience-panel h3 {
  margin: 0 0 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
}
.audience-panel ul { margin: 0; padding: 0; list-style: none; }
.audience-panel li {
  padding: .85rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: .92rem;
}
.audience-panel li::before { content: "—"; margin-right: .7rem; color: var(--gold); }
.process-panel {
  grid-column: 1 / -1;
  margin-top: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: .75fr 1.6fr;
  gap: clamp(2rem, 6vw, 7rem);
  border-top: 1px solid var(--line);
}
.process-head h3 { margin: 0; font-size: clamp(2.2rem, 3.9vw, 4rem); line-height: 1.06; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li {
  padding: 1.55rem 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
}
.process-list li > span { padding-top: .2rem; color: #806225; font-size: .75rem; letter-spacing: .12em; }
.process-list h4 { margin: 0 0 .35rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 400; }
.process-list p { margin: 0; color: var(--ink-muted); }
.process-cta {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.process-cta p { max-width: 420px; margin: 0; color: var(--ink-muted); font-size: .85rem; }
.process-cta .button { flex: 0 0 auto; }

.brand-statement {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.brand-background, .brand-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.brand-background { object-fit: cover; object-position: center; }
.brand-overlay { background: linear-gradient(90deg, rgba(6, 6, 5, .96) 0%, rgba(6, 6, 5, .76) 54%, rgba(6, 6, 5, .18) 100%); }
.brand-content {
  position: relative;
  z-index: 2;
  width: min(730px, 100%);
  margin-left: max(1.25rem, calc((100vw - var(--max)) / 2));
  padding: 6rem 2rem 6rem 0;
}
.brand-content h2 { margin: 0 0 1.6rem; font-size: clamp(2.8rem, 5.25vw, 5.25rem); line-height: 1.02; }
.brand-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, .7);
  font-size: 1.08rem;
}
.text-link-light {
  padding-bottom: .3rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 700;
}

.contact { background: var(--ivory); }
.contact-layout {
  max-width: var(--max);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
}
.contact-image { min-height: 600px; margin: 0; overflow: hidden; background: #29251f; }
.contact-image img { height: 100%; object-fit: cover; object-position: center; }
.contact-panel {
  padding: clamp(3rem, 5vw, 5.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.contact-panel h2 { margin: 0; font-size: clamp(2.6rem, 4.5vw, 4.7rem); line-height: 1.03; }
.contact-intro { max-width: 560px; margin: 1.5rem 0 2.2rem; color: var(--ink-muted); font-size: 1.03rem; }
.contact-details {
  margin: 0 0 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-style: normal;
}
.contact-details div {
  min-height: 118px;
  padding: 1rem 1rem 1rem 0;
  border-top: 1px solid var(--line);
}
.contact-details div:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--line); }
.contact-details span {
  display: block;
  margin-bottom: .5rem;
  color: #795d25;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
}
.contact-details a, .contact-details p {
  margin: 0;
  overflow-wrap: anywhere;
  text-decoration: none;
  font-size: .9rem;
  line-height: 1.6;
}
.contact-details a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-panel > .button { align-self: flex-start; }

.site-footer { padding: 5rem clamp(1.25rem, 5vw, 5rem) 2rem; background: var(--charcoal); color: var(--white); }
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 4.5rem;
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr .9fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.footer-brand img { width: 55px; height: 55px; object-fit: contain; }
.footer-grid > div:first-child > p { max-width: 420px; color: rgba(255, 255, 255, .56); }
.footer-grid .footer-licences { margin-top: 1.4rem; color: rgba(255, 255, 255, .4); font-size: .78rem; }
.footer-grid h2 {
  margin: .35rem 0 1.15rem;
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: .7rem; color: rgba(255, 255, 255, .63); font-size: .85rem; overflow-wrap: anywhere; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .48);
  font-size: .78rem;
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr 42%; }
  .hero-copy { padding-right: 3rem; padding-left: 3rem; }
  .section-grid { grid-template-columns: .35fr 1fr 1fr; column-gap: 2.2rem; }
  .about-image { height: 600px; }
  .expertise-head { grid-template-columns: .35fr 2fr; }
  .contact-layout { grid-template-columns: .9fr 1.1fr; }
  .contact-panel { padding: 3.3rem; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 960px) {
  html { scroll-padding-top: 76px; }
  .site-header { height: 76px; padding: 0 1.25rem; }
  .brand { gap: .65rem; font-size: .65rem; }
  .brand img { width: 40px; height: 40px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    min-height: 44px;
    border: 0;
    padding: .6rem 0;
    background: transparent;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
  }
  .menu-lines {
    position: relative;
    width: 25px;
    height: 13px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }
  .site-nav {
    position: absolute;
    inset: 76px 0 auto;
    display: none;
    padding: 1rem 1.25rem 1.7rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 20px 35px rgba(0, 0, 0, .28);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 48px; padding: .9rem 0; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: .8rem; }
  .site-nav .language-link { padding-left: 0; border-left: 0; }
  .hero { min-height: auto; grid-template-columns: 1fr 43%; }
  .hero-copy { min-height: 680px; padding: 4rem 2rem; }
  .hero h1 { font-size: clamp(2.85rem, 6.2vw, 4.7rem); }
  .hero-image { min-height: 680px; }
  .international { grid-template-columns: 1fr; }
  .audience-panel { align-self: auto; }
  .process-panel { grid-template-columns: 1fr; }
  .process-cta { grid-column: 1; }
}

@media (max-width: 720px) {
  .hero { display: flex; flex-direction: column; }
  .hero-copy { min-height: auto; padding: 4.5rem 1.25rem 4rem; }
  .breadcrumb { margin-bottom: 1.5rem; }
  .hero h1 { font-size: clamp(2.65rem, 12.3vw, 4.15rem); line-height: 1.02; }
  .hero-intro { font-size: 1.02rem; }
  .trust-line { display: block; font-size: .82rem; }
  .trust-line strong, .trust-line span { display: block; margin-bottom: .38rem; }
  .trust-line span::before { margin-left: 0; }
  .button-row { width: 100%; }
  .button-row .button { width: 100%; justify-content: space-between; }
  .hero-image { min-height: 620px; }
  .hero-image > img { object-position: center 18%; }
  .section { padding: 6.25rem 1.25rem; }
  .section-grid { display: block; }
  .section-label .rule { width: 72px; margin-bottom: 2.3rem; }
  .about-heading h2 { margin-bottom: 3rem; font-size: clamp(2.7rem, 12.5vw, 4.2rem); }
  .about-image { height: 560px; margin-bottom: 2.3rem; }
  .about-copy > p { font-size: 1rem; }
  .credentials div { grid-template-columns: 1fr; gap: .25rem; }
  .expertise-head { display: block; margin-bottom: 3.4rem; }
  .expertise-head h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .expertise-list { grid-template-columns: 1fr; }
  .expertise-list li {
    min-height: auto;
    padding: 2.1rem 0;
    grid-template-columns: 48px 1fr;
  }
  .expertise-list li:nth-child(odd) { border-right: 0; }
  .expertise-list h3 { font-size: 1.55rem; }
  .international-intro h2 { font-size: clamp(2.65rem, 12.1vw, 4.1rem); }
  .audience-panel { padding: 1.5rem; }
  .process-panel { margin-top: 1rem; }
  .process-head h3 { font-size: 2.6rem; }
  .process-list li { grid-template-columns: 45px 1fr; }
  .process-cta { align-items: stretch; flex-direction: column; }
  .process-cta .button { width: 100%; justify-content: space-between; }
  .brand-statement { min-height: 700px; align-items: flex-end; }
  .brand-background { object-position: 68% center; }
  .brand-overlay { background: linear-gradient(180deg, rgba(6, 6, 5, .2) 0%, rgba(6, 6, 5, .93) 66%, rgba(6, 6, 5, .98) 100%); }
  .brand-content { margin: 0; padding: 5.5rem 1.25rem; }
  .brand-content h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .contact-layout { display: flex; flex-direction: column; }
  .contact-image { min-height: 390px; }
  .contact-panel { padding: 4rem 1.25rem; }
  .contact-panel h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details div, .contact-details div:nth-child(even) {
    min-height: auto;
    padding: 1rem 0;
    border-left: 0;
  }
  .contact-panel > .button { width: 100%; justify-content: space-between; }
  .site-footer { padding-top: 4.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; margin-bottom: 3.5rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { gap: 1.4rem; flex-direction: column; }
}

@media (max-width: 430px) {
  .hero-image { min-height: 540px; }
  .about-image { height: 500px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
