:root {
  --ink: #14110f;
  --coal: #171412;
  --coal-2: #241d19;
  --walnut: #6d542f;
  --walnut-soft: #8b6a37;
  --bronze: #c9a35a;
  --gold-soft: #e9d3a3;
  --ivory: #faf7f1;
  --paper: #ffffff;
  --muted: #665d54;
  --line: rgba(201, 163, 90, 0.24);
  --glass: rgba(255, 255, 255, 0.9);
  --shadow: 0 24px 70px rgba(20, 17, 15, 0.09);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, var(--coal-2), var(--coal) 70%);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: preloaderRise 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.preloader-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 14px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 90, 0.18);
}

.preloader-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--bronze);
  border-inline-end-color: rgba(201, 163, 90, 0.45);
  animation: preloaderSpin 1.1s linear infinite;
  will-change: transform;
}

.preloader-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.preloader-brand {
  color: var(--gold-soft);
  font-family: "Thmanyah Serif", "IBM Plex Sans Arabic", serif;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.preloader-sub {
  color: rgba(233, 211, 163, 0.6);
  font-size: 12px;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@font-face {
  font-family: "Thmanyah Serif";
  src: url("assets/fonts/thmanyahserifdisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Serif";
  src: url("assets/fonts/thmanyahserifdisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans Arabic", Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

html[dir="ltr"] body {
  font-family: Inter, "IBM Plex Sans Arabic", system-ui, sans-serif;
}

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

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 21;
  background: rgba(143, 114, 61, 0.88);
  color: #fffdf8;
  backdrop-filter: blur(12px);
  transition: background 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.topbar-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 13px;
  font-weight: 500;
}

.topbar-inner span {
  opacity: 0.96;
}

.site-header {
  position: fixed;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 84px;
  margin: 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(20, 17, 15, 0.08);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(20, 17, 15, 0.08);
  backdrop-filter: blur(18px);
  transition:
    top 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(201, 163, 90, 0.34);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 10px 24px rgba(20, 17, 15, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: var(--coal);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
  line-height: 1.35;
  transition: color 0.28s ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
  color: var(--coal);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.28s ease;
}

.desktop-nav a {
  line-height: 1.2;
}

.desktop-nav a,
.site-footer a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--bronze);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.menu-toggle,
.panel-close {
  border: 1px solid rgba(20, 17, 15, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--coal);
  cursor: pointer;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.lang-toggle {
  min-width: 46px;
  height: 42px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.primary-action,
.glass-button,
.dark-button {
  min-height: 44px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action,
.dark-button {
  color: #fffdf8;
  background: linear-gradient(135deg, #9a7a3c, #c9a35a);
  box-shadow: 0 16px 28px rgba(154, 122, 60, 0.26);
}

.glass-button {
  color: var(--coal);
  border: 1px solid rgba(201, 163, 90, 0.34);
  background: rgba(255, 255, 255, 0.94);
}

.primary-action:hover,
.glass-button:hover,
.dark-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(76, 51, 40, 0.2);
}

.menu-toggle {
  width: 44px;
  height: 42px;
  display: none;
  place-items: center;
  border-radius: 12px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--coal);
  transition: background 0.28s ease;
}

body.header-blended .topbar {
  background: transparent;
  color: rgba(255, 253, 248, 0.96);
  box-shadow: none;
  backdrop-filter: none;
}

body.header-blended .site-header {
  top: 46px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.header-blended .brand strong,
body.header-blended .desktop-nav,
body.header-blended .lang-toggle,
body.header-blended .menu-toggle,
body.header-blended .panel-close {
  color: #fffdf8;
}

body.header-blended .brand small {
  color: rgba(255, 253, 248, 0.78);
}

body.header-blended .lang-toggle,
body.header-blended .menu-toggle,
body.header-blended .panel-close {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

body.header-blended .menu-toggle span {
  background: #fffdf8;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 30;
  width: min(380px, 92vw);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(105%);
  transition: transform 0.28s ease;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.98);
  color: var(--coal);
  backdrop-filter: blur(18px);
}

html[dir="ltr"] .mobile-panel {
  inset: 0 auto 0 0;
  transform: translateX(-105%);
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.panel-close {
  align-self: flex-start;
  width: 44px;
  height: 44px;
  color: var(--coal);
  background: rgba(255, 255, 255, 0.9);
  font-size: 28px;
}

.page {
  min-height: 72vh;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 88vh;
  padding: 180px max(16px, calc((100vw - 1180px) / 2)) 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fffdf9;
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.68) 0%, rgba(20, 17, 15, 0.52) 100%),
    url("assets/office/office-reception.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(18, 12, 8, 0.82), transparent);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  color: var(--bronze);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 12px;
}

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

h1 {
  font-family: "Thmanyah Serif", "IBM Plex Sans Arabic", serif;
  font-size: clamp(40px, 5.7vw, 76px);
  line-height: 1.12;
  margin-bottom: 24px;
  color: inherit;
}

h2 {
  font-family: "Thmanyah Serif", "IBM Plex Sans Arabic", serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.2;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
}

.lead {
  max-width: 730px;
  color: #51463e;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.9;
}

.hero .lead {
  max-width: 840px;
  margin-inline: auto;
  color: rgba(255, 253, 249, 0.88);
}

.headline-amount {
  display: inline-block;
  padding: 0 8px;
  margin: 0 2px;
  border-radius: 999px;
  color: #fff7df;
  background: linear-gradient(135deg, rgba(201, 163, 90, 0.24), rgba(201, 163, 90, 0.46));
  box-shadow: 0 0 0 rgba(201, 163, 90, 0.24);
  animation: headlineAmountFlow 2.6s ease-in-out infinite;
}

@keyframes headlineAmountFlow {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(201, 163, 90, 0.2);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(201, 163, 90, 0.34);
    filter: brightness(1.12);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(201, 163, 90, 0.2);
    filter: brightness(1);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.trust-strip,
.grid,
.blog-grid,
.case-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.hero .stat-card {
  color: #fffdf9;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero .stat-card strong {
  color: var(--ivory);
}

.hero .stat-card span {
  color: rgba(255, 253, 249, 0.72);
}

.hero-emblem {
  position: absolute;
  inset-inline-end: max(16px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 1;
  width: 132px;
  height: 132px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 60px rgba(20, 17, 15, 0.14);
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.insight-strip {
  margin-top: 0;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
  box-shadow: 0 22px 70px rgba(33, 24, 21, 0.09);
}

.marquee-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ivory);
  background: linear-gradient(90deg, var(--coal), var(--walnut), var(--coal));
  border-block: 1px solid rgba(216, 190, 138, 0.2);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRTL 38s linear infinite;
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 15px 18px;
}

.marquee-group span {
  position: relative;
  white-space: nowrap;
  color: rgba(247, 243, 236, 0.86);
  font-weight: 700;
}

.marquee-group span::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  inset-inline-end: -22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--bronze);
}

@keyframes marqueeRTL {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(33.333%);
  }
}

.insight-strip article {
  min-height: 190px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.86), rgba(247, 242, 234, 0.78)),
    var(--paper);
}

.insight-strip span,
.solution-row span {
  color: var(--bronze);
  font-weight: 700;
}

.insight-strip p {
  color: var(--muted);
}

.glass-card,
.practice-card,
.article-card,
.contact-card,
.founder-card,
.timeline-item,
.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.12);
}

.stat-card {
  min-height: 104px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  color: var(--coal);
  font-size: 18px;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.compass-section {
  padding-top: 84px;
}

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

.compass-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 12px;
  background:
    linear-gradient(155deg, rgba(255, 253, 249, 0.82), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at 20% 0%, rgba(178, 138, 84, 0.16), transparent 36%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.compass-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -28px;
  bottom: -38px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(178, 138, 84, 0.22);
  border-radius: 50%;
}

.compass-card p {
  color: var(--muted);
}

.compass-card a {
  margin-top: auto;
  color: var(--walnut);
  font-weight: 700;
}

.solution-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: start;
}

.solution-copy {
  position: sticky;
  top: 112px;
  padding: 34px;
  border-radius: 12px;
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(21, 17, 15, 0.96), rgba(76, 51, 40, 0.92)),
    var(--coal);
  box-shadow: 0 30px 80px rgba(33, 24, 21, 0.18);
}

.solution-copy p {
  color: rgba(247, 242, 234, 0.76);
}

.solution-copy .eyebrow {
  color: #d8b47c;
}

.solution-list {
  display: grid;
  gap: 12px;
}

.solution-row {
  min-height: 118px;
  padding: 22px;
  display: grid;
  grid-template-columns: 46px 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.74);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-row:hover {
  transform: translateY(-3px);
  border-color: rgba(178, 138, 84, 0.42);
  box-shadow: 0 18px 44px rgba(33, 24, 21, 0.1);
}

.solution-row strong,
.solution-row small {
  display: block;
}

.solution-row small {
  color: var(--muted);
  margin-top: 3px;
}

.solution-row svg {
  color: var(--bronze);
}

.hero-portrait {
  position: relative;
  min-height: 660px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(155deg, #fff, #eee2d2);
  box-shadow: 0 38px 90px rgba(37, 26, 22, 0.2);
}

.hero-portrait img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 96%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.16));
}

.portrait-caption {
  position: absolute;
  inset: auto 18px 18px;
  padding: 16px;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(22, 16, 13, 0.74);
  backdrop-filter: blur(14px);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

section,
.subpage {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

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

.practice-card,
.article-card,
.contact-card,
.founder-card {
  padding: 24px;
}

.practice-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(178, 138, 84, 0.32);
  border-radius: 12px;
  color: var(--bronze);
  background: rgba(255, 253, 249, 0.74);
}

.practice-card p,
.article-card p,
.contact-card p,
.timeline-item p,
.founder-card p {
  color: var(--muted);
}

.practice-card .glass-button {
  margin-top: auto;
  align-self: flex-start;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.about-showcase {
  padding-top: 96px;
}

.founder-showcase {
  display: flex;
  justify-content: center;
}

.founder-frame {
  width: min(460px, 100%);
  padding: 24px;
  border: 14px solid #b88a3a;
  border-radius: 44px 132px 44px 132px;
  background: linear-gradient(180deg, #f8f4ec, #ffffff);
  box-shadow: 0 30px 80px rgba(20, 17, 15, 0.1);
}

.founder-frame img {
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 28px 108px 28px 108px;
  background: linear-gradient(180deg, #f7f2e8, #ffffff);
}

.founder-card img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(145deg, #ffffff, #eee6d9);
  border-radius: 12px;
}

.office-gallery {
  padding-top: 22px;
}

.office-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 18px;
}

.office-shot {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  background: var(--coal);
}

.office-shot.is-large {
  grid-row: 1 / 3;
}

.office-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.office-shot:hover img {
  transform: scale(1.035);
}

.office-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 12, 8, 0.58), transparent 48%);
}

.office-shot figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  color: var(--ivory);
  font-weight: 700;
}

.license-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 32px;
  align-items: center;
  padding-top: 26px;
}

.license-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.license-copy p {
  color: var(--muted);
}

.license-preview {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 85, 0.24);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}

.license-preview img {
  width: 100%;
  display: block;
}

.license-preview-badge {
  display: grid;
  gap: 18px;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.license-preview-badge img {
  width: min(220px, 100%);
}

.license-preview-badge strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.values-grid span {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fffaf0;
  font-weight: 700;
  text-align: center;
}

.identity-values-section {
  width: 100%;
  max-width: none;
  margin-top: 28px;
  padding: 92px max(16px, calc((100vw - 1180px) / 2)) 86px;
  position: relative;
  overflow: hidden;
  color: #fffdf8;
  background:
    radial-gradient(circle at 50% 110%, rgba(190, 140, 58, 0.9), rgba(190, 140, 58, 0.12) 34%, transparent 58%),
    linear-gradient(180deg, #1b2f4e 0%, #1e304a 48%, #6f5228 100%);
}

.identity-values-section::before,
.identity-values-section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  opacity: 0.08;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.identity-values-section::before {
  inset-inline-start: -90px;
  top: 130px;
  box-shadow:
    70px 70px 0 -1px rgba(255, 255, 255, 0.16),
    140px 0 0 -1px rgba(255, 255, 255, 0.12),
    140px 140px 0 -1px rgba(255, 255, 255, 0.08);
}

.identity-values-section::after {
  inset-inline-end: -110px;
  bottom: 90px;
  box-shadow:
    -70px -70px 0 -1px rgba(255, 255, 255, 0.14),
    -140px 0 0 -1px rgba(255, 255, 255, 0.1),
    -140px -140px 0 -1px rgba(255, 255, 255, 0.08);
}

.identity-values-head {
  position: relative;
  z-index: 1;
}

.identity-values-head .eyebrow,
.identity-values-head h2,
.identity-values-head p {
  color: #fffdf8;
}

.identity-values-head .eyebrow {
  color: #f0d8a4;
}

.identity-values-divider {
  display: inline-flex;
  gap: 10px;
  margin-top: 8px;
}

.identity-values-divider span {
  width: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.feature-values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 56px;
  margin-top: 48px;
}

.feature-value-card {
  padding: 12px 10px;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-value-card h3,
.feature-value-card p {
  color: #fffdf8;
}

.feature-value-card h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 2.1vw, 36px);
}

.feature-value-card p {
  max-width: 340px;
  margin-inline: auto;
  color: rgba(255, 253, 248, 0.9);
  font-size: 17px;
  line-height: 1.9;
}

.feature-value-icon,
.service-panel-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fffdf8;
  background: transparent;
}

.feature-value-icon svg {
  width: 54px;
  height: 54px;
  stroke-width: 1.6;
}

.service-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-panel {
  min-height: 540px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 34px;
  color: #fffdf8;
  background-position: center;
  background-size: cover;
  box-shadow: 0 34px 90px rgba(20, 17, 15, 0.18);
}

.service-panel h3,
.service-panel ul,
.service-panel li {
  color: inherit;
}

.service-panel ul {
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.service-panel li {
  margin-bottom: 12px;
  font-size: 18px;
}

.trust-logos-section {
  padding-top: 84px;
}

.trust-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.trust-logo-card {
  min-height: 146px;
  padding: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 163, 90, 0.16);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trust-logo-card img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.clients-marquee-section {
  padding-top: 84px;
  overflow: hidden;
}

.clients-marquee-shell {
  position: relative;
  overflow: hidden;
  padding: 4px 0 8px;
}

.clients-marquee-shell::before,
.clients-marquee-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 1;
  pointer-events: none;
}

.clients-marquee-shell::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, var(--paper), rgba(255, 255, 255, 0));
}

.clients-marquee-shell::after {
  inset-inline-end: 0;
  background: linear-gradient(to left, var(--paper), rgba(255, 255, 255, 0));
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: clientsLogoScroll 34s linear infinite;
}

.clients-marquee-section:hover .clients-marquee-track {
  animation-play-state: paused;
}

.client-logo-slide {
  width: 216px;
  min-width: 216px;
  height: 112px;
  padding: 20px 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(20, 17, 15, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.client-logo-slide:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 163, 90, 0.5);
  box-shadow: 0 16px 34px rgba(20, 17, 15, 0.1);
}

.client-logo-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* normal: already dark/colored, sits on white as a muted grayscale mark by default */
.client-logo-slide--normal img {
  filter: grayscale(1) opacity(0.72);
}

.client-logo-slide--normal:hover img {
  filter: grayscale(0) opacity(1);
}

/* invert: mark is white/near-white on transparent, flip it dark to read on white */
.client-logo-slide--invert img {
  filter: invert(1) grayscale(1) opacity(0.68);
}

.client-logo-slide--invert:hover img {
  filter: invert(1) grayscale(1) opacity(0.95);
}

/* boost: faint mid-gray marks that need extra contrast to read at all */
.client-logo-slide--boost img {
  filter: grayscale(1) contrast(1.6) brightness(0.6) opacity(0.75);
}

.client-logo-slide--boost:hover img {
  filter: grayscale(1) contrast(1.6) brightness(0.6) opacity(1);
}

@keyframes clientsLogoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

html[dir="rtl"] .clients-marquee-track {
  animation-name: clientsLogoScrollRtl;
}

@keyframes clientsLogoScrollRtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.map-section {
  padding-top: 88px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: stretch;
}

.map-card {
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(201, 163, 90, 0.18);
  box-shadow: var(--shadow);
  min-height: 560px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

.map-contact-frame {
  padding: 20px;
  border: 14px solid #b88a3a;
  border-radius: 44px 132px 44px 132px;
  background: linear-gradient(180deg, #f8f4ec, #ffffff);
  box-shadow: 0 30px 80px rgba(20, 17, 15, 0.1);
}

.map-contact-card {
  height: 100%;
  padding: 34px 30px;
  border-radius: 28px 108px 28px 108px;
  background: #ffffff;
}

.map-contact-card h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.contact-points {
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-points li {
  padding: 16px 18px;
  border: 1px solid rgba(201, 163, 90, 0.16);
  border-radius: 18px;
  background: #fffaf0;
}

.contact-points strong,
.contact-points span,
.contact-points a {
  display: block;
}

.contact-points strong {
  margin-bottom: 6px;
}

.phone-ltr {
  direction: ltr;
  unicode-bidi: bidi-override;
  display: inline-block;
}

/* scoped LTR number inside a flex row (icon + text) without reordering siblings */
.ltr-num {
  direction: ltr;
  unicode-bidi: isolate;
}

.dark-band {
  width: 100%;
  max-width: none;
  margin-top: 36px;
  padding: 76px max(16px, calc((100vw - 1180px) / 2));
  color: var(--ivory);
  background: linear-gradient(135deg, #171412, #4a3926);
}

.dark-band .section-head p,
.dark-band .timeline-item p {
  color: rgba(247, 242, 234, 0.76);
}

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

.timeline-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.timeline-item span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(178, 138, 84, 0.22);
  color: #f4d6aa;
  font-weight: 700;
}

.case-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.case-win-card {
  min-height: 360px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(184, 146, 85, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 236, 0.72)),
    #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.case-win-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.case-detail-panel .case-win-image {
  height: 180px;
}

.case-win-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 146, 85, 0.46);
  box-shadow: 0 30px 90px rgba(18, 12, 8, 0.16);
}

.case-win-card p {
  color: var(--muted);
}

.case-win-card dl,
.case-detail-panel dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.case-win-card dl div,
.case-detail-panel dl div {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.case-win-card dt,
.case-detail-panel dt {
  color: var(--muted);
  font-size: 13px;
}

.case-win-card dd,
.case-detail-panel dd {
  margin: 0;
  color: var(--coal);
  font-weight: 700;
}

.case-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.file-link {
  color: var(--walnut);
  font-weight: 700;
}

.section-action {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.case-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.78fr);
  gap: 26px;
  align-items: start;
}

.case-detail-panel,
.case-detail-body {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.case-detail-panel {
  position: sticky;
  top: 112px;
}

.case-detail-body p {
  color: var(--muted);
}

.detail-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.detail-two section,
.confidential-note {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(247, 243, 236, 0.62);
}

.clients-section {
  overflow: hidden;
}

.clients-slider {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 18px;
  animation: clientsSlide 32s linear infinite;
}

.clients-track span {
  min-width: 220px;
  padding: 26px 20px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(184, 146, 85, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--walnut);
  font-weight: 700;
}

.clients-cta {
  margin-top: 22px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coal), var(--walnut));
  color: var(--ivory);
}

@keyframes clientsSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--walnut);
  background: rgba(178, 138, 84, 0.14);
  font-size: 13px;
  font-weight: 700;
}

.subpage {
  padding-top: 104px;
}

.page-kicker {
  color: var(--bronze);
  font-weight: 700;
}

.detail-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: start;
}

.service-list {
  columns: 2;
  padding: 0;
  list-style: none;
}

.service-list li {
  break-inside: avoid;
  margin-bottom: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.52);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
}

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

.contact-cta-section {
  width: 100%;
  max-width: none;
  padding: 90px max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.9), rgba(58, 36, 24, 0.64)),
    url("assets/office/office-desk.png") center / cover no-repeat;
}

.contact-cta-card {
  max-width: 720px;
  color: var(--ivory);
  background: rgba(18, 12, 8, 0.48);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-cta-card .lead {
  color: rgba(247, 243, 236, 0.82);
}

.contact-cta-card .glass-button {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  width: min(1200px, calc(100% - 24px));
  margin: 64px auto 0;
  padding: 40px 40px 20px;
  border-radius: 20px 20px 0 0;
  color: #fffdf8;
  background: linear-gradient(160deg, #17130f 0%, #1e1912 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(233, 211, 163, 0.22);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 211, 163, 0.5), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.site-footer p,
.site-footer small,
.site-footer span {
  color: rgba(247, 242, 234, 0.62);
}

.site-footer a,
.site-footer span {
  font-size: 13.5px;
  line-height: 1.6;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--gold-soft);
  text-transform: uppercase;
}

.footer-brand {
  margin-bottom: 12px;
  align-items: center;
  gap: 10px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
}

.site-footer .brand strong {
  color: #fffdf8;
  font-size: 16px;
}

.site-footer .brand small {
  color: rgba(255, 248, 235, 0.55);
  font-size: 12px;
}

.footer-intro p {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
  font-size: 12px;
  margin: 0;
}

.site-credit {
  margin: 0;
  color: rgba(255, 248, 235, 0.4);
  font-size: 11px;
}

.site-credit a {
  color: rgba(233, 211, 163, 0.75);
  font-size: inherit;
}

.site-credit a:hover {
  color: #fff4d4;
}

.footer-intro {
  max-width: 320px;
}

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

.footer-links a {
  width: fit-content;
  position: relative;
  color: rgba(255, 248, 235, 0.7);
  transition: color 0.2s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px auto;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  transition: width 0.22s ease;
}

.footer-links a:hover {
  color: #fff9ef;
}

.footer-links a:hover::after {
  width: 100%;
}

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

.footer-contact-list a,
.footer-contact-list > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 235, 0.72);
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #fff9ef;
}

.footer-contact-list i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--bronze);
}

.footer-contact-list a span,
.footer-contact-list > span span {
  color: inherit;
}

.whatsapp-float {
  position: fixed;
  inset: auto auto 22px 22px;
  z-index: 18;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #1fa855, #28c76f);
  box-shadow: 0 16px 38px rgba(31, 168, 85, 0.36);
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 46px rgba(31, 168, 85, 0.42);
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.whatsapp-pulse-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(40, 199, 111, 0.42);
  animation: whatsappPulse 1.8s ease-out infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.95;
  }
  70% {
    transform: scale(1.22);
    opacity: 0;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

html[dir="ltr"] .whatsapp-float {
  inset: auto 22px 22px auto;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .primary-action {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .split,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-portrait {
    min-height: 560px;
  }

  .grid,
  .timeline,
  .case-grid,
  .blog-grid,
  .insight-strip,
  .compass-grid,
  .solution-showcase,
  .office-gallery-grid,
  .license-section,
  .case-detail-layout,
  .feature-values-grid,
  .service-panels,
  .trust-logos-grid,
  .map-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1.15fr 1fr;
    gap: 22px 24px;
  }

  .footer-intro {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-intro p {
    max-width: none;
  }

  .solution-copy {
    position: relative;
    top: auto;
  }

  .office-shot.is-large {
    grid-row: auto;
  }

  .case-detail-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .topbar-inner {
    width: calc(100% - 20px);
    min-height: 44px;
    padding: 6px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4px 12px;
    text-align: center;
    font-size: 12px;
  }

  .topbar-inner span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .topbar-inner span[data-i18n="topbarEmail"],
  .topbar-inner span[data-i18n="topbarHours"] {
    display: none;
  }

  .site-header {
    width: calc(100% - 20px);
    top: 46px;
    padding: 10px 12px;
    align-items: center;
  }

  .brand small {
    display: none;
  }

  .hero,
  section,
  .subpage,
  .site-footer {
    width: calc(100% - 20px);
  }

  .hero {
    width: 100%;
    margin: 0;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 42px;
    padding-inline: 20px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.16;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .lead,
  .section-head p {
    font-size: 16px;
  }

  .trust-strip,
  .grid,
  .timeline,
  .case-grid,
  .blog-grid,
  .values-grid,
  .insight-strip,
  .compass-grid,
  .solution-showcase,
  .office-gallery-grid,
  .license-section,
  .case-win-grid,
  .case-detail-layout,
  .detail-two,
  .feature-values-grid,
  .service-panels,
  .trust-logos-grid,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .identity-values-section {
    padding: 72px 20px 68px;
  }

  .feature-values-grid {
    gap: 28px;
    margin-top: 36px;
  }

  .feature-value-card h3 {
    font-size: 24px;
  }

  .feature-value-card p {
    font-size: 15px;
  }

  .hero-portrait {
    min-height: 480px;
  }

  .service-list {
    columns: 1;
  }

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

  .brand {
    min-width: 0;
    flex: 1;
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }

  .site-header .brand strong {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 1.25;
  }

  .desktop-nav {
    font-size: 14px;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 8px;
  }

  .lang-toggle,
  .menu-toggle {
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .marquee-group {
    gap: 28px;
    padding-block: 12px;
  }

  .hero-emblem {
    display: none;
  }

  .founder-frame {
    border-width: 10px;
    border-radius: 30px 72px 30px 72px;
  }

  .service-panel {
    min-height: auto;
    padding: 32px 24px;
  }

  .map-card,
  .map-card iframe {
    min-height: 380px;
  }

  .map-contact-frame {
    padding: 12px;
    border-width: 10px;
    border-radius: 30px 72px 30px 72px;
  }

  .map-contact-card {
    padding: 26px 20px;
    border-radius: 22px 56px 22px 56px;
  }

  .site-footer {
    width: calc(100% - 20px);
    padding: 36px 20px 18px;
    border-radius: 22px 22px 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer .brand strong {
    font-size: 16px;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }

  .footer-intro,
  .footer-intro p {
    max-width: none;
  }

  .footer-links a {
    width: 100%;
  }

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

  .site-credit {
    font-size: 10px;
  }

  .clients-marquee-shell::before,
  .clients-marquee-shell::after {
    display: none;
  }

  .clients-marquee-shell {
    padding: 0;
  }

  .clients-marquee-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    animation: none !important;
    transform: none !important;
  }

  .clients-marquee-track .client-logo-slide:nth-child(n + 13) {
    display: none;
  }

  .client-logo-slide {
    width: 100%;
    min-width: 0;
    height: 96px;
    padding: 14px;
    border-radius: 16px;
  }

  .client-logo-slide img {
    max-height: 46px;
  }

  .office-shot {
    min-height: 300px;
  }

  .clients-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .insight-strip article,
  .compass-card,
  .solution-copy,
  .solution-row {
    padding: 22px;
  }

  .solution-row {
    grid-template-columns: 38px 1fr;
  }

  .solution-row svg {
    display: none;
  }
}
