:root {
  --top-bg: #ffffff;
  --top-ink: #8e6f3b;
  --top-ink-strong: #967744;
  --surface: #f3f0e8;
  --surface-line: rgba(214, 207, 194, 0.2);
  --stroke: #ded4c3;
  --ink: #111d28;
  --gold: #b4965c;
  --gold-soft: #c7ab78;
  --header-ink: #ffffff;
  --header-ink-soft: rgba(255, 255, 255, 0.92);
  --header-overlay-top: rgba(7, 11, 15, 0.72);
  --header-overlay-bottom: rgba(7, 11, 15, 0);
  --site-font: "IBM Plex Sans Arabic", "Tajawal", "Tahoma", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

#about-us,
#services,
#faq,
#contact-us {
  scroll-margin-top: 18px;
}

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

body {
  font-family: var(--site-font);
  color: var(--ink);
  background: #ffffff;
}

body.is-site-loading {
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--site-font);
}

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

img {
  max-width: 100%;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(211, 180, 113, 0.26) 0%, rgba(211, 180, 113, 0) 34%),
    linear-gradient(180deg, rgba(7, 11, 15, 0.94) 0%, rgba(7, 11, 15, 0.98) 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

body.is-site-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-shell {
  width: min(100%, 360px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.site-loader-mark-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 280px);
  min-height: 190px;
}

.site-loader-glow {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 177, 110, 0.42) 0%, rgba(207, 177, 110, 0) 70%);
  filter: blur(18px);
  animation: site-loader-pulse 1600ms ease-in-out infinite;
}

.site-loader-mark {
  position: relative;
  z-index: 1;
  width: min(220px, 64vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28));
  animation: site-loader-float 1800ms ease-in-out infinite;
}

.site-loader-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.4;
  font-weight: 600;
}

.site-loader-bar {
  width: min(220px, 62vw);
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.site-loader-bar-fill {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b89960 0%, #fff4d6 48%, #b89960 100%);
  animation: site-loader-sweep 1350ms ease-in-out infinite;
}

@keyframes site-loader-pulse {

  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes site-loader-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes site-loader-sweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(340%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .site-loader,
  .site-loader * {
    animation: none !important;
    transition: none !important;
  }
}

.site-top-header {
  background: var(--top-bg);
  border: 0;
}

.top-header-shell {
  width: 100%;
  height: 44px;
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-inline-start: 48px;
  padding-inline-end: 40px;
}

.top-social,
.top-contact {
  display: inline-flex;
  align-items: center;
}

.top-social {
  gap: 12px;
}

.top-contact {
  gap: 18px;
}

.top-social-link,
.top-contact-link {
  color: var(--top-ink);
  transition: color 160ms ease;
}

.top-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--top-ink-strong);
  font-family: var(--site-font);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 400;
}

.top-contact-text {
  direction: ltr;
  unicode-bidi: plaintext;
}

.top-contact-icon {
  font-size: 20px;
  line-height: 1;
}

.top-social-link:hover,
.top-contact-link:hover,
.top-social-link:focus-visible,
.top-contact-link:focus-visible {
  color: #705628;
}

.hero-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #080d12;
  background-image:
    linear-gradient(180deg, rgba(5, 8, 12, 0.38) 0%, rgba(5, 8, 12, 0.28) 18%, rgba(5, 8, 12, 0.64) 100%),
    radial-gradient(circle at 50% 34%, rgba(188, 151, 87, 0.2) 0%, rgba(188, 151, 87, 0) 36%),
    var(--hero-background-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-surface--inner {
  min-height: 0;
  overflow: visible;
  z-index: 20;
}

.hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.7) 0%, rgba(7, 11, 15, 0.28) 34%, rgba(7, 11, 15, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 11, 15, 0.2) 0%, rgba(7, 11, 15, 0.12) 38%, rgba(7, 11, 15, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

.site-main-header {
  position: relative;
  z-index: 50;
  padding-top: 20px;
  background: transparent;
  border: 0;
}

.site-main-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 160px;
  background: linear-gradient(180deg,
      rgba(7, 11, 15, 0.5) 0%,
      rgba(7, 11, 15, 0.18) 68%,
      var(--header-overlay-bottom) 100%);
  pointer-events: none;
}

.main-header-shell {
  position: relative;
  z-index: 60;
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
  display: flex;
  direction: ltr;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  min-height: 86px;
}

.brand-cell,
.cta-cell,
.main-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-cell,
.cta-cell,
.main-nav {
  border-inline-end: 0;
}

.brand-cell-left {
  display: none;
}

.brand-cell-right {
  order: 3;
  margin-inline-start: auto;
  border-inline-end: 0;
}

.brand-cell {
  flex: 0 0 auto;
  padding-inline: 0;
}

.brand-logo-img {
  width: min(162px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
}

.brand-logo-img--wide {
  width: min(128px, 100%);
  max-width: 128px;
}

.brand-cell-right .brand-logo-img {
  max-width: 156px;
}

.brand-cell-right--wide .brand-logo-img {
  max-width: 128px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  flex: 0 0 auto;
  position: relative;
  z-index: 100;
}

.language-switcher-details {
  position: relative;
  z-index: 100;
}

.language-switcher-summary {
  min-height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--header-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  list-style: none;
  transition: color 220ms ease;
}

.language-switcher-summary::-webkit-details-marker {
  display: none;
}

.language-switcher-summary::marker {
  display: none;
}

.language-switcher-summary:hover,
.language-switcher-summary:focus-visible,
.language-switcher-details[open] .language-switcher-summary {
  color: #ffffff;
}

.language-switcher-current {
  white-space: nowrap;
}

.language-switcher-chevron {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d8bd8a;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.language-switcher-chevron svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-switcher-details[open] .language-switcher-chevron {
  transform: rotate(180deg);
  color: #ffffff;
}

.language-switcher-menu {
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 12px);
  z-index: 120;
  min-width: 152px;
  margin: 0;
  padding: 10px;
  list-style: none;
  display: grid;
  gap: 6px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 13, 18, 0.94);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.language-switcher-link {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.language-switcher-link:hover,
.language-switcher-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.header-cta {
  min-width: 160px;
  min-height: 46px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b99a61;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  box-shadow: 0 16px 32px rgba(8, 8, 8, 0.22);
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.cta-cell {
  order: 1;
  flex: 0 0 auto;
  justify-content: flex-start;
}

.main-nav {
  order: 2;
  flex: 1 1 auto;
  direction: rtl;
  justify-content: center;
}

.main-nav-list {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 36px);
}

.main-nav-list li {
  display: block;
  border-inline-start: 0;
}

.main-nav-list li:last-child {
  border-inline-end: 0;
}

.main-nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--header-ink-soft);
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  position: relative;
  transition: color 220ms ease;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.main-nav-list .is-active a {
  color: var(--header-ink);
  font-weight: 700;
}

.main-nav-list a::after {
  display: none;
}

.main-nav-list a:hover,
.main-nav-list a:focus-visible {
  color: #d8b878;
}

.hero-law {
  position: relative;
  z-index: 1;
  padding: clamp(38px, 5.8vw, 66px) 0 clamp(56px, 7.2vw, 92px);
}

.inner-page-hero {
  position: relative;
  z-index: 1;
  padding: 18px 0 clamp(48px, 6vw, 72px);
}

.inner-page-shell {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
  text-align: center;
}

.inner-page-kicker {
  margin: 0;
  color: #d8bd8a;
  font-size: clamp(14px, 1.12vw, 16px);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.inner-page-title {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.inner-page-text {
  width: min(100%, 720px);
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.04vw, 18px);
  line-height: 1.85;
  font-weight: 500;
}

.hero-shell {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
  min-height: clamp(340px, 36vw, 470px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: min(1120px, 100%);
  margin-inline: auto;
  direction: rtl;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: #b48e51;
  box-shadow: 0 16px 36px rgba(7, 11, 15, 0.2);
  font-size: clamp(13px, 1.18vw, 16px);
  line-height: 1.3;
  font-weight: 500;
}

.hero-title {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(36px, 4.35vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  display: block;
}

.hero-title-main {
  font-weight: 800;
  white-space: nowrap;
}

.hero-title-accent {
  color: var(--gold);
}

.hero-description {
  display: none;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
  gap: 12px;
}

.hero-btn {
  min-width: 188px;
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  border: 1px solid transparent;
}

.hero-btn-primary {
  background: #ba9a60;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(10, 10, 10, 0.2);
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.header-cta,
.hero-btn {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    background-color 260ms ease,
    color 260ms ease,
    border-color 260ms ease;
}

.header-cta::after,
.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.22) 45%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.header-cta:hover,
.header-cta:focus-visible,
.hero-btn:hover,
.hero-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(43, 33, 20, 0.18);
}

.header-cta:hover::after,
.header-cta:focus-visible::after,
.hero-btn:hover::after,
.hero-btn:focus-visible::after {
  opacity: 1;
}

.header-cta:hover,
.header-cta:focus-visible,
.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  background: #aa8751;
  color: #ffffff;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.96);
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .js-scroll-section[data-scroll-ready="true"] {
    opacity: 0;
    transform: translate3d(0, 64px, 0) scale(0.965);
    filter: blur(6px);
    transition:
      opacity 1180ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 1280ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 1080ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
  }

  .js-scroll-section[data-scroll-ready="true"].is-scroll-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .site-footer-meta.js-scroll-section[data-scroll-ready="true"],
  .site-footer-meta.js-scroll-section[data-scroll-ready="true"].is-scroll-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
}

.metrics-strip {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #b4965c;
}

.metrics-shell {
  width: 100%;
  margin: 0;
  padding-inline: clamp(10px, 2.2vw, 28px);
  background: #b4965c;
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  text-align: center;
  direction: ltr;
  column-gap: clamp(4px, 0.8vw, 12px);
}

.metric-card {
  min-width: 0;
  padding: 12px clamp(8px, 1vw, 14px) 10px;
  direction: rtl;
}

.metric-value {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 2.9vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.metric-label {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.3;
  font-weight: 500;
  white-space: nowrap;
}

.about-brand {
  background: #ffffff;
  border-top: 0;
  padding: clamp(56px, 6.4vw, 84px) 0;
}

.about-brand-shell {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(54px, 6vw, 92px);
  align-items: center;
  direction: ltr;
}

.about-brand-copy {
  max-width: 492px;
  justify-self: end;
  direction: rtl;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-brand-kicker {
  margin: 0;
  color: var(--gold);
  font-size: clamp(18px, 1.24vw, 22px);
  line-height: 1.2;
  font-weight: 500;
}

.about-brand-title {
  margin: 18px 0 0;
  color: #15212d;
  font-size: clamp(38px, 3.45vw, 54px);
  line-height: 1.22;
  font-weight: 800;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  direction: rtl;
  column-gap: 10px;
  row-gap: 6px;
}

.about-brand-title-main {
  color: #15212d;
}

.about-brand-title-accent {
  color: var(--gold);
}

.about-brand-description {
  margin: 26px 0 0;
  color: #1f2b35;
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.9;
  font-weight: 500;
}

.about-brand-list {
  width: 100%;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  direction: rtl;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.about-brand-list li {
  margin: 0;
  position: relative;
  padding-inline-start: 22px;
  max-width: 100%;
  text-align: right;
  color: #46515a;
  font-size: clamp(15px, 0.98vw, 17px);
  line-height: 1.92;
  font-weight: 500;
}

.about-brand-list li+li {
  margin-top: 16px;
}

.about-brand-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.86em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8f7950;
}

.about-brand-list-text {
  min-width: 0;
}

.about-brand-cta {
  margin-top: 30px;
  min-width: 160px;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  border: 1px solid transparent;
  align-self: flex-start;
  box-shadow: 0 14px 28px rgba(40, 31, 18, 0.14);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    background-color 220ms ease;
}

.about-brand-cta:hover,
.about-brand-cta:focus-visible {
  transform: translateY(-2px);
  background: #a98a52;
  box-shadow: 0 12px 24px rgba(40, 31, 18, 0.18);
}

.about-brand-media {
  width: 100%;
  max-width: 580px;
  justify-self: start;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(33, 29, 22, 0.14);
  aspect-ratio: 1.28 / 1;
}

.about-brand-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.legal-quote-section {
  position: relative;
  overflow: hidden;
  background-color: #090b0e;
  background-image:
    linear-gradient(90deg, rgba(6, 8, 10, 0.56) 0%, rgba(6, 8, 10, 0.66) 36%, rgba(6, 8, 10, 0.46) 100%),
    linear-gradient(180deg, rgba(6, 8, 10, 0.1) 0%, rgba(6, 8, 10, 0.34) 100%),
    var(--legal-quote-bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.legal-quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 26%, rgba(191, 155, 91, 0.18) 0%, rgba(191, 155, 91, 0) 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.legal-quote-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 56px));
  min-height: clamp(230px, 26vw, 300px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 4vw, 54px) 0;
  direction: rtl;
}

.legal-quote-copy {
  width: min(100%, 860px);
  margin-inline: auto;
  text-align: center;
}

.legal-quote-intro {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 2.8vw, 46px);
  line-height: 1.28;
  font-weight: 800;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.legal-quote-title {
  margin: 14px 0 0;
  color: #c4a166;
  font-size: clamp(30px, 3.15vw, 52px);
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.company-values {
  background: #ffffff;
  padding: clamp(52px, 5.2vw, 78px) 0;
}

.company-values-shell {
  width: min(1138px, calc(100% - 28px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 408px);
  gap: clamp(32px, 4.1vw, 70px);
  align-items: center;
  direction: ltr;
}

.company-values-media {
  grid-column: 2;
  width: 100%;
  max-width: 408px;
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(42, 31, 17, 0.14);
  aspect-ratio: 5 / 6;
}

.company-values-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 45% center;
}

.company-values-content {
  grid-column: 1;
  width: min(100%, 620px);
  justify-self: center;
  direction: rtl;
  text-align: center;
}

.company-values-title {
  margin: 0;
  color: #1b1b1b;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
  font-weight: 800;
}

.company-values-grid {
  margin-top: clamp(26px, 3vw, 38px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 3.1vw, 52px);
  row-gap: clamp(28px, 3.2vw, 46px);
  direction: rtl;
}

.company-value-card {
  min-width: 0;
  text-align: center;
}

.main-header-shell,
.hero-shell,
.metrics-shell,
.about-brand-shell,
.legal-quote-shell,
.company-values-shell,
.hero-copy,
.about-brand-copy,
.about-brand-media,
.company-values-content,
.company-values-media {
  min-width: 0;
}

.company-value-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #b4965c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(180, 150, 92, 0.24);
}

.company-value-heading {
  margin: 14px 0 0;
  color: #151515;
  font-size: clamp(21px, 1.7vw, 31px);
  line-height: 1.25;
  font-weight: 800;
}

.company-value-text {
  margin: 10px auto 0;
  max-width: 260px;
  color: #55504a;
  font-size: clamp(14px, 1.02vw, 16px);
  line-height: 1.85;
  font-weight: 500;
}

.services-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 246, 239, 0.88) 100%);
  padding: clamp(50px, 5vw, 72px) 0 clamp(54px, 5.5vw, 84px);
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--services-showcase-bg-image, none);
  background-position: center;
  background-size: cover;
  opacity: 0.08;
  z-index: -2;
}

.services-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(180, 150, 92, 0.08), transparent 42%);
  z-index: -1;
}

.services-showcase-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.services-showcase-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
}

.services-showcase-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.services-showcase-title {
  margin: 12px 0 0;
  color: #16222d;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.12;
  font-weight: 800;
}

.services-showcase-title-accent {
  color: var(--gold);
}

.services-showcase-description {
  margin: 12px auto 0;
  max-width: 620px;
  color: #2f3944;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.85;
  font-weight: 500;
}

.services-grid {
  margin-top: clamp(34px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  direction: ltr;
  grid-auto-flow: row dense;
}

.service-card {
  grid-column: span 4;
  min-width: 0;
  min-height: clamp(250px, 24vw, 286px);
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #12181e;
  box-shadow: 0 18px 40px rgba(17, 22, 27, 0.18);
  display: flex;
  flex-direction: column;
  text-align: center;
  direction: rtl;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.service-card::before {
  display: none;
}

.service-card::after {
  display: none;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(17, 22, 27, 0.24);
  border-color: rgba(195, 159, 95, 0.3);
}

.service-card--compact {
  grid-column: span 3;
  min-height: clamp(250px, 24vw, 286px);
}

.service-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #e5ddd2;
}

.service-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--service-card-image, none);
  background-position: var(--service-card-position, center);
  background-size: cover;
  transform: scale(1.02);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.16) 0%, rgba(8, 12, 16, 0.4) 42%, rgba(8, 12, 16, 0.8) 100%);
}

.service-card:hover .service-card-media::before,
.service-card:focus-within .service-card-media::before {
  transform: scale(1.06);
}

.service-card-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(9, 14, 18, 0.18);
  font-size: 22px;
  line-height: 1;
}

.service-card-body {
  min-height: 100%;
  padding: 16px 18px 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-card-title {
  min-height: 0;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.34;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(10, 14, 18, 0.24);
}

.service-card--compact .service-card-title {
  font-size: clamp(17px, 1.22vw, 21px);
}

.service-card-text {
  min-height: 0;
  margin: 8px 0 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 0.92vw, 14px);
  line-height: 1.65;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 14px rgba(10, 14, 18, 0.22);
}

.service-card--compact .service-card-text {
  max-width: 26ch;
  font-size: clamp(12px, 0.84vw, 13px);
}

.service-card-link {
  margin-top: auto;
  width: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  direction: ltr;
  text-shadow: 0 2px 14px rgba(10, 14, 18, 0.18);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  color: #d3b06a;
  transform: translateY(-1px);
}

.service-card-link span {
  order: 2;
}

.service-card-link i {
  font-size: 14px;
  order: 1;
}

.company-goals {
  background: #c09e5e;
  padding: clamp(42px, 5vw, 72px) 0 clamp(40px, 4.8vw, 58px);
}

.company-goals-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(340px, 0.9fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center;
  direction: ltr;
}

.company-goals-media,
.company-goals-content {
  min-width: 0;
}

.company-goals-media {
  width: min(100%, 520px);
  padding-bottom: 34px;
}

.company-goals-media-stack {
  position: relative;
  margin-top: 10px;
  width: min(100%, 360px);
}

.company-goals-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 34px rgba(64, 46, 19, 0.18);
}

.company-goals-image-card--quote {
  width: min(100%, 308px);
}

.company-goals-image-card--office {
  width: min(100%, 308px);
}

.company-goals-image-card--accent {
  position: absolute;
  right: -8px;
  bottom: -22px;
  width: min(42vw, 138px);
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  background: #ffffff;
  z-index: 2;
}

.company-goals-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.company-goals-image-card--quote .company-goals-image {
  aspect-ratio: 21 / 6.7;
  object-position: center 34%;
}

.company-goals-image-card--office .company-goals-image {
  aspect-ratio: 1 / 0.96;
  object-position: 50% center;
}

.company-goals-image-card--accent .company-goals-image {
  aspect-ratio: 5 / 6;
  object-position: center center;
}

.company-goals-content {
  direction: rtl;
  text-align: right;
}

.company-goals-heading {
  max-width: 460px;
  margin-right: auto;
}

.company-goals-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 3.6vw, 50px);
  line-height: 1.12;
  font-weight: 800;
}

.company-goals-description {
  margin: 18px 0 0;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 1.04vw, 18px);
  line-height: 1.85;
  font-weight: 500;
}

.company-goals-grid {
  margin-top: clamp(34px, 3.6vw, 46px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(26px, 3vw, 44px);
  row-gap: 24px;
  direction: rtl;
}

.company-goal-card {
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  direction: rtl;
  text-align: center;
}

.company-goal-card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.company-goal-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 44px;
  box-shadow: 0 10px 24px rgba(95, 69, 24, 0.12);
}

.company-goal-card-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(31px, 2.5vw, 38px);
  line-height: 1.18;
  font-weight: 700;
}

.company-goal-card-text {
  width: 100%;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.9;
  font-weight: 500;
}

.client-journey {
  background: #ffffff;
  padding: clamp(46px, 5vw, 74px) 0 clamp(52px, 5.6vw, 82px);
}

.client-journey-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
}

.client-journey-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
}

.client-journey-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.client-journey-title {
  margin: 16px 0 0;
  color: #141f2b;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.18;
  font-weight: 800;
}

.client-journey-title-accent {
  color: var(--gold);
}

.client-journey-grid {
  margin-top: clamp(34px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
  direction: rtl;
}

.journey-step-card {
  min-width: 0;
  min-height: 112px;
  padding: 22px 28px 20px;
  border-radius: 16px;
  border: 1px solid rgba(239, 231, 218, 0.85);
  background: #fbf7f0;
  box-shadow: 0 12px 24px rgba(84, 64, 28, 0.05);
  direction: rtl;
  text-align: center;
  position: relative;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.journey-step-card:hover,
.journey-step-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(61, 48, 24, 0.1);
  border-color: rgba(200, 174, 118, 0.78);
}

.journey-step-head {
  width: 100%;
  position: relative;
  min-height: 42px;
  padding-inline: 58px;
}

.journey-step-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.journey-step-title {
  margin: 0;
  color: #151f2a;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.journey-step-text {
  margin: 14px 0 0;
  color: #6d6d6b;
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.85;
  font-weight: 500;
}

.faq-section {
  background: #ffffff;
  padding: clamp(44px, 5vw, 76px) 0 clamp(52px, 5.8vw, 86px);
}

.faq-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  direction: rtl;
}

.faq-title {
  margin: 0;
  color: #151f2a;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.18;
  font-weight: 800;
}

.faq-title-accent {
  color: var(--gold);
}

.faq-list {
  margin-top: clamp(34px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(229, 215, 189, 0.9);
  background: #fbf7f0;
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(200, 174, 118, 0.82);
  box-shadow: 0 16px 30px rgba(74, 56, 25, 0.07);
}

.faq-item.is-open {
  background: #f9f4eb;
  box-shadow: 0 18px 32px rgba(74, 56, 25, 0.06);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #151f2a;
  font: inherit;
  text-align: right;
  cursor: pointer;
}

.faq-question-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1c2631;
  font-size: 14px;
  line-height: 1;
  transition: transform 220ms ease;
  flex: 0 0 28px;
}

.faq-item.is-open .faq-question-icon {
  transform: rotate(180deg);
}

.faq-question-text {
  flex: 1 1 auto;
  color: #161f29;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.45;
  font-weight: 700;
}

.faq-answer {
  padding: 0 20px 18px;
  direction: rtl;
  text-align: right;
}

.faq-item:not(.is-open) .faq-answer {
  display: none;
}

.faq-answer p {
  margin: 0;
  color: #5f615f;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.95;
  font-weight: 500;
}

.contact-section {
  background: #ffffff;
  padding: clamp(48px, 5vw, 86px) 0 clamp(58px, 6vw, 94px);
}

.contact-section-shell {
  width: min(1138px, calc(100% - 26px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.9fr);
  gap: clamp(34px, 4vw, 56px);
  align-items: start;
  direction: ltr;
}

.contact-form-card,
.contact-sidebar {
  direction: rtl;
}

.contact-form-card {
  min-width: 0;
  padding: clamp(24px, 2.3vw, 32px) clamp(18px, 1.9vw, 24px);
  border: 1px solid rgba(226, 214, 192, 0.92);
  border-radius: 18px;
  background: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  color: #202833;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.contact-label-required {
  color: #c84e48;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid #dddbc5;
  border-radius: 14px;
  background: #ffffff;
  color: #1c2530;
  font: inherit;
  padding: 14px 16px;
  text-align: right;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-input {
  min-height: 50px;
}

.contact-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #a5a29a;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: rgba(180, 150, 92, 0.92);
  box-shadow: 0 0 0 4px rgba(180, 150, 92, 0.14);
  background: #ffffff;
}

.contact-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #a8884b;
  box-shadow: 0 14px 28px rgba(94, 73, 33, 0.18);
  transform: translateY(-1px);
}

.contact-sidebar {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.contact-title {
  margin: 10px 0 0;
  color: #161f29;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.14;
  font-weight: 800;
  text-align: center;
}

.contact-title-accent {
  color: var(--gold);
}

.contact-description {
  margin: 14px auto 0;
  max-width: 440px;
  color: #5d615f;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.95;
  font-weight: 500;
  text-align: center;
}

.contact-details {
  margin-top: 2px;
  width: min(100%, 430px);
  margin-inline-start: auto;
  margin-inline-end: 0;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  align-items: start;
  column-gap: 18px;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  direction: ltr;
  text-decoration: none;
  transition: opacity 180ms ease;
}

a.contact-detail:hover,
a.contact-detail:focus-visible {
  opacity: 0.88;
}

.contact-detail-copy {
  min-width: 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  direction: rtl;
  text-align: right;
}

.contact-detail-label {
  color: #202833;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.contact-detail-value {
  color: #1c2530;
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.45;
  font-weight: 700;
  word-break: break-word;
}

.contact-detail-value-email {
  font-size: clamp(17px, 1.22vw, 21px);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-detail-static {}

.contact-detail-static .contact-detail-copy {
  max-width: 348px;
}

.contact-detail-value-location {
  font-size: clamp(15px, 0.98vw, 17px);
  line-height: 1.7;
  font-weight: 500;
}

.contact-detail-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  justify-self: end;
  border-radius: 18px;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  box-shadow: none;
}

.contact-note {
  margin-top: 4px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(215, 200, 173, 0.86);
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
}

.contact-note-title {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 800;
}

.contact-note-text {
  margin: 0;
  color: #5e615f;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
  font-weight: 500;
}

.site-footer {
  background: var(--gold);
  color: #ffffff;
}

.site-footer-primary {
  padding: clamp(48px, 5vw, 66px) 0 0;
}

.site-footer-shell {
  width: min(1138px, calc(100% - 56px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(340px, 1.4fr) minmax(170px, 0.72fr) minmax(280px, 0.98fr);
  gap: clamp(34px, 4vw, 78px);
  align-items: start;
  direction: rtl;
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
}

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

.footer-brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
}

.footer-brand-mark {
  width: min(360px, 100%);
  height: auto;
  display: block;
  margin-inline: auto;
}

.footer-brand-description {
  margin: 22px auto 0;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  line-height: 1.95;
  font-weight: 500;
}

.footer-social {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-social-link {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.footer-heading {
  position: relative;
  display: inline-block;
  margin: 0 0 24px;
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.footer-heading::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 84px;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.footer-links-list,
.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links {
  text-align: center;
  padding-top: 8px;
}

.footer-links .footer-heading,
.footer-contact .footer-heading {
  padding-bottom: 0;
}

.footer-links .footer-heading::after,
.footer-contact .footer-heading::after {
  display: none;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-list a {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  transition: opacity 180ms ease;
}

.footer-links-list a:hover,
.footer-links-list a:focus-visible {
  opacity: 0.82;
}

.footer-contact {
  text-align: center;
  padding-top: 8px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-link {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.footer-contact-link i {
  margin-top: 5px;
  font-size: 14px;
}

.footer-contact-link-email {
  text-decoration: none;
}

.footer-contact-link-static {
  max-width: 360px;
  margin-inline: auto;
}

.footer-contact-text {
  display: inline-block;
}

.site-footer-legal {
  width: min(1138px, calc(100% - 56px));
  margin-inline: auto;
  margin-top: clamp(42px, 4vw, 52px);
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  direction: rtl;
}

.site-footer-legal-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  line-height: 1.9;
  font-weight: 500;
  text-align: center;
}

.site-footer-meta {
  background: #ffffff;
  border-top: 1px solid rgba(166, 133, 72, 0.16);
}

.site-footer-meta-shell {
  width: min(1138px, calc(100% - 56px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  direction: rtl;
}

.site-footer-meta-copy,
.site-footer-meta-records {
  margin: 0;
  color: #a78347;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
}

.site-footer-meta-copy {
  text-align: right;
}

.site-footer-meta-records {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.site-footer-meta-records>span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.component-slot {
  display: block;
  background: #ffffff;
  padding: clamp(42px, 5vw, 72px) 0 clamp(54px, 6vw, 84px);
}

.component-shell {
  width: min(1138px, calc(100% - 24px));
  margin-inline: auto;
}

.component-slot .alert {
  margin-bottom: 20px;
  border-radius: 14px;
}

.component-slot .blog-item,
.component-slot .items-leading>div,
.component-slot .items-row>div,
.component-slot .blog-items>div,
.component-slot .com-content-category-blog__items>div {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(226, 214, 192, 0.92);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(47, 36, 19, 0.06);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.component-slot .blog-item:hover,
.component-slot .items-leading>div:hover,
.component-slot .items-row>div:hover,
.component-slot .blog-items>div:hover,
.component-slot .com-content-category-blog__items>div:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(47, 36, 19, 0.09);
  border-color: rgba(180, 150, 92, 0.5);
}

.component-slot .blog-items,
.component-slot .com-content-category-blog__items,
.component-slot .items-row,
.component-slot .items-leading {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.component-slot .item-page {
  max-width: 840px;
  margin-inline: auto;
  padding: 28px;
  border: 1px solid rgba(226, 214, 192, 0.92);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(47, 36, 19, 0.06);
}

.component-slot .page-header {
  margin: 0 0 14px;
}

.component-slot .page-header h1,
.component-slot .page-header h2,
.component-slot .content-category>.page-header h1 {
  margin: 0;
  color: #16222d;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 800;
}

.component-slot .page-header a {
  color: inherit;
}

.component-slot .category-desc,
.component-slot .item-content,
.component-slot .item-page,
.component-slot .com-content-article {
  color: #3b434c;
  font-size: 16px;
  line-height: 1.95;
}

.component-slot .article-info {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #8a764f;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.component-slot .item-image,
.component-slot figure {
  margin: 0 0 18px;
}

.component-slot .item-image img,
.component-slot .com-content-article img,
.component-slot .blog-item img,
.component-slot .item-page img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.component-slot .readmore {
  margin: 18px 0 0;
}

.component-slot .readmore a {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.component-slot .pagination,
.component-slot .com-content-category-blog__navigation {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.component-slot .pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.component-slot .pagination li a,
.component-slot .pagination li span {
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(180, 150, 92, 0.22);
  color: #1b2530;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.component-slot .pagination .active span {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.is-article-view .inner-page-hero {
  display: none;
}

.is-article-view .component-slot {
  padding: clamp(34px, 4vw, 54px) 0 clamp(62px, 7vw, 92px);
  background: #ffffff;
}

.is-article-view .component-shell {
  width: min(1120px, calc(100% - 48px));
}

.is-article-view .component-slot .item-page,
.is-article-view .component-slot .com-content-article {
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #17212b;
  font-size: 15px;
  line-height: 2;
}

.is-article-view .component-slot .page-header {
  width: min(900px, 100%);
  margin: 0 auto 8px;
  text-align: center;
}

.is-article-view .component-slot .article-detail-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.is-article-view .component-slot .page-header h1 {
  margin: 0;
  color: #101820;
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
}

.is-article-view .component-slot .article-info {
  margin: 0 auto 24px;
  padding: 0;
  width: min(900px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px 10px;
  color: #a69b8e;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}

.is-article-view .component-slot .article-info-term,
.is-article-view .component-slot .createdby,
.is-article-view .component-slot .category-name {
  display: none;
}

.is-article-view .component-slot .article-info dd {
  margin: 0;
}

.is-article-view .component-slot .article-info span[aria-hidden="true"] {
  display: none;
}

.is-article-view .component-slot .article-info .hits::before {
  content: "/";
  margin-inline: 2px 10px;
  color: #c8bfb3;
}

.is-article-view .component-slot .article-detail-hero-media,
.is-article-view .component-slot .item-page>.item-image,
.is-article-view .component-slot .item-page>figure {
  width: min(100%, 980px);
  margin: 24px auto 24px;
  overflow: hidden;
  border-radius: 11px;
  position: relative;
  isolation: isolate;
}

.is-article-view .component-slot .article-detail-hero-media::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(12, 19, 26, 0) 0%, rgba(12, 19, 26, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
}

.is-article-view .component-slot .article-detail-hero-media img {
  width: 100%;
  display: block;
  aspect-ratio: 2.35 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 11px;
}

.is-article-view .component-slot .com-content-article__body {
  width: min(920px, 100%);
  margin: 0 auto;
  color: #25313c;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 2.08;
  text-align: start;
}

.is-article-view .component-slot .com-content-article__body>*:first-child {
  margin-top: 0;
}

.is-article-view .component-slot .com-content-article__body p {
  margin: 0 0 18px;
}

.is-article-view .component-slot .com-content-article__body h2,
.is-article-view .component-slot .com-content-article__body h3,
.is-article-view .component-slot .com-content-article__body h4 {
  margin: 30px 0 14px;
  color: #111820;
  line-height: 1.55;
  font-weight: 800;
  text-align: center;
}

.is-article-view .component-slot .com-content-article__body h2 {
  font-size: clamp(21px, 1.7vw, 28px);
}

.is-article-view .component-slot .com-content-article__body h3 {
  font-size: clamp(18px, 1.3vw, 23px);
}

.is-article-view .component-slot .com-content-article__body h4 {
  font-size: clamp(16px, 1.1vw, 19px);
}

.is-article-view .component-slot .com-content-article__body a,
.is-article-view .component-slot .com-content-article__body strong {
  color: var(--gold);
  font-weight: 800;
}

.is-article-view .component-slot .com-content-article__body ul,
.is-article-view .component-slot .com-content-article__body ol {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.is-article-view .component-slot .com-content-article__body li {
  position: relative;
  margin: 0 0 12px;
  padding-inline-start: 22px;
}

.is-article-view .component-slot .com-content-article__body li::before {
  content: "";
  position: absolute;
  inset-block-start: 1em;
  inset-inline-start: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.is-article-view .component-slot .com-content-article__body blockquote {
  margin: 26px 0;
  padding: 22px 26px;
  border-inline-start: 4px solid var(--gold);
  border-radius: 14px;
  background: #f7f2e8;
  color: #2f3740;
  font-weight: 700;
}

.is-article-view .component-slot .com-content-article__body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 12px;
}

.is-article-view .component-slot .com-content-article__body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(180, 150, 92, 0.2);
}

.is-article-view .component-slot .com-content-article__body th,
.is-article-view .component-slot .com-content-article__body td {
  padding: 14px 16px;
  border: 1px solid rgba(180, 150, 92, 0.18);
  text-align: start;
}

.is-article-view .component-slot .com-content-article__body th {
  background: #f3ead9;
  color: #111820;
  font-weight: 800;
}

.is-blog-view .inner-page-hero {
  padding: 42px 0 58px;
  background-color: #ffffff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.84) 54%, #ffffff 100%),
    url("../images/blog-scales-pattern.png");
  background-position: center top, center top;
  background-repeat: no-repeat, repeat;
  background-size: auto, 760px auto;
}

.is-blog-view .inner-page-shell {
  width: min(920px, calc(100% - 42px));
  direction: rtl;
}

html[dir="ltr"] .is-blog-view .inner-page-shell {
  direction: ltr;
  text-align: center;
}

.is-blog-view .inner-page-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.is-blog-view .inner-page-title {
  margin-top: 10px;
  color: #16222d;
  font-size: clamp(30px, 3.35vw, 44px);
  line-height: 1.2;
  text-shadow: none;
}

.is-blog-view .inner-page-title-accent {
  color: var(--gold);
}

.is-blog-view .inner-page-text {
  width: min(100%, 700px);
  margin-top: 10px;
  color: #222a31;
  font-size: clamp(13px, 0.98vw, 16px);
  line-height: 1.75;
  font-weight: 600;
}

.is-blog-view .component-slot {
  padding: 42px 0 clamp(62px, 6vw, 86px);
}

.is-blog-view .component-shell {
  width: min(1110px, calc(100% - 48px));
}

.is-blog-view .component-slot .com-content-category-blog {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 24px;
  align-items: stretch;
  direction: rtl;
}

.is-blog-view .component-slot .com-content-category-blog>.page-header,
.is-blog-view .component-slot .com-content-category-blog>.category-desc,
.is-blog-view .component-slot .com-content-category-blog>.cat-children,
.is-blog-view .component-slot .com-content-category-blog>.pagination,
.is-blog-view .component-slot .com-content-category-blog>.com-content-category-blog__navigation {
  grid-column: 1 / -1;
}

.is-blog-view .component-slot .blog-items,
.is-blog-view .component-slot .com-content-category-blog__items,
.is-blog-view .component-slot .items-row,
.is-blog-view .component-slot .items-leading {
  display: contents !important;
}

.is-blog-view .component-slot .blog-item,
.is-blog-view .component-slot .items-leading>div,
.is-blog-view .component-slot .items-row>div,
.is-blog-view .component-slot .blog-items>div,
.is-blog-view .component-slot .com-content-category-blog__items>div {
  width: auto !important;
  max-width: none !important;
  min-height: 100%;
  margin: 0 !important;
  padding: 4px 4px 13px;
  float: none !important;
  flex: 0 1 auto !important;
  grid-column: auto !important;
  display: flex;
  background: #ffffff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 7px 20px rgba(18, 18, 18, 0.09);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.is-blog-view .component-slot .blog-item:hover,
.is-blog-view .component-slot .items-leading>div:hover,
.is-blog-view .component-slot .items-row>div:hover,
.is-blog-view .component-slot .blog-items>div:hover,
.is-blog-view .component-slot .com-content-category-blog__items>div:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 26px rgba(18, 18, 18, 0.12);
}

.is-blog-view .component-slot .item-content {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: start;
}

.is-blog-view .component-slot .item-content>.item-image,
.is-blog-view .component-slot .item-content>figure,
.is-blog-view .component-slot .item-content>:not(.page-header):not(.article-info):not(.readmore):has(img) {
  order: 1;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  isolation: isolate;
  background: #f5efe5;
}

.is-blog-view .component-slot .item-content>.page-header {
  order: 2;
}

.is-blog-view .component-slot .item-content>.article-info {
  order: 3;
}

.is-blog-view .component-slot .item-content>:not(.page-header):not(.article-info):not(.readmore):not(.item-image):not(figure):not(:has(img)) {
  display: none;
}

.is-blog-view .component-slot .item-content>:not(.page-header):not(.article-info):not(.readmore):has(img) {
  font-size: 0;
  line-height: 0;
}

.is-blog-view .component-slot .item-image::before,
.is-blog-view .component-slot figure::before,
.is-blog-view .component-slot .item-content>:not(.page-header):not(.article-info):not(.readmore):has(img)::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(21, 28, 35, 0) 0%, rgba(21, 28, 35, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.is-blog-view .component-slot .item-image::after,
.is-blog-view .component-slot figure::after,
.is-blog-view .component-slot .item-content>:not(.page-header):not(.article-info):not(.readmore):has(img)::after {
  content: "";
  position: absolute;
  inset-block-end: 12px;
  inset-inline-end: 14px;
  width: 42px;
  aspect-ratio: 1;
  background: url("../images/company-goals-corner-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
  pointer-events: none;
  z-index: 2;
}

.is-blog-view .component-slot .item-image img,
.is-blog-view .component-slot .com-content-article img,
.is-blog-view .component-slot .blog-item img,
.is-blog-view .component-slot .item-page img,
.is-blog-view .component-slot .item-content>:not(.page-header):not(.article-info):not(.readmore):has(img) img {
  width: 100%;
  display: block;
  aspect-ratio: 1.72 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

.is-blog-view .component-slot .page-header {
  margin: 0 12px 10px;
}

.is-blog-view .component-slot .page-header h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(13px, 0.88vw, 15px);
  line-height: 1.62;
  font-weight: 800;
  text-align: start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.is-blog-view .component-slot .page-header a {
  text-decoration: none;
}

.is-blog-view .component-slot .article-info {
  margin: 0 12px 13px;
  justify-content: flex-start;
  align-items: center;
  gap: 4px 8px;
  color: #a79e94;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
}

.is-blog-view .component-slot .article-info span[aria-hidden="true"] {
  display: none;
}

.is-blog-view .component-slot .article-info-term,
.is-blog-view .component-slot .createdby,
.is-blog-view .component-slot .category-name {
  display: none;
}

.is-blog-view .component-slot .article-info dd {
  margin: 0;
}

.is-blog-view .component-slot .readmore {
  order: 20;
  display: block;
  margin-top: auto;
  padding: 1px 0 0;
}

.is-blog-view .component-slot .readmore a {
  width: 100%;
  min-height: 29px;
  padding: 0 22px;
  border-radius: 999px;
  background: #bc9d60;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  direction: ltr;
  font-size: 13px;
  font-weight: 700;
  box-shadow: none;
  text-decoration: none;
}

.is-blog-view .component-slot .readmore a::before {
  content: "\2190";
  font-size: 15px;
  line-height: 1;
}

.is-blog-view .component-slot .blog-card--without-image .page-header {
  margin-top: 6px;
}

html[dir="ltr"] .is-blog-view .component-slot .page-header h2 {
  text-align: start;
}

html[dir="ltr"] .is-blog-view .component-slot .com-content-category-blog {
  direction: ltr;
}

html[dir="ltr"] .is-blog-view .component-slot .readmore a::before {
  content: "\2192";
}

@media (max-width: 980px) {
  .is-blog-view .inner-page-hero {
    background-size: auto, 640px auto;
  }

  .is-blog-view .component-shell {
    width: min(100%, calc(100% - 30px));
  }

  .is-blog-view .component-slot .com-content-category-blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .is-blog-view .inner-page-hero {
    padding: 34px 0 44px;
    background-size: auto, 520px auto;
  }

  .is-blog-view .component-slot {
    padding-top: 30px;
  }

  .is-blog-view .component-slot .com-content-category-blog {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 1180px) {
  .main-header-shell {
    width: min(100%, calc(100% - 32px));
    gap: 20px;
  }

  .brand-cell-right .brand-logo-img {
    max-width: 136px;
  }

  .header-cta {
    min-width: 144px;
    padding-inline: 26px;
  }

  .main-nav-list {
    gap: 22px;
  }

  .main-nav-list a {
    font-size: 16px;
  }

  .hero-shell {
    width: min(100%, calc(100% - 32px));
    min-height: clamp(320px, 38vw, 420px);
  }

  .hero-badge {
    padding-inline: 24px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-title {
    font-size: clamp(32px, 4.15vw, 46px);
  }

  .metrics-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 4px;
  }

  .metric-value,
  .metric-label {
    white-space: normal;
  }

  .about-brand-shell {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 32px));
    gap: 34px;
  }

  .about-brand-media {
    max-width: 760px;
    margin-inline: auto;
  }

  .about-brand-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
    align-items: center;
  }

  .about-brand-title {
    justify-content: center;
  }

  .about-brand-list {
    align-items: center;
    text-align: center;
  }

  .about-brand-list li {
    width: fit-content;
    max-width: 100%;
    text-align: center;
  }

  .about-brand-cta {
    align-self: center;
  }

  .company-values-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 30px;
  }

  .company-values-media {
    max-width: min(360px, 100%);
  }

  .company-values-content {
    width: min(100%, 580px);
  }

  .services-grid {
    gap: 12px;
  }

  .company-goals-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company-goals-media,
  .company-goals-content {
    margin-inline: auto;
  }

  .company-goals-content {
    text-align: center;
  }

  .company-goals-heading {
    margin-inline: auto;
    text-align: center;
  }

  .company-goals-media {
    width: min(100%, 460px);
  }

  .client-journey-grid {
    gap: 16px;
  }

  .faq-shell {
    width: min(100%, calc(100% - 20px));
  }

  .contact-section-shell {
    width: min(100%, calc(100% - 20px));
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    gap: 26px;
  }

  .site-footer-shell {
    width: min(100%, calc(100% - 30px));
    grid-template-columns: minmax(280px, 1.18fr) minmax(160px, 0.66fr) minmax(220px, 0.88fr);
    gap: 28px;
  }

  .site-footer-legal,
  .site-footer-meta-shell {
    width: min(100%, calc(100% - 30px));
  }

  .footer-heading {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .top-header-shell {
    min-height: 40px;
    height: auto;
    flex-wrap: wrap;
    row-gap: 6px;
    padding-inline-start: 14px;
    padding-inline-end: 14px;
  }

  .top-social {
    gap: 8px;
  }

  .top-contact {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .top-social-link {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .top-contact-link {
    font-size: 14px;
  }

  .top-contact-icon {
    font-size: 14px;
  }

  .main-header-shell {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, calc(100% - 20px));
    gap: 10px 16px;
    min-height: 0;
    border-inline: 0;
  }

  .brand-cell,
  .cta-cell,
  .main-nav {
    min-height: 64px;
    border-inline-end: 0;
  }

  .brand-cell-left {
    display: none;
  }

  .cta-cell {
    order: 1;
    flex: 0 0 auto;
    justify-content: flex-start;
    padding-inline: 0;
  }

  .brand-cell-right {
    order: 2;
    flex: 1 1 auto;
    justify-content: flex-end;
    margin-inline-start: 0;
  }

  .brand-logo-img {
    width: min(126px, 100%);
  }

  .brand-logo-img--wide,
  .brand-cell-right--wide .brand-logo-img {
    width: min(114px, 100%);
    max-width: 114px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
  }

  .mobile-menu-toggle {
    order: 3;
  }

  .main-nav {
    order: 4;
    display: none;
    flex: 1 1 100%;
    min-height: 0;
    border-top: 0;
  }

  .mobile-menu-toggle:checked+.main-nav {
    display: block;
  }

  .main-nav-list {
    width: 100%;
    height: auto;
    padding: 8px 0;
    overflow-x: visible;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 11, 16, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }

  .main-nav-list li {
    border-inline: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav-list li:first-child {
    border-top: 0;
  }

  .main-nav-list a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 16px;
    white-space: normal;
    line-height: 1.35;
    text-shadow: none;
  }

  .main-nav-list a::after {
    display: none;
  }

  .main-nav-list .is-active a {
    color: #dcc18d;
  }

  .hero-law {
    padding: 34px 0 50px;
  }

  .hero-shell {
    width: min(100%, calc(100% - 20px));
    min-height: 285px;
  }

  .hero-title {
    font-size: clamp(27px, 5.8vw, 38px);
    line-height: 1.12;
  }

  .hero-badge {
    padding: 11px 18px;
    font-size: clamp(12px, 3vw, 14px);
  }

  .hero-btn {
    min-width: 154px;
    min-height: 42px;
    padding-inline: 22px;
    font-size: clamp(13px, 2.8vw, 15px);
  }

  .hero-actions {
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .metrics-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 12px;
    column-gap: 8px;
  }

  .metric-card {
    padding: 12px 8px;
  }

  .metric-value {
    font-size: clamp(24px, 5.8vw, 32px);
  }

  .metric-label {
    font-size: clamp(12px, 2.6vw, 14px);
  }

  .about-brand {
    padding: 42px 0 50px;
  }

  .about-brand-shell {
    width: min(100%, calc(100% - 20px));
    gap: 26px;
  }

  .about-brand-copy {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .company-values-content,
  .company-value-card {
    text-align: center;
  }

  .about-brand-kicker {
    font-size: clamp(16px, 3.2vw, 20px);
  }

  .about-brand-title {
    font-size: clamp(30px, 7.2vw, 42px);
  }

  .about-brand-description {
    font-size: clamp(15px, 3.7vw, 18px);
  }

  .about-brand-list li {
    font-size: clamp(14px, 3.2vw, 17px);
    text-align: center;
  }

  .about-brand-list {
    align-items: center;
    text-align: center;
  }

  .about-brand-cta {
    min-height: 48px;
    font-size: clamp(16px, 3.7vw, 19px);
    align-self: center;
  }

  .legal-quote-shell {
    width: min(100%, calc(100% - 20px));
    min-height: 210px;
    justify-content: center;
    padding: 28px 0;
  }

  .legal-quote-copy {
    width: min(100%, 760px);
    text-align: center;
  }

  .legal-quote-intro {
    font-size: clamp(24px, 5.2vw, 38px);
  }

  .legal-quote-title {
    margin-top: 12px;
    font-size: clamp(28px, 6vw, 42px);
  }

  .company-values {
    padding: 38px 0 44px;
  }

  .company-values-shell {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 20px));
    gap: 28px;
  }

  .company-values-content,
  .company-values-media {
    grid-column: auto;
    justify-self: center;
  }

  .company-values-media {
    max-width: min(420px, 100%);
  }

  .company-values-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .company-values-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .company-value-heading {
    font-size: clamp(25px, 6.4vw, 32px);
  }

  .company-value-text {
    font-size: clamp(15px, 3.6vw, 18px);
  }

  .services-showcase {
    padding: 40px 0 46px;
  }

  .services-showcase-shell {
    width: min(100%, calc(100% - 20px));
  }

  .services-showcase-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .services-showcase-description {
    font-size: clamp(15px, 3.6vw, 18px);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card,
  .service-card--compact {
    grid-column: span 1;
    min-height: 272px;
    padding: 0;
    border-radius: 22px;
  }

  .service-card-icon-badge {
    width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .service-card-body {
    padding: 16px 16px 18px;
  }

  .service-card-title {
    font-size: clamp(19px, 3.1vw, 23px);
  }

  .service-card--compact .service-card-title {
    font-size: clamp(19px, 3.1vw, 23px);
  }

  .service-card-text {
    font-size: clamp(13px, 2vw, 15px);
  }

  .service-card--compact .service-card-text {
    max-width: 30ch;
    font-size: clamp(13px, 2vw, 15px);
  }

  .service-card-link {
    font-size: clamp(13px, 2vw, 14px);
  }

  .company-goals {
    padding: 38px 0 40px;
  }

  .company-goals-shell {
    width: min(100%, calc(100% - 20px));
  }

  .company-goals-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .company-goals-description {
    font-size: clamp(15px, 3.5vw, 18px);
  }

  .company-goals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .company-goal-card {
    min-height: 0;
  }

  .company-goal-card-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .company-goal-card-text {
    font-size: clamp(14px, 3.2vw, 16px);
  }

  .client-journey {
    padding: 40px 0 46px;
  }

  .client-journey-shell {
    width: min(100%, calc(100% - 20px));
  }

  .client-journey-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .client-journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-step-card {
    min-height: 0;
    padding: 20px 22px 18px;
  }

  .journey-step-head {
    min-height: 40px;
    padding-inline: 52px;
  }

  .journey-step-badge {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .journey-step-title {
    font-size: clamp(22px, 5.3vw, 30px);
  }

  .journey-step-text {
    font-size: clamp(14px, 3vw, 16px);
  }

  .faq-section {
    padding: 40px 0 46px;
  }

  .faq-shell {
    width: min(100%, calc(100% - 20px));
  }

  .faq-title {
    font-size: clamp(30px, 7.8vw, 44px);
  }

  .faq-question {
    padding: 16px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-question-text {
    font-size: clamp(17px, 4.1vw, 22px);
  }

  .faq-answer p {
    font-size: clamp(14px, 3vw, 16px);
  }

  .contact-section {
    padding: 40px 0 46px;
  }

  .contact-section-shell {
    width: min(100%, calc(100% - 20px));
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-sidebar {
    order: -1;
    padding-top: 0;
  }

  .contact-description {
    max-width: 460px;
  }

  .contact-detail {
    grid-template-columns: minmax(0, 1fr) 56px;
    column-gap: 14px;
  }

  .contact-detail-copy {
    max-width: none;
  }

  .contact-detail-static .contact-detail-copy {
    max-width: none;
  }

  .site-footer-primary {
    padding: 38px 0 0;
  }

  .site-footer-shell {
    width: min(100%, calc(100% - 20px));
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-brand-lockup,
  .footer-social {
    justify-content: center;
  }

  .footer-brand-description {
    margin-inline: auto;
  }

  .site-footer-legal,
  .site-footer-meta-shell {
    width: min(100%, calc(100% - 20px));
  }

  .site-footer-meta-shell {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
  }

  .site-footer-meta-copy,
  .site-footer-meta-records {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .top-header-shell {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero-badge {
    width: min(100%, 420px);
    text-align: center;
  }

  .metrics-shell {
    grid-template-columns: 1fr;
    padding-inline: 10px;
    row-gap: 0;
  }

  .metric-card {
    padding: 13px 8px 11px;
  }

  .about-brand {
    padding: 34px 0 42px;
  }

  .about-brand-shell {
    width: min(100%, calc(100% - 18px));
    gap: 20px;
  }

  .about-brand-title {
    font-size: clamp(28px, 9.2vw, 36px);
  }

  .about-brand-description {
    line-height: 1.7;
  }

  .about-brand-list {
    padding-inline-end: 0;
    align-items: center;
  }

  .about-brand-list li {
    margin-top: 0;
    line-height: 1.7;
    padding-inline-start: 18px;
    text-align: center;
  }

  .about-brand-list li+li {
    margin-top: 10px;
  }

  .legal-quote-shell {
    width: min(100%, calc(100% - 18px));
    min-height: 185px;
    padding: 24px 0;
  }

  .legal-quote-intro {
    font-size: clamp(22px, 7.2vw, 30px);
    line-height: 1.36;
  }

  .legal-quote-title {
    margin-top: 10px;
    font-size: clamp(25px, 8.2vw, 34px);
    line-height: 1.28;
  }

  .company-values {
    padding: 32px 0 38px;
  }

  .company-values-shell {
    width: min(100%, calc(100% - 18px));
    gap: 20px;
  }

  .company-values-title {
    font-size: clamp(28px, 9.2vw, 36px);
  }

  .services-showcase {
    padding: 34px 0 40px;
  }

  .services-showcase-shell {
    width: min(100%, calc(100% - 18px));
  }

  .services-showcase-kicker {
    font-size: 16px;
  }

  .services-showcase-title {
    font-size: clamp(28px, 9.2vw, 36px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .service-card,
  .service-card--compact {
    min-height: 248px;
    padding: 0;
    border-radius: 20px;
  }

  .service-card-icon-badge {
    width: 50px;
    height: 50px;
    font-size: 19px;
  }

  .service-card-body {
    padding: 14px 14px 16px;
  }

  .service-card-title,
  .service-card--compact .service-card-title {
    font-size: clamp(18px, 4.7vw, 22px);
  }

  .service-card-text,
  .service-card--compact .service-card-text {
    font-size: clamp(12px, 3.2vw, 14px);
  }

  .company-goals {
    padding: 32px 0 34px;
  }

  .company-goals-shell {
    width: min(100%, calc(100% - 18px));
  }

  .company-goals-title {
    font-size: clamp(28px, 9vw, 36px);
  }

  .company-goals-media {
    width: min(100%, 360px);
    padding-bottom: 28px;
  }

  .company-goals-media-stack,
  .company-goals-image-card--office {
    width: min(100%, 300px);
  }

  .company-goals-image-card--quote {
    width: min(100%, 300px);
  }

  .company-goals-image-card--accent {
    width: min(40vw, 128px);
    right: 0;
    bottom: -18px;
  }

  .company-goals-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .company-goal-card-head {
    gap: 8px;
  }

  .company-goal-card-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .client-journey {
    padding: 34px 0 40px;
  }

  .client-journey-shell {
    width: min(100%, calc(100% - 18px));
  }

  .client-journey-kicker {
    font-size: 16px;
  }

  .client-journey-title {
    font-size: clamp(28px, 9.1vw, 36px);
  }

  .client-journey-grid {
    margin-top: 26px;
  }

  .journey-step-card {
    padding: 18px 18px 16px;
  }

  .journey-step-badge {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .journey-step-head {
    min-height: 38px;
    padding-inline: 46px;
  }

  .journey-step-title {
    font-size: clamp(21px, 6vw, 28px);
  }

  .faq-section {
    padding: 34px 0 40px;
  }

  .faq-shell {
    width: min(100%, calc(100% - 18px));
  }

  .faq-title {
    font-size: clamp(28px, 8.8vw, 36px);
  }

  .faq-list {
    margin-top: 26px;
    gap: 10px;
  }

  .faq-question {
    padding: 15px 14px;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 14px 14px;
  }

  .contact-section {
    padding: 36px 0 42px;
  }

  .contact-section-shell {
    width: min(100%, calc(100% - 18px));
    gap: 24px;
  }

  .contact-form-card {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .contact-label {
    font-size: 16px;
  }

  .contact-input,
  .contact-textarea {
    padding: 13px 14px;
    font-size: 15px;
  }

  .contact-input {
    min-height: 48px;
  }

  .contact-textarea {
    min-height: 120px;
  }

  .contact-submit {
    min-height: 50px;
    font-size: 18px;
  }

  .contact-kicker {
    font-size: 16px;
  }

  .contact-title {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .contact-description {
    font-size: 15px;
    line-height: 1.85;
  }

  .contact-detail {
    grid-template-columns: minmax(0, 1fr) 46px;
    column-gap: 12px;
  }

  .contact-detail-copy {
    max-width: none;
  }

  .contact-detail-static .contact-detail-copy {
    max-width: none;
  }

  .contact-detail-label {
    font-size: 16px;
  }

  .contact-detail-value {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .contact-detail-value-location {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-detail-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 13px;
    font-size: 18px;
  }

  .contact-note {
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .contact-note-title {
    font-size: 20px;
  }

  .contact-note-text {
    font-size: 14px;
    line-height: 1.85;
  }

  .site-footer-primary {
    padding-top: 34px;
  }

  .site-footer-shell {
    width: min(100%, calc(100% - 18px));
    gap: 28px;
  }

  .footer-brand-lockup {
    justify-content: center;
  }

  .footer-brand-mark {
    width: min(300px, 100%);
  }

  .footer-brand-description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .footer-heading {
    margin-bottom: 18px;
    padding-bottom: 8px;
    font-size: 22px;
  }

  .footer-heading::after {
    width: 72px;
  }

  .footer-links-list {
    gap: 12px;
  }

  .footer-links-list a,
  .footer-contact-link {
    font-size: 15px;
  }

  .footer-contact-link-static {
    max-width: 290px;
  }

  .footer-social {
    margin-top: 20px;
    gap: 18px;
  }

  .footer-social-link {
    font-size: 19px;
  }

  .site-footer-legal {
    width: min(100%, calc(100% - 18px));
    margin-top: 28px;
    padding: 16px 0 20px;
  }

  .site-footer-legal-text {
    font-size: 12px;
    line-height: 1.7;
  }

  .site-footer-meta-shell {
    width: min(100%, calc(100% - 18px));
    padding: 11px 0;
  }

  .site-footer-meta-copy,
  .site-footer-meta-records {
    font-size: 12px;
    line-height: 1.65;
  }

  .site-footer-meta-records {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .main-header-shell {
    width: calc(100% - 12px);
  }

  .brand-cell,
  .cta-cell,
  .brand-cell-right {
    min-height: 64px;
  }

  .brand-logo-img {
    width: min(108px, 100%);
  }

  .brand-logo-img--wide,
  .brand-cell-right--wide .brand-logo-img {
    width: min(102px, 100%);
    max-width: 102px;
  }

  .hero-shell,
  .about-brand-shell,
  .legal-quote-shell,
  .company-values-shell,
  .services-showcase-shell,
  .company-goals-shell,
  .client-journey-shell,
  .faq-shell,
  .contact-section-shell,
  .site-footer-shell {
    width: calc(100% - 12px);
  }

  .site-footer-legal,
  .site-footer-meta-shell {
    width: calc(100% - 12px);
  }

  .hero-title {
    font-size: clamp(23px, 7vw, 29px);
    line-height: 1.14;
  }

  .top-contact {
    justify-content: center;
  }

  .top-contact-link {
    font-size: 13px;
  }
}

@media (max-width: 700px) {
  .hero-title-main {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
  }
}

html[dir="ltr"] .main-nav,
html[dir="ltr"] .hero-actions,
html[dir="ltr"] .about-brand-copy,
html[dir="ltr"] .about-brand-title,
html[dir="ltr"] .about-brand-list,
html[dir="ltr"] .company-goals-content,
html[dir="ltr"] .company-goals-heading,
html[dir="ltr"] .client-journey-grid,
html[dir="ltr"] .journey-step-card,
html[dir="ltr"] .faq-list,
html[dir="ltr"] .contact-form-card,
html[dir="ltr"] .contact-sidebar,
html[dir="ltr"] .contact-details,
html[dir="ltr"] .contact-detail-copy,
html[dir="ltr"] .component-slot {
  direction: ltr;
}

html[dir="ltr"] .top-contact {
  order: 1;
}

html[dir="ltr"] .top-social {
  order: 2;
}

html[dir="ltr"] .main-header-shell {
  direction: ltr;
}

html[dir="ltr"] .brand-cell-right {
  order: 1;
  margin-inline-start: 0;
  margin-inline-end: auto;
}

html[dir="ltr"] .cta-cell {
  order: 3;
  justify-content: flex-end;
}

html[dir="ltr"] .main-nav {
  justify-content: center;
  direction: ltr;
}

html[dir="ltr"] .main-nav-list a {
  text-align: left;
}

html[dir="ltr"] .about-brand-copy,
html[dir="ltr"] .company-goals-content,
html[dir="ltr"] .component-slot .item-page,
html[dir="ltr"] .component-slot .category-desc,
html[dir="ltr"] .component-slot .blog-item {
  text-align: left;
}

html[dir="ltr"] .about-brand-copy {
  align-items: flex-start;
}

html[dir="ltr"] .about-brand-title {
  direction: ltr;
  justify-content: flex-start;
}

html[dir="ltr"] .about-brand-list {
  text-align: left;
}

html[dir="ltr"] .about-brand-list li {
  padding-inline-start: 22px;
  padding-inline-end: 0;
  text-align: left;
}

html[dir="ltr"] .about-brand-list li::before {
  inset-inline-start: 0;
  inset-inline-end: auto;
}

html[dir="ltr"] .service-card,
html[dir="ltr"] .service-card-link,
html[dir="ltr"] .faq-answer,
html[dir="ltr"] .contact-input,
html[dir="ltr"] .contact-textarea,
html[dir="ltr"] .site-footer-meta-shell {
  direction: ltr;
}

html[dir="ltr"] .service-card-link:hover,
html[dir="ltr"] .service-card-link:focus-visible {
  transform: translateY(-1px);
}

html[dir="ltr"] .service-card-link span {
  order: 1;
}

html[dir="ltr"] .service-card-link i {
  order: 2;
}

html[dir="ltr"] .faq-question,
html[dir="ltr"] .faq-answer,
html[dir="ltr"] .contact-detail-copy,
html[dir="ltr"] .contact-input,
html[dir="ltr"] .contact-textarea {
  text-align: left;
}

html[dir="ltr"] .journey-step-badge {
  right: auto;
  left: 0;
}

html[dir="ltr"] .contact-details {
  margin-inline-start: 0;
  margin-inline-end: auto;
  align-self: flex-start;
}

html[dir="ltr"] .contact-detail {
  grid-template-columns: auto minmax(0, 1fr);
}

html[dir="ltr"] .contact-detail-copy {
  grid-column: 2;
  grid-row: 1;
  align-items: flex-start;
}

html[dir="ltr"] .contact-detail-icon {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

html[dir="ltr"] .footer-contact-link {
  flex-direction: row;
}

html[dir="ltr"] .site-footer-meta-copy,
html[dir="ltr"] .site-footer-meta-records {
  text-align: left;
  justify-content: flex-start;
}

@media (max-width: 1180px) {
  .inner-page-shell {
    width: min(100%, calc(100% - 32px));
  }
}

@media (max-width: 900px) {
  .header-tools {
    gap: 10px;
  }

  .language-switcher-summary {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }

  .language-switcher-menu {
    inset-inline-start: auto;
    inset-inline-end: 0;
  }

  .language-switcher-link {
    min-height: 42px;
    padding: 0 13px;
    font-size: 14px;
  }

  .inner-page-hero {
    padding: 12px 0 40px;
  }

  .inner-page-shell {
    width: min(100%, calc(100% - 20px));
  }

  .inner-page-title {
    font-size: clamp(28px, 6vw, 38px);
  }

  .inner-page-text {
    font-size: clamp(14px, 3vw, 17px);
  }

  html[dir="ltr"] .top-contact {
    justify-content: flex-start;
  }

  html[dir="ltr"] .brand-cell-right {
    justify-content: flex-start;
  }

  html[dir="ltr"] .cta-cell {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .inner-page-shell {
    width: min(100%, calc(100% - 18px));
  }
}
