@font-face {
  font-family: "Saad Naskh Arabic";
  src: url("../fonts/naskh-arabic-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy-950: #292827;
  --navy-900: #3b3b3b;
  --navy-800: #4c4b49;
  --navy-700: #615f5b;
  --gold-600: #846721;
  --gold-500: #9a7c2e;
  --gold-400: #b0954d;
  --cream-100: #ebe5d5;
  --cream-50: #f7f3e8;
  --ink: #3b3b3b;
  --muted: #716d65;
  --line: #d6ceb3;
  --white: #fffdfa;
  --shadow: 0 20px 55px rgba(59, 59, 59, 0.12);
  --radius: 4px;
  --font-display: "Noto Kufi Arabic Variable", "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: "DIN Next LT Arabic", "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.saad-official-theme {
  overflow-x: hidden;
}

body.lang-en,
.lang-en button,
.lang-en input,
.lang-en select,
.lang-en textarea {
  font-family: Arial, Helvetica, sans-serif !important;
}

.saad-official-theme .elementor-location-header,
.saad-official-theme .elementor-location-footer,
.saad-official-theme .hfe-site-header,
.saad-official-theme .hfe-site-footer {
  display: none !important;
}

.admin-bar .site-header {
  top: 32px;
}

.articles-hero,
.article-single-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.articles-hero::after,
.article-single-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  inset-inline-end: -155px;
  top: -245px;
  border: 1px solid rgba(176, 149, 77, 0.26);
  rotate: 45deg;
}

.articles-hero-inner {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.articles-hero h1,
.article-single-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.articles-hero-inner > div > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 2;
}

.articles-hero-mark {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  color: var(--gold-400);
  border: 1px solid rgba(176, 149, 77, 0.58);
  background: rgba(255, 255, 255, 0.035);
}

.articles-section {
  padding: 92px 0 110px;
  background: var(--cream-50);
}

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

.article-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow);
}

.article-card-featured {
  grid-column: 1 / -1;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.article-card-featured.article-card-no-image {
  grid-template-columns: 1fr;
}

.article-card-image {
  min-height: 390px;
  overflow: hidden;
  background: var(--cream-100);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.025);
}

.article-card-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 36px;
}

.article-card h2 {
  margin: 22px 0 16px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.55;
}

.article-card p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 2;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.76rem;
}

.article-meta span {
  padding: 4px 10px;
  color: var(--gold-600);
  border: 1px solid rgba(154, 124, 46, 0.42);
  background: var(--cream-50);
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--gold-600);
  font-weight: 800;
}

.article-read-link span {
  transition: transform 0.2s ease;
}

.article-read-link:hover span {
  transform: translateX(-4px);
}

.article-content {
  min-width: 0;
}

.article-single-hero {
  padding: 92px 0 88px;
}

.article-single-heading {
  position: relative;
  z-index: 1;
}

.article-single-hero h1 {
  max-width: 980px;
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
  line-height: 1.45;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.article-byline span {
  width: 4px;
  height: 4px;
  rotate: 45deg;
  background: var(--gold-400);
}

.article-byline b {
  font-weight: 500;
}

.article-single-section {
  padding: 82px 0 105px;
  background: var(--cream-50);
}

.single-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  align-items: start;
  gap: 58px;
}

.article-main {
  min-width: 0;
  padding: 46px clamp(28px, 5vw, 64px) 58px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(59, 59, 59, 0.08);
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--gold-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-featured {
  margin-bottom: 42px;
}

.article-featured img {
  width: 100%;
  height: auto;
  margin: 0;
  border-bottom: 3px solid var(--gold-500);
}

.article-content > :first-child {
  margin-top: 0 !important;
}

.article-content h2 {
  margin-top: 48px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.5;
}

.article-content h3 {
  margin-top: 38px;
  line-height: 1.55;
}

.article-content p {
  margin-bottom: 22px;
  color: #5f5b54;
  font-size: 1.03rem;
  line-height: 2.2;
}

.article-content img {
  width: auto;
  height: auto;
  margin: 30px auto;
}

.article-content a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  margin: 24px 0;
  color: var(--muted);
  line-height: 2.15;
}

.article-end-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 52px;
}

.article-end-mark::before,
.article-end-mark::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--line);
}

.article-end-mark span {
  width: 9px;
  height: 9px;
  rotate: 45deg;
  background: var(--gold-500);
}

.article-aside .sidebar-card {
  top: 28px;
}

.article-aside .section-kicker {
  margin-bottom: 14px;
}

.related-articles {
  padding: 90px 0 105px;
  background: var(--cream-100);
}

.related-articles-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.related-articles-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

.related-articles-heading .text-link {
  color: var(--gold-600);
  font-weight: 800;
}

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

.related-articles-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.related-articles-grid h3 {
  margin: 24px 0;
  color: var(--navy-900);
  font-size: 1.15rem;
  line-height: 1.7;
}

.articles-pagination {
  grid-column: 1 / -1;
  margin-top: 34px;
}

.navigation.pagination {
  margin: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links .page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-links .current {
  background: var(--navy-900);
  color: var(--white);
}

.articles-empty {
  grid-column: 1 / -1;
  padding: 60px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.25;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  inset-inline-start: 16px;
  top: -80px;
  padding: 10px 16px;
  background: var(--gold-500);
  color: var(--navy-950);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200, 168, 93, 0.65);
  outline-offset: 3px;
}

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

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

.button-navy {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.button-navy:hover {
  background: var(--navy-800);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

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

.button-outline-dark {
  border-color: rgba(59, 59, 59, 0.42);
  color: var(--ink);
  background: rgba(255, 253, 250, 0.25);
}

.button-outline-dark:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
  background: rgba(255, 253, 250, 0.7);
}

.button-block {
  width: 100%;
}

.section {
  padding: 108px 0;
}

.section-kicker,
.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-inline-end: 11px;
  vertical-align: middle;
  background: currentColor;
}

.section-heading,
.split-intro {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 48px;
}

.section-heading h2,
.split-intro h2,
.consultation-copy h2,
.clients-copy h2,
.faq-grid h2 {
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.section-heading > p,
.intro-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.heading-light h2,
.heading-light > p {
  color: var(--white);
}

.heading-light > p {
  color: rgba(255, 255, 255, 0.65);
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(3, 21, 36, 0.08);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #36424d;
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 32px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 21px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-language {
  min-width: 48px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: auto;
  padding: 7px 13px;
  color: var(--gold-600);
  border: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-language:hover {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 46px;
  height: 42px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  height: 2px;
  background: var(--navy-900);
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  inset-inline-end: 0;
  width: min(280px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px 10px;
  border-bottom: 1px solid #eee7dc;
  font-weight: 700;
}

.mobile-menu .mobile-whatsapp {
  margin-top: 8px;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 35%, rgba(255, 253, 250, 0.78), transparent 32%),
    linear-gradient(135deg, #f7f3e8 0%, #ebe5d5 58%, #f3eedf 100%);
  color: var(--ink);
}

.hero-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.34;
  background: repeating-conic-gradient(from 205deg at 2% 100%, rgba(154, 124, 46, 0.2) 0deg 0.22deg, transparent 0.22deg 4.4deg);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 78%);
}

.hero-watermark {
  position: absolute;
  z-index: -1;
  width: min(650px, 55vw);
  height: min(650px, 55vw);
  inset-inline-start: -80px;
  bottom: -250px;
  object-fit: contain;
  opacity: 0.045;
  mix-blend-mode: multiply;
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  grid-template-areas: "message identity";
  align-items: center;
  gap: clamp(70px, 9vw, 135px);
  padding-top: 58px;
  padding-bottom: 68px;
  direction: ltr;
}

.hero-message {
  grid-area: message;
  max-width: 610px;
  direction: rtl;
}

.hero-identity {
  grid-area: identity;
  justify-self: end;
  width: 100%;
  direction: rtl;
  text-align: center;
}

.hero-identity .eyebrow {
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  font-size: 0.58rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.eyebrow {
  color: var(--gold-600);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 710px;
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--navy-900);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 2;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
  color: var(--navy-700);
  font-size: 0.82rem;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-assurances span::before {
  content: "";
  width: 5px;
  height: 5px;
  rotate: 45deg;
  background: var(--gold-400);
}

.hero-frame {
  position: relative;
  width: min(390px, 100%);
  min-height: 455px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 34px;
  border: 1px solid rgba(154, 124, 46, 0.36);
  background: rgba(255, 253, 250, 0.48);
  box-shadow: inset 0 0 0 9px rgba(255, 253, 250, 0.34), 0 28px 70px rgba(59, 59, 59, 0.1);
}

.lang-en .hero-message {
  direction: ltr;
}

.lang-en .hero-identity {
  direction: ltr;
}

.lang-en .hero-message .hero-lead {
  max-width: 600px;
  font-size: 1.18rem;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
}

.hero-frame::before {
  top: -13px;
  inset-inline-start: -13px;
  border-top: 2px solid var(--gold-500);
  border-inline-start: 2px solid var(--gold-500);
}

.hero-frame::after {
  bottom: -13px;
  inset-inline-end: -13px;
  border-bottom: 2px solid var(--gold-500);
  border-inline-end: 2px solid var(--gold-500);
}

.hero-logo-card {
  width: 185px;
  height: 165px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  overflow: hidden;
  background: transparent;
}

.hero-logo-card img {
  width: 185px;
  height: 185px;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: translateY(-10px);
}

.hero-frame-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 2px;
  text-align: center;
}

.hero-frame-copy .hero-brand-title {
  margin: 0;
  max-width: none;
  color: var(--navy-900);
  font-family: "Saad Naskh Arabic", "Noto Kufi Arabic", Tahoma, Arial, sans-serif !important;
  font-size: 1.48rem;
  font-weight: 700 !important;
  font-variation-settings: normal !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

.hero-frame-copy .hero-brand-ar {
  display: block;
  color: var(--gold-600);
  font-family: "Saad Naskh Arabic", "Noto Kufi Arabic", Tahoma, Arial, sans-serif !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 2px;
  text-align: center;
}

.hero-brand-ar::before,
.hero-brand-ar::after {
  content: none;
}

.hero-brand-en {
  margin-top: 14px;
  color: var(--navy-900);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-brand-en-sub {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--gold-600);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 4px;
  letter-spacing: 0.08em;
  justify-content: center;
  text-transform: uppercase;
}

.hero-brand-en-sub::before,
.hero-brand-en-sub::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-inline: 10px;
  background: var(--gold-400);
}

.hero-bottom-rule {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 34px;
  border-inline-end: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-inline-end: 0;
}

.trust-grid strong {
  color: var(--navy-900);
  font-size: 1.05rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* About */
.about-section {
  background: var(--cream-50);
}

.about-portrait-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  column-gap: clamp(48px, 6vw, 84px);
  row-gap: 0;
  margin-bottom: 58px;
}

.about-portrait {
  position: relative;
  display: block;
  isolation: isolate;
  grid-column: 1;
  grid-row: 1 / 3;
}

.about-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(154, 124, 46, 0.7);
}

.about-portrait::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset-inline-start: 0;
  bottom: 0;
  width: 38%;
  height: 4px;
  background: var(--gold-500);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 58px rgba(59, 59, 59, 0.14);
}

.about-intro-copy {
  grid-column: 2;
  grid-row: 2;
  max-width: 540px;
}

.about-kicker {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.about-intro-copy > p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2.15;
}

.about-intro-copy .text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--gold-600);
  font-weight: 800;
}

.about-intro-copy .text-link span {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.about-intro-copy .text-link:hover span {
  transform: translateX(-5px);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.approach-card {
  min-height: 245px;
  padding: 34px;
  background: var(--white);
}

.approach-card > span {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 0.78rem;
}

.approach-card h3 {
  margin: 34px 0 12px;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.approach-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Team */
.team-section {
  position: relative;
  background: var(--white);
}

.team-heading {
  margin-bottom: 42px;
}

.team-heading h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  font-weight: 800;
  font-variation-settings: "wght" 800;
  letter-spacing: -0.025em;
}

.team-heading h2::before {
  content: "";
  width: 42px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold-500);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.team-member {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 30px 32px;
  overflow: hidden;
  background: var(--white);
}

.team-member::after {
  content: "";
  position: absolute;
  top: -75px;
  inset-inline-start: -65px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 124, 46, 0.105) 0%, rgba(154, 124, 46, 0) 70%);
  pointer-events: none;
}

.team-member-lead::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1px;
  height: 3px;
  background: var(--gold-500);
}

.team-member-icon {
  position: relative;
  z-index: 1;
  width: 78px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-500);
}

.team-member-icon::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.team-member-copy {
  position: relative;
  z-index: 1;
}

.team-member h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 800;
  font-variation-settings: "wght" 800;
}

.team-member p {
  margin: 0;
  color: var(--gold-600);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Services */
.services-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.services-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  inset-inline-end: -240px;
  bottom: -260px;
  border: 1px solid rgba(176, 139, 56, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(176, 139, 56, 0.025), 0 0 0 140px rgba(176, 139, 56, 0.015);
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card {
  position: relative;
  min-height: 245px;
  padding: 35px 38px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease;
}

.service-card:hover {
  background: var(--cream-100);
  color: var(--navy-900);
}

.service-card-top,
.service-list-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-icon,
.service-list-icon,
.related-service-icon,
.page-hero-icon {
  display: inline-grid;
  place-items: center;
  color: var(--gold-400);
  border: 1px solid rgba(176, 139, 56, 0.52);
  background: rgba(176, 139, 56, 0.08);
}

.service-icon {
  width: 50px;
  height: 50px;
}

.service-card:hover .service-icon {
  color: var(--gold-600);
  background: var(--white);
}

.service-number {
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 0.75rem;
}

.service-card h3 {
  margin: 24px 0 12px;
  font-size: 1.35rem;
}

.service-card p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.9rem;
}

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

.service-arrow {
  position: absolute;
  inset-inline-end: 32px;
  bottom: 30px;
  color: var(--gold-400);
  font-size: 1.35rem;
}

.section-action {
  margin-top: 34px;
  text-align: center;
}

/* Consultation */
.consultation-teaser {
  background: var(--cream-100);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 110px;
}

.consultation-copy h2 {
  margin-bottom: 26px;
}

.consultation-copy > p:not(.section-kicker) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  rotate: 45deg;
  border: 2px solid var(--gold-500);
}

.consultation-contact-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow);
}

.consultation-contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--gold-500);
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 0.78rem;
}

.consultation-contact-card h3 {
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.consultation-contact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.consultation-contact-card .button {
  margin-top: 24px;
}

.price-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

/* Sectors */
.sectors-section {
  background: var(--white);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.sector-item {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px;
  background: var(--cream-50);
  transition: background 0.2s ease;
}

.sector-item:hover {
  background: var(--cream-100);
}

.sector-number {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.sector-item strong {
  color: var(--navy-900);
}

.sector-symbol {
  display: inline-grid;
  place-items: center;
  margin-inline-start: auto;
  color: var(--gold-500);
  line-height: 0;
}

/* Floating contact */
.floating-contact {
  position: fixed;
  z-index: 80;
  left: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  gap: 9px;
  direction: rtl;
}

.floating-contact-button {
  min-width: 112px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(41, 40, 39, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(41, 40, 39, 0.28);
}

.floating-contact-button:focus-visible {
  outline: 3px solid rgba(176, 149, 77, 0.42);
  outline-offset: 3px;
}

.floating-call {
  background: var(--navy-950);
  border-color: rgba(176, 149, 77, 0.58);
}

.floating-call svg {
  color: var(--gold-400);
}

.floating-whatsapp {
  background: #1f8f5f;
  border-color: #18764e;
}

.floating-whatsapp:hover {
  background: #18764e;
}

/* Why */
.why-section {
  background: var(--navy-950);
}

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

.why-grid article {
  min-height: 225px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.why-grid article > span {
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.why-grid h3 {
  margin: 35px 0 11px;
  font-size: 1.22rem;
}

.why-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

/* Clients */
.clients-section {
  background: var(--cream-100);
}

.clients-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 72px;
}

.clients-copy h2 {
  margin-bottom: 24px;
}

.clients-copy > p:not(.section-kicker) {
  color: var(--muted);
}

.clients-image-wrap {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.clients-image-wrap img {
  width: 100%;
  filter: saturate(0.82);
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  margin: 22px 0 28px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-900);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary span {
  color: var(--gold-500);
  font-size: 1.45rem;
  font-weight: 400;
  transition: rotate 0.2s ease;
}

.accordion details[open] summary span {
  rotate: 45deg;
}

.accordion details p {
  max-width: 680px;
  padding: 0 0 24px;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: var(--navy-800);
  color: var(--white);
}

.final-cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  inset-inline-start: -160px;
  top: -200px;
  border: 1px solid rgba(176, 139, 56, 0.32);
  rotate: 45deg;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta p {
  margin-bottom: 4px;
  color: var(--gold-400);
  font-size: 0.86rem;
  font-weight: 800;
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.68);
}

.footer-rule {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 90px;
  padding-top: 76px;
  padding-bottom: 62px;
}

.footer-grid h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
}

.footer-grid a:hover {
  color: var(--gold-400);
}

.contact-list {
  direction: rtl;
}

.lang-en .contact-list,
.lang-en .floating-contact {
  direction: ltr;
}

.contact-list a[href^="tel:"],
.contact-card[href^="tel:"],
.contact-card a[href^="tel:"] {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 90px;
  background: var(--navy-900);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  inset-inline-end: -130px;
  top: -250px;
  border: 1px solid rgba(176, 139, 56, 0.25);
  rotate: 45deg;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.breadcrumbs a:hover {
  color: var(--gold-400);
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}

.content-section {
  padding: 92px 0;
  background: var(--cream-50);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 82px;
}

.prose h2 {
  margin: 0 0 24px;
  color: var(--navy-900);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.prose h3 {
  margin: 45px 0 18px;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.prose p {
  color: var(--muted);
  font-size: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  rotate: 45deg;
  background: var(--gold-500);
}

.sidebar-card {
  position: sticky;
  top: 24px;
  padding: 30px;
  background: var(--navy-900);
  color: var(--white);
  border-top: 3px solid var(--gold-500);
  box-shadow: var(--shadow);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.45rem;
}

.sidebar-card p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
}

.sidebar-card .button + .button {
  margin-top: 10px;
}

.sidebar-card .button-outline-light {
  width: 100%;
}

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

.all-services-grid .service-list-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.all-services-grid .service-list-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-500);
}

.service-list-card-top > span:last-child {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.service-list-icon {
  width: 52px;
  height: 52px;
  color: var(--gold-600);
  background: var(--cream-100);
}

.service-list-card h2 {
  margin: 24px 0 12px;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.service-list-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-list-card b {
  margin-top: auto;
  color: var(--gold-600);
  font-size: 0.86rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 35px;
}

.value-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
}

.value-card h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  font-size: 0.84rem;
}

.related-service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--gold-600);
  background: var(--cream-100);
}

.page-hero-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  color: var(--gold-400);
  background: rgba(176, 139, 56, 0.1);
}

/* Booking */
.booking-layout {
  display: block;
  max-width: 900px;
  margin-inline: auto;
}

.booking-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-form h2 {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 1.8rem;
}

.booking-form > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d6d0c6;
  border-radius: 0;
  background: var(--cream-50);
  color: var(--ink);
}

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

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.form-price {
  display: flex;
  flex-direction: column;
}

.form-price span {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-price strong {
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 1.6rem;
}

.payment-note {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  padding: 13px;
  background: var(--cream-100);
  color: var(--muted);
  font-size: 0.78rem;
}

.payment-note::before {
  content: "i";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-weight: 700;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.contact-card {
  min-height: 200px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-card span {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.contact-card h2 {
  margin: 28px 0 9px;
  color: var(--navy-900);
  font-size: 1.18rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ExtraBold Kufi display treatment selected by the client. */
.hero h1,
.section-heading h2,
.split-intro h2,
.consultation-copy h2,
.clients-copy h2,
.faq-grid h2,
.page-hero h1,
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: "wght" 800;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.lang-en .section-heading h2,
.lang-en .split-intro h2,
.lang-en .consultation-copy h2,
.lang-en .clients-copy h2,
.lang-en .faq-grid h2,
.lang-en .page-hero h1,
.lang-en .final-cta h2,
.lang-en .team-heading h2,
.lang-en .team-member h3 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.lang-en .about-intro-copy .text-link:hover span {
  transform: translateX(5px);
}

.lang-en .service-arrow {
  inset-inline-end: 32px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
    font-size: 0.82rem;
  }

  .hero-grid {
    gap: 45px;
  }

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 700px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-inline-start: auto;
  }

  .nav-shell {
    min-height: 58px;
  }

  .hero-grid,
  .section-heading,
  .split-intro,
  .about-portrait-grid,
  .consultation-grid,
  .clients-grid,
  .faq-grid,
  .content-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    grid-template-areas:
      "identity"
      "message";
    gap: 65px;
    padding-top: 75px;
    padding-bottom: 90px;
  }

  .hero-message {
    max-width: 680px;
    justify-self: center;
    text-align: center;
  }

  .hero-identity {
    max-width: 430px;
    justify-self: center;
  }

  .hero-identity .eyebrow {
    white-space: normal;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-assurances {
    justify-content: center;
  }

  .section-heading,
  .split-intro,
  .about-portrait-grid,
  .consultation-grid,
  .clients-grid,
  .faq-grid,
  .content-grid {
    gap: 35px;
  }

  .approach-grid,
  .team-grid,
  .why-grid,
  .values-grid,
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .clients-grid {
    align-items: start;
  }

  .faq-grid {
    align-items: start;
  }

  .single-article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .sidebar-card {
    position: static;
  }

  .about-intro-copy {
    grid-column: 1;
    grid-row: 3;
    max-width: none;
  }

  .about-portrait-grid {
    grid-template-rows: auto auto auto;
    row-gap: 0;
    margin-bottom: 52px;
  }

  .about-kicker {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 24px;
  }

  .about-portrait {
    grid-column: 1;
    grid-row: 2;
    margin: 2px 0 40px;
  }

  .mobile-menu {
    margin-inline-start: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 540px);
  }

  .section {
    padding: 76px 0;
  }

  .nav-shell {
    min-height: 56px;
    height: auto;
    gap: 7px;
  }

  .mobile-menu summary {
    width: 40px;
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-assurances {
    gap: 12px;
  }

  .hero-frame {
    width: calc(100% - 20px);
    min-height: 400px;
    padding: 32px 24px;
  }

  .hero-identity .hero-frame {
    margin-inline: auto;
  }

  .hero-logo-card {
    width: 155px;
    height: 139px;
  }

  .hero-logo-card img {
    width: 155px;
    height: 155px;
    transform: translateY(-8px);
  }

  .floating-contact {
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 8px;
  }

  .floating-contact-button {
    min-width: 104px;
    height: 44px;
    gap: 8px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

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

  .trust-grid > div {
    min-height: 92px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .about-portrait-grid {
    margin-bottom: 48px;
  }

  .about-portrait {
    width: calc(100% - 12px);
    margin-bottom: 38px;
  }

  .about-portrait::before {
    inset: 10px -10px -10px 10px;
  }

  .about-portrait img {
    aspect-ratio: 4 / 5;
  }

  .approach-grid,
  .services-grid,
  .team-grid,
  .why-grid,
  .values-grid,
  .sectors-grid,
  .all-services-grid,
  .feature-list,
  .contact-cards,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid,
  .related-articles-grid {
    grid-template-columns: 1fr;
  }

  .articles-hero-inner {
    min-height: 330px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .articles-hero-mark {
    display: none;
  }

  .article-card-featured {
    grid-template-columns: 1fr;
  }

  .article-card-image {
    min-height: 230px;
  }

  .article-card-content {
    padding: 26px 22px;
  }

  .article-single-hero {
    padding: 70px 0 68px;
  }

  .article-single-hero h1 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .article-byline {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .article-byline span {
    display: none;
  }

  .article-main {
    padding: 30px 20px 40px;
  }

  .article-content p {
    font-size: 0.98rem;
    line-height: 2.1;
  }

  .related-articles-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .team-heading {
    margin-bottom: 30px;
  }

  .team-heading h2 {
    gap: 14px;
    font-size: 1.65rem;
  }

  .team-heading h2::before {
    width: 30px;
  }

  .team-member {
    min-height: 118px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    padding: 25px 24px;
  }

  .team-member-icon {
    width: 58px;
    min-height: 52px;
    flex: 0 0 58px;
  }

  .team-member-icon::after {
    display: none;
  }

  .team-member-icon svg {
    width: 43px;
    height: 43px;
  }

  .team-member h3 {
    font-size: 1.15rem;
  }

  .services-grid {
    border-inline-start: 0;
  }

  .service-card {
    border-inline: 1px solid rgba(255, 255, 255, 0.15);
  }

  .form-submit-row,
  .final-cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .consultation-contact-card,
  .booking-form {
    padding: 24px 18px;
  }

  .booking-form {
    padding: 24px 16px;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .final-cta-inner {
    align-items: flex-start;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-bottom {
    min-height: auto;
    padding: 24px 0;
  }

  .footer-bottom p {
    width: 100%;
  }

  .page-hero {
    padding: 70px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
