:root {
  --navy-950: #041221;
  --navy-900: #071a2f;
  --navy-850: #0a2139;
  --navy-800: #0d2945;
  --gold-500: #c79a47;
  --gold-400: #d9b76f;
  --gold-300: #e5ca91;
  --ivory-100: #f5f3ee;
  --ivory-200: #ebe7dd;
  --white: #ffffff;
  --ink: #0b2037;
  --muted-light: #bac6d2;
  --muted-dark: #536274;
  --line-dark: rgba(199, 154, 71, 0.28);
  --line-light: rgba(7, 26, 47, 0.13);
  --shadow: 0 24px 70px rgba(1, 10, 19, 0.22);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-900);
  color: var(--white);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

main:focus {
  outline: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 8.6vw, 5.75rem);
  font-weight: 400;
}

h2 {
  margin-bottom: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 6.7vw, 4.1rem);
  font-weight: 400;
}

h3 {
  font-size: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gold-400);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: #86611f;
}

.lead {
  font-size: clamp(1.18rem, 2.5vw, 1.55rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-gold {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
}

.button-gold:hover {
  border-color: var(--gold-300);
  background: var(--gold-300);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.button-small {
  min-height: 42px;
  padding-inline: 1.1rem;
  font-size: 0.82rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(4, 18, 33, 0.84);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(199, 154, 71, 0.22);
  background: rgba(4, 18, 33, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  width: 142px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px 10px;
  border: 0;
  border-radius: 4px;
  background: var(--ivory-100);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.75rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #e6edf3;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold-400);
  content: "";
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.em-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  border-bottom: 1px solid rgba(7, 26, 47, 0.1);
  background: rgba(242, 239, 231, 0.96);
  color: var(--ink);
  backdrop-filter: blur(16px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.em-header.is-scrolled {
  border-color: rgba(7, 26, 47, 0.14);
  background: rgba(242, 239, 231, 0.99);
  box-shadow: 0 8px 26px rgba(7, 26, 47, 0.06);
}

.em-header-inner {
  display: flex;
  width: calc(100% - 80px);
  max-width: 1250px;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.em-language-switcher {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.42rem;
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.em-language-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.25rem 0.1rem;
  color: inherit;
  opacity: 0.62;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.em-language-switcher a:hover,
.em-language-switcher a:focus-visible,
.em-language-switcher a[aria-current="page"] {
  color: var(--ink);
  opacity: 1;
}

.em-language-switcher a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32rem;
}

.site-header .em-language-switcher {
  color: #e6edf3;
}

.site-header .em-language-switcher a:hover,
.site-header .em-language-switcher a:focus-visible,
.site-header .em-language-switcher a[aria-current="page"] {
  color: var(--white);
}

.site-header .em-language-switcher .em-language-separator {
  color: rgba(230, 237, 243, 0.56);
}

.em-language-separator {
  color: rgba(7, 26, 47, 0.28);
}

.em-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.6rem);
}

.em-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.em-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold-500);
  content: "";
  transform-origin: right;
  transition: transform 180ms ease;
}

.em-nav > a:not(.button):hover::after,
.em-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.em-nav-contact {
  margin-left: 0.15rem;
}

.em-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(7, 26, 47, 0.26);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.em-nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.em-hero {
  overflow: hidden;
  padding-top: 60px;
  border-bottom: 1px solid rgba(7, 26, 47, 0.1);
  background: #f2efe7;
  color: var(--ink);
}

.em-hero-inner {
  width: calc(100% - 80px);
  max-width: 1250px;
  margin-inline: auto;
  padding: 40px 0 20px;
}

.em-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  column-gap: 70px;
  align-items: start;
}

.em-hero-visual {
  min-width: 0;
  padding-left: 95px;
}

.em-hero-logo-frame {
  display: block;
  width: 430px;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 1894 / 736;
  margin: 0;
  border: 0;
  background: transparent;
}

.em-hero-logo {
  display: block;
  width: 123.37%;
  max-width: none;
  height: auto;
  margin: -5.28% 0 0 -12.72%;
}

.em-hero-world-frame {
  display: block;
  width: 500px;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 1178 / 545;
  margin: 55px 0 0 -25px;
  border: 0;
  background: transparent;
}

.em-hero-world {
  display: block;
  width: 145%;
  max-width: none;
  height: auto;
  margin: -15.45% 0 0 -25.98%;
}

.em-hero-content {
  min-width: 0;
  padding-top: 135px;
  text-align: left;
}

.em-hero-title {
  max-width: 500px;
  margin: 0;
  color: var(--ink);
  font-size: 45px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.026em;
  text-align: left;
}

.em-hero-title span {
  display: block;
  white-space: nowrap;
}

.em-hero-title-accent {
  color: #86611f;
}

.em-hero-description {
  max-width: 500px;
  margin: 28px 0 0;
  color: #4c5d6e;
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: left;
}

.em-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.em-hero-actions .button {
  min-width: 148px;
}

.em-hero .button-outline {
  border-color: rgba(7, 26, 47, 0.44);
  color: var(--ink);
}

.em-hero .button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory-100);
}

.em-hero-strip {
  display: grid;
  width: 900px;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 55px auto 0;
  border-top: 1px solid rgba(7, 26, 47, 0.12);
  border-bottom: 1px solid rgba(7, 26, 47, 0.12);
}

.em-hero-strip-item {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  align-items: baseline;
  gap: 0.7rem;
  padding: 1.05rem 1.25rem;
  border-right: 1px solid rgba(134, 97, 31, 0.16);
}

.em-hero-strip-item:first-child {
  padding-left: 0;
}

.em-hero-strip-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.em-hero-strip-index {
  color: #86611f;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.em-hero-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.section {
  position: relative;
  padding: clamp(5rem, 11vw, 8.5rem) 0;
}

.section-light {
  background: var(--ivory-100);
  color: var(--ink);
}

.two-column,
.partnership-grid {
  display: grid;
  gap: 2.5rem;
}

.section-heading {
  max-width: 620px;
}

.section-copy {
  color: var(--muted-dark);
}

.section-copy .lead {
  color: var(--ink);
}

.principles {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.principles > div {
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.principles span {
  color: #8e6929;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principles p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

.services-section {
  background: var(--navy-900);
}

.section-intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-intro > div {
  max-width: 730px;
}

.section-intro > p {
  max-width: 500px;
  color: var(--muted-light);
  font-size: 1.04rem;
}

.section-intro-dark > p {
  color: var(--muted-dark);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -4.2rem;
  bottom: -4.2rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(199, 154, 71, 0.18);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 154, 71, 0.48);
  background: rgba(255, 255, 255, 0.045);
}

.card-index {
  display: block;
  margin-bottom: 2.7rem;
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-card h3 {
  max-width: 420px;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.92rem;
}

.service-card p + p {
  margin-top: 0.85rem;
}

.scope-note {
  max-width: 910px;
  margin: 2rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-500);
  color: #aebdca;
  font-size: 0.88rem;
  line-height: 1.75;
}

.approach-section {
  overflow: hidden;
}

.approach-section::after {
  position: absolute;
  right: -12rem;
  bottom: -15rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(199, 154, 71, 0.25);
  border-radius: 50%;
  content: "";
}

.process-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-light);
}

.process-number {
  color: #86611f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.process-step p {
  max-width: 660px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.94rem;
}

.partnerships-section {
  overflow: hidden;
  background: var(--navy-850);
}

.partnership-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.partnership-lines span {
  position: absolute;
  width: 75vw;
  height: 35vw;
  border: 1px solid rgba(199, 154, 71, 0.15);
  border-radius: 50%;
}

.partnership-lines span:nth-child(1) {
  top: 5%;
  left: 38%;
  transform: rotate(-12deg);
}

.partnership-lines span:nth-child(2) {
  top: 28%;
  left: 48%;
  transform: rotate(7deg);
}

.partnership-lines span:nth-child(3) {
  top: -38%;
  left: 52%;
  transform: rotate(25deg);
}

.partnership-grid {
  position: relative;
  z-index: 1;
}

.partnership-copy {
  color: var(--muted-light);
}

.partnership-copy .lead {
  color: var(--white);
}

.partner-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.partner-types span {
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(199, 154, 71, 0.36);
  border-radius: 999px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-section {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--navy-950);
}

.contact-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.contact-primary,
.contact-details {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: var(--navy-850);
}

.contact-primary {
  overflow: hidden;
}

.contact-link {
  position: relative;
  display: block;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.contact-link:last-child {
  border-bottom: 0;
}

.contact-link::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  color: var(--gold-400);
  content: "↗";
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.035);
}

.contact-link span,
.detail-block span,
.business-codes span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link strong {
  display: block;
  max-width: calc(100% - 2rem);
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(1rem, 4.6vw, 1.25rem);
}

.contact-details {
  padding: 1.5rem;
}

.contact-details address {
  display: grid;
  gap: 1.5rem;
  font-style: normal;
}

.detail-block p,
.business-codes p {
  margin: 0;
  color: #dce4eb;
}

.business-codes {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-codes span {
  margin-bottom: 0.15rem;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-dark);
  background: var(--navy-950);
}

.site-footer.site-footer-compact {
  padding: 0.9rem 0;
  border-top: 0;
}

.site-footer-compact .footer-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}

.site-footer-compact .footer-identity {
  display: grid;
  gap: 0.12rem;
}

.site-footer-compact .footer-identity p {
  margin: 0;
  color: rgba(215, 225, 233, 0.72);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.25;
}

.site-footer-compact .footer-privacy {
  color: rgba(215, 225, 233, 0.8);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
}

.footer-brand {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-brand span {
  color: var(--gold-400);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:first-child p {
  margin: 0.35rem 0 0;
  color: var(--muted-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
}

.footer-links a {
  color: #d7e1e9;
  font-size: 0.83rem;
}

.copyright {
  margin: 0;
  color: #8497a9;
  font-size: 0.76rem;
}

.inner-page main {
  min-height: calc(100vh - 250px);
}

.page-hero {
  padding: 10.5rem 0 4rem;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 85% 20%, rgba(27, 69, 105, 0.5), transparent 28%),
    var(--navy-900);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.page-hero p:last-child {
  max-width: 680px;
  color: var(--muted-light);
}

.content-page {
  padding: 4.5rem 0 7rem;
  background: var(--ivory-100);
  color: var(--ink);
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 2.8rem 0 0.8rem;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.prose p,
.prose li {
  color: var(--muted-dark);
}

.prose a {
  color: #765416;
  font-weight: 700;
}

.prose ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.prose .notice {
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold-500);
  background: var(--ivory-200);
  color: var(--ink);
  font-size: 0.92rem;
}

.not-found {
  display: grid;
  min-height: calc(100svh - 90px);
  place-items: center;
  padding: 9rem 0 5rem;
  text-align: center;
}

.not-found-inner {
  max-width: 680px;
}

.error-code {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 28vw, 12rem);
  line-height: 0.8;
}

.not-found h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.not-found p {
  max-width: 540px;
  margin: 0 auto 2rem;
  color: var(--muted-light);
}

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

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

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

@media (min-width: 600px) {
  .container {
    width: min(100% - 3.5rem, var(--container));
  }

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

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

  .process-step {
    grid-template-columns: 4rem 1fr;
    padding: 2rem 0;
  }

  .contact-details address,
  .business-codes {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 780px) {
  .two-column,
  .partnership-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
    align-items: end;
    justify-content: space-between;
  }

  #approach .section-intro > p {
    grid-column: 2;
  }

  .contact-section .contact-grid {
    grid-template-columns: minmax(0, 760px);
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1020px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .service-card-wide h3,
  .service-card-wide p {
    max-width: 74%;
  }

  .process-step {
    grid-template-columns: 5rem 1fr;
    align-items: start;
  }

  .process-step > div {
    display: grid;
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
  }

  .process-step h3 {
    margin: 0;
    padding-right: 2rem;
  }

  .process-step p {
    margin: 0;
  }
}

@media (min-width: 1111px) {
  .em-hero {
    min-height: calc(100svh - 60px);
    margin-top: 60px;
    padding-top: 0;
    overflow: visible;
  }

  .em-hero-inner {
    display: grid;
    min-height: calc(100svh - 60px);
    grid-template-rows: minmax(0, 1fr) auto;
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .em-hero-logo-frame {
    width: clamp(430px, 31.5vw, 560px);
  }

  .em-hero-world-frame {
    width: clamp(475px, 34.7vw, 618px);
    margin-top: clamp(55px, 4vw, 75px);
  }

  .em-hero-title {
    font-size: clamp(45px, 3.2vw, 58px);
  }

  .em-hero-description {
    max-width: clamp(500px, 32vw, 570px);
    color: #40536a;
    font-size: clamp(1.0625rem, 1.08vw, 1.25rem);
    line-height: 1.75;
  }

  .em-hero-actions .button {
    padding-inline: 1.6rem;
  }

  .em-hero .button-outline {
    border-color: rgba(7, 26, 47, 0.56);
  }

  .em-hero-strip {
    width: 920px;
  }
}

@media (min-width: 1400px) {
  .em-hero-inner {
    width: calc(100% - 100px);
    max-width: 1640px;
    margin-inline: auto;
  }

  .em-hero-actions .button {
    min-width: 164px;
    min-height: 56px;
    padding: 0.9rem 1.9rem;
    font-size: 1rem;
  }
}

@media (max-width: 1100px) {
  .em-header-inner,
  .em-hero-inner {
    width: calc(100% - 48px);
  }

  .em-hero-main {
    column-gap: 42px;
  }

  .em-hero-visual {
    padding-left: 0;
  }

  .em-hero-world-frame {
    margin-left: 0;
  }

  .em-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 919px) {
  .js .nav-toggle {
    display: grid;
    gap: 5px;
  }

  .js .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100svh - 64px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.4rem 1.25rem 3rem;
    visibility: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    background: rgba(4, 18, 33, 0.985);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }

  .js .site-nav > a:not(.button) {
    min-height: 56px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .js .site-nav > a:not(.button)::after {
    display: none;
  }

  .nav-contact {
    margin-top: 1.25rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .em-header-inner {
    justify-content: space-between;
  }

  .js .em-nav-toggle {
    display: grid;
    gap: 5px;
  }

  .js .em-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100svh - 60px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.4rem 1.25rem 3rem;
    visibility: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    background: rgba(242, 239, 231, 0.99);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .js .em-nav.is-open {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }

  .js .em-nav > a:not(.button) {
    min-height: 56px;
    padding: 1rem 0;
    border-bottom-color: rgba(7, 26, 47, 0.12);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    color: var(--ink);
    font-size: 1rem;
  }

  .js .em-nav > a:not(.button)::after {
    display: none;
  }

  .em-nav-contact {
    margin-top: 1.25rem;
    margin-left: 0;
  }

  .em-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .em-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .em-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 979px) {
  .em-hero-inner {
    padding-top: 36px;
  }

  .em-hero-main {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 16px;
  }

  .em-hero-visual {
    width: min(100%, 500px);
  }

  .em-hero-content {
    max-width: 560px;
    padding-top: 0;
  }

  .em-hero-strip {
    margin-top: 48px;
  }
}

@media (max-width: 600px) {
  .em-header-inner,
  .em-hero-inner {
    width: calc(100% - 32px);
  }

  .em-hero-inner {
    padding-top: 28px;
  }

  .em-hero-world-frame {
    margin-top: 42px;
  }

  .em-hero-title {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .em-hero-title span {
    white-space: normal;
  }

  .em-hero-description {
    margin-top: 22px;
    font-size: 1rem;
  }

  .em-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .em-hero-actions .button {
    min-width: 0;
    padding-inline: 0.8rem;
  }

  .em-hero-strip {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .em-hero-strip-item {
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(134, 97, 31, 0.14);
  }

  .em-hero-strip-item:last-child {
    border-bottom: 0;
  }
}

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

  .brand-mark {
    width: 132px;
    height: 46px;
    padding-inline: 9px;
  }

  .qr-list {
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media print {
  .site-header,
  .em-header,
  .site-footer,
  .em-hero-actions {
    display: none;
  }

  body,
  .section,
  .content-page,
  .page-hero {
    background: #fff;
    color: #000;
  }

  .page-hero {
    padding-top: 2rem;
  }
}
